/* =====================================================================
   MEMSOLOS PRIVATE LIMITED — design system
   Brand: gold #F7CE5B on near-black #231F20, cream paper, generous air.
   ===================================================================== */

/* ---------------------------------------------------------- 1. tokens */
:root {
  --gold-100: #FEF8E7;
  --gold-200: #FDEFC4;
  --gold-300: #FBE29A;
  --gold-400: #F9D876;
  --gold-500: #F7CE5B;
  --gold-600: #E8B93C;
  --gold-700: #C79822;
  /* Text-safe gold: gold-700 is ~2.6:1 on white and fails WCAG AA for text.
     gold-800 is ~6.1:1 — use it for any gold *text* on a light background;
     keep gold-500/600/700 for buttons, icons and decoration on light or dark. */
  --gold-800: #7A5E12;

  --ink-900: #121110;
  --ink-800: #1A1817;
  --ink-700: #231F20;
  --ink-600: #302B2B;
  --ink-500: #4A4342;

  --paper: #FFFFFF;
  --cream: #FBF8F2;
  --cream-2: #F5F0E6;
  --muted: #6E6763;
  /* Darkened from #948C86 (~3.3:1, fails AA) to pass 4.5:1 on white/cream. */
  --muted-2: #746C66;

  --line: rgba(35, 31, 32, .10);
  --line-strong: rgba(35, 31, 32, .18);
  --line-dark: rgba(255, 255, 255, .12);

  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 24px;
  --radius-xl: 34px;

  --shadow-s: 0 1px 2px rgba(18, 17, 16, .05), 0 4px 12px rgba(18, 17, 16, .05);
  --shadow: 0 2px 6px rgba(18, 17, 16, .05), 0 18px 44px -18px rgba(18, 17, 16, .22);
  --shadow-l: 0 30px 80px -28px rgba(18, 17, 16, .38);
  --shadow-gold: 0 16px 40px -14px rgba(199, 152, 34, .55);

  --font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-y: clamp(64px, 8vw, 118px);

  --ease: cubic-bezier(.22, .68, .36, 1);
  --header-h: 78px;
}

/* ----------------------------------------------------------- 2. reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(199, 152, 34, .22);
  /* Keep content clear of a notch/rounded corner in landscape on iPhone etc. */
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--gold-600); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold-500); color: var(--ink-900); }

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

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--gold-500); color: var(--ink-900);
  padding: 10px 18px; border-radius: 0 0 10px 10px; font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ------------------------------------------------------ 3. typography */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -.022em; color: var(--ink-900); }
p { text-wrap: pretty; }
.h-xl { font-size: clamp(2.5rem, 6.2vw, 4.35rem); }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.15rem); }
.h-md { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.h-sm { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--muted); line-height: 1.72; }
.lead--onDark { color: rgba(255, 255, 255, .74); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-800); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold-600); border-radius: 2px; }
.eyebrow--onDark { color: var(--gold-500); }
.eyebrow--onDark::before { background: var(--gold-500); }

.gold-text { color: var(--gold-600); }
.underline-gold {
  background-image: linear-gradient(var(--gold-500), var(--gold-500));
  background-repeat: no-repeat; background-size: 100% .26em; background-position: 0 94%;
  padding: 0 .06em;
}

