/* ============================================================
   Veracity Digital Media — black / white / slate brand system
   ============================================================ */

:root {
  --black: #0b0d0c;
  --ink: #161917;
  --white: #ffffff;
  --paper: #f6f6f5;
  --slate: #515e5a;        /* brand slate */
  --slate-deep: #3d4845;
  --slate-soft: #8b9692;
  --line: rgba(11, 13, 12, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --text: #1c1f1e;
  --text-muted: #5c625f;
  --font-display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --texture-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.34'/%3E%3C/svg%3E");
  --texture-scratches: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='360' viewBox='0 0 560 360'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.16' stroke-width='1'%3E%3Cpath d='M22 78h124M172 36h218M42 210h188M302 164h176M354 282h158'/%3E%3Cpath d='M88 18l-46 116M244 68l-74 190M452 38l-92 248M512 138l-42 146' stroke-opacity='0.1'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.14'%3E%3Ccircle cx='102' cy='302' r='1.5'/%3E%3Ccircle cx='326' cy='78' r='1'/%3E%3Ccircle cx='494' cy='224' r='1.4'/%3E%3Ccircle cx='236' cy='286' r='1.2'/%3E%3C/g%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* Site-wide film grain — subtle tactile texture over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.4rem, 7.4vw, 6.6rem); }
h2 { font-size: clamp(2.4rem, 4.8vw, 4.15rem); margin-bottom: 20px; }
h3 { font-size: 1.55rem; margin-bottom: 10px; font-weight: 700; }

h1 em, h2 em { font-style: normal; color: var(--slate); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 18px;
}

.section { padding: 120px 0; }
main > section, #ticker { scroll-margin-top: 76px; }

.section-head { max-width: 720px; margin-bottom: 64px; }

.section-intro { color: var(--text-muted); margin-top: 18px; max-width: 560px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .ticker-track { animation: none !important; }
  .topo { animation: none !important; stroke-dashoffset: 0 !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 36px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-light { background: var(--white); color: var(--black); }
.btn-light:hover { background: var(--slate); color: var(--white); }

.btn-outline { border-color: var(--line-light); color: var(--white); }
.btn-outline:hover { border-color: var(--white); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--slate); }

.btn-outline-dark {
  border-color: var(--line);
  color: var(--black);
}
.btn-outline-dark:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(11, 13, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line-light); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.logo-text {
  font-weight: 700;
  letter-spacing: 0;
  font-size: 0.95rem;
  line-height: 1.15;
}
.logo-text em {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0;
  color: var(--slate-soft);
  text-transform: none;
}

.site-nav { display: flex; align-items: center; gap: 36px; }

.site-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 9px 22px;
  color: var(--white) !important;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: var(--white); color: var(--black) !important; border-color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 100px;
  background:
    linear-gradient(180deg, rgba(11, 13, 12, 0.6) 0%, rgba(11, 13, 12, 0.34) 32%, rgba(11, 13, 12, 0.55) 100%),
    linear-gradient(90deg, #0b0d0c 2%, rgba(11, 13, 12, 0.86) 26%, rgba(11, 13, 12, 0.5) 58%, rgba(11, 13, 12, 0.55) 100%),
    url('assets/header1.jpg') no-repeat center center / cover,
    #0b0d0c;
}

.hero-topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.topo {
  fill: none;
  stroke: var(--slate);
  stroke-width: 1.4;
  opacity: 0.5;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: draw 3.2s var(--ease) forwards;
}
.t2 { animation-delay: 0.25s; opacity: 0.4; }
.t3 { animation-delay: 0.5s; opacity: 0.32; }
.t4 { animation-delay: 0.75s; opacity: 0.24; }
.t5 { animation-delay: 1s; opacity: 0.16; }
.t6 { animation-delay: 0.4s; opacity: 0.45; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-content { position: relative; z-index: 2; max-width: 1160px; }

.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero h1 em { color: var(--slate-soft); }

.hero .eyebrow { color: var(--slate-soft); }

.hero .lead {
  max-width: 580px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 44px;
}
.hero .lead strong { color: var(--white); font-weight: 600; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* ============================================================
   Case study pages
   ============================================================ */
.case-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  color: var(--white);
  background: var(--black);
}

.case-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 12, 0.72) 0%, rgba(11, 13, 12, 0.58) 42%, rgba(11, 13, 12, 0.84) 100%),
    linear-gradient(90deg, #0b0d0c 0%, rgba(11, 13, 12, 0.8) 44%, rgba(11, 13, 12, 0.48) 100%),
    url('assets/phoenix-sci.jpg') no-repeat center top / cover;
  opacity: 0.9;
}

