/* ==========================================================================
   Harbourne Maritime — Admiralty & Maritime Counsel, Chennai
   Design: "Charted" — abyssal navy + foam + brass beacon; nautical-chart motif.
   Type: Fraunces (display serif) + Archivo (grotesque UI/body).
   ========================================================================== */

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { min-height: 100%; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:where(ul, ol) { list-style: none; padding: 0; }

/* ---- Tokens --------------------------------------------------------------- */
:root {
  --navy:      #0C2233;
  --hull:      #081824;
  --navy-700:  #123044;
  --navy-panel:#10293b;
  --foam:      #7FB0C4;
  --foam-200:  #C6DEE6;
  --foam-050:  #EAF2F4;
  --paper:     #F1F5F6;
  --paper-card:#FFFFFF;
  --ink:       #0C2233;
  --ink-soft:  #4A6272;
  --brass:     #C79A45;
  --brass-600: #A87F32;

  --on-dark:      #E7EEF1;
  --on-dark-soft: #9EB6C2;

  --line:      rgba(12, 34, 51, 0.12);
  --line-soft: rgba(12, 34, 51, 0.07);
  --line-foam: rgba(127, 176, 196, 0.24);
  --line-foam-strong: rgba(127, 176, 196, 0.42);

  --shadow-1: 0 1px 2px rgba(8, 24, 36, .06), 0 8px 24px rgba(8, 24, 36, .07);
  --shadow-2: 0 2px 6px rgba(8, 24, 36, .10), 0 24px 60px rgba(8, 24, 36, .16);

  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:  "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Base ----------------------------------------------------------------- */
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(16px, 0.5vw + 15px, 18px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
}
h2 { font-size: clamp(1.9rem, 1.1rem + 3.4vw, 3.35rem); }
h3 { font-size: clamp(1.35rem, 1rem + 1.4vw, 1.9rem); }

p { text-wrap: pretty; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ---- Utility layout ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(64px, 8vw, 124px); position: relative; }
.section--paper { background: var(--paper); }
.section--white { background: #fff; }
.section--dark  { background: var(--navy); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

/* Chart-style eyebrow / label */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-600);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .8;
}
.section--dark .eyebrow { color: var(--brass); }

.coord {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: .12em;
  font-size: .72rem;
  text-transform: uppercase;
}

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--brass); color: var(--hull);
  padding: 10px 16px; border-radius: var(--radius);
  font-weight: 600; z-index: 200;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }

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

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .82em 1.4em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary { background: var(--brass); color: var(--hull); box-shadow: 0 8px 22px rgba(199,154,69,.28); }
.btn--primary:hover { background: #d8ab52; box-shadow: 0 10px 28px rgba(199,154,69,.38); }

.btn--ghost { background: transparent; color: var(--on-dark); border-color: var(--line-foam-strong); }
.btn--ghost:hover { border-color: var(--foam); color: #fff; background: rgba(127,176,196,.08); }

.btn--ink { background: var(--navy); color: #fff; }
.btn--ink:hover { background: var(--hull); box-shadow: var(--shadow-2); }

.btn--wa { background: #ffffff; color: var(--ink); border-color: var(--line); }
.btn--wa:hover { border-color: var(--foam); box-shadow: var(--shadow-1); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }
.site-header.scrolled {
  background: rgba(8, 24, 36, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line-foam);
}
/* On light (interior) pages the header starts solid */
.header--solid { position: sticky; background: rgba(8,24,36,.94); }

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__mark .rose { transform-origin: 50% 50%; transition: transform .6s var(--ease); }
.brand:hover .brand__mark .rose { transform: rotate(45deg); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.16rem; letter-spacing: .01em; color: #fff; }
.brand__tag  { font-family: var(--sans); font-weight: 600; font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--foam); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__links { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 26px); }
.nav__links a {
  color: var(--on-dark-soft);
  text-decoration: none;
  font-size: .9rem; font-weight: 500;
  letter-spacing: .01em;
  padding: 6px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 100%; background: var(--brass);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__links a:hover, .nav__links a:focus-visible { color: #fff; }
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); }
.nav .btn { padding: .6em 1.05em; font-size: .86rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-foam-strong);
  border-radius: var(--radius);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--foam-200);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-2px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8, 24, 36, 0.98);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-foam);
    padding: 8px clamp(20px, 5vw, 48px) 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .28s var(--ease), opacity .28s var(--ease);
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a { padding: 15px 2px; border-bottom: 1px solid var(--line-foam); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav .btn { margin-top: 18px; justify-content: center; }
}

/* ==========================================================================
   Chart backdrop primitives (the signature system)
   ========================================================================== */
.chartgrid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-foam) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-foam) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 72%);
          mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 72%);
  opacity: .55;
}

