/* ---------- Tokens ---------- */
:root {
  --bg: #F6F1E8;
  --bg-warm: #EFE6D5;
  --paper: #FBF8F2;
  --ink: #1A1614;
  --ink-soft: #3A322C;
  --muted: #7A6F62;
  --line: #D9C9B0;
  --blush: #E8C9C0;
  --rose: #C99C8E;
  --gold: #B8946B;
  --gold-dark: #927152;
  --shadow-soft: 0 18px 60px -28px rgba(50, 36, 22, 0.35);
  --shadow-card: 0 30px 80px -40px rgba(50, 36, 22, 0.55);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --display: "Italiana", "Cormorant Garamond", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --rad: 2px;
  --content: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bg); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.01em; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}

.wrap { max-width: var(--content); margin: 0 auto; padding: 0 32px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: rgba(217, 201, 176, 0.45);
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.nav.light .brand, .nav.light .nav-links a { color: var(--paper); }
.nav.light .brand small { color: rgba(251, 248, 242, 0.7); }
.nav.light.scrolled .brand, .nav.light.scrolled .nav-links a { color: var(--ink); }
.nav.light.scrolled .brand small { color: var(--muted); }

.nav-links {
  display: flex; gap: 36px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav.light .nav-cta:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.menu-btn { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: inherit; position: relative; z-index: 60; }
.menu-btn span { display: block; width: 22px; height: 1px; background: currentColor; margin: 5px 0; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.nav.menu-open .menu-btn span:first-child { transform: translateY(3px) rotate(45deg); }
.nav.menu-open .menu-btn span:last-child { transform: translateY(-3px) rotate(-45deg); }
body.menu-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.btn .arr {
  display: inline-block;
  transition: transform 0.35s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:hover .arr { transform: translateX(6px); }
.btn.ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn.ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.outline:hover { background: var(--ink); color: var(--paper); }

.text-link {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
  padding: 18px 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center 28%;
  transform: scale(1.06);
  will-change: transform;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,22,20,0.32) 0%, rgba(26,22,20,0.15) 35%, rgba(26,22,20,0.78) 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow { color: rgba(251, 248, 242, 0.85); }
.hero-eyebrow::before { background: rgba(251, 248, 242, 0.7); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 22px 0 28px;
  max-width: 14ch;
  font-weight: 400;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: rgba(251, 248, 242, 0.92);
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(251, 248, 242, 0.9);
  max-width: 38ch;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-meta {
  margin-left: 20px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.75);
  display: flex; align-items: center; gap: 14px;
}
.hero-meta::before { content: ""; width: 32px; height: 1px; background: rgba(251, 248, 242, 0.5); }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 32px;
  transform: translateX(-50%);
  color: rgba(251, 248, 242, 0.6);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.hero-scroll .line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, rgba(251,248,242,0.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.001% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero text reveal */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal-line.d2 > span { animation-delay: 0.15s; }
.reveal-line.d3 > span { animation-delay: 0.3s; }
@keyframes rise { to { transform: translateY(0); } }
.fade-up-load { opacity: 0; transform: translateY(20px); animation: fadeUp 1s ease 0.6s forwards; }
.fade-up-load.d2 { animation-delay: 0.85s; }
.fade-up-load.d3 { animation-delay: 1.05s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes menuFade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Sections ---------- */
section { padding: 120px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 80px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: "";
  width: 28px; height: 1px; background: var(--gold);
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.05;
  margin: 22px auto 0;
  max-width: 18ch;
  font-weight: 400;
}
.section-head h2 em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--gold-dark); }
.section-head .lede {
  margin: 24px auto 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- About ---------- */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--rad);
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-img::after {
  content: "";
  position: absolute; inset: 16px;
  border: 1px solid rgba(251, 248, 242, 0.5);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 168px; height: 168px;
  background: var(--gold);
  color: var(--paper);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  padding: 16px;
  transform: rotate(-8deg);
  z-index: 2;
}
.about-badge strong {
  font-family: var(--sans);
  font-style: normal;
  font-size: 40px;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-feature-settings: "lnum" 1;
}
.about-badge span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-style: normal;
}
.about-copy h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  margin: 22px 0 28px;
  font-weight: 400;
}
.about-copy h2 em { font-style: italic; font-family: var(--serif); font-weight: 300; color: var(--gold-dark); }
.about-copy p { color: var(--ink-soft); font-size: 17px; margin-bottom: 18px; max-width: 50ch; }
.signature {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
}
.signature small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.trust-row .item strong {
  display: block;
  font-family: var(--sans);
  font-size: 46px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.trust-row .item strong .num-anim,
.about-badge strong .num-anim {
  font: inherit;
}
.trust-sym {
  font-family: var(--sans);
  font-size: 0.55em;
  font-weight: 400;
  color: var(--gold);
  margin-left: 0.12em;
  vertical-align: 0.45em;
  letter-spacing: 0;
}
.trust-row .item span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Services ---------- */
.services { background: var(--bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card .img {
  position: relative;
  overflow: hidden;
}
.service-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.service-card:hover .img img { transform: scale(1.08); }
.service-card .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,0) 60%, rgba(26,22,20,0.25));
}
.service-card .body {
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-card .num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}
.service-card h3 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.05;
  margin: 16px 0 14px;
  font-weight: 400;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.service-card .meta {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.service-card .price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.service-card .price small { font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-style: normal; display: block; }
.price-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-soft);
  padding-bottom: 8px;
  border-bottom: 1px dotted var(--line);
}
.price-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.price-list .item-name { flex: 1; }
.price-list .item-price {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  white-space: nowrap;
}
.service-card .more {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.3s ease;
}
.service-card .more::after { content: "→"; }
.service-card:hover .more { gap: 18px; }

.service-card.featured {
  grid-column: span 2;
  grid-template-columns: 1.3fr 1fr;
}
.service-card.featured h3 { font-size: 56px; }
.service-card.featured .img { min-height: 460px; }

.service-card.cta {
  grid-column: span 2;
  background: var(--ink);
  color: var(--paper);
  min-height: auto;
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.service-card.cta:hover { transform: none; box-shadow: none; }
.service-card.cta .eyebrow { color: var(--blush); }
.service-card.cta h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--paper);
  max-width: 22ch;
  line-height: 1.1;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-warm);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1), filter 0.5s;
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(26,22,20,0);
  transition: background 0.4s;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { background: rgba(26,22,20,0.18); }
