/* =========================================================
   Yellow Rose Solutions — home page
   Committed color strategy: navy + gold load-bearing, cream ground.
   ========================================================= */

:root {
  /* Brand */
  --navy:        oklch(0.24 0.060 262);
  --navy-deep:   oklch(0.175 0.050 262);
  --navy-raised: oklch(0.33 0.050 262);
  --navy-line:   oklch(0.42 0.045 262 / 0.5);

  --gold:        oklch(0.72 0.115 78);
  --gold-bright: oklch(0.82 0.130 82);
  --gold-deep:   oklch(0.58 0.110 68);

  --cream:  oklch(0.972 0.006 85);
  --paper:  oklch(0.995 0.004 85);
  --ink:    oklch(0.245 0.020 262);
  --slate:  oklch(0.470 0.018 262);
  --mist:   oklch(0.870 0.015 85);        /* body text on navy */
  --mist-dim: oklch(0.740 0.018 262);
  --line:   oklch(0.885 0.008 85);

  /* Type */
  --f-display: "Young Serif", Georgia, "Times New Roman", serif;
  --f-sans: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;

  --step-hero: clamp(2.75rem, 1.6rem + 5.4vw, 5.25rem);
  --step-h2:   clamp(2rem, 1.35rem + 2.9vw, 3.25rem);
  --step-h3:   clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --step-body: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);

  /* Layout */
  --shell: 1200px;
  --gutter: clamp(1.25rem, 0.6rem + 3vw, 4rem);
  --radius: 14px;

  --shadow-card: 0 1px 2px oklch(0.24 0.06 262 / 0.06), 0 20px 44px -26px oklch(0.24 0.06 262 / 0.45);
  --shadow-lift: 0 2px 4px oklch(0.24 0.06 262 / 0.08), 0 34px 60px -30px oklch(0.24 0.06 262 / 0.55);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: var(--step-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { margin: 0; font-weight: 400; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
.eyebrow, .hero-sub, .standard-lede, .service-body p, .trust-item p, .step p, .cta-copy p { text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2.5px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.visually-hidden {
  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: fixed; top: 0.5rem; left: 0.5rem; z-index: 200;
  background: var(--gold); color: var(--navy-deep); font-weight: 700;
  padding: 0.6rem 1rem; border-radius: 8px; transform: translateY(-160%);
  transition: transform 0.25s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  --arrow-shift: 0px;
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--f-sans); font-weight: 700; font-size: 0.9375rem;
  letter-spacing: 0.02em; line-height: 1;
  padding: 0.95rem 1.5rem; border-radius: 10px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.btn .arrow { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--gold); color: oklch(0.2 0.05 262);
  box-shadow: 0 10px 24px -14px oklch(0.72 0.115 78 / 0.9);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 16px 30px -14px oklch(0.72 0.115 78 / 0.95); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: oklch(0.24 0.06 262 / 0.28);
  color: oklch(0.98 0.005 85);
  border-color: oklch(0.85 0.02 85 / 0.55);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { background: oklch(0.24 0.06 262 / 0.5); border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-2px); }

.btn-lg { padding: 1.1rem 1.9rem; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 130%;
  background: linear-gradient(to bottom, oklch(0.14 0.04 262 / 0.7), transparent);
  z-index: -1; opacity: 1; transition: opacity 0.35s var(--ease-out); pointer-events: none;
}
.site-header[data-scrolled] {
  background: oklch(0.2 0.05 262 / 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: oklch(0.72 0.115 78 / 0.28);
  box-shadow: 0 12px 40px -22px oklch(0 0 0 / 0.7);
}
.site-header[data-scrolled]::after { opacity: 0; }

.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 84px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-mark { height: 46px; width: auto; }

.primary-nav { margin-left: auto; }
.primary-nav > ul { display: flex; align-items: center; gap: clamp(0.5rem, 1.4vw, 1.4rem); }
.primary-nav a, .nav-disc {
  font-family: var(--f-sans); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: oklch(0.94 0.01 85); background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.35em;
  padding: 0.5rem 0.25rem; position: relative;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0.25rem; right: 0.25rem; bottom: 0.15rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: #fff; }
.nav-disc:hover { color: var(--gold-bright); }
.chevron { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s var(--ease-out); }

.has-menu { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translate(-50%, 8px);
  min-width: 220px; background: oklch(0.21 0.05 262 / 0.98); backdrop-filter: blur(10px);
  border: 1px solid oklch(0.72 0.115 78 / 0.25); border-radius: 12px; padding: 0.5rem;
  display: grid; gap: 1px; opacity: 0; visibility: hidden;
  box-shadow: var(--shadow-lift); transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
}
.has-menu:hover .submenu, .submenu.open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-menu:hover .chevron { transform: rotate(180deg); }
.submenu a {
  text-transform: none; letter-spacing: 0.01em; font-weight: 500; font-size: 0.95rem;
  padding: 0.6rem 0.85rem; border-radius: 8px; color: var(--mist);
}
.submenu a::after { display: none; }
.submenu a:hover { background: oklch(0.72 0.115 78 / 0.14); color: var(--gold-bright); }

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; background: none; border: 0; cursor: pointer; margin-left: auto;
}
.menu-toggle span { display: block; height: 2px; width: 26px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav sheet */
.mobile-nav {
  position: fixed; inset: 84px 0 0 0; z-index: 90;
  background: oklch(0.18 0.05 262 / 0.98); backdrop-filter: blur(14px);
  padding: 2rem var(--gutter) 3rem; overflow-y: auto;
}
.mobile-nav nav { display: grid; gap: 0.25rem; max-width: 460px; margin-inline: auto; }
.mobile-nav a {
  font-size: 1.25rem; font-weight: 600; color: oklch(0.94 0.01 85);
  padding: 1rem 0.5rem; border-bottom: 1px solid oklch(0.72 0.115 78 / 0.18);
}
.mobile-nav a:last-child { border: 0; margin-top: 1.25rem; justify-content: center; }
.mobile-nav .btn { font-size: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(92vh, 820px); display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; background: var(--navy-deep); }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  transform: scale(1.08); animation: heroDrift 22s ease-out forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, oklch(0.12 0.04 262 / 0.92) 0%, oklch(0.14 0.045 262 / 0.66) 42%, oklch(0.16 0.05 262 / 0.25) 100%),
    linear-gradient(to top, oklch(0.12 0.04 262 / 0.72), transparent 45%);
}

.hero-inner { padding-top: 96px; }
.hero-copy { max-width: 42rem; }
.hero h1 { font-family: var(--f-display); color: #fff; line-height: 1.02; letter-spacing: -0.01em; }
.hero-line1 { display: block; font-size: var(--step-hero); text-shadow: 0 2px 30px oklch(0.1 0.03 262 / 0.5); }
.hero-line2 { display: block; font-size: calc(var(--step-hero) * 0.62); color: var(--gold-bright); font-style: italic; margin-top: 0.1em; text-shadow: 0 2px 24px oklch(0.1 0.03 262 / 0.6); }
.hero-sub { color: oklch(0.93 0.012 85); font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); max-width: 34rem; margin-top: 0.25rem; line-height: 1.6; text-wrap: balance; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

/* Rose divider */
.rose-divider { display: flex; align-items: center; gap: 0.85rem; margin: 1.4rem 0; }
.rose-rule { height: 1px; width: clamp(2.5rem, 6vw, 4.5rem); background: linear-gradient(90deg, transparent, var(--gold)); }
.rose-divider .rose-rule:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.rose-mark { width: 34px; height: 34px; display: block; object-fit: contain; }
.section-head .rose-divider { justify-content: center; }
.section-head .rose-rule { background: linear-gradient(90deg, transparent, var(--gold-deep)); }
.section-head .rose-divider .rose-rule:last-child { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.section-head .rose-mark { color: var(--gold-deep); }

/* ---------- Trust row ---------- */
.trust { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); padding-block: clamp(2.5rem, 4vw, 3.75rem); }
.trust-item { padding-inline: clamp(1rem, 2vw, 1.75rem); text-align: center; position: relative; }
.trust-item + .trust-item::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.trust-icon { display: inline-flex; color: var(--gold-deep); margin-bottom: 1rem; }
.trust-icon svg { width: 40px; height: 40px; }
.trust-item h2 { font-family: var(--f-sans); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); line-height: 1.25; margin-bottom: 0.5rem; }
.trust-item p { font-size: 0.9rem; color: var(--slate); line-height: 1.5; }

/* ---------- Section heads ---------- */
.eyebrow { font-family: var(--f-sans); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.section-head { text-align: center; max-width: 46rem; margin-inline: auto; }
.section-head h2 { font-family: var(--f-display); font-size: var(--step-h2); color: var(--navy); line-height: 1.08; margin-top: 0.7rem; letter-spacing: -0.005em; }

/* ---------- Services ---------- */
.services { background: var(--paper); padding-block: clamp(4rem, 7vw, 6.5rem); }
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem); margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card); transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: oklch(0.72 0.115 78 / 0.4); }
.service-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--navy); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.service-card:hover .service-media img { transform: scale(1.07); }
.service-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.14 0.04 262 / 0.35), transparent 55%); }
.service-badge {
  position: absolute; left: 1.15rem; bottom: 1rem; z-index: 2;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  display: grid; place-items: center; border: 3px solid var(--paper);
  box-shadow: 0 12px 24px -10px oklch(0.14 0.04 262 / 0.85);
}
.service-badge svg { width: 30px; height: 30px; stroke-width: 2px; }
.service-body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-family: var(--f-display); font-size: var(--step-h3); color: var(--navy); margin-bottom: 0.5rem; }
.service-body p { color: var(--slate); font-size: 0.95rem; line-height: 1.55; }
.learn {
  margin-top: auto; padding-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep);
  width: fit-content;
}
.learn .arrow { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s var(--ease-out); }
.learn::before { content: ""; position: absolute; }
.learn { position: relative; }
.learn::after {
  content: ""; position: absolute; left: 0; bottom: 0.55rem; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-out);
}
.service-card:hover .learn::after, .learn:hover::after { transform: scaleX(1); }
.service-card:hover .learn .arrow, .learn:hover .arrow { transform: translateX(3px); }

