:root {
  --bg: #fcf7e8;
  --bg-alt: #f3efe4;
  --panel: #fffdf7;
  --ink: #222222;
  --muted: #5f5a4b;
  --line: rgba(34, 34, 34, 0.12);
  --gold: #f5da58;
  --gold-deep: #e7c847;
  --blue: #4bacef;
  --teal: #4dd0c1;
  --orange: #f6875e;
  --green: #88cf74;
  --shadow: 0 22px 55px rgba(28, 28, 28, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(34, 34, 34, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  font-family: "Courier New", Courier, monospace;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0 0.75rem;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(245, 218, 88, 0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  padding: 0.9rem 1rem 0.85rem;
  box-shadow: 0 16px 30px rgba(110, 92, 0, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
}

.brand-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
}

.brand-title {
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.brand-tag {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: rgba(34, 34, 34, 0.74);
}

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

.nav-item {
  position: relative;
}

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-size: 0.93rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  font-weight: 700;
  outline: none;
}

.nav-button:hover,
.nav-button:focus-visible {
  background: rgba(255, 255, 255, 0.38);
  outline: none;
}

.nav-button {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(34, 34, 34, 0.14);
  border-radius: 8px;
}

.nav-phone {
  font-size: 0.92rem;
  color: var(--blue);
  padding-left: 0.6rem;
}

.dropdown {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100vw - 2rem));
  padding: 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  display: none;
  z-index: 200;
}

.dropdown.is-open {
  display: block;
}

/* Backdrop overlay when services dropdown is open */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(34, 34, 34, 0.5);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

body:has(.dropdown.is-open)::before {
  opacity: 1;
}

.dropdown-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.48);
  margin-bottom: 0.85rem;
}

.dropdown-grid {
  display: grid;
  gap: 0.75rem;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  transition: transform 160ms ease, background 160ms ease;
}

.dropdown-link:hover {
  transform: translateY(-1px);
  background: rgba(34, 34, 34, 0.03);
}

.icon-chip {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.icon-chip svg {
  width: 1.55rem;
  height: 1.55rem;
}

.icon-blue { background: var(--blue); }
.icon-orange { background: var(--orange); }
.icon-gold { background: var(--gold); color: #534b12; }
.icon-teal { background: var(--teal); }
.icon-green { background: var(--green); }

.dropdown-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.dropdown-desc {
  display: block;
  margin: 0.2rem 0 0;
  font-size: 0.83rem;
  line-height: 1.4;
  color: var(--muted);
}

.hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: flex-end;
  padding: 2rem 0 5rem;
  text-align: left;
}

/* offset anchor scroll targets by sticky header height */
[id] {
  scroll-margin-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 218, 88, 0.32);
  border: 1px solid rgba(34, 34, 34, 0.08);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(34, 34, 34, 0.68);
}

.hero h1,
.section-title,
.article-title {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 18ch;
  margin: 0 0 1.2rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 700;
}

.hero p {
  max-width: 52ch;
  margin: 0 0 0;
  font-size: 1.15rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero .cta-row .button {
  border-radius: 999px;
  padding: 1.1rem 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 700;
  min-width: auto;
}

.hero .cta-row {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 10.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(34, 34, 34, 0.12);
  background: #fff;
  font: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  box-shadow: 0 8px 18px rgba(34, 34, 34, 0.06);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(34, 34, 34, 0.12);
  outline: none;
}

.button-primary {
  background: var(--blue);
  color: #fff;
}

.button-accent {
  background: var(--gold);
}

.read-more {
  margin-top: 4rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(34, 34, 34, 0.68);
  font-size: 0.84rem;
}

.arrow-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 16px rgba(75, 172, 239, 0.28);
}

.panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 1.5rem 0 3rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  margin: 0 0 1.5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 1.5rem;
  align-items: center;
}

.intro-card {
  padding: 1.6rem;
}

.intro-card h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.intro-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.avatar {
  width: min(100%, 17rem);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  background: var(--gold);
  border: 5px solid #fff;
  box-shadow: 0 0 0 4px rgba(245, 218, 88, 0.85), var(--shadow);
}

.grid-4,
.grid-2,
.blog-grid,
.tools-grid {
  display: grid;
  gap: 1rem;
}

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid rgba(34, 34, 34, 0.08);
  box-shadow: 0 12px 25px rgba(34, 34, 34, 0.08);
}

.service-card {
  background: #fafaf8;
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3,
.feature-card h3,
.article-card h3,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 0.55rem;
}

.service-card h3 {
  text-align: center;
}

