:root {
  --ink: #11171a;
  --ink-soft: #354249;
  --paper: #f6f5ef;
  --white: #fffef9;
  --line: #d8d2c4;
  --teal: #277c78;
  --teal-dark: #155c59;
  --amber: #f0b35b;
  --amber-dark: #b76b2b;
  --charcoal: #101820;
  --blue: #1f5276;
  --green: #cddc6c;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(17, 23, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

main {
  overflow-x: clip;
}

a {
  color: inherit;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(246, 245, 239, 0.94);
  border-bottom: 1px solid rgba(216, 210, 196, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><rect width='40' height='40' rx='9' fill='%23172126'/><rect x='5' y='5' width='30' height='30' rx='7' fill='%23277c78'/><circle cx='20' cy='20' r='7' fill='%23b76b2b'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.nav-cta {
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--amber);
  font-weight: 800;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: clamp(680px, 86svh, 820px);
  padding: clamp(56px, 8vw, 94px) clamp(20px, 6vw, 96px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(10, 16, 18, 0.92) 0%, rgba(10, 16, 18, 0.82) 42%, rgba(10, 16, 18, 0.34) 100%),
    url("assets/hero-operational-system.png"),
    url("assets/hero-operational-system.svg");
  background-size: cover;
  background-position: center;
}

.team-hero {
  background-image:
    linear-gradient(90deg, rgba(10, 16, 18, 0.94) 0%, rgba(10, 16, 18, 0.82) 45%, rgba(10, 16, 18, 0.32) 100%),
    url("assets/hero-operational-system.png"),
    url("assets/hero-operational-system.svg");
}

.readiness-hero,
.governance-hero,
.survey-hero,
.implementation-hero {
  background-image:
    linear-gradient(90deg, rgba(10, 16, 18, 0.94) 0%, rgba(10, 16, 18, 0.84) 46%, rgba(10, 16, 18, 0.34) 100%),
    url("assets/hero-operational-system.png"),
    url("assets/hero-operational-system.svg");
}

.readiness-hero h1,
.governance-hero h1,
.survey-hero h1,
.implementation-hero h1 {
  font-size: clamp(2.9rem, 5.7vw, 5.8rem);
}

.survey-hero h1 {
  font-size: clamp(2.75rem, 5.2vw, 5.35rem);
}

.hero-copy {
  max-width: 880px;
}

.offer-label,
.section-kicker {
  margin: 0 0 16px;
  color: #d87426;
  font-size: 1.36rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.emphasis-kicker {
  color: #d87426;
}

.hook {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(255, 254, 249, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 750;
}

h1,
h2 {
  margin: 0;
  font-family:
    ui-serif, Georgia, Cambria, "Times New Roman",
    serif;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 910px;
  font-size: clamp(3rem, 6.6vw, 6.75rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.35rem);
  text-wrap: balance;
}

.heading-line {
  display: block;
}

.subhead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 254, 249, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button-primary {
  color: var(--charcoal);
  background: var(--amber);
}

.button-primary:hover,
.button-card:hover,
.booking-form button:hover {
  background: #ffc978;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 254, 249, 0.48);
  background: rgba(255, 254, 249, 0.08);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 254, 249, 0.14);
}

.microcopy {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 254, 249, 0.7);
  font-size: 0.96rem;
}

.microcopy-link {
  color: #f0b35b;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.microcopy-link:hover {
  color: var(--white);
}

.offer-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 254, 249, 0.24);
  border-radius: var(--radius);
  background: rgba(246, 245, 239, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-block {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-block span,
.price-block small {
  display: block;
  color: var(--ink-soft);
}

.price-hook {
  max-width: 340px;
  margin: 12px 0 4px;
  color: var(--teal-dark);
  font-family:
    ui-serif, Georgia, Cambria, "Times New Roman",
    serif;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  font-weight: 650;
  line-height: 1.02;
  text-wrap: balance;
}

.card-statement {
  max-width: none;
  margin: 0;
}

.card-statement span {
  display: block;
  color: inherit;
}

.price-block strong {
  display: block;
  margin: 4px 0;
  color: var(--teal-dark);
  font-family:
    ui-serif, Georgia, Cambria, "Times New Roman",
    serif;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.95;
}

.outcome-block strong {
  font-size: clamp(2.8rem, 5.4vw, 4.35rem);
  white-space: normal;
}

.compact-block strong {
  font-size: clamp(3.3rem, 5.2vw, 4.5rem);
  overflow-wrap: anywhere;
  white-space: normal;
}

.compact-block strong.offer-name {
  font-size: clamp(2.2rem, 3.8vw, 3.15rem);
  line-height: 1;
}

.offer-card ul,
.fit-lists ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card li,
.fit-lists li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.offer-card li::before,
.fit-lists li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.button-card {
  color: var(--charcoal);
  background: var(--amber);
}

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

.trust-strip div {
  min-height: 122px;
  padding: 26px clamp(20px, 3vw, 34px);
  background: var(--white);
  text-align: center;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--charcoal);
}

.trust-strip span {
  margin-top: 7px;
  color: var(--ink-soft);
}

.section {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 96px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.text-stack p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.text-stack p + p {
  margin-top: 18px;
}

.included-section {
  background: #e8eadf;
}

.included-section > h2,
.method-section > h2,
.faq-section > h2 {
  max-width: 940px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.shift-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 26, 0.12);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.shift-head,
.shift-cell {
  background: var(--white);
}

.shift-head {
  padding: 18px 24px;
  color: var(--charcoal);
  font-weight: 900;
  text-transform: uppercase;
}

.shift-head.old-way {
  color: #7a4a23;
  background: #f5eadc;
}

.shift-head.new-way {
  color: var(--teal-dark);
  background: #e5f0ec;
}

.shift-cell {
  min-height: 190px;
  padding: 24px;
}

.shift-cell span {
  display: block;
  margin-bottom: 14px;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shift-cell.new-way span {
  color: var(--teal-dark);
}

.shift-cell h3 {
  margin: 0;
}

.shift-cell p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.shift-cell .consequence {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 23, 26, 0.1);
  color: var(--charcoal);
  font-size: 0.96rem;
}

.shift-cell .consequence strong {
  color: inherit;
}

.shift-cell.old-way .consequence {
  color: #7a4a23;
}

.shift-cell.new-way .consequence {
  color: var(--teal-dark);
}

.included-grid article,
.method-grid article,
.fit-lists > div,
.authority-card,
.booking-panel,
.faq-grid details {
  border: 1px solid rgba(17, 23, 26, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.included-grid article {
  min-height: 260px;
  padding: 26px;
  box-shadow: none;
}

.included-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.included-grid p,
.method-grid p,
.audience-grid p,
.fit-copy p,
.authority-card p,
.booking-panel p,
.faq-grid p,
.value-list p,
.evidence-grid p {
  color: var(--ink-soft);
}

.value-section {
  padding-top: 0;
  background: #e8eadf;
}

.value-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 92, 89, 0.98), rgba(16, 24, 32, 0.98)),
    var(--charcoal);
}

.value-list p {
  margin: 0;
  color: rgba(255, 254, 249, 0.83);
  font-size: 1.08rem;
}

.value-list p + p {
  margin-top: 18px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.method-grid article {
  min-height: 210px;
  padding: 28px;
  box-shadow: none;
}

.method-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.25rem;
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(34px, 6vw, 84px);
  background: var(--charcoal);
  color: var(--white);
}

.fit-section .section-kicker {
  color: var(--amber);
}

.fit-copy p {
  max-width: 620px;
  color: rgba(255, 254, 249, 0.78);
  font-size: 1.08rem;
}

.scope-section {
  background: #f1eee5;
}

.scope-section > h2 {
  max-width: 900px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.scope-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 620px;
  padding: 28px;
  border: 1px solid rgba(17, 23, 26, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.scope-card span {
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.scope-card h3 {
  color: var(--teal-dark);
  font-family:
    ui-serif, Georgia, Cambria, "Times New Roman",
    serif;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.scope-card .best-for {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 750;
}

.scope-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-card li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
}

.scope-card li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.scope-card .button {
  align-self: end;
  margin-top: auto;
}

.scope-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-weight: 750;
}

.featured-scope {
  border-color: rgba(39, 124, 120, 0.38);
  box-shadow: 0 20px 48px rgba(39, 124, 120, 0.18);
}

.fit-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fit-lists > div {
  padding: 26px;
  color: var(--ink);
  box-shadow: none;
}

.fit-lists h3 {
  margin-bottom: 18px;
}

.authority-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  box-shadow: none;
}

.portrait {
  overflow: hidden;
  width: 240px;
  height: 300px;
  min-height: 0;
  border: 1px solid rgba(17, 23, 26, 0.12);
  border-radius: 18px;
  background: #ddd7ca;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-section {
  background: #f1eee5;
}

.evidence-section {
  background: #f1eee5;
}

.audience-section {
  background: #e8eadf;
}

.audience-section > h2 {
  max-width: 980px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.audience-grid article {
  display: grid;
  align-content: start;
  min-height: 560px;
  padding: 28px;
  border: 1px solid rgba(17, 23, 26, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.audience-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.audience-grid p {
  margin: 14px 0 0;
}

.path-cta,
.offer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.path-cta a,
.offer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(39, 124, 120, 0.28);
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(255, 254, 249, 0.72);
  font-weight: 850;
  text-decoration: none;
}

.offer-links a {
  color: var(--white);
  border-color: rgba(255, 254, 249, 0.28);
  background: rgba(255, 254, 249, 0.08);
}

.evidence-section > h2 {
  max-width: 980px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.evidence-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(17, 23, 26, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.evidence-grid strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.2;
}

.evidence-grid p {
  margin: 12px 0 18px;
}

.evidence-grid a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.faq-grid details {
  padding: 22px 24px;
  box-shadow: none;
}

.faq-grid summary {
  color: var(--charcoal);
  font-weight: 850;
  cursor: pointer;
}

.booking-section {
  background: #172126;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  padding: clamp(32px, 6vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(39, 124, 120, 0.96), rgba(16, 24, 32, 0.98)),
    var(--charcoal);
}

.booking-panel p {
  max-width: 680px;
  color: rgba(255, 254, 249, 0.82);
  font-size: 1.08rem;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fbfaf4;
  font: inherit;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(39, 124, 120, 0.22);
  border-color: var(--teal);
}

.booking-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--amber);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.booking-form small {
  color: var(--ink-soft);
}

.form-status {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 750;
}

.landing-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 96px);
  color: rgba(255, 254, 249, 0.72);
  background: #101820;
}

.landing-footer p {
  margin: 0;
}

.landing-footer a {
  color: var(--white);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .sales-hero,
  .split,
  .value-panel,
  .fit-section,
  .authority-card,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .offer-card {
    align-self: auto;
  }

  .trust-strip,
  .included-grid,
  .method-grid,
  .audience-grid,
  .scope-grid,
  .fit-lists,
  .faq-grid,
  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 10px 14px;
    padding-bottom: 4px;
  }

  .nav-links a {
    line-height: 1.15;
  }

  .sales-hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 68px;
    background-image:
      linear-gradient(180deg, rgba(10, 16, 18, 0.94) 0%, rgba(10, 16, 18, 0.82) 58%, rgba(10, 16, 18, 0.54) 100%),
      url("assets/hero-operational-system.png"),
      url("assets/hero-operational-system.svg");
    background-position: 58% center;
  }

  .team-hero {
    background-image:
      linear-gradient(180deg, rgba(10, 16, 18, 0.95) 0%, rgba(10, 16, 18, 0.84) 58%, rgba(10, 16, 18, 0.58) 100%),
      url("assets/hero-operational-system.png"),
      url("assets/hero-operational-system.svg");
  }

  .readiness-hero,
  .governance-hero,
  .survey-hero,
  .implementation-hero {
    background-image:
      linear-gradient(180deg, rgba(10, 16, 18, 0.96) 0%, rgba(10, 16, 18, 0.86) 58%, rgba(10, 16, 18, 0.58) 100%),
      url("assets/hero-operational-system.png"),
      url("assets/hero-operational-system.svg");
  }

  h1 {
    font-size: clamp(2.55rem, 12.4vw, 4rem);
  }

  .readiness-hero h1,
  .governance-hero h1,
  .survey-hero h1,
  .implementation-hero h1 {
    font-size: clamp(2.45rem, 11.4vw, 3.55rem);
  }

  .implementation-hero h1 {
    font-size: clamp(2.15rem, 9.7vw, 3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip,
  .included-grid,
  .shift-table,
  .method-grid,
  .audience-grid,
  .scope-grid,
  .fit-lists,
  .faq-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .scope-card {
    min-height: auto;
  }

  .shift-head {
    display: none;
  }

  .shift-cell {
    min-height: auto;
  }

  .included-grid article,
  .method-grid article,
  .audience-grid article,
  .evidence-grid article {
    min-height: auto;
  }

  .portrait {
    width: 180px;
    height: 224px;
    min-height: 0;
  }

  .landing-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand {
    min-width: 0;
  }

  .nav-cta {
    white-space: normal;
  }

  .offer-card,
  .booking-form {
    padding: 22px;
  }
}

/* ============================================================
   MOBILE NAV + RESPONSIVE TYPOGRAPHY (mobile last in cascade so it wins)
   ============================================================ */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.nav-toggle .bars {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
  background: var(--ink);
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, top 0.2s;
}
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 560px) {
  /* Header layout */
  .site-header,
  .landing-header {
    position: sticky;
    top: 0;
    padding: 10px 16px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }
  .brand strong {
    font-size: 0.92rem;
  }
  .brand small {
    display: none;
  }

  .nav-toggle { display: block; }

  /* Slide-down panel */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 12px;
    right: 12px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(17, 23, 26, 0.22);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
    z-index: 200;
  }
  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--ink);
    white-space: normal;
  }
  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(39, 124, 120, 0.08);
    color: var(--teal-dark);
  }
  .nav-links .nav-cta {
    margin-top: 6px;
    background: var(--amber);
    color: var(--charcoal);
    font-weight: 800;
    justify-content: center;
  }

  /* Body scroll lock when nav is open */
  body.nav-open {
    overflow: hidden;
  }

  /* Typography scale */
  h1 { font-size: 2rem; line-height: 1.1; }
  h2 { font-size: 1.55rem; line-height: 1.18; }
  h3 { font-size: 1.18rem; line-height: 1.25; }
  p { font-size: 1rem; line-height: 1.6; }
  .section-kicker { font-size: 0.86rem; letter-spacing: 0.08em; }

  /* Buttons / tap targets */
  .button-primary,
  .button-secondary,
  button[type="submit"] {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* Form inputs (prevent iOS auto-zoom on focus) */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="number"],
  input[type="search"],
  textarea,
  select {
    font-size: 16px;
  }

  /* Tighter section padding on mobile */
  section.section,
  .section,
  .r-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Tap target for landing-footer inline links */
  .landing-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