/* --------------------------------------------------------- 4. layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 5vw, 76px); }
.section { --surface: var(--paper); }
.section--cream { background: var(--cream); --surface: var(--cream); }
.section--cream2 { background: var(--cream-2); --surface: var(--cream-2); }
.section--dark { background: var(--ink-800); color: rgba(255, 255, 255, .82); --surface: var(--ink-800); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: 16px; }

.split {
  display: grid; gap: clamp(30px, 5vw, 68px);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-l { grid-template-columns: 1.12fr .88fr; }
  .split--wide-r { grid-template-columns: .86fr 1.14fr; }
}
.split--top { align-items: start; }
.split--rev > :first-child { order: 2; }
@media (max-width: 899px) { .split--rev > :first-child { order: 0; } }

.ic { width: 1.25em; height: 1.25em; flex: none; }

/* -------------------------------------------------------- 5. buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn .ic { width: 1.05em; height: 1.05em; transition: transform .22s var(--ease); }
.btn:hover .ic { transform: translateX(4px); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }

.btn--gold { background: var(--gold-500); color: var(--ink-900); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-400); transform: translateY(-2px); }

.btn--dark { background: var(--ink-800); color: #fff; }
.btn--dark:hover { background: var(--ink-700); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--outline { border-color: rgba(255, 255, 255, .34); color: #fff; }
.btn--outline:hover { border-color: var(--gold-500); color: var(--gold-500); }

.btn--outline-dark { border-color: var(--line-strong); color: var(--ink-800); }
.btn--outline-dark:hover { border-color: var(--ink-800); background: var(--ink-800); color: #fff; }

.btn--ghost { color: rgba(255, 255, 255, .88); border-color: rgba(255, 255, 255, .22); }
.btn--ghost:hover { color: var(--gold-500); border-color: var(--gold-500); }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--gold-800); }
.text-link .ic { transition: transform .22s var(--ease); }
.text-link:hover .ic { transform: translateX(4px); }

/* ----------------------------------------------- 6. header */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink-800);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck { background: rgba(18, 17, 16, .93); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 12px 40px -18px rgba(0, 0, 0, .8); }
.site-header__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 11px; flex: none; min-width: 0; }
.logo__mark { width: 34px; height: 39px; flex: none; }
.logo__type { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.logo__word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -.01em; color: #fff; line-height: 1;
  display: inline-flex; align-items: center;
}
.logo__o { display: inline-block; width: .84em; height: .84em; margin: 0 .01em; color: #fff; }
.logo__o svg { width: 100%; height: 100%; }
.logo__sub {
  font-family: var(--font-display); font-weight: 700; font-size: .56rem;
  letter-spacing: .07em; text-transform: uppercase; color: var(--gold-500);
  line-height: 1.3; max-width: 210px;
}
.site-footer .logo__word, .site-footer .logo__o { color: #fff; }

/* nav */
.nav { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 600; font-size: .86rem;
  color: rgba(255, 255, 255, .78); padding: 9px 9px; border-radius: 8px; white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--gold-500); }
.nav__item.is-active > .nav__link { color: var(--gold-500); }
.nav__item.is-active > .nav__link::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--gold-500); border-radius: 2px;
}
.nav__caret { width: 6px; height: 6px; border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor; transform: rotate(45deg) translate(-1px, -1px); transition: transform .22s var(--ease); }
.nav__item--has-menu:hover .nav__caret { transform: rotate(225deg) translate(-2px, -2px); }
.nav__toggle { display: none; }

.nav__menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 268px;
  background: #fff; border-radius: 14px; padding: 10px;
  box-shadow: var(--shadow-l); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a {
  display: block; padding: 10px 14px; border-radius: 9px;
  font-size: .9rem; font-weight: 500; color: var(--ink-600);
  transition: background .18s var(--ease), color .18s var(--ease), padding .18s var(--ease);
}
.nav__menu a:hover { background: var(--gold-100); color: var(--ink-900); padding-left: 20px; }
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__cta .btn { padding: 10px 16px; font-size: .83rem; }
/* The secondary CTA is the first thing to go when space is tight, only in
   the horizontal desktop bar — the primary gold button and the full link
   list matter more there than having both buttons visible. Below 1121px
   this is the mobile drawer instead, which has room for both buttons. */
@media (min-width: 1121px) and (max-width: 1320px) { .nav__cta .btn--ghost { display: none; } }

