/* ==========================================================================
   Canon Consulting — site styles
   Brand: navy, gray, white, subtle teal. Clean, professional, credible.
   No build step, no dependencies. Edit this file directly.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------ */

:root {
  --navy-900: #0b1f33;
  --navy-800: #0f2a43;
  --navy-700: #16395a;
  --navy-600: #1f4a72;

  --teal-700: #0b6b6a;
  --teal-600: #0e7c7b;
  --teal-500: #12938f;
  --teal-050: #e7f3f2;

  --slate-800: #26333f;
  --slate-700: #3e4c5a;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;

  --line: #e4eaf0;
  --surface: #f6f8fa;
  --surface-2: #eef2f6;
  --white: #ffffff;

  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 4px 16px rgba(11, 31, 51, 0.07);
  --shadow-lg: 0 18px 44px rgba(11, 31, 51, 0.12);

  --wrap: 1120px;
  --wrap-narrow: 760px;

  --sans: ui-sans-serif, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, "Cascadia Mono", Menlo, Consolas,
    monospace;

  /* The site commits to a light palette; stop browsers dark-ifying form
     controls out from under it. */
  color-scheme: light;
}

/* --- Base -------------------------------------------------------------- */

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  color: var(--navy-900);
  line-height: 1.18;
  letter-spacing: -0.018em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 1.35rem + 2.9vw, 3.4rem);
  letter-spacing: -0.028em;
}
h2 {
  font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.2rem);
}
h3 {
  font-size: 1.16rem;
}
h4 {
  font-size: 1rem;
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--teal-700);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover {
  color: var(--teal-500);
}

strong {
  color: var(--slate-800);
  font-weight: 650;
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.15em;
}
li {
  margin-bottom: 0.4em;
}

img,
svg {
  max-width: 100%;
}

/* Several components below set an explicit `display`, which would otherwise beat
   the UA rule for [hidden] and leave "hidden" elements on screen. */
[hidden] {
  display: none !important;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

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

/* Available to screen readers, invisible on screen. Used to announce links
   that open in a new tab, which is otherwise a silent surprise. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip:focus {
  left: 0;
}

/* --- Layout ------------------------------------------------------------ */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.wrap-narrow {
  max-width: var(--wrap-narrow);
}

section {
  padding-block: clamp(3.2rem, 6vw, 5.5rem);
}

.section-tight {
  padding-block: clamp(2.4rem, 4vw, 3.6rem);
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(1.8rem, 3vw, 2.75rem);
}
.section-head p {
  font-size: 1.06rem;
  color: var(--slate-500);
  margin-bottom: 0;
}

.eyebrow {
  display: block;
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: clamp(1.06rem, 1rem + 0.3vw, 1.22rem);
  color: var(--slate-700);
  line-height: 1.6;
}

.muted {
  color: var(--slate-500);
}

.small {
  font-size: 0.9rem;
}

.fineprint {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.55;
}

.center {
  text-align: center;
}

/* --- Header ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text b {
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  color: var(--navy-900);
}
.brand-text span {
  font-size: 0.63rem;
  letter-spacing: 0.19em;
  color: var(--slate-500);
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--navy-800);
  cursor: pointer;
}
.nav-toggle:hover {
  background: var(--surface);
}
.nav-toggle svg {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.945rem;
  font-weight: 550;
  color: var(--slate-700);
  text-decoration: none;
}
.site-nav a:hover {
  background: var(--surface-2);
  color: var(--navy-800);
}
.site-nav a[aria-current="page"] {
  color: var(--navy-900);
  box-shadow: inset 0 -2px 0 var(--teal-600);
  border-radius: var(--radius) var(--radius) 0 0;
}
.site-nav .btn {
  margin-left: 0.5rem;
}
.site-nav .btn:hover {
  background: var(--navy-700);
  color: #fff;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem clamp(1.1rem, 4vw, 2rem) 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .site-nav[hidden] {
    display: none;
  }
  .site-nav a {
    padding: 0.7rem 0.75rem;
    font-size: 1rem;
  }
  .site-nav a[aria-current="page"] {
    background: var(--teal-050);
    box-shadow: none;
    border-radius: var(--radius);
  }
  .site-nav .btn {
    margin: 0.5rem 0 0;
    text-align: center;
  }
}

/* --- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.05s ease;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--navy-800);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-700);
  color: #fff;
}

.btn-accent {
  background: var(--teal-600);
  color: #fff;
}
.btn-accent:hover {
  background: var(--teal-500);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--slate-200);
  color: var(--navy-800);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--slate-400);
  color: var(--navy-900);
}

.btn-onnavy {
  background: #fff;
  color: var(--navy-900);
}
.btn-onnavy:hover {
  background: #eef4f9;
  color: var(--navy-900);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* --- Hero -------------------------------------------------------------- */

.hero {
  position: relative;
  background: linear-gradient(168deg, var(--navy-900) 0%, var(--navy-700) 62%, #1c4c74 100%);
  color: #dbe6f0;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  border-bottom: 1px solid var(--navy-900);
}

/* Faint grid — reads as structure/organisation without being loud. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 78% 24%, #000 0%, transparent 68%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
}

.hero h1 {
  color: #fff;
  max-width: 15ch;
}

.hero .eyebrow {
  color: #6fd3cd;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-lede {
  font-size: clamp(1.06rem, 1rem + 0.42vw, 1.25rem);
  color: #c3d4e3;
  max-width: 52ch;
  margin-bottom: 1.9rem;
}

.hero-note {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: #93aec5;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7fd8d2;
  font-weight: 650;
  margin-bottom: 1.1rem;
}
.hero-tagline i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* Hero card — the "here's what you actually get" panel */
.hero-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  backdrop-filter: blur(6px);
}
.hero-card h2 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 650;
}
.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-card li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.62rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7e4ef;
  font-size: 0.96rem;
  margin: 0;
}
.hero-card li:first-child {
  border-top: 0;
  padding-top: 0;
}
.hero-card li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #6fd3cd;
}