.case-hero-inner {
  position: relative;
  z-index: 1;
}

.case-hero h1 {
  max-width: 1040px;
  color: var(--white);
}

.case-hero .eyebrow { color: var(--slate-soft); }
.case-hero .lead {
  max-width: 760px;
  margin: 30px 0 44px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.case-summary {
  padding: 0;
  background: var(--black);
}

.case-summary-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.95fr 1.3fr;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  transform: translateY(-50%);
  position: relative;
  z-index: 2;
}

.case-summary-card {
  min-height: 150px;
  padding: 28px 30px;
  background: rgba(11, 13, 12, 0.9);
}

.case-summary-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--slate-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-summary-card strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.case-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.case-copy p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.case-flow article {
  min-height: 280px;
  padding: 32px 30px;
  background: rgba(255, 255, 255, 0.68);
}

.case-flow span,
.case-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
}

.case-flow p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.case-playbook {
  position: relative;
  overflow: hidden;
}

.case-playbook .container {
  position: relative;
  z-index: 1;
}

.case-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.case-step {
  min-height: 330px;
  padding: 34px 32px;
  background: rgba(11, 13, 12, 0.72);
}

.case-step h3 {
  color: var(--white);
}

.case-step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
}

.case-result-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.62fr;
  gap: 52px;
  align-items: start;
}

.case-result h2 {
  color: var(--white);
}

.case-result p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.64);
}

.case-quote {
  padding: 34px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
}

.case-quote blockquote {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.case-quote figcaption {
  margin-top: 24px;
  color: var(--slate-soft);
  font-weight: 700;
}

.case-cta {
  max-width: 980px;
}

/* ============================================================
   Ticker
   ============================================================ */
.ticker {
  background: var(--slate);
  color: var(--white);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ticker-track i { font-style: normal; font-size: 0.55rem; opacity: 0.6; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   What We Do strip — plain, glanceable offer under the hero
   ============================================================ */
.wwd-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wwd-item {
  padding: 40px 34px 44px;
  border-left: 1px solid var(--line);
}
.wwd-item:first-child { border-left: none; }

.wwd-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 14px;
}

.wwd-item h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

.wwd-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .wwd-grid { grid-template-columns: repeat(2, 1fr); }
  .wwd-item:nth-child(3) { border-left: none; }
  .wwd-item:nth-child(n + 3) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-item { border-left: none; }
  .wwd-item:not(:first-child) { border-top: 1px solid var(--line); }
}

/* ============================================================
   Mission
   ============================================================ */
.mission { background: var(--white); position: relative; overflow: hidden; }

.mission-badge {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  opacity: 0.08;
  filter: grayscale(1);
  pointer-events: none;
}

.mission .container { position: relative; }
.mission-statement {
  font-size: clamp(2rem, 4.1vw, 3.45rem);
  max-width: 900px;
  margin-bottom: 0;
}

/* ============================================================
   Problem
   ============================================================ */
.section-problem {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-inner .section-head {
  max-width: 820px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.problem-card {
  min-height: 300px;
  padding: 34px 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.problem-card span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  background: var(--paper);
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 800;
}

.problem-card h3 { margin-bottom: 18px; }
.problem-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ============================================================
   Investment
   ============================================================ */
.section-investment {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}

.section-investment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.96) 0%, rgba(11, 13, 12, 0.76) 54%, rgba(11, 13, 12, 0.92) 100%),
    url('assets/hero.jpg') no-repeat center center / cover;
  opacity: 0.95;
}