.burger { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .26s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1120px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: calc(var(--header-h) + 42px) 0 0 auto; width: min(400px, 88vw);
    background: var(--ink-900); flex-direction: column; align-items: stretch; gap: 0;
    padding: 20px var(--gutter) calc(40px + env(safe-area-inset-bottom, 0px)); overflow-y: auto;
    transform: translateX(100%); visibility: hidden; pointer-events: none;
    transition: transform .34s var(--ease), visibility .34s;
    border-left: 1px solid rgba(255, 255, 255, .08);
  }
  .nav.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .nav__link { padding: 16px 4px; font-size: 1.02rem; width: 100%; }
  .nav__caret { display: none; }
  .nav__item.is-active > .nav__link::after { display: none; }
  .nav__toggle {
    display: block; position: absolute; right: 0; top: 6px; width: 44px; height: 44px; border-radius: 8px;
  }
  .nav__toggle::before, .nav__toggle::after {
    content: ''; position: absolute; left: 50%; top: 50%; background: var(--gold-500); border-radius: 2px;
    transform: translate(-50%, -50%); transition: transform .24s var(--ease), opacity .2s;
  }
  .nav__toggle::before { width: 13px; height: 2px; }
  .nav__toggle::after { width: 2px; height: 13px; }
  .nav__toggle[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 12px 8px;
    display: none;
  }
  .nav__menu.is-open { display: block; }
  .nav__menu a { color: rgba(255, 255, 255, .62); padding: 9px 10px; }
  .nav__menu a:hover { background: rgba(255, 255, 255, .06); color: var(--gold-500); }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: 24px; }
  .nav__cta .btn { width: 100%; padding: 14px 20px; }
}
body.nav-open { overflow: hidden; }
.nav-scrim { position: fixed; inset: 0; background: rgba(10, 9, 9, .55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; z-index: 99; }
.nav-scrim.is-on { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------- 7. hero */
.hero { position: relative; background: var(--ink-900); color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 78% 12%, rgba(247, 206, 91, .22), transparent 62%),
    linear-gradient(102deg, var(--ink-900) 4%, rgba(18, 17, 16, .93) 42%, rgba(18, 17, 16, .58) 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(80% 70% at 30% 40%, #000 20%, transparent 85%);
}
.hero__in { padding-block: clamp(70px, 10vw, 132px) clamp(56px, 7vw, 96px); position: relative; }
.hero__copy { max-width: 720px; }
.hero__title { font-size: clamp(2.55rem, 6.4vw, 4.5rem); color: #fff; letter-spacing: -.032em; }
.hero__title span { display: block; }
.hero__title .t2 { color: var(--gold-500); }
.hero__sub { margin-top: 22px; max-width: 620px; font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: rgba(255, 255, 255, .74); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 38px; font-size: .88rem; color: rgba(255, 255, 255, .6); }
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust .ic { width: 16px; height: 16px; color: var(--gold-500); }

.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: clamp(48px, 6vw, 76px); background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-l); overflow: hidden;
}
@media (min-width: 760px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat { background: rgba(255, 255, 255, .03); padding: 26px clamp(18px, 2.4vw, 30px); }
.hero-stat__n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.85rem, 3.4vw, 2.6rem); color: var(--gold-500); line-height: 1; letter-spacing: -.02em; }
.hero-stat__l { margin-top: 9px; font-size: .84rem; color: rgba(255, 255, 255, .62); line-height: 1.5; }

/* page hero (inner pages) */
.page-hero {
  position: relative; color: #fff; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(64% 120% at 86% 8%, rgba(247, 206, 91, .16), transparent 62%),
    linear-gradient(112deg, var(--ink-900) 20%, var(--ink-700) 100%);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 90% at 88% 10%, rgba(247, 206, 91, .2), transparent 60%), linear-gradient(96deg, var(--ink-900) 12%, rgba(18, 17, 16, .78) 100%); }
.page-hero__in { padding-block: clamp(52px, 7vw, 96px); max-width: 780px; }
.page-hero h1 { color: #fff; font-size: clamp(2.15rem, 5vw, 3.4rem); }
.page-hero p { margin-top: 18px; color: rgba(255, 255, 255, .74); font-size: clamp(1rem, 1.4vw, 1.14rem); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255, 255, 255, .5); margin-bottom: 18px; }
.crumbs a { display: inline-block; padding-block: 4px; }
.crumbs a:hover { color: var(--gold-500); }
.crumbs span { opacity: .5; }

