/* =====================================================================
   The Lazy Table — styles2 (index2)
   Henri House-inspired editorial restraint on the Lazy Table palette.
   Flat architectural shapes (0px radius), no shadows, serif display +
   light sans body, ALL-CAPS eyebrows/CTAs, arrow CTAs, underline forms,
   generous section rhythm. Mobile-first.
   ===================================================================== */

/* ---------- Brand font: Glacial Indifference (self-hosted) ---------- */
@font-face {
  font-family: "Glacial Indifference";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/GlacialIndifference-Regular.woff") format("woff");
}
@font-face {
  font-family: "Glacial Indifference";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/GlacialIndifference-Bold.woff") format("woff");
}

/* ---------- Design tokens ---------- */
:root {
  /* Colour — identical to index 1 */
  --linen:    #FBF8F3;
  --ivory:    #FFFFFF;
  --ink:      #2B2926;
  --stone:    #6E675E;
  --clay:     #F2913E;  /* soft, bright orange — primary accent */
  --clay-dk:  #C85F1A;  /* deeper orange — small text + hovers */
  --olive:    #7C7A5A;
  --sand:     #EFE4D6;
  --sand-2:   #F7EFE4;
  --scrim:    #0E0E0D;  /* deep near-black — photo overlays only */

  /* RGB channels for the above, so translucent variants stay token-bound */
  --ivory-rgb: 255, 255, 255;
  --linen-rgb: 251, 248, 243;
  --ink-rgb:   43, 41, 38;
  --scrim-rgb: 14, 14, 13;
  --shadow-rgb: 0, 0, 0;

  /* Typography — Glacial Indifference (the font used in the studio's
     quotations/proposals) carries the whole site for a modern, clean voice.
     Cormorant Garamond is reserved ONLY for the brand name/logo. */
  --font-brand: "Cormorant Garamond", Georgia, serif;
  --font-display: "Glacial Indifference", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Glacial Indifference", "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale — larger, lighter display for editorial pacing */
  --fs-eyebrow: 0.6875rem;   /* 11px */
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.2rem, 0.95rem + 0.9vw, 1.5rem);
  --fs-h3:      clamp(1.4rem, 1.1rem + 1.1vw, 1.85rem);
  --fs-h2:      clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
  --fs-h1:      clamp(2.8rem, 1.7rem + 5vw, 5.5rem);

  /* Spacing (8px base) — generous Henri rhythm */
  --sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 3rem;    --sp-6: 4rem;   --sp-7: 6rem;    --sp-8: 10rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 820px;
  --radius: 0;       /* architectural flatness */
  --radius-lg: 0;

  /* Effects — no elevation; depth via section contrast + hairline borders */
  --border: 1px solid var(--sand);
  --border-dk: 1px solid rgba(var(--ivory-rgb),.14);
  --ease: ease;

  /* Soft depth — used by the Services & Reviews cards (ported from v2).
     The rest of the site keeps its flat, architectural treatment. */
  --radius-card: 14px;
  --radius-card-sm: 10px;
  --shadow-card: 0 18px 40px -24px rgba(var(--ink-rgb), .45);
  --shadow-card-lift: 0 28px 60px -28px rgba(var(--ink-rgb), .55);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.8;               /* editorial leading */
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;               /* modern sans */
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: var(--fs-h2); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }

::selection { background: var(--clay); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--clay-dk);
  outline-offset: 3px;
  border-radius: 0;
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-3); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--sp-7); scroll-margin-top: 90px; }
.section--tight { padding-block: var(--sp-6); }

/* Alternating light-section rhythm — warm gradient bands so the Services
   and Reviews cards sit on a soft, colourful ground (ported from v2). */
#services, #reviews {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(var(--ink-rgb), 0) 60%, rgba(242, 145, 62, .10) 100%),
    linear-gradient(180deg, var(--sand-2) 0%, #FBEFE0 100%);
  border-block: 1px solid rgba(242, 145, 62, .18);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);            /* warm greige, gold reserved for CTAs */
  display: inline-block;
  margin-bottom: var(--sp-3);
}