/* --- Page header (interior pages) -------------------------------------- */

.page-head {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.page-head h1 {
  max-width: 20ch;
  margin-bottom: 0.6rem;
}
.page-head .lede {
  max-width: 62ch;
  color: var(--slate-500);
  margin-bottom: 0;
}

/* --- Cards & grids ----------------------------------------------------- */

.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.4vw, 1.6rem);
  box-shadow: var(--shadow-sm);
}
.card h3 {
  margin-bottom: 0.4rem;
}
.card p:last-child {
  margin-bottom: 0;
}
.card .small {
  color: var(--slate-500);
}

.card-hover {
  transition: box-shadow 0.18s ease, transform 0.18s ease,
    border-color 0.18s ease;
}
.card-hover:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: #d3dee8;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--teal-050);
  color: var(--teal-700);
  margin-bottom: 0.9rem;
}

.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--teal-050);
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-navy {
  background: #e8eef4;
  color: var(--navy-700);
}
.tag-amber {
  background: #fdf2e0;
  color: #8a5a12;
}

/* Checklist */
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checks li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
}
.checks li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--teal-600);
}

/* Split feature block */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

/* --- Pricing ----------------------------------------------------------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.6vw, 1.85rem);
  box-shadow: var(--shadow-sm);
}

.plan-featured {
  border-color: var(--navy-800);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.plan-featured::after {
  content: "Most popular starting point";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--navy-800);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
}
.plan-price b {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-price span {
  color: var(--slate-500);
  font-size: 0.95rem;
}

.plan-hours {
  color: var(--slate-500);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  flex: 1;
}
.plan ul li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.plan ul li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--teal-600);
}

/* --- Tables ------------------------------------------------------------ */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 460px;
}