.g-item .tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 6px 10px;
  background: rgba(26,22,20,0.55);
  backdrop-filter: blur(6px);
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
}
.g-item:hover .tag { opacity: 1; transform: translateY(0); }

.g-1 { grid-column: span 4; grid-row: span 3; }
.g-2 { grid-column: span 4; grid-row: span 2; }
.g-3 { grid-column: span 4; grid-row: span 2; }
.g-4 { grid-column: span 4; grid-row: span 2; }
.g-5 { grid-column: span 4; grid-row: span 3; }
.g-6 { grid-column: span 4; grid-row: span 2; }
.g-7 { grid-column: span 4; grid-row: span 2; }
.g-8 { grid-column: span 4; grid-row: span 2; }

.insta-cta {
  margin-top: 56px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
}
.insta-cta a {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  color: var(--ink);
  transition: color 0.2s;
}
.insta-cta a:hover { color: var(--gold-dark); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 16, 14, 0.94);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 5vh 5vw;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: lbFade 0.3s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6); }
.lb-close {
  position: absolute; top: 24px; right: 28px;
  color: var(--paper);
  font-size: 30px;
  background: none; border: 0;
  cursor: pointer;
  font-family: var(--display);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--ink);
  color: var(--paper);
}
.testimonials .section-head h2 { color: var(--paper); }
.testimonials .section-head h2 em { color: var(--blush); }
.testimonials .lede { color: rgba(251,248,242,0.7); }
.t-carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  min-height: 360px;
}
.t-slide {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.t-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.t-stars {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 16px;
  margin-bottom: 28px;
}
.t-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.45;
  color: rgba(251,248,242,0.95);
  max-width: 30ch;
  margin: 0 auto 36px;
}
.t-quote::before { content: "“"; font-family: var(--display); font-style: normal; font-size: 60px; color: var(--gold); display: block; margin-bottom: -32px; line-height: 1; }
.t-author { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.t-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 242, 0.2);
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-family: var(--display); font-size: 22px; }
.t-role { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(251, 248, 242, 0.55); }
.t-dots {
  display: flex; gap: 10px; justify-content: center; margin-top: 48px;
}
.t-dots button {
  width: 28px; height: 1px;
  background: rgba(251, 248, 242, 0.25);
  border: 0; cursor: pointer;
  transition: all 0.3s;
}
.t-dots button.active { background: var(--gold); width: 48px; height: 2px; }