/* ------------------------------------------------------- 8. marquee */
.marquee { background: var(--gold-500); color: var(--ink-900); overflow: hidden; padding-block: 15px; border-block: 1px solid var(--gold-600); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 14px; padding-inline: 26px; font-family: var(--font-display); font-weight: 700; font-size: .92rem; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.marquee__item::after { content: ''; width: 6px; height: 6px; background: var(--ink-900); border-radius: 50%; opacity: .5; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* --------------------------------------------------------- 9. cards */
.cards { display: grid; gap: clamp(18px, 2vw, 26px); grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards--4 { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column; gap: 14px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--gold-100); color: var(--gold-700);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.card__icon .ic { width: 26px; height: 26px; }
.card:hover .card__icon { background: var(--ink-800); color: var(--gold-500); transform: rotate(-6deg); }
.card__title { font-size: 1.22rem; }
.card__copy { color: var(--muted); font-size: .95rem; }
.card__list { display: flex; flex-direction: column; gap: 9px; margin-top: 2px; }
.card__list li { display: flex; align-items: flex-start; gap: 9px; font-size: .89rem; color: var(--ink-600); }
.card__list .ic { width: 15px; height: 15px; margin-top: .32em; color: var(--gold-700); }
.card__link { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink-800); }
.card__link .ic { transition: transform .22s var(--ease); }
.card:hover .card__link { color: var(--gold-800); }
.card:hover .card__link .ic { transform: translateX(5px); }

/* industry card */
.ind {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(24px, 2.6vw, 30px); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ind:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ind__icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 14px; background: var(--ink-800); color: var(--gold-500); margin-bottom: 16px; }
.ind__icon .ic { width: 24px; height: 24px; }
.ind__title { font-size: 1.14rem; margin-bottom: 10px; }
.ind__copy { color: var(--muted); font-size: .93rem; }
.ind__roles { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.ind__roles li { font-size: .76rem; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: var(--cream-2); color: var(--ink-600); }

/* feature tiles on dark */
/* Fixed column counts (not auto-fit) so a 6-tile grid always divides evenly —
   1/2/3 columns all split 6 with no remainder, so no row is ever left with a
   gap showing the container's own background through it. */
.tiles { display: grid; gap: 1px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-l); overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile { background: var(--ink-800); padding: clamp(24px, 3vw, 34px); transition: background .3s var(--ease); }
.tile--photo {
  grid-column: 1 / -1; position: relative; padding: 0; min-height: 220px;
  background: linear-gradient(135deg, var(--ink-700), var(--gold-700));
}
.tile--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile--photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18, 17, 16, .82) 0%, rgba(18, 17, 16, .5) 42%, rgba(18, 17, 16, .12) 75%);
}
.tile--photo__body { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 3vw, 34px); max-width: 460px; }
.tile--photo__body h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.tile--photo__body p { font-size: .92rem; color: rgba(255, 255, 255, .72); }
.tile:hover { background: var(--ink-700); }
.tile__icon { color: var(--gold-500); margin-bottom: 16px; }
.tile__icon .ic { width: 28px; height: 28px; }
.tile h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.tile p { font-size: .92rem; color: rgba(255, 255, 255, .64); }

/* ---------------------------------------------------- 10. media / img */
.ph { position: relative; overflow: hidden; border-radius: var(--radius-l); background: linear-gradient(135deg, var(--ink-700), var(--ink-900) 55%, var(--gold-700)); }
.ph::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 45%, rgba(18, 17, 16, .35)); pointer-events: none; }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph--tall { aspect-ratio: 4 / 5; }
.ph--wide { aspect-ratio: 16 / 10; }
.ph--square { aspect-ratio: 1 / 1; }

.media-stack { position: relative; }
.media-stack__badge {
  position: absolute; right: clamp(-8px, -1vw, 0px); bottom: 26px; z-index: 2;
  background: var(--gold-500); color: var(--ink-900);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-l);
  max-width: 230px;
}
.media-stack__badge strong { display: block; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; letter-spacing: -.02em; }
.media-stack__badge span { display: block; margin-top: 6px; font-size: .8rem; font-weight: 600; line-height: 1.4; }
.media-stack__frame { position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold-500); border-radius: var(--radius-l); z-index: -1; opacity: .55; }
@media (max-width: 620px) { .media-stack__frame { display: none; } .media-stack__badge { right: 10px; bottom: 12px; padding: 14px 16px; } }

/* --------------------------------------------------------- 11. stats */
.statband { background: var(--gold-500); color: var(--ink-900); }
.statband__grid { display: grid; gap: clamp(24px, 3vw, 34px); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); text-align: center; }
.statband__n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4.4vw, 3.2rem); line-height: 1; letter-spacing: -.03em; }
.statband__l { margin-top: 10px; font-size: .9rem; font-weight: 600; opacity: .78; }