.investment-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 74px;
  align-items: start;
}

.investment-copy h2 { color: var(--white); }
.investment-copy h2 em { color: var(--slate-soft); }
.investment-copy .eyebrow { color: var(--slate-soft); }
.investment-copy p { margin-bottom: 18px; max-width: 520px; }

.investment-points {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.investment-points article {
  background: rgba(11, 13, 12, 0.72);
  padding: 32px 34px;
}

.investment-points span {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  color: var(--slate-soft);
  margin-bottom: 16px;
}

.investment-points h3 { color: var(--white); }
.investment-points p { color: rgba(255, 255, 255, 0.62); font-size: 0.93rem; }

.outcomes-strip {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.outcomes-strip div {
  min-height: 150px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.06);
}

.outcomes-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.outcomes-strip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

/* ============================================================
   Services
   ============================================================ */
.section-services {
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(11, 13, 12, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  position: relative;
  overflow: hidden;
}

.section-services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(81, 94, 90, 0.12) 18% 18.45%, transparent 18.45% 42%, rgba(81, 94, 90, 0.08) 42% 42.25%, transparent 42.25%),
    radial-gradient(circle at 82% 18%, rgba(81, 94, 90, 0.12), transparent 28%);
}

.section-services .container { position: relative; z-index: 1; }

.growth-loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -18px 0 54px;
  border: 1px solid var(--line);
  background: var(--line);
}

.growth-loop article {
  position: relative;
  min-height: 230px;
  padding: 30px 28px 32px;
  background: rgba(255, 255, 255, 0.62);
}

.growth-loop article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--paper);
  transform: translateY(-50%) rotate(45deg);
}

.loop-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
}

.growth-loop h3 { margin-bottom: 12px; }
.growth-loop p { color: var(--text-muted); font-size: 0.92rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  background: var(--paper);
  padding: 44px 36px 40px;
  position: relative;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.service:hover { background: var(--black); }
.service:hover h3 { color: var(--white); }
.service:hover p { color: rgba(255, 255, 255, 0.68); }
.service:hover .service-icon { color: var(--slate-soft); }
.service:hover .service-num { color: var(--slate-soft); }

.service-num {
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  color: var(--slate);
  opacity: 0.55;
  font-size: 1rem;
  transition: color 0.35s;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--slate);
  margin-bottom: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.35s;
}

.service p { color: var(--text-muted); font-size: 0.93rem; transition: color 0.35s; }

/* ============================================================
   Timeline
   ============================================================ */
.section-timeline {
  background: var(--white);
  overflow: hidden;
}

.timeline-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 70px;
}

.timeline-head p:not(.eyebrow) {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  overflow-x: auto;
  scrollbar-width: thin;
}

.timeline-track article {
  position: relative;
  min-height: 280px;
  padding: 30px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 246, 245, 0.86)),
    var(--paper);
}

.timeline-track article::before {
  content: "";
  position: absolute;
  top: 68px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--slate);
  opacity: 0.35;
}

.timeline-track article::after {
  content: "";
  position: absolute;
  top: 61px;
  left: 28px;
  width: 16px;
  height: 16px;
  background: var(--black);
}

.timeline-track span {
  display: block;
  min-height: 72px;
  color: var(--slate);
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-track h3 { margin-bottom: 14px; }
.timeline-track p { color: var(--text-muted); font-size: 0.93rem; }

/* ============================================================
   Process
   ============================================================ */
.section-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, rgba(81, 94, 90, 0.18), rgba(11, 13, 12, 0) 42%),
    var(--black);
  color: rgba(255, 255, 255, 0.75);
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    var(--texture-grain),
    var(--texture-scratches),
    linear-gradient(115deg, transparent 0 43%, rgba(255, 255, 255, 0.05) 43.4%, transparent 44% 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 220px 220px, 560px 360px, 100% 100%, 96px 96px, 96px 96px;
  background-position: 0 0, center center, center, center, center;
  opacity: 0.46;
  mix-blend-mode: screen;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-process { position: relative; overflow: hidden; }

.process-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #0b0d0c 0%, rgba(11, 13, 12, 0.64) 30%, rgba(11, 13, 12, 0.68) 62%, #0b0d0c 100%),
    linear-gradient(90deg, rgba(11, 13, 12, 0.86) 0%, rgba(11, 13, 12, 0.42) 55%, rgba(11, 13, 12, 0.76) 100%),
    var(--texture-grain),
    url('assets/hero.jpg') no-repeat right center / cover;
  background-size: auto, auto, 220px 220px, cover;
}

