/* =============================================================
   LALO'S HOME IMPROVEMENTS — styles.css
   Archetype: Editorial Light Cream (adapted to brand navy + copper)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f5efe4;
  --bg-2:      #ebe2d2;
  --bg-3:      #e0d5c1;
  --paper:     #fffdf9;
  --ink:       #142a42;
  --ink-soft:  #24425f;
  --ink-mute:  #6c7c8c;
  --accent:    #c05f2b;
  --accent-dk: #9c4a1e;
  --accent-sf: #e08a52;
  --navy:      #142a42;
  --line:      rgba(20, 42, 66, 0.14);
  --line-2:    rgba(20, 42, 66, 0.08);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter: clamp(1.15rem, 4vw, 3.5rem);
  --maxw: 1280px;
  --nav-h: 76px;
  --radius: 18px;
}

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: .45s var(--ease-out) both vtOut; }
::view-transition-new(root) { animation: .45s var(--ease-out) both vtIn; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(14px); } }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.04; letter-spacing: -0.015em; color: var(--ink); font-family: var(--serif); font-weight: 700; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -120px; left: 1rem; z-index: 9999;
  padding: .65rem 1.1rem; background: var(--navy); color: #fff;
  border-radius: 10px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

[hidden] { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.6rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.section--paper { background: var(--paper); }
.section--sand { background: var(--bg-2); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.82); }
.section--navy h2, .section--navy h3 { color: #fff; }

.kicker {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: block; }
.section--navy .kicker { color: var(--accent-sf); }
.section--navy .kicker::before { background: var(--accent-sf); }

.h-xl { font-size: clamp(2.1rem, 5.4vw, 3.9rem); }
.h-lg { font-size: clamp(1.75rem, 4vw, 2.9rem); }
.h-md { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-mute); max-width: 62ch; }
.section--navy .lead { color: rgba(255,255,255,.7); }
em { font-style: italic; color: var(--accent); font-variation-settings: "SOFT" 60; }

.mt-s { margin-top: .8rem; } .mt-m { margin-top: 1.5rem; } .mt-l { margin-top: 2.6rem; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .4s var(--ease-out), background-color .3s var(--ease-out),
              color .3s var(--ease-out), box-shadow .4s var(--ease-out);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px -12px rgba(192,95,43,.9); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(192,95,43,.95); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0d1e31; transform: translateY(-3px); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.section--navy .btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.section--navy .btn-ghost:hover { border-color: #fff; }
.btn-sm { padding: .65rem 1.15rem; font-size: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--accent); font-size: .92rem;
}
.link-arrow span { transition: transform .4s var(--ease-out); display: block; }
.link-arrow:hover span { transform: translateX(5px); }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(245,239,228,.93);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line-2);
  box-shadow: 0 10px 34px -28px rgba(20,42,66,.9);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none;
  background: var(--paper); border: 1px solid var(--line);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.07); }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 1.02rem; color: var(--ink); letter-spacing: -.01em; }
.brand-sub { font-size: .6rem; letter-spacing: .17em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-top: .28rem; }

.nav-links { display: none; align-items: center; gap: 1.15rem; }
.nav-links a { font-size: .87rem; font-weight: 500; color: var(--ink-soft); position: relative; padding-block: .35rem; white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: .55rem; }
.lang-toggle {
  display: flex; align-items: center; border: 1px solid var(--line); border-radius: 100px;
  overflow: hidden; background: rgba(255,255,255,.5);
}
.lang-toggle button {
  padding: .38rem .68rem; font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  color: var(--ink-mute); transition: background-color .3s var(--ease-out), color .3s var(--ease-out);
}
.lang-toggle button.is-active { background: var(--navy); color: #fff; }
.nav-cta { display: none; }

.nav-burger { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); }
.nav-burger span { display: block; width: 17px; height: 1.6px; background: var(--ink); transition: transform .4s var(--ease-out), opacity .3s; }
.nav-burger span + span { margin-top: 4.5px; }
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(6.1px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-6.1px) rotate(-45deg); }

.nav-panel {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 1.2rem var(--gutter) 1.8rem;
  display: grid; gap: .2rem;
  clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
  transition: clip-path .55s var(--ease-out), opacity .3s var(--ease-out);
}
.nav.is-open .nav-panel { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
.nav-panel a {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--ink);
  padding-block: .55rem; border-bottom: 1px solid var(--line-2);
}
.nav-panel .btn { margin-top: 1.1rem; }

@media (min-width: 1180px) {
  .nav-links { display: flex; }
  .nav-burger, .nav-panel { display: none; }
  .nav-cta { display: inline-flex; }
}
@media (min-width: 1400px) { .nav-links { gap: 1.5rem; } .nav-links a { font-size: .92rem; } }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.03); }
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,42,66,.62) 0%, rgba(20,42,66,.22) 34%, rgba(20,42,66,.55) 66%, rgba(20,42,66,.9) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(20,42,66,.7) 0%, transparent 65%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .18; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 3; width: 100%; padding-block: clamp(2.5rem, 7vw, 5rem); }
.hero .kicker { color: #f3c9a8; }
.hero .kicker::before { background: #f3c9a8; }
.hero-title {
  color: #fff; font-size: clamp(2.5rem, 7.2vw, 5.6rem); line-height: .99;
  max-width: 15ch; margin-top: 1.1rem;
  text-shadow: 0 4px 34px rgba(9,20,33,.5);
}
.hero-title em { color: #f0a56a; }
.hero-sub {
  color: rgba(255,255,255,.86); font-size: clamp(1rem, 1.6vw, 1.16rem);
  max-width: 46ch; margin-top: 1.35rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.hero-actions .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.hero-actions .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.6rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.2);
}
.hero-badge { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.9); font-size: .84rem; font-weight: 500; }
.hero-badge svg { width: 17px; height: 17px; color: #f0a56a; flex: none; }

.scroll-hint {
  position: absolute; bottom: 1.4rem; right: var(--gutter); z-index: 3;
  display: none; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.6); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-hint i { display: block; width: 1px; height: 42px; background: linear-gradient(180deg, rgba(255,255,255,.6), transparent); }
@media (min-width: 960px) { .scroll-hint { display: flex; } }

/* =============================================================
   6b. Hero — luxury variant
   ============================================================= */