/* ---------- The Standard (navy) ---------- */
.standard { position: relative; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--mist); padding-block: clamp(4rem, 7vw, 6.5rem); overflow: hidden; }
.rose-watermark { position: absolute; right: -2%; top: 50%; transform: translateY(-50%); width: min(38vw, 440px); height: auto; opacity: 0.07; pointer-events: none; }
.standard-grid { position: relative; display: grid; grid-template-columns: 1.45fr 0.78fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.standard-logo { height: 60px; width: auto; margin-bottom: 1.5rem; }
.standard .eyebrow { color: var(--gold); }
.standard h2 { font-family: var(--f-display); font-size: clamp(1.7rem, 1rem + 1.9vw, 2.45rem); color: #fff; line-height: 1.14; margin-top: 0.7rem; letter-spacing: -0.005em; }
/* Desktop: each sentence stays on one line, so the heading is exactly two lines */
@media (min-width: 769px) { .standard h2 { white-space: nowrap; } }
.standard-lede { margin-top: 1.4rem; max-width: 34rem; font-size: 1.05rem; line-height: 1.7; color: var(--mist); }
.standard-points { display: grid; gap: 1.15rem; border-left: 1px solid var(--navy-line); padding-left: clamp(1.5rem, 3vw, 2.5rem); }
.standard-points li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; font-size: 1.02rem; color: oklch(0.93 0.012 85); line-height: 1.45; }
.standard-points li { text-wrap: pretty; }
.standard-points svg { width: 1.5rem; height: 1.5rem; color: var(--gold); margin-top: 0.1rem; }

/* ---------- Process ---------- */
.process { background: var(--cream); padding-block: clamp(4rem, 7vw, 6.5rem); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); margin-top: clamp(3rem, 5vw, 4.5rem); position: relative; }
.steps::before {
  content: ""; position: absolute; top: 26px; left: 12.5%; right: 12.5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-deep) 0 6px, transparent 6px 14px);
  opacity: 0.5;
}
.step { text-align: center; position: relative; padding-inline: 0.5rem; }
.step-node {
  width: 52px; height: 52px; border-radius: 999px; background: var(--cream);
  border: 2px solid var(--gold); color: var(--gold-deep);
  display: grid; place-items: center; margin: 0 auto 1.5rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
}
.step-num { font-family: var(--f-display); font-size: 1.3rem; color: var(--gold-deep); line-height: 1; }
.step-icon { display: inline-flex; color: var(--navy); margin-bottom: 0.9rem; }
.step-icon svg { width: 40px; height: 40px; }
.step h3 { font-family: var(--f-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--slate); line-height: 1.5; max-width: 15rem; margin-inline: auto; }