.lead { font-size: var(--fs-lead); color: var(--stone); font-weight: 300; line-height: 1.5; }
.muted { color: var(--stone); }
.center { text-align: center; }

.section-head { max-width: none; margin-inline: auto; margin-bottom: var(--sp-6); }
.section-head.center { text-align: center; }
.section-head h2 { max-width: none; }
.section-head p { margin-top: var(--sp-3); max-width: 62ch; margin-inline: auto; font-size: 1.25rem; }
/* Keep section headings on a single line from tablet up (they wrap freely on phones). */
@media (min-width: 620px) { .section-head h2 { white-space: nowrap; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  padding: 1.05em 2.1em;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 0;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
}
.btn--primary { background: var(--clay); color: var(--ivory); }
.btn--primary:hover { background: var(--clay-dk); }
.btn--ghost { background: transparent; color: var(--clay-dk); border-color: var(--clay-dk); }
.btn--ghost:hover { background: var(--clay-dk); color: var(--linen); }
.btn--light { background: transparent; color: var(--ivory); border-color: rgba(var(--ivory-rgb),.7); }
.btn--light:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--block { width: 100%; }
.btn--sm { padding: .8em 1.5em; font-size: .68rem; }
.btn--icon { width: 52px; height: 52px; padding: 0; border-radius: 0; }
.btn--lg { padding: 1.25em 2.6em; font-size: .8rem; }

/* Arrow CTA — gap expands, arrow slides right on hover (Henri signature) */
.link-arrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay-dk);
  transition: gap .25s var(--ease), opacity .25s var(--ease);
}
.link-arrow::after { content: "\2192"; font-size: 1.1em; transition: transform .25s var(--ease); }
.link-arrow:hover { gap: 1.1em; opacity: .85; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.is-scrolled { border-color: var(--sand); background: rgba(var(--linen-rgb),.97); backdrop-filter: blur(10px); }
.nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6em; font-family: var(--font-brand); font-weight: 400; font-size: 1.55rem; letter-spacing: .02em; color: var(--ink); }
.brand strong { font-weight: 400; }

/* Scrolled-state centred wordmark */
.header-brand {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-brand); font-weight: 400; font-size: 1.4rem;
  letter-spacing: .03em; color: var(--ink); white-space: nowrap;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.site-header.is-scrolled .header-brand { opacity: 1; visibility: visible; pointer-events: auto; }

.nav-links { display: none; }
.nav-links a { font-size: .8rem; letter-spacing: .04em; color: var(--stone); transition: color .25s var(--ease); }
.nav-links a:hover { color: var(--clay-dk); }
.nav-right { display: flex; align-items: center; gap: var(--sp-2); }
.nav-right .lang-switch { display: inline-flex; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; padding: 10px;
}
.nav-toggle span { display: block; height: 1.5px; width: 100%; background: var(--ivory); transition: transform .3s var(--ease), opacity .3s var(--ease), background-color .3s var(--ease); }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(var(--linen-rgb), 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: calc(72px + var(--sp-5)) var(--sp-4) var(--sp-5);
  display: flex; flex-direction: column; align-items: flex-start;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu a {
  display: block; padding: calc(var(--sp-2) * 0.6) 0;
  font-family: var(--font-display); font-weight: 300; font-size: 1.7rem; color: var(--ink);
  transform: translateX(-42px); opacity: 0;
  transition: transform .55s var(--ease), opacity .55s var(--ease), color .25s var(--ease);
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--clay-dk); }
.mobile-menu.is-open a { transform: translateX(0); opacity: 1; }
.mobile-menu.is-open a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: .20s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: .38s; }
.mobile-menu.is-open a:nth-child(7) { transition-delay: .44s; }
.mobile-menu.is-open a:nth-child(8) { transition-delay: .50s; }
.mobile-menu__cta { color: var(--clay-dk); }
.mobile-menu__cta:hover, .mobile-menu__cta:focus-visible { color: var(--clay); }
/* Menu open: hide the toggle button (close via link tap, background tap or Esc) */
.nav-toggle[aria-expanded="true"] { opacity: 0; visibility: hidden; pointer-events: none; }