.section-process .container { position: relative; z-index: 1; }
.section-dark h2 { color: var(--white); }
.section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--slate-soft); }
.section-dark h2 em { color: var(--slate-soft); }

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.process-list li { border-top: 1px solid var(--line-light); padding-top: 28px; }

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--slate);
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  color: var(--slate-soft);
  margin-bottom: 20px;
}

.process-list p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   Creative
   ============================================================ */
.section-creative {
  background:
    linear-gradient(180deg, rgba(11, 13, 12, 0.78), rgba(11, 13, 12, 0.93)),
    url('assets/hero.jpg') no-repeat center center / cover;
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.creative-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.creative-copy h2 { color: var(--white); }
.creative-copy .eyebrow { color: var(--slate-soft); }
.creative-copy p { max-width: 520px; margin-bottom: 18px; }

.creative-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  transform: rotate(-1.5deg);
}

.creative-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  background: var(--black);
}

.creative-gallery img:nth-child(2),
.creative-gallery img:nth-child(5) {
  transform: translateY(34px);
}

.creative-gallery img:nth-child(3),
.creative-gallery img:nth-child(4) {
  transform: translateY(-18px);
}

/* ============================================================
   Compare
   ============================================================ */
.section-compare {
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(11, 13, 12, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--white);
}

.compare-inner .section-head { max-width: 860px; }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.compare-card {
  border: 1px solid var(--line);
  padding: 42px 42px 46px;
  background: rgba(255, 255, 255, 0.74);
}

.compare-card h3 {
  font-size: clamp(2rem, 3.3vw, 3rem);
  margin-bottom: 28px;
}

.compare-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.compare-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  background: var(--slate);
}

.compare-before h3 { color: var(--text-muted); }
.compare-before li::before { background: rgba(11, 13, 12, 0.28); }

.compare-after {
  background: var(--black);
  color: rgba(255, 255, 255, 0.68);
  border-color: var(--black);
}

.compare-after h3 { color: var(--white); }
.compare-after li { color: rgba(255, 255, 255, 0.7); }
.compare-after li::before { background: var(--slate-soft); }

/* ============================================================
   Lodges
   ============================================================ */
.section-lodges {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.lodge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.lodge-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 246, 245, 0.84) 100%),
    radial-gradient(circle at 82% 12%, rgba(81, 94, 90, 0.16), transparent 34%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.lodge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(11, 13, 12, 0.12);
}

.lodge-thumb {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.lodge-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease);
}

.lodge-card:hover .lodge-thumb img { transform: scale(1.06); }

.lodge-body {
  position: relative;
  padding: 40px 42px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.lodge-body::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(81, 94, 90, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.lodge-kicker {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.lodge-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 18px;
}

.lodge-card p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  color: var(--text-muted);
}

.coming-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: auto;
  padding-top: 34px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ============================================================
   Proof
   ============================================================ */
.section-proof {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}

.section-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 12, 0.95), rgba(11, 13, 12, 0.86)),
    url('assets/header1.jpg') no-repeat center center / cover;
  opacity: 0.72;
}

.section-proof .container {
  position: relative;
  z-index: 1;
}

.section-proof h2 { color: var(--white); }
.section-proof h2 em { color: var(--slate-soft); }
.section-proof .eyebrow { color: var(--slate-soft); }
.section-proof .section-intro { color: rgba(255, 255, 255, 0.62); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.case-study-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
  padding: 42px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
}