/* ---------- CTA band ---------- */
.cta { position: relative; isolation: isolate; overflow: hidden; }
.cta-media { position: absolute; inset: 0; z-index: -2; background: var(--navy-deep); }
.cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.cta-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, oklch(0.13 0.04 262 / 0.94), oklch(0.15 0.05 262 / 0.78)); }
.cta-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
.cta-copy { max-width: 38rem; }
.cta h2 { font-family: var(--f-display); font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); color: #fff; line-height: 1.1; }
.cta-copy p { margin-top: 0.85rem; font-size: 1.15rem; color: oklch(0.92 0.012 85); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--mist-dim); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 3rem; border-bottom: 1px solid var(--navy-line);
}
.footer-logo { height: 54px; width: auto; }
.footer-tag { margin-top: 1rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; color: var(--gold); }
.footer-col h2 { font-family: var(--f-sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1.15rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.95rem; color: oklch(0.82 0.015 85); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-contact ul { gap: 0.9rem; }
.footer-contact li { display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; align-items: start; font-size: 0.95rem; line-height: 1.4; }
.footer-contact svg { width: 1.15rem; height: 1.15rem; color: var(--gold); margin-top: 0.15rem; }
.social-row { display: flex; gap: 0.65rem; }
.social {
  width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center;
  border: 1px solid var(--navy-line); color: var(--gold-bright);
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.social svg { width: 20px; height: 20px; }
.social:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); transform: translateY(-2px); }

.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; padding-block: 1.6rem; font-size: 0.82rem; color: var(--mist-dim); }
.legal-links { display: inline-flex; gap: 0.75rem; align-items: center; }
.legal-links a:hover { color: var(--gold-bright); }