/* Language switch — clean text labels (PT / ENG), no flags */
.lang-switch { display: inline-flex; align-items: center; gap: .5em; border: none; background: none; }
.lang-btn {
  appearance: none; border: none; background: none; cursor: pointer; padding: .2em .1em;
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; line-height: 1;
  color: currentColor; opacity: .55;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.lang-btn:hover { opacity: .9; }
.lang-btn.is-active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; }
.lang-sep { opacity: .4; font-size: .72rem; }

/* Header lang switch sits over the hero: white until the header solidifies */
.site-header .lang-switch { color: var(--ivory); }
.site-header.is-scrolled .lang-switch { color: var(--ink); }
.lang-switch--footer { margin-top: var(--sp-3); }

/* Persistent header CTA — always available while scrolling the page */
.header-cta { white-space: nowrap; border-radius: 6px; }
.site-header.is-scrolled .header-cta { background: transparent; color: var(--clay-dk); border-color: var(--clay-dk); }
.site-header.is-scrolled .header-cta:hover { background: var(--clay-dk); color: var(--linen); }

/* ---------- Hero (centred — name top, info bottom) ---------- */
.hero { position: relative; }
.hero-media { position: relative; min-height: min(94vh, 860px); display: flex; }
.hero-media .ph { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-scrim { position: absolute; inset: 0; background:
  radial-gradient(95% 62% at 50% 56%, rgba(var(--scrim-rgb),.52) 0%, rgba(var(--scrim-rgb),0) 72%),
  linear-gradient(180deg, rgba(var(--scrim-rgb),.58) 0%, rgba(var(--scrim-rgb),.4) 38%, rgba(var(--scrim-rgb),.5) 58%, rgba(var(--scrim-rgb),.86) 100%); }
.hero-inner { position: relative; z-index: 1; width: 100%; color: var(--ivory); text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding-top: calc(72px + var(--sp-5)); padding-bottom: var(--sp-7); gap: var(--sp-6);
  text-shadow: 0 2px 20px rgba(var(--shadow-rgb),.65); }
.hero-top { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.hero-brand { font-family: var(--font-brand); font-weight: 400; color: var(--ivory); line-height: .95;
  font-size: var(--fs-h1); letter-spacing: .08em; text-transform: uppercase; }
.hero-sub { font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: rgba(var(--ivory-rgb),.82); }
.hero-bottom { display: flex; flex-direction: column; align-items: center; margin-top: var(--sp-7); }
.hero h1 { color: var(--ivory); font-family: var(--font-display); font-weight: 300; max-width: 20ch; text-wrap: balance; font-size: var(--fs-h1); line-height: 1.05; }
.hero p { color: rgba(var(--ivory-rgb),.9); font-size: var(--fs-lead); font-weight: 300; line-height: 1.5; max-width: 46ch; margin-top: var(--sp-3); }
.hero-ig { margin-top: var(--sp-4); }
.hero-ig a { display: inline-flex; color: rgba(var(--ivory-rgb),.85); transition: color .25s var(--ease); }
.hero-ig a:hover { color: var(--ivory); }
.hero-scroll { display: inline-flex; margin-top: var(--sp-4); color: rgba(var(--ivory-rgb),.7); animation: heroBounce 2.2s var(--ease) infinite; }
.hero-scroll:hover { color: var(--ivory); }
@keyframes heroBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }

/* ---------- Stat strip ---------- */
.stat-strip { border-block: var(--border); background: var(--linen); }
.stat-strip .container { padding-block: var(--sp-4); text-align: center; }
.stat-strip .stat-row { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-6); justify-content: center; }
.stat-note { margin: var(--sp-3) 0 0; color: var(--ink); font-size: 1.05rem; line-height: 1.5; letter-spacing: .01em; }
.stat { display: inline-flex; align-items: baseline; gap: .5em; color: var(--stone); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.stat b { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); font-weight: 400; letter-spacing: 0; text-transform: none; }