.hero--lux { align-items: center; }
.hero--lux .hero-inner { padding-block: clamp(4rem, 12vw, 8rem) clamp(3rem, 8vw, 5rem); }
.hero--lux .hero-media img { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1) translate3d(0,0,0); }
  to   { transform: scale(1.09) translate3d(0,-1.5%,0); }
}
.hero-rule {
  display: flex; align-items: center; gap: 1rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.hero-rule::before, .hero-rule::after { content: ""; height: 1px; background: rgba(240,165,106,.55); flex: 1; max-width: 74px; }
.hero-rule::after { max-width: none; }
.hero--lux .hero-title {
  font-size: clamp(2.35rem, 6.1vw, 5.1rem);
  line-height: 1.02; max-width: 19ch; letter-spacing: -.022em;
  margin-top: 1.4rem;
}
.hero--lux .hero-sub { max-width: 56ch; font-size: clamp(1.02rem, 1.55vw, 1.22rem); }
.hero-eyebrow-lux {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  color: #f0a56a; font-size: clamp(1rem, 1.8vw, 1.3rem); margin-top: .9rem;
}

/* Trust bar under the hero */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line-2); }
.trustbar-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.trust {
  display: flex; align-items: center; gap: .8rem;
  padding: 1.15rem clamp(.6rem, 2vw, 1.4rem);
  border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.trust:nth-child(2n) { border-right: 0; }
.trust svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.trust b { display: block; font-family: var(--serif); font-size: .98rem; color: var(--ink); line-height: 1.15; }
.trust span { font-size: .78rem; color: var(--ink-mute); }
@media (min-width: 960px) {
  .trustbar-grid { grid-template-columns: repeat(4, 1fr); }
  .trust { border-bottom: 0; }
  .trust:nth-child(2n) { border-right: 1px solid var(--line-2); }
  .trust:last-child { border-right: 0; }
}

/* =============================================================
   6c. Service index — large editorial rows
   ============================================================= */
.svc-list { border-top: 1px solid var(--line); margin-top: 2.8rem; }
.svc-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem 1.2rem; align-items: center;
  padding: clamp(1.3rem, 3vw, 2.1rem) 0; border-bottom: 1px solid var(--line);
  position: relative; transition: padding-inline .5s var(--ease-out);
}
.svc-row-num {
  font-family: var(--serif); font-size: .82rem; font-weight: 700; color: var(--accent);
  letter-spacing: .1em; align-self: start; padding-top: .45rem;
}
.svc-row-main { min-width: 0; }
.svc-row h3 {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); letter-spacing: -.02em;
  transition: color .4s var(--ease-out);
}
.svc-row p { font-size: .95rem; color: var(--ink-mute); margin-top: .45rem; max-width: 58ch; }
.svc-row-go {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); flex: none;
  transition: background-color .4s var(--ease-out), color .4s var(--ease-out),
              border-color .4s var(--ease-out), transform .4s var(--ease-out);
}
.svc-row:hover h3 { color: var(--accent); }
.svc-row:hover .svc-row-go { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateX(4px); }
.svc-row-thumb { display: none; }
@media (min-width: 1100px) {
  .svc-row-thumb {
    display: block; position: absolute; right: 6.5rem; top: 50%; z-index: 3;
    width: 260px; height: 175px; border-radius: 12px; overflow: hidden;
    transform: translate(14px, -50%) scale(.94); opacity: 0; pointer-events: none;
    box-shadow: 0 30px 60px -30px rgba(20,42,66,.65);
    transition: opacity .45s var(--ease-out), transform .55s var(--ease-out);
  }
  .svc-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .svc-row:hover .svc-row-thumb { opacity: 1; transform: translate(0, -50%) scale(1); }
  .svc-row:hover { padding-inline: 1.2rem 0; }
}

