/* ==========================================================================
   Avelon Swatches - global stylesheet
   Palette: black leather + cognac hide + gold thread (drawn from the AS mark).
   Radius: sm (6px).
   ========================================================================== */

:root {
  /* Brand palette - pulled straight from the logo */
  --ink-950:   #0a0a0b;   /* deepest black leather */
  --ink-900:   #141416;
  --ink-800:   #1f1f22;
  --ink-700:   #2c2c30;

  --cognac-700: #7a3411;  /* saddle hide, shadow side */
  --cognac-600: #99451a;
  --cognac-500: #b4531f;  /* primary - the leather in the mark */
  --cognac-400: #c9682f;

  --gold-600:  #b8893a;   /* gold thread, deep */
  --gold-500:  #d9ae55;
  --gold-400:  #e7c169;   /* accent - the stitch highlight */
  --gold-300:  #f5dc96;

  --stone-500: #6e6459;
  --stone-400: #948a7c;
  --stone-300: #c2b8ab;
  --stone-100: #ebe5db;
  --paper:     #faf7f2;
  --white:     #ffffff;
  --cream:     #f8f3e9;   /* logo lettering on dark */

  --ink:       #17140f;
  --ink-soft:  #4a423a;

  /* Radius - client asked for small (sm) rounded edges */
  --r: 6px;
  --r-lg: 10px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(26, 18, 10, .08);
  --shadow-md: 0 10px 30px rgba(26, 18, 10, .13);
  --shadow-lg: 0 24px 60px rgba(26, 18, 10, .24);
  --shadow-accent: 0 10px 30px rgba(180, 83, 31, .35);

  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }

/* ---------- utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cognac-400);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-400); display: inline-block; border-radius: 2px; }
.eyebrow.center::before { display: none; }
/* on dark bands the eyebrow needs the gold, not the cognac */
.hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow, .stats-band .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before, .page-hero .eyebrow::before, .cta-band .eyebrow::before { background: var(--cognac-400); }

.text-accent { color: var(--gold-400); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); }
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-680 { max-width: 680px; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--cognac-500);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: var(--r); border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-accent); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }
.btn--accent { --btn-bg: var(--gold-400); box-shadow: 0 8px 22px rgba(231,193,105,.38); color: var(--ink); }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.btn--dark { --btn-bg: var(--ink-800); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--cognac-500); border-color: var(--stone-300); }
.btn--outline:hover { border-color: var(--cognac-500); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* shine sweep on hover */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn:hover::after { left: 140%; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: var(--shadow-sm); padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--cream); letter-spacing: .12em; text-transform: uppercase; line-height: 1.05; }
.site-header.scrolled .brand { color: var(--ink); }
.brand .brand-mark { width: 44px; height: 44px; flex: none; position: relative; display: block; }
.brand .brand-mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .3s var(--ease); }
/* light monogram over the dark hero, full-colour once the header goes white */
.brand .mark-dark { opacity: 0; }
.site-header.scrolled .brand .mark-light { opacity: 0; }
.site-header.scrolled .brand .mark-dark { opacity: 1; }
.site-footer .brand .mark-dark { opacity: 0; }
.brand small { display: block; font-size: .58rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-400); margin-top: 2px; }
.site-header.scrolled .brand small { color: var(--cognac-500); }

