/* =========================================================================
   SLL Commercial Finance — design system
   Palette is limited to five brand colours by design:
   navy #0B1F33 · gold #C6A15B · white #FFFFFF · mist #F3F5F7 · grey #667085
   ========================================================================= */

:root {
  --navy: #0b1f33;
  --gold: #c6a15b;
  --white: #ffffff;
  --mist: #f3f5f7;
  --grey: #667085;

  --serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --sans: 'Figtree', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 88px;

  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: clamp(4.5rem, 10vw, 9rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------- foundations ------------------------------ */

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-3);
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 1.5rem + 3.4vw, 4.1rem); line-height: 1.08; }
h2 { font-size: clamp(1.75rem, 1.25rem + 2vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem); line-height: 1.25; }

p { margin: 0 0 var(--s-3); max-width: 64ch; }
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration-color: rgba(198, 161, 91, 0.65); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }

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

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

.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: fixed; top: 0; left: 50%; translate: -50% -120%;
  background: var(--navy); color: var(--white); padding: 0.75rem 1.25rem;
  z-index: 200; text-decoration: none; transition: translate 0.2s var(--ease);
}
.skip-link:focus { translate: -50% 0; }

.eyebrow {
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin: 0 0 var(--s-2);
}
.muted { color: var(--grey); }
.small { font-size: 0.875rem; }

/* Thin gold underline beneath section headings. */
.rule { position: relative; padding-bottom: var(--s-3); }
.rule::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 68px; height: 2px; background: var(--gold);
}

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  padding: 1rem 1.75rem; min-height: 52px;
  border: 1px solid transparent; text-decoration: none; cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-ghost-dark { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost-dark:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.btn-quiet {
  background: transparent; color: var(--white); border-color: transparent;
  padding-inline: 0.25rem; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.35);
}
.btn-quiet:hover { text-decoration-color: var(--gold); }

.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-3); align-items: center; width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: none; color: var(--navy);
  border-bottom: 1px solid var(--gold); padding-bottom: 0.35rem;
  transition: gap 0.3s var(--ease);
}
.link-arrow svg { width: 18px; height: 18px; color: var(--gold); transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 0.85rem; }
.link-arrow:hover svg { transform: translateX(3px); }
.dark .link-arrow, .hero .link-arrow { color: var(--white); }

/* --------------------------------- header --------------------------------- */

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(102, 112, 133, 0.16);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 10px 30px -22px rgba(11, 31, 51, 0.55); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.brand-mark { width: auto; height: clamp(52px, 6vw, 66px); }
.brand-type { display: grid; gap: 0.18rem; }
.brand-name {
  font-family: var(--serif); font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.35rem);
  line-height: 1.1; color: var(--navy); white-space: nowrap;
}
.brand-sub {
  font-size: 0.5625rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--grey); font-weight: 600; white-space: nowrap;
}
.brand-footer { display: inline-block; text-decoration: none; }
.brand-footer img { width: clamp(150px, 16vw, 190px); height: auto; }

.primary-nav { display: none; margin-inline-start: auto; }
.nav-list { display: flex; align-items: center; gap: clamp(0.5rem, 1.6vw, 1.75rem); }
.nav-item { position: relative; }

.nav-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--navy);
  text-decoration: none; background: none; border: 0; cursor: pointer;
  padding: 0.75rem 0; font-family: var(--sans);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0.4rem;
  height: 1px; background: var(--gold); transition: right 0.35s var(--ease);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after, .nav-link[aria-expanded="true"]::after { right: 0; }
.chev { width: 11px; height: 8px; transition: transform 0.3s var(--ease); }
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }

.megamenu {
  position: absolute; top: calc(100% + 1px); left: 50%; translate: -50% 0;
  width: min(92vw, 940px);
  background: var(--white);
  border: 1px solid rgba(102, 112, 133, 0.18);
  border-top: 2px solid var(--gold);
  box-shadow: 0 40px 70px -50px rgba(11, 31, 51, 0.65);
  padding: var(--s-4);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.megamenu[hidden] { display: block; visibility: hidden; }
.megamenu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; visibility: visible; }
.megamenu-inner { display: grid; grid-template-columns: 260px 1fr; gap: var(--s-4); }
.mm-eyebrow {
  font-family: var(--serif); font-size: 1.375rem; color: var(--navy); margin: 0 0 0.75rem;
  text-transform: none; letter-spacing: 0;
}
.mm-copy { font-size: 0.9375rem; color: var(--grey); }
.mm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.25rem 1.5rem; }
.mm-grid a {
  display: block; padding: 0.7rem 0.85rem; text-decoration: none;
  border-left: 2px solid transparent; transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.mm-grid a:hover, .mm-grid a:focus-visible { background: var(--mist); border-left-color: var(--gold); }
.mm-title { display: block; font-weight: 600; font-size: 0.9375rem; }
.mm-blurb { display: block; font-size: 0.8125rem; color: var(--grey); line-height: 1.45; margin-top: 0.15rem; }

.header-actions { display: flex; align-items: center; gap: var(--s-2); }
.call-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--navy); text-decoration: none;
  border-radius: 999px; padding: 0.7rem; min-width: 46px; min-height: 46px;
  justify-content: center; font-weight: 600; font-size: 0.9375rem;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.call-btn svg { width: 20px; height: 20px; }