/* ---------- Intro (split) ---------- */
.split { display: grid; gap: var(--sp-5); align-items: center; }
.split .ph { border-radius: 0; overflow: hidden; aspect-ratio: 4/5; }
#about .lead, #about .muted { margin-top: var(--sp-2); }
#about .split p:last-child { margin-top: var(--sp-3); }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: var(--sp-4); }
.services-grid { grid-template-columns: 1fr; }
.card {
  background: var(--ivory);
  border: 1px solid rgba(var(--ink-rgb), .06);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card-lift); }
.card .ph { aspect-ratio: 4/5; }
.card img { transition: transform .7s var(--ease-out); }
.card:hover img { transform: scale(1.06); }
.card-body { padding: var(--sp-3); }
.card-body h3 { margin-bottom: .35em; font-weight: 400; font-size: clamp(1.05rem, 0.85rem + 1vw, 1.4rem); line-height: 1.15; }
.card-body p { color: var(--stone); font-size: .95rem; line-height: 1.7; }

/* ---------- Meet the team ---------- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}
.team-card { width: 100%; max-width: 340px; text-align: center; }
.team-card__flip {
  position: relative;
  aspect-ratio: 4/5;
  perspective: 1200px;
  cursor: pointer;
}
.team-card__face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
  overflow: hidden;
}
.team-card__face--front { transform: rotateY(0deg); }
.team-card__face--back {
  transform: rotateY(180deg);
  background: var(--linen);
  color: var(--ink);
  border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-3);
  overflow-y: auto;
}
.team-card__face--back p { font-size: 1rem; line-height: 1.65; color: var(--ink); }
.team-card__flip:hover .team-card__face--front,
.team-card__flip:focus .team-card__face--front,
.team-card__flip:focus-within .team-card__face--front { transform: rotateY(-180deg); }
.team-card__flip:hover .team-card__face--back,
.team-card__flip:focus .team-card__face--back,
.team-card__flip:focus-within .team-card__face--back { transform: rotateY(0deg); }
.team-card__photo {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.team-card__initial {
  font-family: var(--font-display); font-weight: 300; font-size: 3rem; color: var(--clay);
}
.team-card__back p {
  font-size: .85rem; line-height: 1.6; color: var(--ivory);
}
.team-card__name {
  margin-top: var(--sp-3); margin-bottom: .2em;
  font-weight: 400; font-size: 1.05rem; line-height: 1.2;
}
.team-card__role {
  color: var(--stone); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
}
#team .section-head h2 { white-space: normal; text-wrap: balance; }
@media (min-width: 620px) {
  .team-card { width: calc((100% - 2 * var(--sp-4)) / 3); }
}
@media (min-width: 900px) {
  .team-card { width: calc((100% - 2 * var(--sp-4)) / 3); max-width: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  .team-card__face { transition: none; }
}

/* ---------- How it works ---------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
.step { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3); align-items: start; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.4rem; color: var(--clay); line-height: 1; font-weight: 300;
  border: none; border-top: 2px solid var(--clay); border-radius: 0; width: auto; padding-top: .4rem; min-width: 2.6rem;
  display: block; flex: none;
}
.step h3 { margin-bottom: .2em; font-weight: 400; font-size: clamp(1.3rem, 1.05rem + 0.85vw, 1.7rem); }
.step p { color: var(--stone); line-height: 1.7; }
.step-cta { display: inline-flex; margin-top: var(--sp-3); }
.steps-cta { margin-top: var(--sp-6); text-align: center; }

/* ---------- Gallery — continuous auto-scroll marquee ---------- */
.gallery-marquee {
  position: relative;
  overflow-x: auto; overflow-y: hidden;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  /* Soft fade at both edges for a premium look */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, var(--ink) 6%, var(--ink) 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, var(--ink) 6%, var(--ink) 94%, transparent 100%);
}
.gallery-marquee::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex; gap: var(--sp-2);
  width: max-content;
}
.gallery-track .tile {
  flex: 0 0 auto;
  width: 74vw; max-width: 320px;
  border-radius: 0; overflow: hidden;
}
.gallery-track .tile .ph { aspect-ratio: 4/5 !important; height: auto; }
.gallery-track .tile img { transition: transform .6s var(--ease); }
.gallery-track .tile:hover img { transform: scale(1.04); }
.gallery-caption { margin-top: var(--sp-4); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.ig-inline { display: inline-flex; vertical-align: -.28em; color: var(--clay-dk); transition: color .25s var(--ease); }
.ig-inline:hover { color: var(--clay); }

/* ---------- Reviews / testimonials ---------- */
.reviews-grid { display: grid; gap: var(--sp-4); }
.review { background: transparent; border: none; border-top: 1px solid var(--sand); border-radius: 0; padding: var(--sp-4) 0 0; }
.review .quote-mark { font-family: var(--font-brand); font-size: 2rem; line-height: .8; color: var(--clay); display: block; height: 1rem; }
.review blockquote { font-family: var(--font-body); font-size: 1.15rem; line-height: 1.6; color: var(--ink); font-weight: 400; }
.review .attrib { margin-top: var(--sp-3); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
.review .attrib::before { content: ""; display: inline-block; width: 18px; height: 1px; background: var(--clay); margin-right: .6em; vertical-align: middle; }
.placeholder-note { display: inline-block; margin-top: var(--sp-3); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-dk); border: 1px solid var(--clay); border-radius: 0; padding: .35em 1em; }

/* ---------- Social strip ---------- */
.social { background: var(--linen); border-top: var(--border); }
.social-inner { display: grid; gap: var(--sp-4); align-items: center; text-align: center; }
.social-inner .muted { margin-top: var(--sp-2); }
.social-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-2); }
.social-actions .btn { display: inline-flex; align-items: center; gap: .5em; }
.social-actions .btn--icon { width: 64px; height: 64px; }
.social-actions .btn--icon .social-ico { width: 30px; height: 30px; }
.social-ico { flex: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--sand); }
.faq details:first-child { border-top: 1px solid var(--sand); }
.faq summary { list-style: none; cursor: pointer; padding: var(--sp-4) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-weight: 300; font-size: 1.6rem; color: var(--clay-dk); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: var(--sp-4); color: var(--stone); max-width: 62ch; line-height: 1.8; }