/* ---------- Reveal animation ----------
   Gated behind .js: with JavaScript off, content is fully visible (never trapped at opacity 0). */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .trust-item.reveal, .js .service-card.reveal, .js .step.reveal { transition-delay: var(--d, 0ms); }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-connect { grid-column: 3; }
  .footer-contact { grid-column: 1 / 3; }
}

/* Nav collapses earlier than layout, so the 7-item bar never crowds */
@media (max-width: 1120px) {
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { min-height: 76px; }
  .mobile-nav { inset-block-start: 76px; }
}

@media (max-width: 920px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .trust-item:nth-child(odd)::before, .trust-item:nth-child(1)::before { display: none; }
  .trust-item:nth-child(even)::before { display: block; }
  .standard-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .standard-points { border-left: 0; border-top: 1px solid var(--navy-line); padding-left: 0; padding-top: 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
  .steps::before { display: none; }
}

@media (max-width: 620px) {
  .trust-grid { grid-template-columns: 1fr; gap: 0; }
  .trust-item { display: grid; grid-template-columns: auto 1fr; text-align: left; gap: 0.35rem 1.25rem; align-items: center; padding: 1.4rem 0; }
  .trust-item + .trust-item::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; background: linear-gradient(to right, transparent, var(--line), transparent); }
  .trust-item:nth-child(even)::before { display: block; }
  .trust-icon { margin-bottom: 0; grid-row: span 2; }
  .trust-item p { grid-column: 2; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand, .footer-contact, .footer-connect { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-media img { animation: none; transform: scale(1); }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
