/* ===========================================================================
   Thanksmate — stylesheet
   Navy ink · sky accent · apricot warmth · warm off-white paper
   Sora display · Instrument Sans body
   =========================================================================== */

:root {
  --ink: #0D1B4C;
  --ink-2: #35507D;
  --ink-3: #516887;
  --ink-soft: #8A9BB7;

  --paper: #F7F3EC;
  --paper-2: #FFFDFC;
  --paper-warm: #FBEFE0;
  --cream: #F1E9DB;

  --rule: #E5DED0;
  --rule-2: #D6CFC1;

  --accent: #59B7FF;
  --accent-ink: #1B6FB3;
  --accent-soft: #DBEEFF;
  --accent-wash: #EAF4FF;

  --warm: #F4B38A;
  --warm-soft: #FFE1CF;

  --shadow-sm: 0 1px 2px rgba(13, 27, 76, 0.06);
  --shadow-md: 0 8px 24px -12px rgba(13, 27, 76, 0.18), 0 2px 6px rgba(13, 27, 76, 0.05);
  --shadow-lg: 0 30px 60px -28px rgba(13, 27, 76, 0.28), 0 8px 20px -8px rgba(13, 27, 76, 0.1);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1200px;
  --container-pad: clamp(20px, 4vw, 40px);

  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* --------------------------------------------------------------------------
   Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--accent-soft); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(38px, 5.5vw, 64px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: 20px; font-weight: 600; }

p { margin: 0; }

/* Accessibility skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: var(--ink);
  color: var(--paper-2);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 100;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(72px, 9vw, 128px);
}

/* --------------------------------------------------------------------------
   Eyebrows / small copy
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.eyebrow-light { color: var(--paper); opacity: 0.78; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-primary {
  background: var(--ink);
  color: var(--paper-2);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: #152569;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-2);
}
.btn-ghost:hover {
  background: var(--paper-2);
  border-color: var(--ink);
}

/* --------------------------------------------------------------------------
   Topbar
   -------------------------------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(213, 202, 182, 0.45);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark { width: 38px; height: 38px; border-radius: 11px; }
.brand-word {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-word strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-word em {
  font-style: normal;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}
.ink-accent { color: var(--accent-ink); }

.topnav {
  display: inline-flex;
  gap: 26px;
  margin-left: auto;
}
.topnav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 2px;
  position: relative;
}
.topnav a:hover { color: var(--ink); }
.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.2s ease;
  border-radius: 2px;
}
.topnav a:hover::after { right: 0; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-block: clamp(56px, 8vw, 112px) clamp(72px, 9vw, 128px);
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(89, 183, 255, 0.28), transparent 70%);
  top: -220px; right: -160px;
}
.hero::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(244, 179, 138, 0.32), transparent 70%);
  bottom: -180px; left: -120px;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-copy h1 {
  margin: 6px 0 20px;
}
.underline-accent {
  background-image: linear-gradient(transparent 68%, rgba(89, 183, 255, 0.42) 68%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 4px;
}

.lead {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 32px;
}
.lead em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  background: var(--accent-soft);
  padding: 1px 8px;
  border-radius: 6px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-chips li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* Hero visual */
.hero-visual {
  margin: 0;
  position: relative;
}
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(213, 202, 182, 0.6);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame-hero {
  aspect-ratio: 5 / 4;
  transform: rotate(-0.6deg);
}