/* --------------------------------------------------------- 12. steps */
.steps { display: grid; gap: clamp(20px, 2.4vw, 28px); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); counter-reset: step; }
.step { position: relative; padding: clamp(26px, 3vw, 34px); border-radius: var(--radius-l); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step__n {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.6px var(--gold-800); letter-spacing: -.03em; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .93rem; }
.step__meta { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-strong); font-size: .8rem; font-weight: 700; color: var(--gold-800); letter-spacing: .04em; text-transform: uppercase; }

/* timeline variant */
.tline { position: relative; display: flex; flex-direction: column; gap: 0; }
.tline::before { content: ''; position: absolute; left: 23px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--gold-500), rgba(247, 206, 91, .12)); }
.tline__row { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: clamp(16px, 2vw, 28px); padding-block: clamp(18px, 2vw, 26px); }
.tline__dot { width: 48px; height: 48px; border-radius: 50%; background: var(--ink-800); color: var(--gold-500); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: .95rem; z-index: 1; border: 3px solid var(--cream); }
.tline__dot { border-color: var(--surface, var(--paper)); }
.tline__dot .ic { width: 22px; height: 22px; }
.tline__row h3 { font-size: 1.14rem; margin-bottom: 8px; }
.tline__row p { color: var(--muted); font-size: .95rem; }
.tline__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.tline__tags li { font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink-600); }

/* --------------------------------------------------- 13. testimonials */
.quotes { display: grid; gap: clamp(18px, 2vw, 24px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(26px, 3vw, 34px); display: flex; flex-direction: column; gap: 18px; }
.quote__mark { color: var(--gold-500); }
.quote__mark .ic { width: 34px; height: 34px; }
.quote__text { font-size: 1.02rem; line-height: 1.7; color: var(--ink-600); }
.quote__who { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 6px; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; background: var(--cream-2); }
.quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.quote__role { font-size: .82rem; color: var(--muted); }
.stars { display: flex; gap: 3px; color: var(--gold-600); }
.stars .ic { width: 15px; height: 15px; fill: currentColor; }

/* ----------------------------------------------------- 14. logo wall */
.logowall { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); }
.logowall__cell {
  background: #fff; min-height: 92px; display: grid; place-items: center; padding: 18px;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: .04em;
  color: var(--muted-2); transition: color .25s var(--ease), background .25s var(--ease);
  text-align: center;
}
.logowall__cell:hover { color: var(--ink-800); background: var(--cream); }

/* ----------------------------------------------------------- 15. faq */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq__item.is-open { border-color: var(--gold-500); box-shadow: var(--shadow-s); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px clamp(18px, 2vw, 26px); text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink-800);
}
.faq__icon { width: 30px; height: 30px; border-radius: 50%; background: var(--cream-2); color: var(--ink-700); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.faq__icon .ic { width: 15px; height: 15px; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--gold-500); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .36s var(--ease); }
.faq__a > div { padding: 0 clamp(18px, 2vw, 26px) 22px; color: var(--muted); font-size: .96rem; }
.faq__a p + p { margin-top: 12px; }