/* rhumb / bearing lines radiating from a datum */
.rhumb { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.rhumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.waterline { display: block; width: 100%; height: auto; color: var(--paper); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--hull);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(8,24,36,.72) 0%, rgba(8,24,36,.58) 34%, rgba(8,24,36,.86) 100%),
    linear-gradient(90deg, rgba(8,24,36,.78) 0%, rgba(8,24,36,.30) 62%, rgba(8,24,36,.10) 100%);
}
.hero__grid { z-index: -1; opacity: .5; }

.hero__inner { position: relative; padding-top: clamp(128px, 20vh, 210px); padding-bottom: clamp(72px, 12vh, 132px); }
.hero__datum {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--foam);
  margin-bottom: 26px;
}
.hero__datum .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px rgba(199,154,69,.18); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 1.1rem + 6.4vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 15ch;
}
.hero h1 em { color: var(--foam-200); font-weight: 500; }
.hero__lede {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(1.02rem, .95rem + .4vw, 1.2rem);
  color: var(--on-dark-soft);
}
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__rose {
  position: absolute;
  right: clamp(-60px, -2vw, 20px); top: clamp(88px, 14vh, 150px);
  width: clamp(190px, 26vw, 380px); height: auto;
  color: var(--foam);
  opacity: .9;
  z-index: -1;
}
@media (max-width: 720px) { .hero__rose { opacity: .28; right: -30%; top: auto; bottom: 4%; } }

/* Datum strip under hero */
.hero__strip {
  border-top: 1px solid var(--line-foam);
  background: rgba(8,24,36,.55);
}
.hero__strip .wrap { display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 56px); padding-block: 20px; }
.hero__strip .item { display: flex; flex-direction: column; gap: 3px; }
.hero__strip .item b { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: #fff; }
.hero__strip .item span { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-soft); }

/* waterline at hero base */
.hero__wave { position: relative; line-height: 0; margin-top: -1px; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .brand__mark .rose, .hero__rose, .btn .arrow { transition: none !important; }
}

/* ==========================================================================
   Section head
   ========================================================================== */
.sec-head { max-width: 62ch; }
.sec-head--split { display: grid; gap: 24px 48px; grid-template-columns: 1fr; align-items: end; max-width: none; }
@media (min-width: 860px) { .sec-head--split { grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); } }
.sec-head h2 { margin-top: 18px; }
.sec-head p { margin-top: 20px; color: var(--ink-soft); font-size: 1.08rem; }
.section--dark .sec-head p { color: var(--on-dark-soft); }

/* ==========================================================================
   Positioning / statement band
   ========================================================================== */
.statement { display: grid; gap: clamp(32px, 5vw, 72px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .statement { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: start; } }
.statement__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.15rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.statement__lead em { color: var(--brass-600); font-style: italic; }
.statement__body p { color: var(--ink-soft); }
.statement__body p + p { margin-top: 1em; }

.facts { margin-top: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.facts .fact { background: var(--paper-card); padding: 20px 20px 18px; }
.facts .fact b { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--navy); line-height: 1; }
.facts .fact span { display: block; margin-top: 8px; font-size: .82rem; color: var(--ink-soft); letter-spacing: .01em; }

/* ==========================================================================
   Practice — alternating feature rows
   ========================================================================== */
.practice { display: flex; flex-direction: column; gap: clamp(46px, 7vw, 104px); margin-top: clamp(46px, 6vw, 84px); }
.feature { display: grid; gap: clamp(26px, 4vw, 58px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature__media { order: 2; }
}
.feature__media {
  position: relative;
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 3;
  background: var(--navy-700);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.045); }
.feature__code {
  position: absolute; left: 16px; top: 14px; z-index: 2;
  font-family: var(--sans); font-weight: 700; letter-spacing: .12em;
  font-size: .72rem; color: var(--hull);
  background: var(--brass); padding: 5px 10px; border-radius: 3px;
}
.feature__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(8,24,36,0) 45%, rgba(8,24,36,.34) 100%);
  pointer-events: none;
}
.feature__body h3 { margin-bottom: 14px; }
.feature__body > p { color: var(--ink-soft); }
.feature__list { margin-top: 20px; display: grid; grid-template-columns: 1fr; gap: 1px; border-top: 1px solid var(--line); }
.feature__list li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 11px 2px; border-bottom: 1px solid var(--line);
  font-size: .95rem; color: var(--ink);
}
.feature__list li::before {
  content: ""; flex: none; width: 6px; height: 6px; margin-top: .45em;
  background: var(--foam); transform: rotate(45deg);
}

