@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #06060a;
  --s1:       #0c0c12;
  --s2:       #111118;
  --s3:       #16161e;
  --gold:     #b8964a;
  --gold-lt:  #d4af6e;
  --gold-dim: rgba(184,150,74,.1);
  --gold-b:   rgba(184,150,74,.18);
  --cream:    #f2ede4;
  --muted:    #6e6e80;
  --muted-lt: #9898a8;
  --border:   rgba(255,255,255,.06);
  --radius:   4px;
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --spring:   cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
body.touch { cursor: auto; }

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── CUSTOM CURSOR ── */
#cursor-dot, #cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
#cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,74,.5);
  transition: width .25s var(--ease), height .25s var(--ease),
              border-color .25s, transform .08s linear;
}
#cursor-ring.hovered {
  width: 56px; height: 56px;
  border-color: var(--gold);
}
body.touch #cursor-dot,
body.touch #cursor-ring { display: none; }

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  transition: opacity .8s var(--ease), visibility .8s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-mark {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  animation: pre-spin 2s linear infinite;
}
.pre-mark svg { width: 24px; height: 24px; fill: var(--gold); }
.pre-name {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: pre-fade .6s .4s var(--ease) forwards;
}
.pre-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  background: var(--gold);
  animation: pre-load 1.4s var(--ease) forwards;
}
@keyframes pre-spin  { to { transform: rotate(360deg); } }
@keyframes pre-fade  { to { opacity: 1; } }
@keyframes pre-load  { from { width: 0; } to { width: 100%; } }

/* ── PROGRESS BAR ── */
#progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 8000;
  width: 0%;
  transition: width .1s linear;
}

/* ── FLOATING CALL ── */
#float-call {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 14px 24px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(184,150,74,.3);
  transform: translateY(120px);
  transition: transform .5s var(--spring), box-shadow .2s;
  cursor: none;
}
#float-call svg { width: 15px; height: 15px; fill: var(--bg); }
#float-call:hover { box-shadow: 0 12px 40px rgba(184,150,74,.45); transform: translateY(-3px); }
body.past-hero #float-call { transform: translateY(0); }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: none;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.07);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { box-shadow: 0 8px 28px rgba(184,150,74,.35); }
.btn-ghost { background: transparent; border: 1px solid rgba(184,150,74,.4); color: var(--gold-lt); }
.btn-ghost:hover { border-color: var(--gold); box-shadow: 0 0 20px rgba(184,150,74,.1); }
.btn-ghost-white { background: transparent; border: 1px solid rgba(255,255,255,.2); color: var(--cream); }
.btn-ghost-white:hover { border-color: rgba(255,255,255,.5); }

/* ── TYPE HELPERS ── */
.label {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.display em { font-style: italic; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(6,6,10,.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 18px; height: 18px; fill: var(--gold); }
.nav-logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name .n1 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-logo-name .n2 {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-lt);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-tel {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--muted-lt);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.nav-tel svg { width: 13px; height: 13px; fill: var(--gold); }
.nav-tel:hover { color: var(--cream); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: .3s; }

@media(max-width:900px){
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-right .btn { display: none; }
  .nav-tel { display: none; }
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(6,6,10,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
  gap: 0;
}
.nav-links.open li a { display: block; padding: 14px 0; font-size: .8rem; border-bottom: 1px solid var(--border); }
.nav-links.open li:last-child a { border-bottom: none; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/__media/f59816f1b889f242a94c0668d93657aab850d401.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: .12;
  will-change: transform;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(6,6,10,1) 0%, transparent 70%),
    linear-gradient(180deg, rgba(6,6,10,.6) 0%, rgba(6,6,10,0) 30%, rgba(6,6,10,.9) 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(184,150,74,.05) 0%, transparent 70%);
  animation: orb1 15s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: 0; left: 30%;
  background: radial-gradient(circle, rgba(184,150,74,.04) 0%, transparent 70%);
  animation: orb2 18s ease-in-out infinite;
}
@keyframes orb1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,60px)} }
@keyframes orb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,-40px)} }

.hero-scroll-line {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
}
.hero-scroll-line span {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-lt);
}
.hero-scroll-line::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
body.loaded .hero-eyebrow { animation: heroUp .7s .3s var(--ease) forwards; }