/* full lockup image (footer / dark bands) */
.brand-lockup { display: inline-block; }
.brand-lockup img { height: 74px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .93rem; color: rgba(255,255,255,.9);
  padding: 8px 14px; border-radius: var(--r); position: relative; transition: color .25s;
}
.site-header.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold-400); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-400); }
.site-header.scrolled .nav-links a.active { color: var(--cognac-500); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; position: relative; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(10,10,11,.94) 0%, rgba(20,20,22,.80) 45%, rgba(10,10,11,.42) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(180,83,31,.30), transparent 62%),
    radial-gradient(80% 70% at 12% 90%, rgba(231,193,105,.14), transparent 60%);
}
.hero-inner { padding-block: 140px 80px; max-width: 760px; }
.hero h1 { color: #fff; margin: 18px 0 22px; }
.hero h1 .word { display: inline-block; }
.hero p.lead { color: rgba(233,240,248,.9); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 46px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-badge { display: flex; align-items: center; gap: 12px; }
.hero-badge svg { width: 30px; height: 30px; color: var(--gold-300); flex: none; }
.hero-badge b { font-family: var(--font-head); display: block; font-size: .98rem; }
.hero-badge span { font-size: .82rem; color: rgba(233,240,248,.7); }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-hint .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.5); border-radius: var(--r-pill); position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 3px; background: #fff; animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ---------- trust marquee ---------- */
.marquee { background: var(--ink-900); color: rgba(255,255,255,.75); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 56px; align-items: center; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 500; font-size: .95rem; letter-spacing: .02em; }
.marquee-item svg { width: 20px; height: 20px; color: var(--gold-400); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- section heading ---------- */
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin: 14px 0 16px; }

/* stitch divider (animated dashed line) */
.stitch-divider { display: block; width: 100%; height: 20px; }
.stitch-divider line { stroke: var(--gold-600); stroke-width: 3; stroke-dasharray: 10 9; stroke-linecap: round; }

/* ---------- service cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  background: var(--white); border: 1px solid var(--stone-100); border-radius: var(--r);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--cognac-500), var(--gold-400)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 66px; height: 66px; border-radius: var(--r); display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, var(--stone-100), #fff); border: 1px solid var(--stone-100);
}
.service-icon svg { width: 38px; height: 38px; color: var(--cognac-500); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .95rem; }
.service-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--cognac-500); }
.service-card .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

/* ---------- feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .media-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; aspect-ratio: 4/5; }
.split-media img, .split-media video { width: 100%; height: 100%; object-fit: cover; }
.split-media .badge-float {
  position: absolute; background: #fff; border-radius: var(--r); box-shadow: var(--shadow-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.badge-float.br { right: -18px; bottom: -22px; }
.badge-float.tl { left: -18px; top: -22px; }
.badge-float .num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--cognac-500); line-height: 1.05; }
.badge-float > div { display: flex; flex-direction: column; }
.badge-float small { font-size: .74rem; color: var(--stone-500); }
.badge-float svg { width: 34px; height: 34px; color: var(--gold-400); }

.check-list { display: grid; gap: 14px; margin: 26px 0 32px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.check-list svg { width: 22px; height: 22px; color: var(--cognac-400); flex: none; margin-top: 1px; }

/* ---------- stats band ---------- */
.stats-band { background: var(--ink-900); color: #fff; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 15% 0%, rgba(231,193,105,.16), transparent 55%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.stat { text-align: center; padding: 12px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); background: linear-gradient(180deg, var(--cream), var(--gold-400)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .label { margin-top: 10px; font-size: .9rem; color: rgba(255,255,255,.72); letter-spacing: .03em; }

/* ---------- process steps ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process::before { content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--stone-300) 0 10px, transparent 10px 20px); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step .step-num { width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%; background: #fff; border: 2px solid var(--stone-100); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--cognac-500); box-shadow: var(--shadow-sm); transition: .35s var(--ease); }
.step:hover .step-num { background: var(--cognac-500); color: #fff; border-color: var(--cognac-500); transform: translateY(-5px); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .9rem; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid.masonry .g-item:nth-child(1),
.gallery-grid.masonry .g-item:nth-child(6) { grid-row: auto; }
.g-item {
  position: relative; overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 4; min-height: 220px; cursor: pointer;
}
.g-item--wide { grid-column: span 2; aspect-ratio: auto; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-item .g-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  background: linear-gradient(0deg, rgba(10,10,11,.86), transparent 55%);
  opacity: 0; transform: translateY(10px); transition: .4s var(--ease);
}
.g-item:hover .g-overlay { opacity: 1; transform: none; }
.g-overlay .g-tag { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-300); font-weight: 600; }
.g-overlay h4 { color: #fff; font-family: var(--font-head); font-size: 1.15rem; margin-top: 4px; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: #fff; border: 1px solid var(--stone-100); border-radius: var(--r); padding: 30px 28px;
  box-shadow: var(--shadow-sm); position: relative; transition: transform .35s var(--ease), box-shadow .35s;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi .stars svg { width: 18px; height: 18px; color: var(--gold-600); }
.testi p { color: var(--ink); font-size: 1rem; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(150deg, var(--cognac-400), var(--ink-800)); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; }
.testi .who b { font-family: var(--font-head); font-size: .95rem; display: block; }
.testi .who span { font-size: .82rem; color: var(--stone-500); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, var(--ink-950) 0%, var(--ink-900) 40%, var(--cognac-600) 100%); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 85% 20%, rgba(231,193,105,.28), transparent 55%); }
.cta-inner { position: relative; text-align: center; max-width: 680px; margin-inline: auto; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(233,240,248,.85); margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-950); color: rgba(233,240,248,.72); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand { color: var(--cream); margin-bottom: 18px; }
.site-footer .brand-lockup { margin-bottom: 18px; }
.site-footer p { color: rgba(233,240,248,.6); font-size: .92rem; }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: .92rem; color: rgba(233,240,248,.65); transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--gold-300); transform: translateX(4px); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; padding: 6px 0; font-size: .92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: var(--r); background: rgba(255,255,255,.06); display: grid; place-items: center; transition: .3s var(--ease); }
.socials a:hover { background: var(--cognac-500); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: rgba(233,240,248,.5); }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 160px 0 80px; color: #fff; overflow: hidden; background: var(--ink-900); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 130% at 80% 0%, rgba(180,83,31,.28), transparent 55%); }
.page-hero .media-bg { position: absolute; inset: 0; z-index: 0; opacity: .28; }
.page-hero .media-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin: 16px 0 14px; }
.page-hero p { color: rgba(233,240,248,.82); max-width: 560px; }
.breadcrumb { font-size: .85rem; color: rgba(233,240,248,.6); }
.breadcrumb a:hover { color: var(--gold-300); }

/* ---------- service detail rows ---------- */
.svc-row { padding: clamp(48px,7vw,88px) 0; border-bottom: 1px solid var(--stone-100); }
.svc-row:nth-child(even) { background: var(--paper); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--stone-100); border-radius: var(--r); background: #fff;
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cognac-400); box-shadow: 0 0 0 3px rgba(180,83,31,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--stone-500); }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--stone-100); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-card .ic { width: 48px; height: 48px; border-radius: var(--r); background: linear-gradient(150deg, var(--cognac-500), var(--ink-800)); display: grid; place-items: center; flex: none; }
.contact-card .ic svg { width: 22px; height: 22px; color: #fff; }
.contact-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: .92rem; color: var(--ink-soft); }
.form-success { display: none; background: #e8f6ee; border: 1px solid #b7e2c6; color: #1c7a45; padding: 14px 18px; border-radius: var(--r); font-size: .92rem; font-weight: 500; }
.form-success.show { display: block; }

/* map / hours */
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--stone-100); font-size: .92rem; }
.hours-list li b { font-family: var(--font-head); }