/* =============================================================
   6d. Full-bleed image band
   ============================================================= */
.band { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; }
.band-media { position: absolute; inset: -10% 0; z-index: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(20,42,66,.9) 0%, rgba(20,42,66,.66) 48%, rgba(20,42,66,.28) 100%);
}
.band .wrap { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 5.5rem); }
.band blockquote {
  font-family: var(--serif); font-style: italic; color: #fff;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.22; max-width: 20ch;
}
.band p { color: rgba(255,255,255,.72); margin-top: 1.2rem; max-width: 44ch; }

/* =============================================================
   6e. Featured project split
   ============================================================= */
.feature { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
.feature-media { border-radius: var(--radius); overflow: hidden; position: relative; }
.feature-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.feature-stack { display: grid; gap: 1rem; }
.feature-stack img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; }
@media (min-width: 960px) {
  .feature { grid-template-columns: 1.25fr .75fr; align-items: center; }
  .feature-media img { aspect-ratio: 4 / 3; }
}

/* =============================================================
   7. Marquee
   ============================================================= */
.marquee {
  background: var(--navy); color: rgba(255,255,255,.9);
  padding-block: .95rem; overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(255,255,255,.08);
}
.marquee-track { display: inline-flex; gap: 0; animation: marquee 46s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem;
  font-family: var(--serif); font-size: .98rem; font-weight: 600; letter-spacing: .02em;
}
.marquee-item > span::before { content: "◆"; color: var(--accent-sf); font-size: .52rem; display: block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   8. Editorial intro + pillars
   ============================================================= */
.intro-grid { display: grid; gap: clamp(2rem, 5vw, 3.6rem); }
.intro-fig { position: relative; border-radius: var(--radius); overflow: hidden; }
.intro-fig img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.intro-fig figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.3rem .95rem;
  background: linear-gradient(180deg, transparent, rgba(20,42,66,.88));
  color: rgba(255,255,255,.9); font-size: .8rem; font-style: italic;
}
.pillars { display: grid; gap: 1.6rem; margin-top: 2.6rem; }
.pillar { border-top: 2px solid var(--ink); padding-top: 1rem; }
.pillar-num {
  font-family: var(--serif); font-size: .8rem; font-weight: 700; color: var(--accent);
  letter-spacing: .1em;
}
.pillar h3 { font-size: 1.12rem; margin-top: .35rem; }
.pillar p { font-size: .93rem; color: var(--ink-mute); margin-top: .5rem; }

@media (min-width: 960px) {
  .intro-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   9. Services bento
   ============================================================= */
.bento { display: grid; gap: 1.1rem; margin-top: 2.8rem; }
.svc {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line-2);
  display: flex; flex-direction: column; min-height: 320px;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
  transform-style: preserve-3d;
}
.svc:hover { border-color: rgba(192,95,43,.35); box-shadow: 0 30px 60px -34px rgba(20,42,66,.55); }
.svc-media { position: relative; overflow: hidden; flex: 1 1 auto; min-height: 190px; background: var(--bg-2); }
.svc-media img, .svc-media svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-media img { transition: transform 1s var(--ease-out), filter .6s var(--ease-out); }
.svc:hover .svc-media img { transform: scale(1.07); filter: saturate(1.14) brightness(1.04); }
.svc-body { padding: 1.3rem 1.35rem 1.5rem; }
.svc-body h3 { font-size: 1.3rem; }
.svc-body p { font-size: .92rem; color: var(--ink-mute); margin-top: .5rem; }
.svc-body .link-arrow { margin-top: 1rem; }
.svc-tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: rgba(255,253,249,.94); color: var(--navy);
  font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 100px;
}
@media (min-width: 720px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(0, auto); }
  .svc--wide { grid-column: span 2; }
  .svc--wide .svc-media { min-height: 260px; }
}