.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3.6rem, 8.5vw, 9rem);
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}
body.loaded .hero-h1 .line-inner:nth-child(1),
body.loaded .hero-h1 .line:nth-child(1) .line-inner { animation: heroLine .9s .5s var(--ease) forwards; }
body.loaded .hero-h1 .line:nth-child(2) .line-inner { animation: heroLine .9s .65s var(--ease) forwards; }
body.loaded .hero-h1 .line:nth-child(3) .line-inner { animation: heroLine .9s .8s var(--ease) forwards; }
.hero-h1 em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  color: var(--muted-lt);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
}
body.loaded .hero-sub { animation: heroUp .7s 1.1s var(--ease) forwards; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
}
body.loaded .hero-actions { animation: heroUp .7s 1.3s var(--ease) forwards; }

.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0;
}
body.loaded .hero-stats { animation: heroUp .7s 1.5s var(--ease) forwards; }
.hero-stat {}
.hero-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.hero-stat-val sup { font-size: 1.4rem; color: var(--gold); }
.hero-stat-lbl {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

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

/* ── MARQUEE ── */
#marquee {
  background: var(--s1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  user-select: none;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.marquee-item {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-lt);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.marquee-item::after {
  content: '';
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMON ── */
.section-head { margin-bottom: 72px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-lt); }
.section-sub {
  font-size: .95rem;
  font-weight: 300;
  color: var(--muted-lt);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 18px;
}

/* ── ABOUT ── */
#about {
  padding: 130px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media(max-width:860px){ .about-grid { grid-template-columns: 1fr; gap: 56px; } }

.about-img-frame {
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid var(--gold-b);
  z-index: 0;
  pointer-events: none;
}
.about-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(.92) contrast(1.05);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--s2);
  border: 1px solid var(--gold-b);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge .stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; }
.about-badge .av { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--cream); line-height: 1; }
.about-badge .meta { display: flex; flex-direction: column; }
.about-badge .meta span:first-child { font-size: .7rem; font-weight: 600; color: var(--cream); letter-spacing: .06em; }
.about-badge .meta span:last-child { font-size: .62rem; color: var(--muted-lt); letter-spacing: .04em; }

.about-copy .section-title { margin-top: 8px; }
.about-points {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ap-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
}
.ap-body h4 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 5px;
  letter-spacing: .03em;
}
.ap-body p { font-size: .85rem; font-weight: 300; color: var(--muted-lt); line-height: 1.7; }

/* ── STATS BAND ── */
#stats-band {
  padding: 80px 0;
  background: var(--s1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media(max-width:700px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.stat-item.counted::before { width: 40px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}
.stat-num sup { font-size: 1.4rem; color: var(--gold); margin-top: 6px; }
.stat-num .suf { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-lt); align-self: flex-end; }
.stat-lbl {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ── SERVICES ── */
#services {
  padding: 130px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media(max-width:860px){ .services-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--bg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { background: var(--s1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .sc-icon { border-color: var(--gold); }
.service-card:hover .sc-icon svg { fill: var(--gold); }
.service-card:hover .sc-arrow { opacity: 1; transform: translate(0,0); }

.sc-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: border-color .3s;
}
.sc-icon svg { width: 20px; height: 20px; fill: var(--muted-lt); transition: fill .3s; }
.service-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: .03em;
}
.service-card p { font-size: .82rem; font-weight: 300; color: var(--muted-lt); line-height: 1.75; }
.sc-arrow {
  position: absolute;
  bottom: 32px; right: 32px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .3s, transform .3s var(--ease);
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .1em;
}

/* ── PROCESS ── */
#process {
  padding: 130px 0;
  background: var(--s1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
@media(max-width:700px){ .process-grid { grid-template-columns: 1fr; } }
.process-grid::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-b) 20%, var(--gold-b) 80%, transparent);
  pointer-events: none;
}
@media(max-width:700px){ .process-grid::after { display: none; } }

.process-step {
  padding: 0 48px;
  text-align: center;
  position: relative;
}
@media(max-width:700px){ .process-step { padding: 40px 0; border-bottom: 1px solid var(--border); text-align: left; } }
@media(max-width:700px){ .process-step:last-child { border-bottom: none; } }

.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold-b);
  line-height: 1;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ps-num::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 20px;
  background: var(--gold-b);
}
@media(max-width:700px){ .ps-num { justify-content: flex-start; } .ps-num::after { left: 20px; transform: none; } }
.process-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.process-step p { font-size: .83rem; font-weight: 300; color: var(--muted-lt); line-height: 1.75; }