/* ---------- Reels ---------- */
.reels { background: var(--bg-warm); }
.reel-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.reel video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.reel:hover video { transform: scale(1.04); }
.reel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,0) 50%, rgba(26,22,20,0.7));
  pointer-events: none;
}
.reel .play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.92);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  z-index: 2;
  transition: all 0.3s ease;
  pointer-events: none;
}
.reel:hover .play { background: var(--gold); color: var(--paper); transform: translate(-50%, -50%) scale(1.06); }
.reel.playing .play { opacity: 0; }
.reel .caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  color: var(--paper);
  z-index: 2;
  pointer-events: none;
}
.reel .caption .tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
  color: var(--blush);
  margin-bottom: 6px;
  display: block;
}
.reel .caption h3 {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--paper);
  font-weight: 400;
}

/* ---------- SEO content ---------- */
.seo { background: var(--bg-warm); }
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.seo-head .eyebrow { margin-bottom: 24px; }
.seo-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 400;
}
.seo-head p { color: var(--ink-soft); font-size: 16px; }
.seo-body h3 {
  font-family: var(--display);
  font-size: 26px;
  margin: 32px 0 12px;
  font-weight: 400;
}
.seo-body h3:first-child { margin-top: 0; }
.seo-body p { color: var(--ink-soft); margin-bottom: 14px; font-size: 15.5px; line-height: 1.75; }

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  margin: 16px 0 8px;
  font-weight: 400;
}
.contact-info h2 em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--gold-dark); }
.contact-info > p { color: var(--ink-soft); max-width: 42ch; font-size: 16px; }

.c-rows { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; border-top: 1px solid var(--line); }
.c-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  transition: padding 0.3s ease;
}
.c-row:hover { padding-left: 10px; }
.c-row .label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-row .val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  text-align: right;
}
.c-row .val a { transition: color 0.2s; }
.c-row .val a:hover { color: var(--gold-dark); }

.map-wrap {
  margin-top: 12px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }

.form-card {
  background: var(--bg);
  padding: 56px 48px;
  border: 1px solid var(--line);
  border-radius: var(--rad);
}
.form-card h3 {
  font-family: var(--display);
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 400;
}
.form-card .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}
.field { position: relative; margin-bottom: 26px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 0 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  transition: border-color 0.3s;
  border-radius: 0;
}
.field input[type="date"], .field input[type="time"] {
  font-family: var(--serif);
  color: var(--ink);
  cursor: pointer;
  color-scheme: light;
}
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.45) sepia(1) saturate(2) hue-rotate(-10deg);
  cursor: pointer;
  opacity: 0.7;
}
.field input[type="date"]:hover::-webkit-calendar-picker-indicator,
.field input[type="time"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  margin: -4px 0 30px;
  background: rgba(184, 148, 107, 0.14);
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.form-note strong {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 6px;
}
.form-note .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}
.field textarea { resize: none; min-height: 80px; font-family: var(--sans); font-size: 15px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-card .btn { margin-top: 16px; width: 100%; justify-content: center; }

.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(184, 148, 107, 0.12);
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  margin-bottom: 24px;
}
.form-success.show { display: block; animation: fadeUp 0.5s ease; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(251, 248, 242, 0.7);
  padding: 90px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}
.foot-brand {
  font-family: var(--display);
  font-size: 42px;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 18px;
}
.foot-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.7);
  margin-top: 8px;
}
.foot-tag {
  max-width: 38ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(251,248,242,0.7);
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 22px;
  font-weight: 400;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-family: var(--serif); font-size: 17px; color: rgba(251,248,242,0.78); transition: color 0.2s; }
.foot-col a:hover { color: var(--gold); }
.foot-col .hours { font-family: var(--serif); font-size: 17px; color: rgba(251,248,242,0.78); }
.foot-col .hours.dim { color: rgba(251,248,242,0.72); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 248, 242, 0.15);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.72);
}
.foot-bottom a:hover { color: var(--gold); }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 22px;
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 40;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Word stagger (split reveal) ---------- */
.split .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.05;
}
.split .w > span {
  display: inline-block;
  transform: translateY(110%) rotate(0.5deg);
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 60ms);
  will-change: transform;
}
.split.in .w > span { transform: translateY(0) rotate(0); }