/* =============================================================
   10. Process
   ============================================================= */
.process-grid { display: grid; gap: clamp(2rem, 5vw, 3.4rem); align-items: center; }
.process-fig { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.process-fig img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.steps { display: grid; gap: 1.35rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.05rem; align-items: start; }
.step-dot {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: .95rem;
}
.section--navy .step-dot { background: var(--accent); }
.step h3 { font-size: 1.08rem; }
.step p { font-size: .92rem; color: var(--ink-mute); margin-top: .3rem; }
.section--navy .step p { color: rgba(255,255,255,.68); }
@media (min-width: 960px) { .process-grid { grid-template-columns: .95fr 1.05fr; } }

/* =============================================================
   11. Gallery
   ============================================================= */
.gal { display: grid; gap: .85rem; margin-top: 2.6rem; }
.gal-item {
  position: relative; overflow: hidden; border-radius: 14px; background: var(--bg-3);
  cursor: zoom-in; border: 0; padding: 0; width: 100%;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 1s var(--ease-out), filter .5s; }
.gal-item:hover img { transform: scale(1.06); filter: saturate(1.15); }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,42,66,.55));
  opacity: 0; transition: opacity .45s var(--ease-out);
}
.gal-item:hover::after { opacity: 1; }
.gal-cap {
  position: absolute; left: .9rem; bottom: .8rem; z-index: 2; color: #fff;
  font-size: .8rem; font-weight: 600; opacity: 0; transform: translateY(8px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
@media (min-width: 720px) { .gal { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) {
  .gal { grid-template-columns: repeat(4, 1fr); }
  .gal-item--tall { grid-row: span 2; }
  .gal-item--tall img { aspect-ratio: 4 / 6.2; }
  .gal-item--wide { grid-column: span 2; }
  .gal-item--wide img { aspect-ratio: 8 / 3; }
}

/* ----- Video grid ----- */
.video-grid { display: grid; gap: 1.1rem; margin-top: 2.6rem; }
.video-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--navy); border: 1px solid var(--line-2);
}
.video-card video {
  width: 100%; height: 100%; display: block;
  aspect-ratio: 16 / 9; object-fit: cover; background: #0b1623;
}
.video-card--vertical video { aspect-ratio: 9 / 16; }
.video-cap {
  padding: .95rem 1.15rem 1.15rem; color: rgba(255,255,255,.86);
  font-size: .88rem; font-weight: 500;
}
.video-cap strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: #fff; margin-bottom: .25rem; }
@media (min-width: 720px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .video-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1100px, 94vw); width: 100%; }
.lightbox::backdrop { background: rgba(11,22,35,.9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; height: auto; max-height: 82vh; object-fit: contain; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: -3rem; right: 0; color: #fff; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; gap: .5rem;
}
.lightbox-inner { position: relative; }

/* =============================================================
   12. Stats + testimonial
   ============================================================= */
.stats { display: grid; gap: 1.8rem; }
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-lb { font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.62); margin-top: .45rem; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.quote { max-width: 60ch; }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.35rem, 2.7vw, 1.95rem); font-style: italic; color: #fff; line-height: 1.3; }
.quote cite { display: block; font-style: normal; font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 1.1rem; }
.stars { display: flex; gap: .18rem; color: #f0a56a; margin-bottom: 1rem; }
.stars svg { width: 17px; height: 17px; }

/* =============================================================
   12b. Reviews carousel
   ============================================================= */
.revs {
  display: flex; gap: 1.1rem; margin-top: 2.6rem;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding-block: .4rem 2rem;
  padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.revs::-webkit-scrollbar { height: 6px; }
.revs::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }
.revs::-webkit-scrollbar-track { background: var(--line-2); border-radius: 10px; }

.rev {
  scroll-snap-align: start; flex: 0 0 min(88vw, 380px);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem; display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s;
}
.rev:hover { transform: translateY(-4px); border-color: rgba(192,95,43,.35); box-shadow: 0 26px 50px -32px rgba(20,42,66,.55); }
.rev .stars { margin-bottom: .9rem; color: var(--accent); }
.rev-text {
  font-size: .95rem; line-height: 1.62; color: var(--ink-soft); flex: 1 1 auto;
}
.rev-text::before { content: "\201C"; font-family: var(--serif); font-size: 2.4rem; line-height: 0; color: var(--accent); opacity: .35; margin-right: .15rem; vertical-align: -.35rem; }
.rev-foot { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line-2); }
.rev-av {
  width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: .92rem;
}
.rev-who { min-width: 0; }
.rev-name { font-family: var(--serif); font-weight: 700; font-size: .98rem; color: var(--ink); line-height: 1.2; }
.rev-meta { font-size: .74rem; color: var(--ink-mute); margin-top: .18rem; }
.rev-tag {
  display: inline-block; margin-top: .9rem; align-self: flex-start;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); background: rgba(192,95,43,.1); border-radius: 100px; padding: .3rem .7rem;
}
.revs-hint {
  display: flex; align-items: center; gap: .5rem; margin-top: .4rem;
  font-size: .78rem; color: var(--ink-mute);
}
.revs-hint svg { width: 15px; height: 15px; }
@media (min-width: 720px) { .rev { flex-basis: 400px; } }