/* values (about) */
.value-card { text-align: center; padding: 30px 24px; border-radius: var(--r); border: 1px solid var(--stone-100); background: #fff; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .v-ic { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(150deg, var(--stone-100), #fff); border: 1px solid var(--stone-100); display: grid; place-items: center; }
.value-card .v-ic svg { width: 40px; height: 40px; color: var(--cognac-500); }

/* ---------- scroll reveal (gated behind .js so content is visible without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* animated SVG stroke draw when in view */
.js .draw path, .js .draw line, .js .draw circle, .js .draw polyline, .js .draw rect { stroke-dasharray: var(--len, 300); stroke-dashoffset: var(--len, 300); }
.draw.in path, .draw.in line, .draw.in circle, .draw.in polyline, .draw.in rect { animation: draw 1.6s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* brand mark - subtle lift on hover */
.brand .brand-mark { transition: transform .45s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.06); }
.brand-lockup img { transition: transform .45s var(--ease); }
.brand-lockup:hover img { transform: translateY(-2px); }

/* hero headline word reveal */
.hero h1 .word { opacity: 0; transform: translateY(24px); animation: wordUp .8s var(--ease) forwards; }
.hero h1 .word:nth-child(1) { animation-delay: .15s; }
.hero h1 .word:nth-child(2) { animation-delay: .3s; }
.hero h1 .word:nth-child(3) { animation-delay: .45s; }
.hero h1 .word:nth-child(4) { animation-delay: .6s; }
.hero h1 .word:nth-child(5) { animation-delay: .75s; }
.hero .fade-up { opacity: 0; transform: translateY(20px); animation: wordUp .9s var(--ease) forwards; }
.hero .eyebrow.fade-up { animation-delay: .05s; }
.hero .lead.fade-up { animation-delay: .9s; }
.hero .hero-cta.fade-up { animation-delay: 1.05s; }
.hero .hero-badges.fade-up { animation-delay: 1.2s; }
@keyframes wordUp { to { opacity: 1; transform: none; } }

/* floating micro-animation for badges */
.float-y { animation: floatY 5s var(--ease) infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4, .stats-grid, .process, .testi-grid, .gallery-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .badge-float.br { right: 12px; bottom: -18px; }
  .process::before { display: none; }
  .footer-grid { gap: 32px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); flex-direction: column; align-items: stretch;
    background: var(--ink-900); padding: 100px 24px 40px; gap: 6px; transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav-links { transform: none; }
  .nav-links a { color: #fff; font-size: 1.05rem; padding: 12px 14px; }
  .site-header.scrolled .nav-links a { color: #fff; }
  .nav-toggle { display: block; z-index: 101; }
  .nav .nav-cta .btn { display: none; }
  .grid-3, .grid-4, .stats-grid, .process, .testi-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid.masonry .g-item { grid-row: auto !important; }
  .g-item--wide { grid-column: auto; aspect-ratio: 4 / 3; }
  .hero-badges { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-lockup img { height: 62px; }

  /* --- mobile buttons: stack full-width, let long labels wrap --- */
  .btn { white-space: normal; text-align: center; }
  .hero-cta, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .form .btn[type="submit"] { width: 100%; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 13px 20px; font-size: .9rem; gap: 8px; }
  .btn--lg { padding: 15px 22px; font-size: .95rem; }
  .btn svg { width: 16px; height: 16px; }
}


/* ---------- before & after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ba-card--wide { grid-column: 1 / -1; }
/* uncropped pair: match by height, natural widths (for wide trim panels) */
.ba-pair--fit {
  display: flex; align-items: center; justify-content: center; gap: 2px;
  background: var(--ink-950); padding: 2px;
}
.ba-pair--fit .ba-shot { aspect-ratio: auto; height: 340px; flex: 0 0 auto; }
.ba-pair--fit .ba-shot img { width: auto; height: 100%; }
.ba-card {
  background: #fff; border: 1px solid var(--stone-100); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--stone-100); }
.ba-shot { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink-950); }
.ba-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.ba-card:hover .ba-shot img { transform: scale(1.05); }
.ba-shot span {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r); color: #fff;
}
.ba-shot.is-before span { background: rgba(10, 10, 11, .84); }
.ba-shot.is-after  span { background: var(--gold-400); color: var(--ink-950); }
.ba-body { padding: 20px 22px 24px; }
.ba-body h4 { font-family: var(--font-head); font-size: 1.08rem; color: var(--ink); }
.ba-body p { font-size: .9rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #06331a; font-weight: 700; font-size: .95rem;
  padding: 13px 20px 13px 16px; border-radius: var(--r-pill);
  box-shadow: 0 10px 28px rgba(26, 18, 10, .3); text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(26, 18, 10, .38); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; fill: currentColor; }

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; gap: 22px; }
  .ba-pair--fit { flex-direction: column; }
  .ba-pair--fit .ba-shot { height: auto; width: 100%; max-height: 300px; }
  .ba-pair--fit .ba-shot img { width: 100%; height: 100%; object-fit: contain; }
}
@media (max-width: 560px) {
  .wa-float { padding: 14px; right: 16px; bottom: 16px; }
  .wa-float .wa-label { display: none; }
}