th,
td {
  text-align: left;
  padding: 0.82rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

thead th {
  background: var(--surface);
  color: var(--navy-900);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td.num,
th.num {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* --- Sample-work styling ------------------------------------------------ */

.sample {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.sample-head {
  padding: 1.1rem clamp(1.1rem, 2.4vw, 1.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.sample-head h3 {
  margin-bottom: 0.25rem;
}
.sample-body {
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
}

/* The honesty label required by the operating plan — every sample says so. */
.sample-label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  background: #fdf6e8;
  border: 1px solid #f0dfba;
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  font-size: 0.83rem;
  color: #7a5312;
  margin: 0;
}
.sample-label svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.ba-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-panel > h4 {
  margin: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.ba-before > h4 {
  background: #fdeeee;
  color: #9b2c2c;
}
.ba-after > h4 {
  background: var(--teal-050);
  color: var(--teal-700);
}
.ba-panel table {
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.78rem;
}
.ba-panel th,
.ba-panel td {
  padding: 0.45rem 0.7rem;
  white-space: nowrap;
}
.ba-panel thead th {
  font-family: var(--sans);
  font-size: 0.68rem;
  background: #fff;
}
mark {
  background: #fff3bf;
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
}

/* --- FAQ (native disclosure) ------------------------------------------- */

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  padding: 1.05rem clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 620;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  background: var(--surface);
}
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--slate-400);
  border-bottom: 2px solid var(--slate-400);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.18s ease;
}
.faq details[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.faq .faq-answer {
  padding: 0 clamp(1.05rem, 2.4vw, 1.4rem) 1.15rem;
  color: var(--slate-700);
}
.faq .faq-answer p:last-child {
  margin-bottom: 0;
}

/* --- Steps ------------------------------------------------------------- */

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.steps li {
  position: relative;
  padding-top: 1.35rem;
  border-top: 2px solid var(--slate-200);
  margin: 0;
}
.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -0.85rem;
  left: 0;
  background: #fff;
  padding-right: 0.6rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  color: var(--teal-600);
}
.steps h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}
.steps p {
  font-size: 0.94rem;
  color: var(--slate-500);
  margin-bottom: 0;
}
.section-alt .steps li::before {
  background: var(--surface);
}

/* --- Quote / callout --------------------------------------------------- */

.callout {
  border-left: 3px solid var(--teal-600);
  background: var(--teal-050);
  padding: 1.1rem 1.35rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--slate-800);
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.55;
  font-style: italic;
}

/* --- CTA band ---------------------------------------------------------- */

.cta-band {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #cfe0ee;
}
.cta-band h2 {
  color: #fff;
  max-width: 20ch;
}
.cta-band p {
  max-width: 54ch;
  color: #b8cbdc;
}
.cta-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

/* --- Form -------------------------------------------------------------- */

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.field label {
  font-size: 0.88rem;
  font-weight: 620;
  color: var(--navy-900);
}
.field .hint {
  font-size: 0.82rem;
  color: var(--slate-500);
}
.field .req {
  color: #b3261e;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 0.97rem;
  color: var(--slate-800);
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 0.65rem 0.8rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea {
  resize: vertical;
  min-height: 132px;
}
input:hover,
select:hover,
textarea:hover {
  border-color: var(--slate-400);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(18, 147, 143, 0.16);
}
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #b3261e;
}
input[aria-invalid="true"]:focus,
textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
}

.error-text {
  font-size: 0.82rem;
  color: #b3261e;
  min-height: 0;
}
.error-text:empty {
  display: none;
}

/* Honeypot — bots fill it, humans never see it. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
}
.form-status[hidden] {
  display: none;
}
.form-status.is-ok {
  background: var(--teal-050);
  border: 1px solid #b9dedb;
  color: var(--teal-700);
}
.form-status.is-error {
  background: #fdeeee;
  border: 1px solid #f2c6c6;
  color: #9b2c2c;
}

/* --- Contact page layout ------------------------------------------------ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-aside .card + .card {
  margin-top: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
}
.contact-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.contact-list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--teal-600);
}
.contact-list b {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 700;
}

/* --- Footer ------------------------------------------------------------ */

.site-footer {
  background: var(--navy-900);
  color: #93aec5;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
  font-size: 0.93rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2.25rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: 0.5rem;
}
.site-footer a {
  color: #b8cbdc;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer .brand-text b {
  color: #fff;
}
.site-footer .brand-text span {
  color: #7d97ad;
}
.footer-blurb {
  margin: 1rem 0 0;
  max-width: 40ch;
  color: #8fa9c0;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #7d97ad;
}
.footer-tagline {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* --- Utilities --------------------------------------------------------- */

.stack > * + * {
  margin-top: 1rem;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-2 {
  margin-top: 1.5rem;
}
.mt-3 {
  margin-top: 2.25rem;
}

@media print {
  .site-header,
  .cta-band,
  .nav-toggle {
    display: none;
  }
  body {
    color: #000;
  }
}