.photo-caption {
  position: absolute;
  left: -14px;
  bottom: -18px;
  display: inline-flex;
  flex-direction: column;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper-2);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  max-width: 280px;
  transform: rotate(-1.4deg);
}
.caption-time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.caption-text {
  font-size: 14px;
  color: var(--paper-2);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Section heading block
   -------------------------------------------------------------------------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { margin-bottom: 16px; }
.section-lead {
  font-size: 17px;
  color: var(--ink-2);
}
.section-head-split {
  max-width: none;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
@media (max-width: 800px) {
  .section-head-split { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   The loop
   -------------------------------------------------------------------------- */
.section-loop {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .loop-grid { grid-template-columns: 1fr; gap: 36px; } }

.loop-card { margin: 0; }
.loop-card .photo-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.loop-card:hover .photo-frame {
  transform: translateY(-4px);
  box-shadow: 0 40px 70px -30px rgba(13, 27, 76, 0.32), 0 10px 24px -10px rgba(13, 27, 76, 0.12);
}
.loop-card figcaption {
  padding: 22px 6px 0;
}
.loop-card .caption-time {
  color: var(--accent-ink);
  margin-bottom: 6px;
  display: block;
}
.loop-card figcaption p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.loop-outro {
  text-align: center;
  font-size: 16px;
  color: var(--ink-3);
  max-width: 580px;
  margin: 0 auto;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   What's installed
   -------------------------------------------------------------------------- */
.section-installed {
  background: var(--ink);
  color: var(--paper);
}
.section-installed h2 { color: var(--paper-2); }
.section-installed .eyebrow-light {
  color: var(--accent);
  opacity: 1;
}
.section-installed .section-lead { color: rgba(247, 243, 236, 0.78); }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 56px;
}
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cap-grid { grid-template-columns: 1fr; } }

.cap {
  background: var(--ink);
  padding: 32px 28px;
  transition: background 0.25s ease;
}
.cap:hover { background: #102168; }
.cap-num {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.cap h3 {
  color: var(--paper-2);
  margin-bottom: 10px;
  font-size: 19px;
}
.cap p {
  color: rgba(247, 243, 236, 0.75);
  font-size: 15px;
  line-height: 1.55;
}

.integrations {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: rgba(247, 243, 236, 0.68);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.7;
}
.integrations strong { color: var(--paper-2); font-weight: 600; }

/* --------------------------------------------------------------------------
   Custom builds
   -------------------------------------------------------------------------- */
.section-custom {
  background: var(--paper);
  padding-block: clamp(56px, 7vw, 96px);
}
.chip-row {
  list-style: none;
  padding: 0;
  margin: 8px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  max-width: 840px;
}
.chip-row li {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 18px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.chip-row li:hover {
  border-color: var(--accent);
  background: var(--accent-wash);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Process (4-phase install)
   -------------------------------------------------------------------------- */
.section-process {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: none;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 26px 24px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.process-step::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 44px;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.process-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: var(--ink);
  display: block;
  margin: 18px 0 8px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.process-step h3 {
  margin-bottom: 10px;
  font-size: 19px;
}
.process-step p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Who it's for
   -------------------------------------------------------------------------- */
.section-who { background: var(--paper); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .who-grid { grid-template-columns: 1fr; } }

.who-tile {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.who-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.who-tile h3 { margin-bottom: 8px; font-size: 18px; }
.who-tile p { color: var(--ink-3); font-size: 15px; }

.fit-lines {
  background: var(--paper-2);
  border: 1px dashed var(--rule-2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: grid;
  gap: 10px;
}
.fit-lines p { font-size: 15px; color: var(--ink-2); }
.fit-lines strong { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   Pricing / the offer
   -------------------------------------------------------------------------- */
.section-pricing { background: var(--cream); border-block: 1px solid var(--rule); }

.retainer-band {
  max-width: 860px;
  margin: -16px auto 40px;
  padding: 22px 28px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.price-card-accent {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--accent-wash) 100%);
  border-color: var(--accent-soft);
}

.price-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.price-kicker {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  margin: 0;
}
.price-amount strong {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-right: 6px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.price-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink-2);
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 14px;
}

.price-outcome {
  font-size: 15px;
  color: var(--ink-2);
  padding: 14px 16px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  margin-top: auto;
}
.price-outcome strong { color: var(--ink); font-weight: 600; }

.price-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 24px 28px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
@media (max-width: 720px) { .price-notes { grid-template-columns: 1fr; } }
.price-notes div { display: flex; flex-direction: column; gap: 6px; }
.price-notes dt {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.price-notes dd {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.section-about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.about-copy p {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 62ch;
}
.about-copy h2 { margin-bottom: 24px; }
.about-location {
  font-size: 14px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--paper-warm);
  border-radius: 999px;
  margin-top: 8px;
}

.about-side blockquote {
  margin: 0;
  padding: 32px;
  background: var(--ink);
  color: var(--paper-2);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
}
.about-side blockquote::before {
  content: """;
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--accent);
  line-height: 1;
}
.about-side blockquote p {
  position: relative;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--paper-2);
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.section-cta {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 183, 255, 0.2), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.section-cta::after {
  content: "";
  position: absolute;
  bottom: -180px; left: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 179, 138, 0.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.section-cta h2 { color: var(--paper-2); }
.section-cta .eyebrow-light { color: var(--accent); opacity: 1; }

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .cta-grid { grid-template-columns: 1fr; } }

.cta-copy h2 { margin-bottom: 18px; }
.cta-copy p {
  color: rgba(247, 243, 236, 0.82);
  margin-bottom: 28px;
  font-size: 17px;
  max-width: 52ch;
}
.cta-copy .btn-primary {
  background: var(--paper-2);
  color: var(--ink);
}
.cta-copy .btn-primary:hover { background: var(--accent-soft); }

.cta-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.cta-bullets li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}
.cta-bullets strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--paper-2);
  font-size: 15px;
}
.cta-bullets span { color: rgba(247, 243, 236, 0.7); font-size: 14px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding-block: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { justify-content: center; }
  .brand-footer { justify-content: center; }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-nav a {
  font-size: 14px;
  color: var(--ink-2);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }

.footer-meta {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Small screens — topnav collapses, CTAs full width
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .topnav { display: none; }
  .topbar-inner > .btn-sm { margin-left: auto; }
  .hero-ctas .btn { flex: 1; }
  .photo-caption {
    position: static;
    margin-top: 14px;
    transform: none;
    max-width: 100%;
  }
  .photo-frame-hero { transform: none; }
  .section-head-split h2 { margin-bottom: 16px; }
}