/* ==========================================================================
   Ports — bearing table (signature)
   ========================================================================== */
.ports { display: grid; gap: clamp(34px, 5vw, 68px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .ports { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); } }

.ports__rose { position: relative; }
.ports__rose figure { position: relative; }
.ports__rose svg { width: 100%; max-width: 400px; height: auto; margin-inline: auto; color: var(--foam); }
.ports__rose figcaption {
  margin-top: 18px; text-align: center;
  color: var(--on-dark-soft); font-size: .84rem;
}
.ports__rose figcaption b { color: var(--foam); font-weight: 600; }

.bearing-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bearing {
  width: 100%; border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.bearing caption { text-align: left; color: var(--on-dark-soft); font-size: .82rem; letter-spacing: .04em; padding-bottom: 12px; }
.bearing th, .bearing td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line-foam); white-space: nowrap; }
.bearing thead th {
  font-family: var(--sans); font-weight: 600; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--foam);
  border-bottom-color: var(--line-foam-strong);
}
.bearing tbody th { font-family: var(--serif); font-weight: 500; font-size: 1.08rem; color: #fff; }
.bearing td { color: var(--on-dark); }
.bearing td.brg { color: var(--brass); font-weight: 600; letter-spacing: .06em; }
.bearing td.role { color: var(--on-dark-soft); font-size: .86rem; white-space: normal; }
.bearing tbody tr { transition: background .2s var(--ease); }
.bearing tbody tr:hover { background: rgba(127,176,196,.07); }
.bearing tbody tr.home th { color: var(--brass); }
.bearing tbody tr.home td.brg { color: var(--foam); }

/* ==========================================================================
   Passage plan (approach) — log-book cards over chart image
   ========================================================================== */
.passage { position: relative; }
.passage__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.passage__media img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(.7); }
.passage__inner { position: relative; z-index: 1; }
.plan { margin-top: clamp(40px, 5vw, 64px); display: grid; gap: 1px; background: var(--line-foam); border: 1px solid var(--line-foam); border-radius: 6px; overflow: hidden; }
@media (min-width: 720px) { .plan { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .plan { grid-template-columns: repeat(4, 1fr); } }
.leg { background: var(--navy); padding: 28px 26px 32px; position: relative; }
.leg__no { font-family: var(--sans); font-weight: 700; font-size: .74rem; letter-spacing: .18em; color: var(--brass); }
.leg h3 { color: #fff; font-size: 1.32rem; margin: 16px 0 12px; }
.leg p { color: var(--on-dark-soft); font-size: .93rem; line-height: 1.6; }
.leg::before {
  content: ""; position: absolute; left: 26px; top: 22px; width: 8px; height: 8px;
  background: var(--foam); border-radius: 50%; opacity: 0;
}

/* ==========================================================================
   Counsel
   ========================================================================== */
.counsel { margin-top: clamp(40px, 5vw, 64px); display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .counsel { grid-template-columns: repeat(3, 1fr); } }
.person {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 26px 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; }
.person__mono {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: var(--brass);
  font-family: var(--serif); font-weight: 600; font-size: 1.2rem;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.person h3 { font-size: 1.28rem; }
.person .role { margin-top: 6px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-600); font-weight: 600; }
.person p { margin-top: 14px; color: var(--ink-soft); font-size: .93rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; }
.cta-band .rhumb { opacity: .6; }
.cta-band__inner { position: relative; z-index: 1; display: grid; gap: 30px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .cta-band__inner { grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); } }
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: var(--foam-200); }
.cta-band p { margin-top: 16px; color: var(--on-dark-soft); max-width: 44ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 14px; }
.cta-band__actions .btn { justify-content: center; }
.contact-line { display: inline-flex; align-items: center; gap: 10px; color: var(--foam); text-decoration: none; font-weight: 500; font-size: .96rem; }
.contact-line:hover { color: #fff; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.page-hero {
  background: var(--navy); color: var(--on-dark);
  position: relative; overflow: hidden; isolation: isolate;
  padding-top: clamp(118px, 15vh, 168px); padding-bottom: clamp(48px, 7vw, 84px);
}
.page-hero .chartgrid { opacity: .4; }
.page-hero__rose { position: absolute; right: -6%; top: 12%; width: clamp(200px, 24vw, 340px); color: var(--foam); opacity: .18; z-index: -1; }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 1.3rem + 4.2vw, 4rem); max-width: 16ch; margin-top: 20px; }
.page-hero p { margin-top: 20px; max-width: 52ch; color: var(--on-dark-soft); font-size: 1.08rem; }
.breadcrumbs { font-size: .82rem; color: var(--on-dark-soft); }
.breadcrumbs a { color: var(--foam); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.contact-grid { display: grid; gap: clamp(34px, 5vw, 64px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); } }

