/* ==========================================================================
   Li & Lin Project Pty Ltd — design system
   Palette taken from the logo: gold monogram on deep navy.

   --gold       decorative only (icon fills, rules, glows). NOT enough
                contrast to be used for text on a light background.
   --gold-ink   the accessible gold-brown for gold-coloured TEXT and links
                on light backgrounds (5.4:1 on white).
   --gold-light for text and icons sitting ON navy.
   ========================================================================== */

:root {
  /* brand */
  --gold-light:  #F3DFA6;
  --gold:        #D4A64A;
  --gold-ink:    #8A6516;
  --navy-deep:   #071630;
  --navy:        #0B1F3F;
  --navy-soft:   #16305A;

  /* neutrals */
  --ink:         #101B2B;
  --body:        #4C5768;
  --muted:       #6C7789;
  --line:        rgba(11, 31, 63, .13);
  --line-strong: rgba(11, 31, 63, .22);
  --paper:       #FFFFFF;
  --shell:       #F7F5F0;
  --shell-2:     #EFEADF;

  /* type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --sans:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;

  /* effects */
  --shadow-sm: 0 1px 2px rgba(11, 31, 63, .06), 0 4px 12px rgba(11, 31, 63, .05);
  --shadow:    0 2px 4px rgba(11, 31, 63, .05), 0 12px 32px rgba(11, 31, 63, .09);
  --shadow-lg: 0 4px 8px rgba(11, 31, 63, .05), 0 28px 64px rgba(11, 31, 63, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.022em;
  margin: 0 0 .5em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); letter-spacing: -.014em; }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a  { color: var(--gold-ink); text-decoration: none; }

::selection { background: var(--gold-light); color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout primitives ---------- */

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 118px); }
.section--tight { padding-block: clamp(48px, 6vw, 76px); }
.section--shell { background: var(--shell); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.76); }
.section--navy h2, .section--navy h3 { color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 14px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- eyebrow / section heads ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .755rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.section--navy .eyebrow { color: var(--gold-light); }
.section--navy .eyebrow::before { background: var(--gold-light); }

.section-head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { font-size: 1.075rem; color: var(--muted); margin-bottom: 0; }
.section--navy .section-head p { color: rgba(255,255,255,.72); }

.lede { font-size: clamp(1.075rem, 1.7vw, 1.24rem); color: var(--body); line-height: 1.6; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: .955rem; font-weight: 700; letter-spacing: -.005em;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap; text-align: center;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(168,122,40,.34); }
.btn--primary:hover { background: var(--gold-light); color: var(--navy); box-shadow: 0 12px 28px rgba(168,122,40,.42); }

.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-soft); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-ink); background: rgba(196,148,51,.05); }

.btn--light { background: #fff; color: var(--gold-ink); }
.btn--light:hover { background: var(--shell-2); }

.btn--onnavy { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.btn--onnavy:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn--lg { padding: 18px 36px; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--gold-ink); font-size: .94rem;
}
.textlink svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(11,31,63,.06); }

.site-header .wrap {
  display: flex; align-items: center; gap: 28px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { width: 40px; height: 32px; object-fit: contain; object-position: left center; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display); font-weight: 800; font-size: 1.075rem;
  color: var(--ink); letter-spacing: -.028em;
}
.brand__tag {
  font-size: .585rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold-ink); margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .93rem; font-weight: 600; color: var(--body);
  padding: 9px 15px; border-radius: 9px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: rgba(11,31,63,.055); }
.nav a[aria-current="page"] { color: var(--gold-ink); }
.nav > .btn { display: none; }   /* quote button lives in .header-cta on desktop */

/* `.nav a` (0,1,1) outranks `.btn--primary` (0,1,0), which would leave the
   quote button in the open mobile menu as grey text on gold. Restore it. */