.case-study-feature h3 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  margin-bottom: 20px;
}

.case-study-feature p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.64);
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.case-study-link i {
  font-style: normal;
  transition: transform 0.25s var(--ease);
}

.case-study-link:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.case-study-link:hover i { transform: translateX(5px); }

.proof-card {
  min-height: 300px;
  padding: 34px 32px;
  background: rgba(11, 13, 12, 0.72);
}

.proof-label {
  display: block;
  margin-bottom: 36px;
  color: var(--slate-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.3rem, 8vw, 7rem);
  line-height: 0.82;
  color: var(--white);
  margin-bottom: 28px;
}

.proof-card h3 { color: var(--white); }
.proof-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.93rem; }

.testimonial {
  margin-top: 36px;
  padding: 42px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
}

.testimonial blockquote {
  max-width: 900px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.testimonial figcaption {
  margin-top: 24px;
  color: var(--slate-soft);
  font-weight: 700;
}

/* ============================================================
   Work
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 13, 12, 0.14);
}

.work-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.thumb-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  background: #d8dcda;
  position: relative;
  z-index: 1;
}

.thumb-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aab2af;
}

.work-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease);
}

.work-card:hover .work-thumb img { transform: scale(1.06); }

.work-body { padding: 28px 28px 30px; display: grid; gap: 6px; justify-items: start; }

.work-body h3 { margin-bottom: 0; }
.work-body p { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 14px; }

.work-links {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.work-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.work-link i { font-style: normal; transition: transform 0.3s var(--ease); }
.work-card:hover .work-link i { transform: translateX(6px); }
.work-link-secondary { color: var(--ink); }

.work-cta {
  background: var(--black);
  border-color: var(--black);
  justify-content: center;
}

.work-cta-inner { padding: 40px 32px; display: grid; gap: 10px; justify-items: start; }

.work-cta .eyebrow { color: var(--slate-soft); margin-bottom: 0; }
.work-cta h3 { color: var(--white); font-size: 1.9rem; }
.work-cta h3 em { color: var(--slate-soft); }
.work-cta p:not(.eyebrow) { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; margin-bottom: 10px; }
.work-cta .work-link { color: var(--white); }

.work-cta:hover { background: var(--slate-deep); border-color: var(--slate-deep); }

/* ============================================================
   About
   ============================================================ */
.section-slate { background: var(--slate); color: rgba(255, 255, 255, 0.8); }
.section-slate h2 { color: var(--white); }
.section-slate h2 em { color: var(--ink); }
.section-slate .eyebrow { color: rgba(255, 255, 255, 0.65); }

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-inner p { margin-bottom: 18px; }
.about-inner .btn { margin-top: 14px; }

.about-proof-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--black);
  display: flex;
  align-items: flex-end;
}

.about-proof-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.02);
}

.about-proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 10, 9, 0.05), rgba(9, 10, 9, 0.84)),
    linear-gradient(90deg, rgba(9, 10, 9, 0.42), rgba(9, 10, 9, 0.12));
}

.about-proof-content {
  position: relative;
  z-index: 1;
  padding: 34px;
  display: grid;
  gap: 18px;
}

.about-proof-content span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.68);
}

.about-proof-content strong {
  max-width: 430px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
}

.about-proof-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.about-proof-content li {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

/* ============================================================
   Contact
   ============================================================ */
.section-contact { position: relative; }

.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.94), rgba(11, 13, 12, 0.76)),
    url('assets/hero.jpg') no-repeat center center / cover;
  opacity: 0.52;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.socials { margin-top: 36px; display: flex; gap: 28px; }

.socials a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-decoration: none;
  border-bottom: 1px solid var(--slate-soft);
  padding-bottom: 4px;
  transition: border-color 0.25s, color 0.25s;
}
.socials a:hover { color: var(--slate-soft); border-color: var(--white); }