.call-btn:hover { background: var(--navy); color: var(--gold); }
.call-btn-text { display: none; }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; background: none; border: 1px solid rgba(102, 112, 133, 0.3);
  cursor: pointer; color: var(--navy);
}
.burger-bars { display: grid; gap: 5px; width: 20px; }
.burger-bars span { height: 1.5px; background: currentColor; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.burger[aria-expanded="true"] .burger-bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-bars span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  background: var(--navy); color: var(--white);
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  padding: var(--s-3) var(--gutter) var(--s-4);
}
.mnav-list > li { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.mnav-list a {
  display: block; padding: 1rem 0; font-family: var(--serif); font-size: 1.25rem;
  text-decoration: none; color: var(--white);
}
.mnav-group { display: grid; grid-template-columns: 1fr auto; align-items: center; }
.mnav-expand {
  background: none; border: 1px solid rgba(255, 255, 255, 0.25); color: var(--gold);
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.mnav-expand[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mnav-sub { grid-column: 1 / -1; padding: 0 0 var(--s-2) 0.75rem; border-left: 1px solid rgba(198, 161, 91, 0.4); }
.mnav-sub a { font-family: var(--sans); font-size: 1rem; padding: 0.6rem 0; color: rgba(255, 255, 255, 0.86); }
.mnav-cta { display: grid; gap: 0.75rem; margin-top: var(--s-3); }

/* ------------------------------- breadcrumbs ------------------------------ */

.breadcrumbs { background: var(--navy); color: rgba(255, 255, 255, 0.75); font-size: 0.8125rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.85rem 0 0; }
.breadcrumbs li + li::before { content: '/'; color: var(--gold); margin-right: 0.5rem; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current] { color: var(--white); }

/* ---------------------------------- hero ---------------------------------- */

.hero { background: linear-gradient(150deg, #0e2740 0%, var(--navy) 58%, #081827 100%); color: var(--white); display: grid; }
.hero-copy { padding-block: clamp(3rem, 7vw, 7rem) clamp(3rem, 6vw, 6rem); padding-inline: 0; display: flex; align-items: center; }
/* Left edge lines up with the header and the rest of the page; the column
   grows with the viewport instead of staying a fixed narrow tube. */
.hero-copy-inner {
  width: 100%;
  max-width: 720px;
  margin-inline-start: max(var(--gutter), calc((100vw - var(--wrap)) / 2));
  margin-inline-end: var(--gutter);
}
.hero h1 { color: var(--white); margin-bottom: var(--s-3); }
.hero h1 { max-width: 18ch; }
.hero .lead {
  font-size: clamp(1.0625rem, 1rem + 0.45vw, 1.3125rem); line-height: 1.6;
  color: rgba(255, 255, 255, 0.84); margin-bottom: var(--s-4); max-width: 60ch;
}
.hero-media { position: relative; min-height: 46vw; background: #050f1a; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11, 31, 51, 0.92) 0%, rgba(11, 31, 51, 0.34) 42%, rgba(11, 31, 51, 0.12) 100%);
}
.hero-img.is-photo, .frame-img.is-photo { filter: saturate(0.72) contrast(1.06) brightness(0.94); }
.split-media { isolation: isolate; }
.split-media::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.28), rgba(11, 31, 51, 0.06));
}

.trust {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  margin-top: var(--s-4); padding-top: var(--s-3);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.875rem; color: rgba(255, 255, 255, 0.8);
}
.trust-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.trust-stars svg { width: 16px; height: 16px; }
.trust-text strong { color: var(--white); font-weight: 600; }
.trust-points { gap: 0.5rem 1.75rem; }
.trust-points li { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-points svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* -------------------------------- sections -------------------------------- */

.section { padding-block: var(--s-6); }
.section.tint { background: var(--mist); }
.section.dark { background: linear-gradient(160deg, #0d2439 0%, var(--navy) 55%, #081827 100%); color: var(--white); }
.section.dark h2, .section.dark h3 { color: var(--white); }

.section-head { max-width: 58ch; margin-bottom: var(--s-5); }
.section-intro { color: var(--grey); font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.1875rem); line-height: 1.65; }
.section.dark .section-intro { color: rgba(255, 255, 255, 0.75); }
.section.tint .section-intro { color: var(--navy); opacity: 0.78; }

.split-grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-copy p { color: var(--grey); }
.section.tint .split-copy p { color: var(--navy); opacity: 0.82; }
.split-copy .link-arrow { margin-top: var(--s-2); }
.split-media { position: relative; }
.frame-img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border: 1px solid rgba(198, 161, 91, 0.35);
}
.split-media::after {
  content: ''; position: absolute; inset: auto -12px -12px auto;
  width: 45%; height: 45%; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  pointer-events: none; opacity: 0.5;
}

/* cards */
.card-grid { display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--white); padding: var(--s-4) var(--s-3) var(--s-3);
  border-top: 2px solid var(--gold);
  display: flex; flex-direction: column; gap: 0.5rem; position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(102, 112, 133, 0.14);
  transition: box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 36px 60px -46px rgba(11, 31, 51, 0.72); }
.card:hover::after { box-shadow: inset 0 0 0 1px rgba(198, 161, 91, 0.55); }
.card p { color: var(--grey); font-size: 0.9375rem; flex: 1; }
.card .link-arrow { align-self: flex-start; margin-top: var(--s-2); }

/* steps */
.steps { display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.step { border-top: 1px solid rgba(102, 112, 133, 0.28); padding-top: var(--s-3); }
.step-num {
  display: block; font-family: var(--serif); font-size: 2.25rem; color: var(--gold);
  line-height: 1; margin-bottom: var(--s-2);
}
.step p { color: var(--grey); font-size: 0.9375rem; }

/* reasons (dark band) */
.reason-grid { display: grid; gap: var(--s-4) var(--s-3); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.reason { border-top: 1px solid rgba(198, 161, 91, 0.45); padding-top: var(--s-3); }
.reason p { color: rgba(255, 255, 255, 0.76); font-size: 0.9375rem; }

/* goals */
.goal-grid { display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.goal { background: var(--white); padding: var(--s-3); border-left: 2px solid var(--gold); }
.goal h3 { font-size: 1.125rem; margin-bottom: var(--s-2); }
.goal ul { display: grid; gap: 0.35rem; }
.goal a {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.55rem 0; text-decoration: none; font-size: 0.9375rem; font-weight: 500;
  border-bottom: 1px solid rgba(102, 112, 133, 0.18);
  transition: padding-left 0.28s var(--ease);
}
.goal a svg { width: 18px; height: 18px; color: var(--gold); }
.goal a:hover { padding-left: 0.35rem; }
.goal li:last-child a { border-bottom: 0; }

/* product grid (hub) */
.product-grid { display: grid; gap: 0; background: var(--white); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); border: 1px solid rgba(102, 112, 133, 0.22); }
.product-card { background: var(--white); box-shadow: inset -1px -1px 0 rgba(102, 112, 133, 0.22); }
.product-card a {
  display: flex; flex-direction: column; gap: 0.5rem; height: 100%;
  padding: var(--s-4) var(--s-3); text-decoration: none;
  transition: background-color 0.3s var(--ease);
}
.product-card a:hover { background: var(--mist); }
.pc-num { font-family: var(--serif); font-size: 0.9375rem; color: var(--gold); letter-spacing: 0.08em; }
.product-card h3 { margin: 0; }
.product-card p { color: var(--grey); font-size: 0.9375rem; flex: 1; margin-bottom: var(--s-2); }
.product-card .link-arrow { align-self: flex-start; }

/* checklist + facts */
.checklist-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.ticks { display: grid; gap: 0.85rem; margin-top: var(--s-3); }
.ticks li { display: grid; grid-template-columns: 22px 1fr; gap: 0.85rem; align-items: start; }
.ticks svg { width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }
.ticks-tight { gap: 0.6rem; }
.facts { background: var(--navy); color: var(--white); padding: var(--s-4) var(--s-3); }
.facts h3 { color: var(--white); font-size: 1.125rem; margin-bottom: var(--s-3); padding-bottom: 0.75rem; border-bottom: 1px solid rgba(198, 161, 91, 0.45); }
.facts dl { margin: 0; display: grid; gap: 0.85rem; }
.facts dl > div { display: grid; gap: 0.15rem; }
.facts dt { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.facts dd { margin: 0; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.9); }
.facts-note { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); margin: var(--s-3) 0 0; }

/* introducer */
.introducer { background: var(--navy); color: var(--white); }
.introducer-inner { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.introducer h2 { color: var(--white); }
.introducer p { color: rgba(255, 255, 255, 0.78); }
.introducer .btn { margin-top: var(--s-2); }

/* faqs */
.faq-wrap .section-head, .faq-wrap .faq-list { max-width: 900px; }
.faq-list { display: grid; }
.faq { border-bottom: 1px solid rgba(102, 112, 133, 0.28); }
.faq:first-child { border-top: 1px solid rgba(102, 112, 133, 0.28); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.3125rem); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold); transition: transform 0.3s var(--ease);
}
.faq-icon::before { inset: 8px 0 auto; height: 2px; }
.faq-icon::after { inset: 0 8px auto; width: 2px; height: 18px; }
.faq[open] .faq-icon::after { transform: scaleY(0); }
.faq-body { padding-bottom: 1.35rem; }
.faq-body p { color: var(--grey); margin: 0; }
.faq[open] .faq-body { animation: faqIn 0.35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* cta band */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, #10304c 100%); color: var(--white); padding-block: clamp(3.5rem, 7vw, 6rem); position: relative; }
.cta-band::before { content: ''; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-inner { display: grid; gap: var(--s-4); align-items: center; }
.cta-band h2 { color: var(--white); margin-bottom: var(--s-2); }
.cta-band p { color: rgba(255, 255, 255, 0.78); margin: 0; }

/* contact */
.contact-grid { display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.contact-card { background: var(--mist); padding: var(--s-3); display: flex; flex-direction: column; gap: 0.4rem; }
.contact-card .ci { color: var(--gold); }
.contact-card .ci svg { width: 26px; height: 26px; }
.contact-card h3 { margin: 0.5rem 0 0; font-size: 1.125rem; }
.contact-card p { font-size: 0.9375rem; margin: 0; flex: 1; }
.contact-card .link-arrow { align-self: flex-start; margin-top: var(--s-2); }

/* form */
.form-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-copy p { color: var(--navy); opacity: 0.82; }
.alt-contact { display: grid; gap: 0.9rem; margin-top: var(--s-4); justify-items: start; }
.alt-contact .link-arrow svg { width: 18px; height: 18px; }
.enquiry-form { background: var(--white); padding: clamp(1.5rem, 3vw, 2.5rem); border-top: 2px solid var(--gold); box-shadow: 0 40px 60px -55px rgba(11, 31, 51, 0.8); }
.field { display: grid; gap: 0.4rem; margin-bottom: var(--s-2); }
.field-row { display: grid; gap: var(--s-2); }
.field label { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.field label span { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--navy);
  background: var(--mist); border: 1px solid transparent; border-bottom: 1px solid rgba(102, 112, 133, 0.45);
  padding: 0.85rem 0.9rem; min-height: 50px; width: 100%;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--gold); outline-offset: 0; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-bottom-color: var(--navy); border-bottom-width: 2px; }
.field-check { grid-template-columns: 22px 1fr; align-items: start; gap: 0.75rem; margin-block: var(--s-3); }
.field-check input { width: 22px; height: 22px; min-height: 0; accent-color: var(--gold); margin-top: 2px; }
.field-check label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.875rem; color: var(--grey); }
.field-check .err { grid-column: 1 / -1; }
.err { font-size: 0.8125rem; color: var(--navy); font-weight: 600; margin: 0; }
.err::before { content: '— '; color: var(--gold); }
.form-note { font-size: 0.8125rem; color: var(--grey); margin: var(--s-2) 0 0; }
.form-status:not(:empty) { margin-top: var(--s-2); font-weight: 600; font-size: 0.9375rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------- footer --------------------------------- */

.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.75); padding-block: var(--s-5) var(--s-3); font-size: 0.9375rem; }
.footer-grid { display: grid; gap: var(--s-4); }

.footer-tag { color: var(--gold); font-family: var(--serif); font-size: 1.125rem; margin: var(--s-3) 0 var(--s-2); }
.footer-brand { display: grid; justify-items: start; }
.footer-note { font-size: 0.875rem; max-width: 42ch; }
.footer-h { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin: 0 0 var(--s-2); }
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: grid; grid-template-columns: 20px 1fr; gap: 0.7rem; align-items: start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); margin-top: 4px; }
.footer-contact address { font-style: normal; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.14); margin-top: var(--s-4); padding-top: var(--s-3); font-size: 0.8125rem; color: rgba(255, 255, 255, 0.6); }
.footer-legal p { margin: 0 0 0.5rem; max-width: none; }
.footer-disclaimer { max-width: 90ch; }