/* ---------- CTA — request your table ---------- */
.cta2 { text-align: center; }
#cta2 .section-head h2 { white-space: normal; text-wrap: balance; }
/* Full-bleed band: the media sits outside .container, so it already spans
   the full section (viewport) width, edge to edge. */
.cta2-media { width: 100%; margin-block: var(--sp-5); }
.cta2-media .ph {
  aspect-ratio: 21 / 9;
  max-height: 640px;
  max-width: none;
  margin-inline: 0;
  border-radius: 0;
  box-shadow: none;
}
.cta2-actions { margin-top: var(--sp-5); }

/* ---------- Footer — light ---------- */
.site-footer { background: var(--linen); color: var(--stone); padding-block: var(--sp-6) var(--sp-4); border-top: 1px solid var(--sand); }
.footer-grid { display: grid; gap: var(--sp-5); }
.footer-brand .brand { color: var(--ink); }
.footer-brand p { margin-top: var(--sp-2); color: var(--stone); max-width: 34ch; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-weight: 600; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink); margin-bottom: var(--sp-3); }
.footer-col a { display: block; padding: .35em 0; font-size: .85rem; color: var(--stone); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--clay-dk); }
.footer-cta p { font-size: .85rem; line-height: 1.6; color: var(--stone); margin-bottom: var(--sp-3); max-width: 28ch; }
.footer-cta .btn { display: inline-flex; margin-top: 0; font-size: .6rem; padding: .9em 1.6em; }
.footer-social { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.footer-social .social-btn { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 0; border-radius: 0; border: 1px solid var(--sand); color: var(--ink); transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.footer-social .social-btn .social-ico { width: 24px; height: 24px; }
.footer-social .social-btn:hover { color: var(--ivory); background: var(--clay); border-color: var(--clay); }
.footer-email { display: flex; align-items: center; gap: .55em; font-size: .85rem; color: var(--stone); }
.footer-email:hover { color: var(--clay-dk); }
.footer-contact .social-ico { flex: none; }
.footer-bottom { margin-top: var(--sp-5); padding-top: var(--sp-3); border-top: 1px solid var(--sand); display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: space-between; font-size: .72rem; letter-spacing: .06em; color: var(--stone); }

/* ---------- Image slot / placeholder graphic ---------- */
.ph { position: relative; background: var(--sand-2); overflow: hidden; }
.ph svg { width: 100%; height: 100%; }
.ph picture { display: block; width: 100%; height: 100%; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-label { position: absolute; bottom: 10px; left: 10px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-dk); background: rgba(var(--linen-rgb),.75); border-radius: 0; padding: .25em .6em; }

/* ---------- Loading states ---------- */
/* Skeleton shimmer: a soft light sweep over the placeholder while an image
   or a video tile is still loading. Removed (via .is-loading) once ready. */
@keyframes lt-shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.ph.is-loading::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: lt-shimmer 1.5s ease-in-out infinite;
  pointer-events: none;
}

/* Pulsing dots: used for longer waits (reel popup + the quote form). */
@keyframes lt-dot { 0%, 80%, 100% { opacity: .25; transform: scale(.8); } 40% { opacity: 1; transform: scale(1); } }
.reel-modal__stage, .quote-modal__stage { position: relative; }
.lt-loader {
  position: absolute; inset: 0; z-index: 3;
  display: grid; place-items: center;
  pointer-events: none;
  opacity: 0; transition: opacity .2s var(--ease);
}
.lt-loader.is-active { opacity: 1; }
.lt-dots { display: inline-flex; gap: .45rem; }
.lt-dots i { width: .6rem; height: .6rem; border-radius: 50%; background: var(--clay); animation: lt-dot 1.2s infinite ease-in-out both; }
.lt-dots i:nth-child(2) { animation-delay: .18s; }
.lt-dots i:nth-child(3) { animation-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .ph.is-loading::after, .lt-dots i { animation: none; }
}

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: 50%; transform: translateX(-50%) translateY(-140%); top: 8px; z-index: 100; background: var(--ink); color: var(--ivory); padding: .6em 1.2em; border-radius: 0; transition: transform .2s var(--ease); }
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* =====================================================================
   Breakpoints
   ===================================================================== */
