:root {
  --bg: #f4f1ea;
  --paper: #f9f7f1;
  --ink: #111111;
  --muted: #4d4d4d;
  --line: rgba(17, 17, 17, 0.16);
  --accent: #b58a4d;
  --accent-deep: #88622b;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 4vw;
  background: rgba(244, 241, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand img {
  width: 92px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: contain;
  object-position: center;
  background: #0f0f0f;
  padding: 4px;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.call-chip {
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.call-chip:hover {
  background: var(--ink);
  color: #fff;
}

main {
  width: min(1180px, 92vw);
  margin: 1.6rem auto 0;
}

section {
  margin-bottom: 4rem;
}

.micro {
  margin: 0 0 0.5rem;
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.45rem;
}

.hero {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lede {
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.65;
  margin: 1rem 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.hero-actions span {
  color: var(--muted);
  font-size: 0.9rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  background: linear-gradient(130deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 700;
}

.btn:hover {
  filter: brightness(0.95);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.feature img,
.feature div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.feature div {
  padding: 1rem;
}

.feature p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.section-title {
  margin-bottom: 1rem;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.service-grid article,
.review-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-grid p,
.review-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0.45rem 0 0;
}

.review-meta {
  color: var(--accent-deep) !important;
  font-weight: 700;
  margin-top: 0 !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

.tile {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wide {
  grid-column: span 8;
  aspect-ratio: 16 / 10;
}

.tall {
  grid-column: span 4;
  aspect-ratio: 4 / 5;
}

.square {
  grid-column: span 6;
  aspect-ratio: 1 / 1;
}

.partner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.partner img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.partner p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.contact img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.contact p {
  color: var(--muted);
  line-height: 1.6;
}

.hours {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1.4rem 4vw 2rem;
  color: var(--muted);
}

.footer p {
  margin: 0.2rem 0;
}

.footer a {
  color: var(--accent-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 700ms ease forwards;
}

.feature.reveal {
  animation-delay: 120ms;
}

.services.reveal {
  animation-delay: 190ms;
}

.gallery.reveal {
  animation-delay: 260ms;
}

.partner.reveal {
  animation-delay: 330ms;
}

.reviews.reveal {
  animation-delay: 400ms;
}

.contact.reveal {
  animation-delay: 470ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .feature,
  .partner {
    grid-template-columns: 1fr;
  }

  .wide,
  .tall,
  .square {
    grid-column: span 6;
  }
}

@media (max-width: 780px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact img {
    max-width: 180px;
  }

  .wide,
  .tall,
  .square {
    grid-column: span 12;
  }

  .wide {
    aspect-ratio: 16 / 11;
  }

  .tall,
  .square {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 560px) {
  .btn,
  .call-chip {
    width: 100%;
  }
}

/* Hero logo placement */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 1rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-logo {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0f0f0f;
  padding: 0.45rem;
}

.hero-logo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

@media (max-width: 780px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    max-width: 240px;
  }
}

/* Hero logo refinement: softer blend + left alignment */
.hero-logo {
  border: none;
  background: transparent;
  padding: 0;
  justify-self: start;
  transform: translateX(-16px);
}

.hero-logo img {
  mix-blend-mode: screen;
  opacity: 0.86;
  filter: contrast(1.04) saturate(0.9);
}

@media (max-width: 780px) {
  .hero-logo {
    transform: translateX(0);
    max-width: 220px;
  }
}

/* Hero logo: remove visible black rectangle and blend with light background */
.hero-logo {
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-logo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 24%;
  mix-blend-mode: multiply;
  opacity: 0.92;
  -webkit-mask-image: radial-gradient(circle at center, #000 64%, transparent 65%);
  mask-image: radial-gradient(circle at center, #000 64%, transparent 65%);
}

/* Hero logo removed: keep hero content full width */
.hero-layout {
  grid-template-columns: 1fr;
}

.legal-note {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  opacity: 0.85;
}
