/* ==========================================================================
   Mnknd & Co. (MNKNDCO) — Home Services Design System
   Bold, modern, photo-driven. Sora + Inter · charcoal + amber on light.
   Plain CSS, no build step.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ink + surfaces */
  --ink:        #16181d;
  --ink-2:      #20242b;
  --ink-soft:   #43474f;
  --ink-faint:  #767b84;
  --paper:      #ffffff;
  --bg:         #f4f5f7;
  --bg-2:       #ebedf0;

  /* amber accent (from MK logo, energized) */
  --gold:        #e0a52e;
  --gold-deep:   #a6741a;   /* amber text on light (AA) */
  --gold-bright: #f1be57;
  --gold-soft:   #fbf2dd;

  /* lines */
  --line:        rgba(20, 22, 28, 0.10);
  --line-strong: rgba(20, 22, 28, 0.18);

  /* text aliases (kept for shared markup) */
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --text-faint: var(--ink-faint);
  --on-dark: var(--ink);
  --on-dark-soft: var(--ink-soft);
  --on-dark-faint: var(--ink-faint);
  --glass: rgba(255,255,255,0.7);
  --glass-line: rgba(20,22,28,0.1);
  --grad-gold: linear-gradient(135deg, #f1be57, #e0a52e 55%, #c98a1e);
  --grad-gold-text: linear-gradient(120deg, #c98f22, #a6741a);

  --font-display: "Sora", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;
  --nav-h: 84px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ----- Typography -------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 700; }
.serif-italic { font-style: normal; color: var(--gold-deep); }   /* accent words now amber, not serif */
.gold-text { color: var(--gold-deep); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--gold-soft); padding: 0.45rem 0.9rem; border-radius: var(--radius-pill);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; }

/* ----- Layout ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; background: var(--paper); }
.section--tight { padding: clamp(48px, 7vw, 90px) 0; }
.section--light { background: var(--bg); }
.section--cream { background: var(--ink); color: #fff; }
.section--cream h2, .section--cream h3 { color: #fff; }
.section--cream .lead, .section--cream .section-head p { color: rgba(255,255,255,0.7); }
.section--cream .eyebrow { background: rgba(255,255,255,0.08); color: var(--gold-bright); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 18px; }

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.96rem;
  padding: 0.95rem 1.5rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn__icon {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; background: var(--gold); color: var(--ink);
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn__icon { transform: rotate(45deg); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -14px rgba(20,22,28,0.5); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: var(--paper); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--ink); }
.btn--ghost .btn__icon { background: var(--ink); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -14px rgba(20,22,28,0.5); }
.btn--lg { padding: 1.1rem 1.8rem; font-size: 1rem; }
.section--cream .btn--ghost { border-color: rgba(255,255,255,0.25); color: #fff; background: transparent; }
.section--cream .btn--ghost:hover { border-color: #fff; }
.cta-band__box .btn--ghost { border-color: rgba(255,255,255,0.25); color: #fff; background: transparent; }
.cta-band__box .btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ==========================================================================
   Header / Nav (light pill)
   ========================================================================== */
.site-header {
  position: fixed; inset: 16px 0 auto; z-index: 1000;
  display: flex; justify-content: center; padding-inline: 20px;
  transition: top 0.4s var(--ease);
}
.nav {
  width: 100%; max-width: var(--container);
  display: flex; align-items: center; gap: 18px;
  padding: 11px 11px 11px 22px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled .nav { background: #fff; box-shadow: 0 12px 40px -18px rgba(20,22,28,0.28); }

.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.logo__img { display: none; height: 36px; width: auto; }
.nav .logo__img { display: block; }
.nav .logo__mk { display: none; }
.logo__mk { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; display: inline-flex; align-items: center; gap: 3px; letter-spacing: -0.02em; }
.logo__bar { width: 3px; height: 1.25em; background: var(--gold); border-radius: 2px; display: inline-block; }
.logo__word { display: flex; flex-direction: column; line-height: 1.05; }
.logo__word b { font-weight: 800; font-size: 0.92rem; letter-spacing: -0.01em; }
.logo__word span { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__links a { padding: 0.55rem 0.95rem; border-radius: var(--radius-pill); font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); transition: color 0.2s, background 0.2s; }
.nav__links a:hover { color: var(--ink); background: var(--bg); }
.nav__links a.is-active { color: var(--ink); background: var(--gold-soft); }
.nav__cta { display: flex; align-items: center; }
.nav__cta .btn { padding: 0.72rem 1.2rem; }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); border: none; place-items: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after { transform: translateY(4px); }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: translateY(0) rotate(45deg); }
body.nav-open .nav__toggle span::after { transform: translateY(-2px) rotate(-45deg); }