@media (min-width: 620px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-track .tile { width: 44vw; max-width: 360px; }
}

@media (min-width: 900px) {
  .gallery-track .tile { width: 30vw; max-width: 400px; }
}

@media (min-width: 900px) {
  .container { padding-inline: var(--sp-5); }
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .split.reverse .split-media { order: 2; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
  .est-grid { grid-template-columns: 1.1fr .9fr; gap: var(--sp-7); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .social-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--sp-5); }
}

@media (min-width: 1100px) {
  .hero-brand { letter-spacing: .12em; }
}

/* ---------- Reel popup (auto-triggered on upward scroll) ---------- */
.reel-modal {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-3);
  background: rgba(var(--scrim-rgb), .78);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.reel-modal.is-open { opacity: 1; visibility: visible; }
.reel-modal[hidden] { display: flex; }
.reel-modal__panel {
  position: relative;
  width: min(980px, 92vw);
  background: var(--ink);
  overflow: hidden;
  cursor: pointer;
  padding-bottom: var(--sp-6);
  transform: translateY(12px) scale(.97);
  transition: transform .35s var(--ease);
}
.reel-modal.is-open .reel-modal__panel { transform: translateY(0) scale(1); }
.reel-modal__stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.reel-modal__video {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 62vh;
  object-fit: cover;
  display: block;
  background: var(--ink);
}
.reel-modal__close {
  position: absolute; top: var(--sp-1); right: var(--sp-1); z-index: 2;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--scrim-rgb), .5);
  color: var(--ivory);
  border: none; border-radius: 0;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
}
.reel-modal__hint {
  position: absolute; left: 0; right: 0; bottom: var(--sp-2); z-index: 2;
  text-align: center;
  color: var(--ivory);
  font-size: .78rem; letter-spacing: .04em;
  text-shadow: 0 1px 6px rgba(var(--scrim-rgb), .6);
}
@media (prefers-reduced-motion: reduce) {
  .reel-modal, .reel-modal__panel { transition: none; }
}