/* ---------- Image mask reveal ---------- */
.mask-reveal { position: relative; overflow: hidden; }
.mask-reveal img,
.mask-reveal video {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.12);
  transition: clip-path 1.2s cubic-bezier(.7,0,.2,1), transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.mask-reveal.in img,
.mask-reveal.in video {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}
.mask-reveal::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 1.1s cubic-bezier(.7,0,.2,1);
  z-index: 1;
  pointer-events: none;
}
.mask-reveal.in::before { transform: scaleY(0); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid rgba(251, 248, 242, 0.06);
  border-bottom: 1px solid rgba(251, 248, 242, 0.06);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  gap: 60px;
  padding-left: 60px;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-item em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
}
.marquee-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Magnetic / hover lift ---------- */
.magnetic { transition: transform 0.4s cubic-bezier(.2,.7,.2,1); will-change: transform; }

/* ---------- Gallery cursor follower ---------- */
.cursor-pill {
  position: fixed;
  top: 0; left: 0;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 90;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), background 0.3s;
  mix-blend-mode: difference;
}
.cursor-pill.show { transform: translate(-50%, -50%) scale(1); }

.num-anim {
  display: inline-block;
  font-variant-numeric: lining-nums tabular-nums;
}

.accent-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}
.accent-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.25;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .marquee-track { animation: none; }
  .split .w > span { transform: none; }
  .mask-reveal img, .mask-reveal video { clip-path: none; transform: none; }
  .mask-reveal::before { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-scroll { display: none; }
}
@media (max-width: 980px) {
  .wrap { padding: 0 24px; }
  section { padding: 90px 0; }
  .section-head { margin-bottom: 56px; }
  .nav-links { display: none; }
  .menu-btn { display: block; color: inherit; }
  .nav .nav-cta { display: none; }

  /* Mobile menu overlay (opens on burger tap) */
  .nav.menu-open {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }
  .nav.menu-open .brand, .nav.menu-open .menu-btn { color: var(--ink); }
  .nav.menu-open .brand small { color: var(--muted); }
  .nav.menu-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 49;
    font-size: 18px;
    letter-spacing: 0.22em;
    padding: 100px 24px 40px;
    animation: menuFade 0.3s ease;
  }
  .nav.menu-open .nav-links a { color: var(--ink); }
  .nav.menu-open .nav-links a::after { display: none; }
  .nav.menu-open .nav-cta {
    display: inline-flex;
    position: fixed;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ink);
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
    z-index: 50;
    padding: 16px 32px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img { max-width: 460px; margin: 0 auto; width: 100%; }
  .about-badge { width: 130px; height: 130px; bottom: -16px; right: -8px; }
  .about-badge strong { font-size: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; min-height: auto; }
  .service-card .img { aspect-ratio: 4/3; }
  .service-card.featured { grid-column: auto; grid-template-columns: 1fr; }
  .service-card.featured h3 { font-size: 38px; }
  .service-card.featured .img { min-height: auto; }
  .service-card.cta { grid-column: auto; padding: 40px 28px; }
  .gallery-grid { grid-auto-rows: 110px; gap: 10px; }
  .g-1 { grid-column: span 6; grid-row: span 2; }
  .g-2, .g-3 { grid-column: span 6; grid-row: span 2; }
  .g-4, .g-5, .g-6, .g-7, .g-8 { grid-column: span 6; grid-row: span 2; }
  .reel-strip { grid-template-columns: 1fr; gap: 18px; }
  .reel { max-width: 420px; margin: 0 auto; width: 100%; }
  .seo-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-card { padding: 36px 28px; }
  .row2 { grid-template-columns: 1fr; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .trust-row { grid-template-columns: 1fr; gap: 22px; padding-top: 28px; margin-top: 40px; }
  .trust-row .item { display: flex; align-items: baseline; gap: 18px; }
  .trust-row .item strong { font-size: 36px; margin-bottom: 0; }
  .sticky-cta { display: block; }
  .hero-meta { display: none; }
  body { padding-bottom: 80px; }
  .hero { padding-bottom: 120px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(48px, 13vw, 80px); }
  .hero-sub { font-size: 18px; }
  .foot-grid { grid-template-columns: 1fr; }
}
