/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.tj-transparent-header .site-header:not(.is-scrolled) {
  background: transparent; backdrop-filter: none; border-color: transparent;
}
.tj-transparent-header .site-header:not(.is-scrolled) .brand__name,
.tj-transparent-header .site-header:not(.is-scrolled) .brand__title,
.tj-transparent-header .site-header:not(.is-scrolled) .nav-desktop a,
.tj-transparent-header .site-header:not(.is-scrolled) .header-phone,
.tj-transparent-header .site-header:not(.is-scrolled) .menu-toggle span { color: var(--white); }
.site-header.is-scrolled { border-color: var(--stone-dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand__monogram {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--bronze); font-family: var(--font-display);
  font-size: .95rem; color: var(--bronze); flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; min-width: 0; }
.brand__name { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand__title { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.nav-desktop { display: flex; align-items: center; gap: 18px; }
.nav-desktop a { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); position: relative; }
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: var(--bronze); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font-size: .82rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }
.nav-mobile {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--ivory); padding: 16px var(--pad) 32px; overflow-y: auto;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a { display: block; padding: 11px 0; font-size: .98rem; color: var(--ink-soft); }
.nav-mobile a.is-active { color: var(--ink); font-weight: 600; }
.nav-mobile__heading { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); margin: 18px 0 6px; }
body.nav-open { overflow: hidden; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand__monogram { display: inline-grid; width: 48px; height: 48px; margin-bottom: 16px; color: var(--bronze); }
.site-footer h3 { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.site-footer li { margin-bottom: 10px; font-size: .88rem; line-height: 1.45; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; font-size: .78rem; color: rgba(255,255,255,.4); }

/* Hero cinematic */
.hero-cinematic {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 48px) 0 80px; overflow: hidden; background: var(--ink);
}
.hero-cinematic__media { position: absolute; inset: 0; overflow: hidden; }
.hero-cinematic__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; animation: ken-burns 22s var(--ease) forwards; }
.hero-cinematic__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,.35) 0%, rgba(18,18,18,.55) 45%, rgba(18,18,18,.88) 100%);
}
.hero-cinematic__content { position: relative; z-index: 2; max-width: 820px; }
.hero-label { color: var(--bronze-light); }
.hero-lead { color: rgba(255,255,255,.72); max-width: 32rem; margin: 1.25rem 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@keyframes ken-burns { from { transform: scale(1); } to { transform: scale(1.08); } }

/* Trust ribbon */
.trust-ribbon { background: var(--stone); border-top: 1px solid var(--stone-dark); border-bottom: 1px solid var(--stone-dark); }
.trust-ribbon__inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--stone-dark); }
.trust-ribbon__item { background: var(--ivory); padding: 28px 20px; text-align: center; }
.trust-ribbon__value { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--ink); }
.trust-ribbon__label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin-top: 6px; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  grid-template-columns: 1fr 1fr; border-top: 1px solid var(--stone-dark); background: var(--ivory);
}
.sticky-cta a { display: grid; place-items: center; padding: 16px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.sticky-cta__book { background: var(--ink); color: var(--white); }
.sticky-cta__call { background: var(--bronze); color: var(--ink); }

/* FAQ */
.faq-list { max-width: 48rem; }
.faq-item { border-bottom: 1px solid var(--stone-dark); }
.faq-item button {
  width: 100%; text-align: left; padding: 20px 0; font-family: var(--font-display);
  font-size: 1.15rem; color: var(--ink); display: flex; justify-content: space-between; gap: 16px;
}
.faq-item__answer { padding: 0 0 20px; color: var(--ink-muted); display: none; }
.faq-item.is-open .faq-item__answer { display: block; }

/* Before / after */
.ba-gallery { display: grid; gap: 32px; }
.ba-case { background: var(--white); border: var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; }
.ba-case__slider { position: relative; aspect-ratio: 16/10; overflow: hidden; cursor: ew-resize; }
.ba-case__before, .ba-case__after { position: absolute; inset: 0; }
.ba-case__before img, .ba-case__after img { width: 100%; height: 100%; object-fit: cover; }
.ba-case__after { clip-path: inset(0 0 0 50%); }
.ba-case__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--white); z-index: 2; }

/* Instagram strip */
.ig-strip__head { max-width: 36rem; margin: 0 auto 40px; text-align: center; }
.ig-strip__head .lead { margin: 0 auto; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-tile {
  position: relative; aspect-ratio: 1/1; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--stone-dark); border-radius: var(--radius-md);
  color: var(--bronze); overflow: hidden; transition: transform .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.ig-tile:hover { transform: translateY(-3px); background: var(--ink); color: var(--bronze-light); }
.ig-tile__index {
  position: absolute; top: 10px; left: 12px; font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; color: var(--ink-muted); transition: color .3s var(--ease);
}
.ig-tile:hover .ig-tile__index { color: rgba(255,255,255,.6); }
.ig-strip__foot { margin-top: 32px; text-align: center; }
@media (max-width: 760px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* App landing */
.app-landing-card {
  background: var(--white); border: var(--border-soft); border-radius: var(--radius-xl);
  padding: 40px; text-align: center; box-shadow: var(--shadow);
}
.app-landing-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-checklist li { padding: 8px 0; border-bottom: 1px solid var(--stone); }

/* CTA band */
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin: .5rem 0; }
.cta-band p { color: rgba(255,255,255,.65); max-width: 28rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Location cards */
.location-card { background: var(--white); border: var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.location-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--stone); }
.location-card h3 { padding: 20px 28px 8px; }
.location-card p { padding: 0 28px 28px; font-size: .92rem; color: var(--ink-muted); }

@media (max-width: 1100px) {
  .nav-desktop, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-ribbon__inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .sticky-cta { display: grid; }
  body { padding-bottom: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