.contact-form { display: grid; gap: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--slate-soft);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form ::placeholder { color: rgba(255, 255, 255, 0.42); }

.contact-form .btn { justify-self: start; margin-top: 6px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line-light);
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-tag { font-family: var(--font-display); font-style: normal; color: var(--slate-soft); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 32px;
    gap: 22px;
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav.open { display: flex; }
}

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; max-width: 480px; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .problem-grid, .outcomes-strip { grid-template-columns: repeat(2, 1fr); }
  .compare-grid, .proof-grid { grid-template-columns: 1fr; }
  .case-study-feature { grid-template-columns: 1fr; }
  .case-summary-grid, .case-flow, .case-step-grid, .case-result-inner, .case-split { grid-template-columns: 1fr; }
  .case-summary-grid { transform: none; }
  .case-summary { padding: 28px 0; }
  .timeline-head, .creative-inner { grid-template-columns: 1fr; gap: 48px; }
  .creative-gallery { max-width: 620px; }
  .growth-loop { grid-template-columns: repeat(2, 1fr); }
  .growth-loop article:nth-child(2)::after { display: none; }
  .investment-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-proof-card { max-width: 620px; min-height: 460px; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }

  .hero {
    min-height: auto;
    padding: 120px 0 82px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(11, 13, 12, 0.86) 0%, rgba(11, 13, 12, 0.58) 42%, rgba(11, 13, 12, 0.74) 100%),
      linear-gradient(0deg, #0b0d0c 0%, rgba(11, 13, 12, 0.06) 48%),
      url('assets/header1.jpg') no-repeat center center / cover,
      #0b0d0c;
  }

  h1 { font-size: clamp(3.3rem, 14.5vw, 4.6rem); }
  .hero h1 { margin-bottom: 22px; }
  .hero .lead { font-size: 1rem; margin-bottom: 30px; }
  .hero-actions { display: grid; gap: 12px; }
  .hero-actions .btn { text-align: center; }
  .scroll-cue { display: none; }

  .case-hero {
    min-height: auto;
    padding: 120px 0 82px;
  }
  .case-hero h1 { font-size: clamp(3.2rem, 14vw, 4.55rem); }
  .case-hero .lead { font-size: 1rem; margin-bottom: 30px; }
  .case-summary-card, .case-flow article, .case-step { min-height: 0; }
  .case-split { gap: 32px; }
  .case-quote { padding: 30px 28px; }

  .service-grid { grid-template-columns: 1fr; }
  .growth-loop { grid-template-columns: 1fr; margin-bottom: 44px; }
  .growth-loop article { min-height: 0; }
  .growth-loop article::after { display: none; }
  .timeline-head { margin-bottom: 44px; }
  .timeline-track {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .timeline-track article { min-height: 0; }
  .timeline-track article::before { right: auto; width: 42px; }
  .creative-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }
  .creative-gallery img:nth-child(n) { transform: none; }
  .problem-grid, .outcomes-strip { grid-template-columns: 1fr; }
  .problem-card, .proof-card { min-height: 0; }
  .problem-card span { margin-bottom: 28px; }
  .case-study-feature, .compare-card, .testimonial { padding: 30px 28px; }
  .case-study-link { width: 100%; }
  .process-list { grid-template-columns: 1fr; }
  .lodge-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .mission-badge { width: 300px; height: 300px; right: -120px; }
  .investment-points article { padding: 30px 28px; }
  .lodge-body { padding: 30px 28px 34px; }
}

/* ============ THANK YOU PAGE ============ */
.thankyou { min-height: 72vh; display: flex; align-items: center; }
.thankyou-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.thankyou-inner h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 10px 0 20px; }
.thankyou-lead { color: var(--slate-soft); font-size: 1.12rem; line-height: 1.7; margin: 0 auto 34px; max-width: 600px; }
.thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.thankyou-socials { justify-content: center; margin-top: 34px; }

@media (max-width: 560px) {
  .thankyou-actions { flex-direction: column; align-items: stretch; }
  .thankyou-actions .btn { text-align: center; }
}