/* Experience band */
.exp-grid { display: grid; gap: clamp(2rem, 5vw, 3.4rem); align-items: center; }
.exp-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: clamp(140px, 26vw, 190px); aspect-ratio: 1; border-radius: 50%;
  border: 2px solid var(--accent); color: var(--accent); text-align: center; flex: none;
}
.exp-badge b { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; line-height: 1; }
.exp-badge span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-top: .45rem; }
@media (min-width: 960px) { .exp-grid { grid-template-columns: auto 1fr; gap: 3.4rem; } }

/* =============================================================
   13. Service area
   ============================================================= */
.area-grid { display: grid; gap: clamp(2rem, 5vw, 3.2rem); align-items: center; }
.city-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.city {
  border: 1px solid var(--line); border-radius: 100px; padding: .48rem .95rem;
  font-size: .85rem; font-weight: 500; color: var(--ink-soft); background: var(--paper);
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-out), color .3s;
}
.city:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.area-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
@media (min-width: 960px) { .area-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   14. Form
   ============================================================= */
.cta-grid { display: grid; gap: clamp(2.2rem, 5vw, 3.6rem); }
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; width: 100%;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,95,43,.14);
}
.field textarea { min-height: 118px; resize: vertical; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 720px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; }
.form-note { font-size: .78rem; color: var(--ink-mute); }
.form-ok, .form-err {
  display: none; align-items: flex-start; gap: .6rem; font-size: .9rem; font-weight: 600;
  padding: .85rem 1rem; border-radius: 12px; line-height: 1.45;
}
.form-ok  { color: #2f7a4d; background: rgba(47,122,77,.1); border: 1px solid rgba(47,122,77,.28); }
.form-err { color: #9c3226; background: rgba(156,50,38,.09); border: 1px solid rgba(156,50,38,.28); }
.form-ok svg, .form-err svg { flex: none; margin-top: .12rem; }
.form.is-sent .form-ok { display: flex; }
.form.is-error .form-err { display: flex; }
.form.is-sending button[type="submit"] { opacity: .65; cursor: progress; }
.form button[type="submit"]:disabled { opacity: .65; cursor: not-allowed; }

/* Honeypot — off-screen for humans, irresistible to bots */
.hp {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.1rem); }
.contact-row { display: flex; align-items: flex-start; gap: .9rem; padding-block: .95rem; border-bottom: 1px solid var(--line-2); }
.contact-row:last-child { border-bottom: 0; }
.contact-ico { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-2); display: grid; place-items: center; flex: none; color: var(--accent); }
.contact-ico svg { width: 17px; height: 17px; }
.contact-row dt { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
.contact-row dd { font-size: 1.02rem; font-weight: 600; color: var(--ink); margin-top: .16rem; }
.contact-row a:hover { color: var(--accent); }
@media (min-width: 960px) { .cta-grid { grid-template-columns: 1.05fr .95fr; } }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.62); padding-block: clamp(2.8rem, 6vw, 4.4rem) 2rem; }
.footer-grid { display: grid; gap: 2.2rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .74rem; letter-spacing: .17em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer a:hover { color: #fff; }
.footer-links { display: grid; gap: .55rem; font-size: .9rem; }
.footer .brand-name { color: #fff; }
.footer .brand-mark { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.footer-about { font-size: .9rem; max-width: 34ch; margin-top: 1.1rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.3rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); transition: background-color .35s var(--ease-out), transform .35s var(--ease-out);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 2.8rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between;
  font-size: .78rem; color: rgba(255,255,255,.45);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }

/* Sticky mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .5s var(--ease-out);
}
.callbar.is-in { transform: none; }
.callbar a { padding: .95rem; text-align: center; font-weight: 700; font-size: .92rem; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.callbar svg { width: 17px; height: 17px; }
.callbar .cb-call { background: var(--navy); color: #fff; }
.callbar .cb-wa { background: var(--accent); color: #fff; }
@media (min-width: 960px) { .callbar { display: none; } }
@media (max-width: 959px) { body { padding-bottom: 54px; } }

/* =============================================================
   16. Sub-page components
   ============================================================= */
.page-hero {
  position: relative; padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5.5rem));
  padding-bottom: clamp(2.6rem, 6vw, 4.5rem); overflow: hidden;
  background: var(--bg-2); border-bottom: 1px solid var(--line-2);
}
.page-hero--photo { background: var(--navy); }
.page-hero--photo .page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero--photo .page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero--photo .wrap { position: relative; z-index: 2; }
.page-hero--photo h1, .page-hero--photo .lead { color: #fff; }
.page-hero--photo .lead { color: rgba(255,255,255,.78); }
.crumbs { display: flex; gap: .5rem; font-size: .78rem; color: var(--ink-mute); margin-bottom: 1.2rem; }
.page-hero--photo .crumbs { color: rgba(255,255,255,.6); }
.crumbs a:hover { color: var(--accent); }

.split { display: grid; gap: clamp(2rem, 5vw, 3.4rem); align-items: start; }
@media (min-width: 960px) { .split { grid-template-columns: 1.05fr .95fr; } .split--rev > :first-child { order: 2; } }
.prose p { margin-top: 1rem; color: var(--ink-mute); font-size: 1rem; }
.prose h3 { margin-top: 2rem; font-size: 1.3rem; }
.checks { display: grid; gap: .7rem; margin-top: 1.4rem; }
.check { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .95rem; }
.check svg { width: 19px; height: 19px; color: var(--accent); margin-top: .16rem; flex: none; }

.spec-grid { display: grid; gap: 1rem; margin-top: 2.4rem; }
.spec { background: var(--paper); border: 1px solid var(--line-2); border-radius: 14px; padding: 1.3rem; }
.spec h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.spec p { font-size: .89rem; color: var(--ink-mute); margin-top: .4rem; }
@media (min-width: 720px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }

.faq { border-top: 1px solid var(--line); margin-top: 2.4rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.4rem 1.15rem 0; position: relative;
  font-family: var(--serif); font-size: 1.06rem; font-weight: 700; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 400; font-size: 1.5rem; color: var(--accent);
  transition: transform .4s var(--ease-out);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding-bottom: 1.2rem; color: var(--ink-mute); font-size: .95rem; max-width: 70ch; }

.related { display: grid; gap: 1rem; margin-top: 2.4rem; }
.rel-card {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem;
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 14px;
  transition: transform .45s var(--ease-out), border-color .35s;
}
.rel-card:hover { transform: translateY(-3px); border-color: rgba(192,95,43,.4); }
.rel-card h4 { font-family: var(--serif); font-size: 1.02rem; color: var(--ink); }
.rel-card span { color: var(--accent); font-size: 1.1rem; margin-left: auto; }
@media (min-width: 720px) { .related { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   17. Reveal effects
   ============================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }   /* defensive — gotcha A.4.5 */
.reveal-d1 { transition-delay: .09s; } .reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; } .reveal-d4 { transition-delay: .36s; }
/* Without JS the .js class is never set → everything stays visible */
html:not(.js) .reveal { opacity: 1; transform: none; transition: none; }

/* Language swap flash */
.lang-swap { animation: langSwap .42s var(--ease-out) both; }
@keyframes langSwap {
  0%   { opacity: .15; filter: blur(3px); transform: translateY(4px); }
  100% { opacity: 1; filter: none; transform: none; }
}

/* Illustration SVG defaults */
.illus { background: var(--bg-2); }
.illus .ln { stroke: var(--navy); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.illus .ln-a { stroke: var(--accent); }
.illus .fl { fill: var(--accent); opacity: .16; }
.illus .fl-n { fill: var(--navy); opacity: .09; }
.illus .sky { fill: var(--bg-3); }

/* =============================================================
   18. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 100s; }
  .hero-media { inset: 0; }
}