/* --------------------------------- motion --------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.no-js .reveal, .reveal.is-static { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .card:hover { transform: none; }
}

/* ------------------------------- breakpoints ------------------------------ */

@media (max-width: 599px) {
  /* Thumb-friendly: primary actions run the full width of the screen. */
  .hero .btn, .cta-band .btn, .introducer .btn { width: 100%; }
  .btn-row { gap: 0.75rem; }
  .brand-type { display: none; }
  .brand-mark { height: 56px; }
  .section-head { margin-bottom: var(--s-4); }
}

@media (min-width: 600px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .alt-contact { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }
}

@media (min-width: 860px) {
  .split-grid { grid-template-columns: 1fr 1fr; }
  .split-reverse .split-copy { order: 2; }
  .checklist-grid { grid-template-columns: 1.35fr 0.9fr; }
  .form-grid { grid-template-columns: 0.9fr 1.1fr; }
  .introducer-inner { grid-template-columns: 0.85fr 1.15fr; }
  .cta-inner { grid-template-columns: 1.2fr auto; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 0.8fr 1fr; }
  .hero { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
  .hero-media { min-height: 100%; }
  .hero-copy-inner { margin-inline-end: clamp(2rem, 4vw, 4.5rem); }
}

@media (min-width: 1080px) {
  :root { --header-h: 104px; }
  .primary-nav { display: block; }
  .burger { display: none; }
  .call-btn { padding-inline: 1.1rem; }
  .call-btn-text { display: inline; }
}

@media (max-width: 1079px) {
  .hero-copy-inner { margin-inline: var(--gutter); }
}

/* Print: keep it readable and ink-light. */
@media print {
  .site-header, .mobile-nav, .cta-band, .enquiry-form, .breadcrumbs { display: none !important; }
  body { padding-top: 0; color: #000; }
  .hero, .section.dark, .site-footer, .introducer { background: #fff !important; color: #000 !important; }
}