/* Form */
.form-card { background: var(--paper-card); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-1); padding: clamp(24px, 3.5vw, 40px); }
.form-row { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.field:first-of-type { margin-top: 0; }
.form-row .field { margin-top: 0; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--navy); }
.field label .req { color: var(--brass-600); }
.field input, .field select, .field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%234A6272' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--foam); box-shadow: 0 0 0 3px rgba(127,176,196,.28); }
.field input::placeholder, .field textarea::placeholder { color: #92a6b0; }
.form-foot { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.form-foot .btn { flex: none; }
.form-note { font-size: .84rem; color: var(--ink-soft); max-width: 34ch; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Contact aside */
.contact-aside { display: flex; flex-direction: column; gap: 26px; }
.info-card { background: var(--navy); color: var(--on-dark); border-radius: 8px; padding: 28px 26px; position: relative; overflow: hidden; }
.info-card .chartgrid { opacity: .3; }
.info-card > * { position: relative; z-index: 1; }
.info-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.info-list { margin-top: 18px; display: flex; flex-direction: column; gap: 16px; }
.info-list .row { display: flex; gap: 13px; align-items: flex-start; }
.info-list .row svg { flex: none; margin-top: 3px; color: var(--brass); }
.info-list .row a, .info-list .row span { color: var(--on-dark); text-decoration: none; }
.info-list .row a:hover { color: var(--foam); }
.info-list .row .lbl { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 2px; }
.info-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.info-actions .btn { justify-content: center; }

.hours-card { border: 1px solid var(--line); border-radius: 8px; padding: 24px 26px; background: var(--paper-card); }
.hours-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.hours-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: .92rem; }
.hours-card dt { color: var(--ink-soft); }
.hours-card dd { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }

/* ==========================================================================
   Thank-you page
   ========================================================================== */
.confirm {
  min-height: 100dvh; display: grid; place-items: center;
  background: var(--navy); color: var(--on-dark);
  position: relative; overflow: hidden; isolation: isolate;
  padding: 100px 20px 60px;
  text-align: center;
}
.confirm .chartgrid { opacity: .4; }
.confirm__rose { position: absolute; z-index: -1; width: min(560px, 90vw); color: var(--foam); opacity: .12; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.confirm__inner { position: relative; z-index: 1; max-width: 620px; }
.confirm__badge { width: 76px; height: 76px; margin: 0 auto 28px; }
.confirm h1 { color: #fff; font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.4rem); }
.confirm p { margin-top: 20px; color: var(--on-dark-soft); font-size: 1.1rem; }
.confirm .next { margin-top: 30px; display: inline-flex; text-align: left; gap: 14px; align-items: flex-start; background: rgba(127,176,196,.08); border: 1px solid var(--line-foam); border-radius: 8px; padding: 18px 22px; color: var(--on-dark); font-size: .95rem; max-width: 520px; }
.confirm .next svg { flex: none; color: var(--brass); margin-top: 2px; }
.confirm__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--hull); color: var(--on-dark-soft); padding-block: clamp(52px, 6vw, 84px) 34px; border-top: 1px solid var(--line-foam); }
.footer-top { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-top { grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0,1fr)); } }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { max-width: 38ch; font-size: .92rem; color: var(--on-dark-soft); }
.footer-brand address { font-style: normal; margin-top: 18px; font-size: .9rem; line-height: 1.7; color: var(--on-dark-soft); }
.footer-brand address a { color: var(--foam); text-decoration: none; }
.footer-brand address a:hover { text-decoration: underline; }
.footer-col h4 { font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--foam); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--on-dark-soft); text-decoration: none; font-size: .93rem; transition: color .18s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line-foam); border-radius: 50%; display: grid; place-items: center; color: var(--foam); transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease); }
.footer-social a:hover { border-color: var(--foam); color: #fff; background: rgba(127,176,196,.1); }

.footer-bottom {
  margin-top: clamp(38px, 5vw, 60px); padding-top: 26px;
  border-top: 1px solid var(--line-foam);
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between;
  font-size: .84rem;
}
.footer-bottom a { color: var(--foam); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }
.footer-credit { color: var(--on-dark-soft); }

/* ==========================================================================
   Small helpers / responsive
   ========================================================================== */
.text-serif { font-family: var(--serif); }
@media (max-width: 480px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .hero__strip .item b { font-size: 1rem; }
}