/* -------------------------------------------------------- 16. cta band */
.cta-band { background: var(--ink-900); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 88% 50%, rgba(247, 206, 91, .18), transparent 62%);
}
.cta-band__in { position: relative; display: grid; gap: clamp(26px, 4vw, 48px); align-items: center; padding-block: clamp(52px, 6vw, 84px); }
@media (min-width: 900px) { .cta-band__in { grid-template-columns: 1.4fr .9fr; } }
.cta-band__title { font-size: clamp(1.75rem, 3.4vw, 2.6rem); color: #fff; }
.cta-band__copy { margin-top: 16px; color: rgba(255, 255, 255, .7); max-width: 620px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 13px; }

/* -------------------------------------------------------- 17. footer */
.site-footer { background: var(--ink-800); color: rgba(255, 255, 255, .62); font-size: .92rem; }
.site-footer__grid { display: grid; gap: clamp(30px, 3.4vw, 46px); padding-block: clamp(50px, 6vw, 78px); grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
@media (min-width: 1060px) { .site-footer__grid { grid-template-columns: 1.65fr 1fr 1fr 1fr 1.25fr; } }
.site-footer__pitch { margin-top: 20px; max-width: 380px; font-size: .92rem; line-height: 1.7; }
.site-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.site-footer__social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .14); transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease); }
.site-footer__social a:hover { background: var(--gold-500); color: var(--ink-900); border-color: var(--gold-500); transform: translateY(-3px); }
.site-footer__social .ic { width: 17px; height: 17px; }
.site-footer__col h3 { font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 18px; }
.site-footer__col ul { display: flex; flex-direction: column; }
.site-footer__col a {
  display: inline-block; padding-block: 7px; min-height: 24px;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.site-footer__col a:hover { color: var(--gold-500); padding-left: 5px; }
.site-footer__office { color: var(--gold-500); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 16px; margin-bottom: 6px; }
.site-footer__col--contact p:first-child { margin-top: 0; }
.site-footer__col--contact a:hover { padding-left: 0; }
.site-footer__base { border-top: 1px solid rgba(255, 255, 255, .08); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .85rem; }
.site-footer__strap { color: var(--gold-500); font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; }

.to-top {
  position: fixed; z-index: 90;
  right: calc(20px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold-500); color: var(--ink-900);
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s, background .2s;
}
.to-top.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-400); }
.to-top .ic { width: 20px; height: 20px; transform: rotate(-90deg); }

/* ------------------------------------------------- 18. service detail */
.svc { display: grid; gap: clamp(14px, 2vw, 30px); padding-block: clamp(30px, 4vw, 48px); border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 30px); }
/* Without this, the nested auto-fit/minmax grid in .svc__points reports its
   multi-column min-content size upward through .svc__body (a grid item
   here), forcing the whole row to overflow at narrow widths — the classic
   CSS Grid "min-width:auto" blowout. min-width:0 lets it shrink properly. */
.svc__body { min-width: 0; }
@media (min-width: 780px) { .svc { grid-template-columns: 120px 1fr; } }
.svc:last-of-type { border-bottom: 0; }
.svc__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: transparent; -webkit-text-stroke: 1.7px var(--gold-800); letter-spacing: -.04em; }
.svc__icon { display: inline-flex; width: 52px; height: 52px; border-radius: 15px; background: var(--gold-100); color: var(--gold-700); align-items: center; justify-content: center; margin-bottom: 16px; }
.svc__icon .ic { width: 25px; height: 25px; }
.svc__title { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-bottom: 12px; }
.svc__copy { color: var(--muted); max-width: 680px; }
.svc__points { display: grid; gap: 10px; margin: 20px 0 24px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); max-width: 820px; }
.svc__points li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; }
.svc__points .ic { width: 16px; height: 16px; margin-top: .34em; color: var(--gold-700); }

/* ---------------------------------------------------------- 19. jobs */
.jobs { display: flex; flex-direction: column; gap: 14px; }
.job {
  display: grid; gap: 14px 22px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 26px); transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
@media (min-width: 860px) { .job { grid-template-columns: 1.35fr 1.25fr auto; } }
.job:hover { border-color: var(--gold-500); box-shadow: var(--shadow-s); transform: translateY(-2px); }
.job__title { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink-800); }
.job__co { font-size: .86rem; color: var(--muted); margin-top: 5px; }
.job__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job__meta li { display: inline-flex; align-items: center; gap: 6px; font-size: .79rem; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: var(--cream-2); color: var(--ink-600); }
.job__meta .ic { width: 13px; height: 13px; color: var(--gold-700); }
.job .btn { padding: 10px 20px; font-size: .86rem; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.chip {
  font-family: var(--font-display); font-weight: 700; font-size: .84rem;
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line-strong); color: var(--ink-600);
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--ink-800); }
.chip.is-on { background: var(--ink-800); border-color: var(--ink-800); color: var(--gold-500); }