/* ---------- Quote form popup (opened from any [data-quote] CTA) ---------- */
.quote-modal {
  position: fixed; inset: 0; z-index: 95;
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-3);
  background: rgba(var(--scrim-rgb), .78);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.quote-modal.is-open { opacity: 1; visibility: visible; }
.quote-modal[hidden] { display: flex; }
.quote-modal__panel {
  position: relative;
  width: min(640px, 94vw);
  max-height: 90vh;
  background: var(--ivory);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(.97);
  transition: transform .35s var(--ease);
}
.quote-modal.is-open .quote-modal__panel { transform: translateY(0) scale(1); }
.quote-modal__head {
  padding: var(--sp-4) var(--sp-5) var(--sp-2);
  text-align: center;
}
.quote-modal__head h3 {
  margin: 0 0 var(--sp-1);
  font-size: 1.3rem;
}
.quote-modal__head p {
  margin: 0;
  color: var(--stone);
  font-size: .9rem;
}
.quote-modal__stage {
  flex: 1;
  min-height: 0;
  padding: 0 var(--sp-3) var(--sp-3);
}
.quote-modal__iframe {
  width: 100%;
  height: 60vh;
  border: none;
  background: var(--ivory);
  display: block;
}
.quote-modal__close {
  position: absolute; top: var(--sp-1); right: var(--sp-1); z-index: 2;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--ink-rgb), .06);
  color: var(--ink);
  border: none; border-radius: 0;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .quote-modal, .quote-modal__panel { transition: none; }
}

/* ---------- Gallery photo lightbox ---------- */
.photo-modal {
  position: fixed; inset: 0; z-index: 92;
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-3);
  background: rgba(var(--scrim-rgb), .85);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.photo-modal.is-open { opacity: 1; visibility: visible; }
.photo-modal[hidden] { display: flex; }
.photo-modal__panel {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  transform: translateY(12px) scale(.97);
  transition: transform .35s var(--ease);
  line-height: 0;
}
.photo-modal.is-open .photo-modal__panel { transform: translateY(0) scale(1); }
.photo-modal__img,
.photo-modal__video {
  display: block;
  max-width: 92vw;
  max-height: 90vh;
  width: auto; height: auto;
  object-fit: contain;
  background: var(--ink);
}
.photo-modal__video { display: none; }
.photo-modal.is-video .photo-modal__img { display: none; }
.photo-modal.is-video .photo-modal__video { display: block; }
.photo-modal__close {
  position: absolute; top: var(--sp-1); right: var(--sp-1); z-index: 2;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--scrim-rgb), .5);
  color: var(--ivory);
  border: none; border-radius: 0;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
}
.photo-modal__ig {
  position: absolute; bottom: var(--sp-2); right: var(--sp-2); z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--scrim-rgb), .5);
  color: var(--ivory);
  opacity: .65;
  transition: opacity .25s var(--ease);
}
.photo-modal__ig:hover, .photo-modal__ig:focus { opacity: 1; }
.photo-modal__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--scrim-rgb), .5);
  color: var(--ivory);
  border: none; border-radius: 0;
  font-size: 2rem; line-height: 1;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.photo-modal__nav:hover, .photo-modal__nav:focus { background: rgba(var(--scrim-rgb), .8); }
.photo-modal__nav--prev { left: var(--sp-2); }
.photo-modal__nav--next { right: var(--sp-2); }
.photo-modal.is-video .photo-modal__nav { display: none; }
@media (prefers-reduced-motion: reduce) {
  .photo-modal, .photo-modal__panel { transition: none; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--clay);
  z-index: 9999;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}