.nav > .btn--primary { color: var(--navy); }
.nav > .btn--primary:hover { color: var(--navy); background: var(--gold-light); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .93rem; color: var(--ink);
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold-ink); }
.header-phone:hover { color: var(--gold-ink); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: #fff; border-radius: 11px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .nav, .header-cta .btn, .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: inline-flex; }
  .header-phone svg { width: 20px; height: 20px; }

  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; padding: 18px var(--gutter) 30px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open a { padding: 15px 4px; font-size: 1.06rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav.is-open > .btn { display: inline-flex; margin-top: 18px; border-bottom: 0; padding: 16px 28px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { position: relative; padding-block: clamp(48px, 6.5vw, 92px) clamp(56px, 7vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 78% 8%, rgba(233,201,121,.16), transparent 62%),
    radial-gradient(700px 400px at 4% 82%, rgba(196,148,51,.11), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.hero__grid {
  display: grid; grid-template-columns: 1.02fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-ink); }
.hero__lede { font-size: clamp(1.075rem, 1.75vw, 1.26rem); color: var(--muted); max-width: 48ch; margin-bottom: 30px; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4/3.35; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; left: -22px; bottom: 30px;
  background: #fff; border-radius: var(--radius); padding: 16px 22px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line);
}
.hero__badge strong { font-family: var(--display); font-size: 1.7rem; color: var(--gold-ink); line-height: 1; }
.hero__badge span { font-size: .82rem; color: var(--muted); line-height: 1.35; font-weight: 600; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.hero__trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; font-weight: 600; color: var(--body);
}
.hero__trust svg { width: 17px; height: 17px; color: var(--gold-ink); flex: none; }

/* page hero (inner pages) */
.page-hero {
  position: relative; background: var(--navy); color: rgba(255,255,255,.74);
  padding-block: clamp(56px, 8vw, 104px);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 82% 0%, rgba(233,201,121,.22), transparent 62%),
    radial-gradient(600px 360px at 6% 100%, rgba(196,148,51,.2), transparent 60%);
}
.page-hero .wrap { position: relative; max-width: 900px; }
.page-hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 3.6rem); }
.page-hero p { font-size: clamp(1.04rem, 1.7vw, 1.2rem); max-width: 60ch; margin-bottom: 0; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }

.crumbs { display: flex; gap: 8px; font-size: .85rem; margin-bottom: 22px; color: rgba(255,255,255,.5); }
.crumbs a { color: rgba(255,255,255,.75); font-weight: 600; }
.crumbs a:hover { color: #fff; }

/* ==========================================================================
   Stat strip
   ========================================================================== */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
.stats > div { background: var(--paper); padding: 30px 24px; text-align: center; }
.stats strong { display: block; font-family: var(--display); font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; color: var(--gold-ink); line-height: 1; letter-spacing: -.03em; }
.stats span { display: block; margin-top: 9px; font-size: .845rem; font-weight: 600; color: var(--muted); letter-spacing: .01em; }
.section--shell .stats { background: var(--line-strong); }
.section--shell .stats > div { background: var(--shell); }

/* ==========================================================================
   Cards / grids
   ========================================================================== */

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__media { position: relative; overflow: hidden; background: var(--shell-2); }
.card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 9px; }
.card__body p { font-size: .945rem; color: var(--muted); margin-bottom: 18px; }
.card__body .textlink { margin-top: auto; }

.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--gold-light), var(--gold)); margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(196,148,51,.26);
}
.card-icon svg { width: 23px; height: 23px; color: var(--navy); }

/* feature list (why us) */
.feature { padding: 30px 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); }
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: .945rem; color: var(--muted); margin-bottom: 0; }
.section--navy .feature { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.11); }
.section--navy .feature p { color: rgba(255,255,255,.66); }
.section--navy .card-icon { box-shadow: none; }

/* ==========================================================================
   Split rows (services detail / about)
   ========================================================================== */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split + .split { margin-top: clamp(56px, 8vw, 104px); }
.split--flip .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__body h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }

.ticks { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: .955rem; color: var(--body); }
.ticks svg { width: 19px; height: 19px; color: var(--gold-ink); flex: none; margin-top: 2px; }
.section--navy .ticks li { color: rgba(255,255,255,.76); }
.section--navy .ticks svg { color: var(--gold-light); }

/* ==========================================================================
   Process
   ========================================================================== */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 34px); counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--display); font-size: 2.5rem; font-weight: 800;
  color: var(--gold); opacity: .34; line-height: 1;
  position: absolute; top: -6px; left: 0; letter-spacing: -.04em;
}
.step h3 { margin-bottom: 8px; padding-top: 14px; border-top: 2px solid var(--line-strong); }
.step p { font-size: .93rem; color: var(--muted); margin-bottom: 0; }
.section--navy .step::before { color: var(--gold-light); opacity: .38; }
.section--navy .step h3 { border-top-color: rgba(255,255,255,.2); }
.section--navy .step p { color: rgba(255,255,255,.66); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.quote__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.quote__stars svg { width: 17px; height: 17px; color: var(--gold); }
.quote p { font-size: 1.015rem; color: var(--ink); line-height: 1.6; margin-bottom: 20px; }
.quote footer { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-soft), var(--navy));
  color: var(--gold-light); font-weight: 800; font-size: .93rem; font-family: var(--display);
}
.quote__who { line-height: 1.3; }
.quote__who strong { display: block; font-size: .93rem; color: var(--ink); font-weight: 700; }
.quote__who span { font-size: .83rem; color: var(--muted); }

/* ==========================================================================
   Gallery
   ========================================================================== */

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.filter {
  font-family: var(--sans); font-size: .89rem; font-weight: 700; color: var(--body);
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 999px;
  padding: 10px 20px; cursor: pointer; transition: all .25s var(--ease);
}
.filter:hover { border-color: var(--gold); color: var(--gold-ink); }
.filter[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: zoom-in;
  border: 0; padding: 0; background: var(--shell-2); display: block; width: 100%;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.shot img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s var(--ease); }