.nav__drawer { display: none; }
@media (max-width: 940px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: grid; margin-left: auto; }
  .nav__drawer {
    display: block; position: fixed; inset: 0; z-index: 999;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(10px);
    padding: calc(var(--nav-h) + 30px) 32px 40px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); overflow-y: auto;
  }
  body.nav-open .nav__drawer { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__drawer a { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; padding: 0.55rem 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .nav__drawer a.is-active { color: var(--gold-deep); }
  .nav__drawer .btn { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 26px; font-family: var(--font-sans); font-weight: 600; font-size: 1rem; border-bottom: none; }
  .nav__drawer .btn--primary { color: #fff; }
  .nav__drawer-sub { margin-top: 28px; color: var(--ink-faint); font-size: 0.85rem; letter-spacing: 0.02em; }
}

/* ==========================================================================
   Hero (photo-driven)
   ========================================================================== */
.hero { position: relative; padding: calc(var(--nav-h) + 48px) 0 60px; background: var(--paper); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow { position: absolute; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; right: -8%; top: -16%; border-radius: 50%; background: radial-gradient(circle, var(--gold-soft) 0%, transparent 66%); opacity: 0.8; }
.hero__grid { display: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__grid-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { margin: 20px 0 22px; max-width: 14ch; }
.hero .lead { margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 16px; margin-top: 38px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.avatars { display: flex; }
.avatars span { width: 40px; height: 40px; border-radius: 50%; margin-left: -10px; border: 3px solid var(--paper); background: var(--ink); display: grid; place-items: center; font-size: 0.85rem; font-weight: 700; color: var(--gold-bright); }
.avatars span:first-child { margin-left: 0; }
.hero__trust-text strong { display: block; font-weight: 700; }
.hero__trust-text small { color: var(--ink-soft); }

.hero__photo { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px -40px rgba(20,22,28,0.5); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 12px 16px; box-shadow: 0 16px 40px -18px rgba(20,22,28,0.4);
}
.hero__badge .av { display: flex; }
.hero__badge .av span { width: 32px; height: 32px; border-radius: 50%; margin-left: -8px; border: 2px solid #fff; background: var(--ink); display: grid; place-items: center; color: var(--gold-bright); font-size: 0.72rem; font-weight: 700; }
.hero__badge .av span:first-child { margin-left: 0; }
.hero__badge b { font-size: 0.95rem; }
.hero__badge small { display: block; color: var(--ink-soft); font-size: 0.78rem; }

@media (max-width: 900px) {
  .hero__grid-layout { grid-template-columns: 1fr; }
  .hero__photo { aspect-ratio: 16/12; order: -1; }
}
.hero__cards { display: none; }

/* full-bleed video hero */
.hero--video { min-height: 92svh; display: flex; align-items: center; color: #fff; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 70px; }
.hero--video .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero--video .hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(95deg, rgba(12,14,18,0.86) 0%, rgba(12,14,18,0.55) 42%, rgba(12,14,18,0.12) 70%, rgba(12,14,18,0.2) 100%), linear-gradient(0deg, rgba(12,14,18,0.55), transparent 45%); }
.hero--video .hero__inner { position: relative; z-index: 2; }
.hero--video .eyebrow { background: rgba(255,255,255,0.14); color: #fff; }
.hero--video .eyebrow::before { background: var(--gold-bright); }
.hero--video h1 { color: #fff; max-width: 16ch; }
.hero--video .serif-italic { color: var(--gold-bright); }
.hero--video .lead { color: rgba(255,255,255,0.84); }
.hero--video .hero__trust-text strong { color: #fff; }
.hero--video .hero__trust-text small { color: rgba(255,255,255,0.78); }
.hero--video .btn--primary { background: var(--gold); color: var(--ink); }
.hero--video .btn--primary .btn__icon { background: var(--ink); color: var(--gold); }
.hero--video .btn--ghost { border-color: rgba(255,255,255,0.45); color: #fff; background: transparent; }
.hero--video .btn--ghost:hover { border-color: #fff; }
@media (prefers-reduced-motion: reduce) { .hero--video .hero__video { display: none; } .hero--video { background: var(--ink); } }
/* mobile: stack hero so the full 16:9 montage shows uncropped (no zoom/chop) */
@media (max-width: 820px) {
  .hero--video { flex-direction: column; align-items: stretch; justify-content: flex-start; min-height: 0; background: var(--ink); padding-bottom: 34px; }
  .hero--video .hero__scrim { display: none; }
  .hero--video .hero__inner { order: 1; }
  .hero--video .hero__copy { max-width: none !important; }
  .hero--video .hero__video { position: static; order: 2; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; border-radius: var(--radius-lg); margin-top: 24px; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); }
.trust-item svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee { background: var(--ink); padding: 18px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 40px; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 40px; white-space: nowrap; }
.marquee__track span::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 28px 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); line-height: 1.1; }
.stat .cap { margin-top: 8px; color: var(--ink-soft); font-size: 0.92rem; }
.section--cream .stat { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.section--cream .stat .num { color: var(--gold-bright); }
.section--cream .stat .cap { color: rgba(255,255,255,0.7); }
@media (max-width: 760px) { .stats-band { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Cards grid / services
   ========================================================================== */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.service-card {
  position: relative; padding: 32px 28px; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -28px rgba(20,22,28,0.28); border-color: var(--gold); }
.service-card__num { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--gold-deep); }
.service-card__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-deep); margin: 6px 0 18px; }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; }
.service-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.service-card__link svg { transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(5px); }
.section--cream .service-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.section--cream .service-card p { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   Split / media
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); background: linear-gradient(160deg, var(--bg), var(--bg-2)); box-shadow: 0 30px 60px -36px rgba(20,22,28,0.4); }
.media-frame--wide { aspect-ratio: 16/11; }
.media-frame__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.media-frame__badge { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 0.5rem 0.95rem; border-radius: var(--radius-pill); background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-deep); }
.media-frame__label { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 22px 22px 18px; background: linear-gradient(0deg, rgba(20,22,28,0.78), transparent); font-size: 0.88rem; color: rgba(255,255,255,0.92); }
.media-frame__float { position: absolute; right: -14px; top: 22px; z-index: 2; padding: 16px 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: 0 22px 44px -22px rgba(20,22,28,0.4); }
.media-frame__float .n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.media-frame__float .l { font-size: 0.78rem; color: var(--ink-soft); }

.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ck { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-deep); margin-top: 2px; }
.feature-list .ck svg { width: 15px; height: 15px; }
.feature-list b { font-weight: 700; }
.feature-list p { color: var(--ink-soft); font-size: 0.94rem; }
.section--cream .feature-list p { color: rgba(255,255,255,0.7); }
.feature-list--row { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.feature-list--row li { flex-direction: column; }
@media (max-width: 760px) { .feature-list--row { grid-template-columns: 1fr; } }
.about-banner { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 60px -36px rgba(20,22,28,0.35); }
.about-banner img { display: block; width: 100%; height: auto; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 28px 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); }
.section--cream .step { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.step__n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.step h3 { font-size: 1.2rem; margin: 16px 0 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }
.section--cream .step p { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
.gallery__item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); }
.gallery__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,0.92); color: var(--gold-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: var(--radius-pill); }
.gallery__cap { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 26px 16px 14px; background: linear-gradient(0deg, rgba(20,22,28,0.8), transparent); }
.gallery__cap b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; }
.gallery__cap span { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

/* ==========================================================================
   CTA band (dark)
   ========================================================================== */
.cta-band { position: relative; }
.cta-band__box { position: relative; border-radius: var(--radius-xl); padding: clamp(44px, 7vw, 88px); background: var(--ink); overflow: hidden; text-align: center; }
.cta-band__box::after { content: ""; position: absolute; width: 50vw; height: 50vw; right: -10%; top: -30%; border-radius: 50%; background: radial-gradient(circle, rgba(224,165,46,0.22), transparent 65%); pointer-events: none; }
.cta-band__box > * { position: relative; z-index: 1; }
.cta-band__box h2 { color: #fff; max-width: 18ch; margin: 16px auto 16px; }
.cta-band__box .eyebrow { background: rgba(255,255,255,0.08); color: var(--gold-bright); }
.cta-band__box p { color: rgba(255,255,255,0.72); max-width: 52ch; margin: 0 auto 32px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Quote card / testimonial
   ========================================================================== */
.quote-card { padding: 32px 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--paper); }
.quote-card .mark { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 0.5; height: 0.5em; }
.quote-card blockquote { font-size: 1.15rem; line-height: 1.55; margin: 18px 0 22px; font-weight: 500; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .who span { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--gold-bright); display: grid; place-items: center; font-weight: 700; }
.quote-card .who small { color: var(--ink-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; color: inherit; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.faq__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform 0.3s var(--ease), background 0.3s, color 0.3s; }
.faq__item.open .faq__q .ic { background: var(--gold); color: var(--ink); transform: rotate(45deg); border-color: transparent; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { padding: 0 0 22px; color: var(--ink-soft); }

/* ==========================================================================
   Forms
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-deep); }
.contact-info b { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
.contact-info a, .contact-info p { color: var(--ink); font-size: 1.05rem; }
.contact-info a:hover { color: var(--gold-deep); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: 0 30px 60px -40px rgba(20,22,28,0.3); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea { width: 100%; padding: 0.9rem 1rem; border-radius: 12px; font: inherit; font-size: 0.98rem; background: var(--bg); border: 1.5px solid transparent; color: var(--ink); transition: border-color 0.2s, background 0.2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a6741a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 14px; text-align: center; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 0.92rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e8f5ec; border: 1px solid #9fd6b0; color: #1f6b3b; }
.form-status.err { background: #fbeaea; border: 1px solid #e7a3a3; color: #9c2b2b; }

/* ==========================================================================
   Page hero (interior)
   ========================================================================== */
.page-hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 64px; background: var(--bg); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 50vw; height: 50vw; max-width: 600px; right: -8%; top: -30%; border-radius: 50%; background: radial-gradient(circle, var(--gold-soft), transparent 66%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .crumbs { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 18px; }
.page-hero .crumbs a:hover { color: var(--gold-deep); }
.page-hero h1 { max-width: 18ch; margin-bottom: 18px; }
.page-hero p { max-width: 60ch; }

/* ==========================================================================
   Footer (dark)
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: 76px; }
.site-footer .logo { color: #fff; }
.site-footer .logo__word span { color: rgba(255,255,255,0.5); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 18px 0; max-width: 38ch; font-size: 0.95rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; color: rgba(255,255,255,0.7); transition: all 0.3s var(--ease); }
.footer-social a:hover { color: var(--ink); background: var(--gold); border-color: transparent; transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.7); padding: 6px 0; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom .powered .gold-text { color: var(--gold-bright); font-weight: 700; }

/* ==========================================================================
   Reveal + utilities
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .service-card, .gallery__item img, .footer-social a { transition: none !important; }
  * { scroll-behavior: auto !important; }
}

.text-center { text-align: center; }
.mt-s { margin-top: 22px; }
.mt-m { margin-top: 38px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 2000; background: var(--gold); color: var(--ink); padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 700; }
.skip-link:focus { left: 0; }