/* ── GALLERY ── */
#gallery {
  padding: 130px 0;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.g-item {
  overflow: hidden;
  position: relative;
  background: var(--s2);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
  filter: brightness(.85) contrast(1.05);
}
.g-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(0deg, rgba(6,6,10,.85), transparent);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242,237,228,.6);
  opacity: 0;
  transition: opacity .3s;
}
.g-item:hover img { transform: scale(1.04); filter: brightness(.95) contrast(1.05); }
.g-item:hover::after { opacity: 1; }

.g-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.g-item:nth-child(2) { grid-column: span 5; }
.g-item:nth-child(3) { grid-column: span 3; }
.g-item:nth-child(4) { grid-column: span 2; }
.g-item:nth-child(5) { grid-column: span 4; }
.g-item:nth-child(6) { grid-column: span 3; }
.g-item:nth-child(7) { grid-column: span 3; }
.g-item:nth-child(8) { grid-column: span 2; }
.g-item:nth-child(9) { grid-column: span 2; }
.g-item:nth-child(10) { grid-column: span 2; }

@media(max-width:900px){
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
  }
  .g-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
  .g-item:nth-child(1) { grid-column: span 2 !important; height: 280px; }
}
@media(max-width:500px){
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item, .g-item:nth-child(1) { grid-column: span 1 !important; }
}

/* ── REVIEWS ── */
#reviews {
  padding: 130px 0;
  background: var(--s1);
  border-top: 1px solid var(--border);
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.rr-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.rr-meta .stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.rr-meta p { font-size: .75rem; color: var(--muted-lt); margin-top: 6px; letter-spacing: .04em; }
[data-agency-reviews] { margin-top: 56px; min-height: 220px; }

/* ── CTA STRIP ── */
#cta-strip {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip-orb {
  position: absolute;
  width: 600px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(184,150,74,.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip-content { position: relative; z-index: 1; }
.cta-strip-content .section-title { margin-bottom: 20px; }
.cta-strip-content .section-sub { max-width: 480px; margin: 0 auto 44px; }
.cta-strip-content .section-sub.center { text-align: center; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact {
  padding: 130px 0;
  background: var(--s1);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
@media(max-width:860px){ .contact-grid { grid-template-columns: 1fr; gap: 64px; } }

.contact-info .section-sub { margin-top: 18px; }
.contact-details {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { border-top: 1px solid var(--border); }
.cd-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold-b);
  display: flex; align-items: center; justify-content: center;
}
.cd-icon svg { width: 15px; height: 15px; fill: var(--gold); }
.cd-text h4 { font-size: .72rem; font-weight: 600; color: var(--gold-lt); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.cd-text a, .cd-text p { font-size: .88rem; font-weight: 300; color: var(--muted-lt); transition: color .2s; }
.cd-text a:hover { color: var(--cream); }

.contact-form-wrap {}
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
}
.contact-form-wrap .form-note {
  font-size: .78rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 40px;
  letter-spacing: .04em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
@media(max-width:560px){ .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 28px; position: relative; }
.form-group label {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted-lt);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 100px; resize: none; }
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.form-group:focus-within::after { width: 100%; }
.form-submit {
  width: 100%;
  padding: 18px;
  font-size: .75rem;
  border-radius: 0;
}

/* ── FOOTER ── */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--gold-b);
  padding: 72px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media(max-width:768px){ .footer-inner { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand .nav-logo-mark { margin-bottom: 20px; width: 44px; height: 44px; }
.footer-brand p { font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 320px; }

.footer-col h4 {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: .82rem; font-weight: 300; color: var(--muted-lt); transition: color .2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-col address { font-size: .82rem; font-weight: 300; color: var(--muted-lt); line-height: 1.9; }
.footer-col address a { transition: color .2s; }
.footer-col address a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: none; }
[style*="--d:"] { transition-delay: var(--d, 0s) !important; }