.service-card p,
.feature-card p,
.article-card p,
.page-body p,
.callout p {
  margin: 0;
  color: rgba(34, 34, 34, 0.82);
}

.service-card .button,
.article-card .button,
.page-body .button {
  margin-top: 1rem;
  min-width: 100%;
}

.card-blue   { border-top: 6px solid var(--blue);   }
.card-gold   { border-top: 6px solid var(--gold);   }
.card-teal   { border-top: 6px solid var(--teal);   }
.card-orange { border-top: 6px solid var(--orange); }

.card-blue   .button { background: var(--blue);   color: #fff; }
.card-teal   .button { background: var(--teal);   color: #fff; }
.card-orange .button { background: var(--orange); color: #fff; }
.card-gold   .button { background: var(--gold);   color: var(--ink); }

.card-other {
  background: #fafaf8;
}

.card-other h3 {
  text-align: center;
  text-decoration: underline;
}


.feature-card {
  padding: 1.4rem;
  background: var(--panel);
}

.feature-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
}

.tick {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.85rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.mini-list {
  display: grid;
  gap: 0.8rem;
}

.mini-list .chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.08);
}

.callout {
  background: linear-gradient(180deg, #fff, #f8f5ea);
  padding: 1.5rem;
}

.callout h3 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
}

.footer {
  margin-top: 3rem;
  background: var(--gold);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
}

.footer-title {
  font-size: 1.9rem;
  margin: 0;
}

.footer-copy {
  font-size: 0.92rem;
  color: rgba(34, 34, 34, 0.82);
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  width: fit-content;
}

.footer small {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  color: rgba(34, 34, 34, 0.72);
}

.page-hero {
  padding: 4rem 0 1.75rem;
  text-align: center;
}

.page-hero .eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(34, 34, 34, 0.58);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  margin: 0.65rem auto 1rem;
  max-width: 14ch;
  line-height: 1;
}

.page-hero p {
  max-width: 65ch;
  margin: 0 auto;
  color: var(--muted);
}

.page-body {
  padding: 0 0 2rem;
}

.article-layout {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
}

.article-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0 2.5rem;
}

.booking-card {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  margin: 0.1rem 0 0;
  line-height: 1.2;
}

.booking-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.booking-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(34, 34, 34, 0.50);
}

.booking-card-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.booking-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(75, 172, 239, 0.35);
}

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

.article-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(34, 34, 34, 0.55);
  margin-bottom: 0.6rem;
}

.article-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.article-card h2,
.article-card h3,
.page-body h2,
.page-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
}

.article-card h2,
.page-body h2 {
  margin: 1.4rem 0 0.75rem;
  font-size: 1.65rem;
}

.article-card ul,
.article-card ol,
.page-body ul,
.page-body ol {
  margin: 0.75rem 0 0 1.2rem;
  padding: 0;
}

.article-card li,
.page-body li {
  margin: 0.35rem 0;
}

.note {
  border-left: 4px solid var(--gold-deep);
  background: rgba(245, 218, 88, 0.14);
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 0 14px 14px 0;
}

.stack {
  display: grid;
  gap: 1rem;
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.protocol-card {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 16px;
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 6px 16px rgba(34, 34, 34, 0.07);
}

.protocol-card h3 {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0;
  letter-spacing: 0.06em;
  text-align: center;
}

.protocol-tick {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.prospects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Post pages (blog posts, tool pages) ─────────────────────── */

.post-hero-img {
  display: block;
  width: min(860px, calc(100% - 2rem));
  margin: 2rem auto 0;
  border-radius: 16px;
}

.post-layout {
  padding: 1.5rem 0 3rem;
  max-width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.post-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0.75rem 0 0.3rem;
}

.post-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.post-layout h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  margin: 1.6rem 0 0.75rem;
  line-height: 1.15;
}

.post-layout h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  margin: 1.2rem 0 0.4rem;
}

.post-layout p {
  margin: 0 0 1rem;
}

.post-layout ul,
.post-layout ol {
  margin: 0.5rem 0 1rem 1.2rem;
  padding: 0;
}

.post-layout li {
  margin: 0.35rem 0;
}

.post-layout .note {
  margin-bottom: 1.5rem;
}

.post-layout .cta-row {
  margin-top: 2rem;
  justify-content: flex-start;
}

/* ── Service page intro (no hero image) ──────────────────────── */

.page-intro {
  padding: 2.5rem 0 0.25rem;
}

.page-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.intro-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