.shot:hover img { transform: scale(1.05); }
.shot__label {
  position: absolute; inset: auto 0 0 0; padding: 34px 18px 16px; text-align: left;
  background: linear-gradient(transparent, rgba(11,31,63,.82));
  color: #fff; font-size: .89rem; font-weight: 700; font-family: var(--sans);
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease);
}
.shot:hover .shot__label, .shot:focus-visible .shot__label { opacity: 1; transform: none; }
.shot[hidden] { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120; display: none;
  background: rgba(6,16,33,.93); padding: 4vh 4vw;
  align-items: center; justify-content: center;
}
.lightbox[open] { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 18px; right: 20px; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1);
  color: #fff; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }

/* before / after */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ba { position: relative; border-radius: var(--radius); overflow: hidden; }
.ba img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.ba__tag {
  position: absolute; top: 14px; left: 14px; padding: 7px 16px; border-radius: 999px;
  font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.ba--before .ba__tag { background: rgba(11,31,63,.86); }
.ba--after  .ba__tag { background: var(--gold); color: var(--navy); }

/* ==========================================================================
   Areas
   ========================================================================== */

.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-size: .91rem; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.85);
}
.areas svg { width: 14px; height: 14px; color: var(--gold-light); flex: none; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band { position: relative; overflow: hidden; background: linear-gradient(128deg, var(--navy-deep), var(--navy) 46%, var(--navy-soft)); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 88% 12%, rgba(233,201,121,.3), transparent 62%);
}
.cta-band .wrap { position: relative; display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; padding-block: clamp(52px, 7vw, 86px); }
.cta-band h2 { color: #fff; max-width: 16ch; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 46ch; margin-bottom: 0; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 5vw, 66px); align-items: start; }

.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--paper);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
a.contact-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card__icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
}
.contact-card__icon svg { width: 21px; height: 21px; color: var(--navy); }
.contact-card h3 { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; font-family: var(--sans); font-weight: 700; }
.contact-card strong { display: block; font-size: 1.115rem; color: var(--ink); font-weight: 700; letter-spacing: -.015em; line-height: 1.35; word-break: break-word; }
.contact-card small { display: block; margin-top: 4px; font-size: .87rem; color: var(--muted); }

/* form */
.form-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.6vw, 42px); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .855rem; font-weight: 700; color: var(--ink); letter-spacing: -.005em; }
.field label .req { color: var(--gold-ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .97rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: 11px;
  background: var(--paper); width: 100%; transition: border-color .22s, box-shadow .22s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7C89' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px; cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(212,166,74,.4);
}
.field input::placeholder, .field textarea::placeholder { color: #A3B1BC; }
.form-note { font-size: .845rem; color: var(--muted); margin: 16px 0 0; }
.form-status {
  margin-top: 16px; padding: 14px 18px; border-radius: 11px; font-size: .91rem; font-weight: 600;
  background: rgba(196,148,51,.09); color: var(--gold-ink); border: 1px solid rgba(196,148,51,.24);
}
.form-status[hidden] { display: none; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { display: grid; gap: 10px; max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  transition: border-color .25s, box-shadow .25s;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 21px 56px 21px 24px; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 1.055rem; color: var(--ink); letter-spacing: -.014em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--gold-ink); border-bottom: 2.5px solid var(--gold-ink);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq .faq__a { padding: 0 24px 23px; font-size: .96rem; color: var(--muted); }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy); color: rgba(255,255,255,.62); padding-block: clamp(52px, 6vw, 76px) 32px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.35fr; gap: clamp(28px, 4vw, 52px); }
.site-footer h4 {
  color: #fff; font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,.66); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 46px; height: 36px; object-fit: contain; object-position: left center; }
.footer-brand .brand__name { color: #fff; font-size: 1.15rem; }
.footer-brand .brand__tag { color: var(--gold-light); }
.footer-about p { color: rgba(255,255,255,.6); max-width: 34ch; font-size: .93rem; }

.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-light); flex: none; margin-top: 4px; }
.footer-contact strong { color: #fff; font-weight: 700; display: block; }

.footer-bottom {
  margin-top: clamp(38px, 5vw, 56px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: .855rem; color: rgba(255,255,255,.46);
}
.footer-bottom a { color: rgba(255,255,255,.6); }

.socials { display: flex; gap: 9px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13);
  transition: background .25s, transform .25s var(--ease), border-color .25s;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; color: #fff; }
.socials a:hover svg { color: var(--navy); }

/* sticky mobile call bar */
.callbar { display: none; }
@media (max-width: 700px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; inset: auto 0 0 0; z-index: 95;
    padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(11,31,63,.07);
  }
  .callbar .btn { padding: 13px 16px; font-size: .9rem; width: 100%; }
  body { padding-bottom: 74px; }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16/11; }
  .hero__badge { left: 14px; bottom: 14px; padding: 13px 18px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .split--flip .split__media { grid-template-columns: 1fr; order: 0; }
  .split__media { order: -1 !important; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16.5px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .beforeafter { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .hero__badge { position: static; margin-top: 14px; }
}