/* ---------------------------------------------------------- 20. blog */
.posts { display: grid; gap: clamp(20px, 2.4vw, 28px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post__media { aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, var(--ink-700), var(--gold-700)); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__body { padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post__tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-800); }
.post__title { font-size: 1.16rem; line-height: 1.32; }
.post__title a { display: inline-block; padding-block: 2px; }
.post__ex { color: var(--muted); font-size: .93rem; }
.post__meta { margin-top: auto; padding-top: 10px; display: flex; gap: 14px; font-size: .8rem; color: var(--muted-2); border-top: 1px solid var(--line); }

.prose { max-width: 760px; }
.prose > * + * { margin-top: 22px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 42px; }
.prose h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); margin-top: 32px; }
.prose p, .prose li { color: var(--ink-600); font-size: 1.03rem; line-height: 1.78; }
.prose ul, .prose ol { display: flex; flex-direction: column; gap: 11px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: ''; position: absolute; left: 4px; top: .68em; width: 8px; height: 8px; border-radius: 2px; background: var(--gold-500); }
.prose ol { counter-reset: n; }
.prose ol li { position: relative; padding-left: 34px; counter-increment: n; }
.prose ol li::before { content: counter(n); position: absolute; left: 0; top: .1em; font-family: var(--font-display); font-weight: 800; color: var(--gold-800); font-size: .95rem; }
.prose blockquote { border-left: 3px solid var(--gold-500); padding: 6px 0 6px 22px; font-size: 1.1rem; font-style: italic; color: var(--ink-700); }
.prose strong { color: var(--ink-800); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--font-display); font-weight: 700; background: var(--cream); }
.table-scroll { overflow-x: auto; }

.callout { background: var(--cream); border-left: 3px solid var(--gold-500); border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 26px; }
.callout h3 { margin-top: 0 !important; font-size: 1.05rem; margin-bottom: 8px; }

/* ---------------------------------------------------------- 21. form */
.form-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-s); }
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .86rem; color: var(--ink-700); }
.field label span { color: var(--gold-800); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px;
  border: 1.5px solid var(--line-strong); background: var(--cream);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  /* 16px minimum stops iOS Safari auto-zooming the page when a field is focused. */
  font-size: 16px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-600); background: #fff; box-shadow: 0 0 0 4px rgba(247, 206, 91, .22);
}
.field__hint { font-size: .78rem; color: var(--muted-2); }
.field__hint a, .consent a { display: inline-block; padding-block: 2px; }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: .85rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: .18em; accent-color: var(--gold-600); flex: none; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--muted-2); }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: 12px; background: var(--gold-100); border: 1px solid var(--gold-300); font-size: .92rem; display: none; }
.form-status.is-on { display: block; }

.contact-cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact-card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--ink-800); color: var(--gold-500); display: grid; place-items: center; margin-bottom: 14px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: .92rem; color: var(--muted); }
.contact-card a { display: inline-block; padding-block: 3px; }
.contact-card a:hover { color: var(--gold-800); }

/* --------------------------------------------------------- 22. misc */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }
.pill { font-size: .8rem; font-weight: 600; padding: 7px 15px; border-radius: 999px; background: var(--cream-2); color: var(--ink-600); }
.pill--dark { background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .78); }

.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: .97rem; }
.checklist .ic { width: 17px; height: 17px; margin-top: .3em; color: var(--gold-700); flex: none; }
.checklist--onDark .ic { color: var(--gold-500); }

.people { display: grid; gap: clamp(18px, 2vw, 26px); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.person__media { aspect-ratio: 1 / 1; background: linear-gradient(140deg, var(--ink-700), var(--gold-700)); overflow: hidden; }
.person__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: filter .4s var(--ease), transform .5s var(--ease); }
.person:hover .person__media img { filter: grayscale(0); transform: scale(1.04); }
.person__body { padding: 20px 22px 24px; }
.person__name { font-size: 1.05rem; }
.person__role { font-size: .85rem; color: var(--gold-800); font-weight: 600; margin-top: 4px; }
.person__bio { font-size: .88rem; color: var(--muted); margin-top: 10px; }

.value { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.value:last-child { border-bottom: 0; }
.value__icon { width: 46px; height: 46px; flex: none; border-radius: 13px; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; }
.value h3 { font-size: 1.05rem; margin-bottom: 7px; }
.value p { color: var(--muted); font-size: .93rem; }

.map-embed { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); min-height: 320px; background: var(--cream-2); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* --------------------------------------------------- 23. animations */
/* Hidden only when scripting is available, so the page stays readable without JS. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --------------------------------------------------------- 24. print */
@media print {
  .site-header, .cta-band, .to-top, .nav { display: none !important; }
  body { color: #000; }
}