/* ── Blog image cards ─────────────────────────────────────────── */

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.08);
  box-shadow: 0 6px 16px rgba(34, 34, 34, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(34, 34, 34, 0.11);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 0.85rem 1rem 1rem;
  flex: 1;
}

.blog-card-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: var(--ink);
}

.blog-card-body h3 a:hover {
  color: var(--blue);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Footer company details ───────────────────────────────────── */

.footer-company {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.74);
  text-align: center;
}

.footer-company p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.footer-legal a {
  color: inherit;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-services-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(34, 34, 34, 0.55);
  margin: 0 0 0.4rem;
}

/* ── Footer layout ───────────────────────────────────────────── */

.footer-logo {
  text-align: center;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(34, 34, 34, 0.14);
}

.footer-logo .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.footer-logo .brand-mark {
  width: 4.5rem;
  height: 4.5rem;
}

.footer-logo .brand-title {
  font-size: 2.1rem;
}

.footer-logo .brand-tag {
  font-size: 0.8rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 2rem;
  padding: 2rem 0 1.5rem;
  align-items: start;
}

.footer-nav {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-nav a {
  font-size: 0.9rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-right-col {
  text-align: right;
}

.footer-links-right {
  display: grid;
  gap: 0.4rem;
}

.footer-links-right a {
  display: block;
  font-size: 0.9rem;
}

.footer-links-right a:hover {
  text-decoration: underline;
}

.footer-bar {
  border-top: 1px solid rgba(34, 34, 34, 0.14);
  padding: 1.1rem 0 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(34, 34, 34, 0.72);
  flex-wrap: wrap;
}

.footer-bar a {
  color: inherit;
}

.footer-bar a:hover {
  text-decoration: underline;
}

main:has(.cta-band) + .footer {
  margin-top: 0;
}

/* ── Feature card grid (service pages) ──────────────────────── */

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.feature-card-grid .panel {
  padding: 1.1rem 1.25rem;
}

.feature-card-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 0.4rem;
  font-size: 1rem;
  line-height: 1.2;
}

.feature-card-grid p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Process steps ───────────────────────────────────────────── */

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 16px rgba(34, 34, 34, 0.07);
  padding: 1.25rem;
}

.step-label {
  display: inline-block;
  background: var(--gold);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.process-step ul {
  margin: 0.35rem 0 0 1.1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.process-step li {
  margin: 0.3rem 0;
}

/* ── CTA band ─────────────────────────────────────────────────── */

.cta-band {
  background: var(--gold);
  padding: 3.5rem 0;
  text-align: center;
  margin-top: 2rem;
}

.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: rgba(34, 34, 34, 0.78);
  margin: 0 auto 1.5rem;
  max-width: 55ch;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 960px) {
  .header-shell,
  .intro-grid,
  .quote-grid,
  .footer-shell,
  .grid-4,
  .grid-2,
  .booking-grid,
  .prospects-grid {
    grid-template-columns: 1fr;
  }

  .header-shell,
  .footer-shell,
  .quote-grid {
    display: grid;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-right-col {
    text-align: left;
  }

  .feature-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .dropdown {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero {
    padding-top: 4rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .site-header {
    padding: 0.6rem 0 0.5rem;
  }

  .header-shell {
    padding: 0.7rem 0.85rem;
    gap: 0.35rem;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .brand-tag {
    display: none;
  }

  .site-nav {
    gap: 0.2rem;
  }

  .nav-link,
  .nav-button {
    padding: 0.45rem 0.65rem;
  }

  .nav-link,
  .nav-button,
  .nav-phone {
    font-size: 0.84rem;
  }

  /* Hero: remove viewport fill and float content to top on mobile */
  .hero {
    min-height: 0;
    align-items: flex-start;
    padding: 2.5rem 0 3rem;
  }

  .hero h1 {
    max-width: none;
    font-size: 2rem;
  }

  .article-card {
    padding: 1.1rem;
  }

  .booking-card {
    padding: 1rem 1.1rem;
  }

  .card,
  .article-card,
  .intro-card {
    border-radius: 14px;
  }

  .blog-grid,
  .feature-card-grid,
  .protocol-grid {
    grid-template-columns: 1fr;
  }

  .post-layout .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Very small phones: collapse nav to single row with just CTA + phone */
@media (max-width: 420px) {
  .header-shell {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-mark {
    width: 1.9rem;
    height: 1.9rem;
  }

  /* Hide text nav links; Blog/Tools still accessible via footer */
  .site-nav .nav-link {
    display: none;
  }

  .site-nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  .nav-button,
  .nav-phone {
    font-size: 0.82rem;
    padding: 0.5rem 0.7rem;
  }
}
