/* =========================================================
   Good Karma Collective — Home page (v4 mockup)
   Palette: Deep Teal #0E6E7F · Brushed Gold #C7A64A · Warm Ivory #F7F4EA
            Soft Sage #A8C9B5 · Charcoal #353335
   Adopted 2026-05-31 per Jay.
   Typography: Playfair Display (serif heads) + Inter (body)
   v4 changes: palette swap end-to-end, logo CSS reverted (SVG self-balanced),
   terracotta accents replaced with palette gold, sage replaces terracotta
   in soft radial washes (vision + closing-cta).
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* v4 brand palette — sourced from wellness palette adopted 2026-05-31:
     Deep Teal #0E6E7F · Brushed Gold #C7A64A · Warm Ivory #F7F4EA
     Soft Sage #A8C9B5 · Charcoal #353335 */

  /* Deep Teal — healing, trust, balance */
  --teal-900: #084a55;   /* darker companion for layered emphasis */
  --teal-700: #0e6e7f;   /* primary teal — vision section, primary buttons, nav CTA */
  --teal-500: #2e96a4;   /* mid-tone for hover */
  --teal-100: #cde4e8;   /* very light teal wash */

  /* Brushed Gold — warmth, positivity, energy */
  --gold-700: #97802e;
  --gold-600: #a8893a;   /* button/link hover */
  --gold-500: #c7a64a;   /* primary gold — eyebrows, ornaments, accents */
  --gold-300: #d9bf6e;
  --gold-200: #e0c878;   /* gold-on-dark highlight */
  --gold-100: #ede2b8;

  /* Soft Sage — natural, grounding, refreshing */
  --sage-300: #c6dbcc;
  --sage-500: #a8c9b5;   /* primary sage — fills, subtle washes */
  --sage-700: #6c9d7e;   /* darker sage for type/borders */

  /* Charcoal — strong, modern, grounded */
  --charcoal:    #353335;
  --charcoal-80: rgba(53, 51, 53, 0.80);

  /* Neutrals */
  --cream:        #f7f4ea;   /* Warm Ivory — body bg, clean/calm/serene */
  --header-bg:    #dde9e0;   /* Light Sage — visible band against ivory body */
  --paper:        #ffffff;   /* card bg — clean white against ivory */
  --ink:          #353335;   /* Charcoal — primary text */
  --ink-soft:     #5a585b;   /* lighter charcoal — secondary text */
  --ink-faint:    #8a8889;
  --line:         rgba(14, 110, 127, 0.16);

  /* Type */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Rhythm */
  --container-max: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 7rem);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--teal-900);
}
p { margin: 0 0 1em; }
a { color: var(--teal-700); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-600); }
ul { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95em 1.9em;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-700);
  color: var(--paper);
  border: 1px solid var(--teal-700);
}
.btn-primary:hover {
  background: var(--teal-900);
  color: var(--gold-200);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--teal-700);
  border: 1px solid var(--teal-700);
}
.btn-secondary:hover {
  background: var(--teal-700);
  color: var(--paper);
}
.btn-large {
  padding: 1.1em 2.4em;
  font-size: 1.05rem;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid rgba(108, 157, 126, 0.30);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  /* v4.1 — light sage header band reads clearly against Warm Ivory body */
  background: var(--header-bg);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  color: var(--teal-900);
}
.brand-logo {
  display: block;
  height: 66px;
  width: auto;
  max-width: 340px;
  /* v4.1 — Jay dev-tools sized. SVG self-balances the tree; pure scale, no transform. */
}
@media (max-width: 720px) {
  .brand-logo { height: 54px; max-width: 260px; }
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.site-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.site-nav .nav-cta {
  padding: 0.55em 1.2em;
  background: var(--teal-700);
  color: var(--paper);
  border-radius: 999px;
}
.site-nav .nav-cta:hover { background: var(--teal-900); color: var(--gold-200); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 168, 76, 0.10), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(26, 92, 86, 0.08), transparent 55%),
    var(--cream);
  text-align: center;
}
.hero-inner { max-width: 820px; }
.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw, 1.5rem);
  font-weight: bold;
  color: var(--teal-700);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.3rem;
  font-weight: 500;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.4rem;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  color: var(--teal-900);
  letter-spacing: 0.01em;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.hero-tagline::before,
.hero-tagline::after {
  content: "✦";
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.85em;
  color: var(--gold-500);
  width: auto;
  height: auto;
  background: none;
  transform: translateY(-2px);
}

/* ---------- Vision ---------- */
.vision {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at 80% 110%, rgba(199, 166, 74, 0.22), transparent 55%),
    radial-gradient(ellipse at 10% -10%, rgba(168, 201, 181, 0.32), transparent 55%),
    var(--teal-700);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: "\201C"; /* opening curly quote */
  position: absolute;
  top: 0.2em;
  left: 4vw;
  font-family: var(--font-serif);
  font-size: 20rem;
  color: var(--gold-300);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.vision::after {
  content: "✦";
  position: absolute;
  bottom: 8%;
  right: 7%;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold-300);
  opacity: 0.6;
  pointer-events: none;
}
.vision-statement {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  line-height: 1.45;
  color: var(--cream);
  font-weight: 400;
}
.vision-statement em {
  color: var(--gold-200);
  font-style: italic;
}
.vision-footer {
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gold-200);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Services ---------- */
.services {
  padding: var(--section-y) 0;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 500;
}
.section-title::after {
  content: "✦ · ✦ · ✦";
  display: block;
  margin: 1.1rem auto 0;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold-600);
  letter-spacing: 0.4em;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 760px) {
  .service-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3rem);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  /* Anchor for the stretched-link pseudo so the whole card is clickable */
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px -22px rgba(14, 110, 127, 0.30);
  border-color: var(--sage-700);
  background: linear-gradient(180deg, var(--paper), rgba(168, 201, 181, 0.18));
}
.service-card-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 0.8rem;
  font-weight: 600;
}
.service-card-title {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.service-card-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.service-card-detail {
  font-size: 0.94rem;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.service-card-detail li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 1.2rem;
}
.service-card-detail li:last-child { border-bottom: 0; }
.service-card-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  transform: translateY(-50%);
}
.service-card-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--teal-700);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  /* The visible link stays as the click affordance; its ::after stretches over the
     whole card so clicking anywhere on the card navigates to this href. */
  position: static;
}
.service-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-card-link:hover { color: var(--gold-600); }
.service-card:hover { cursor: pointer; }

/* ---------- Closing CTA ---------- */
.closing-cta {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(168, 201, 181, 0.38), transparent 65%),
    radial-gradient(ellipse at 50% 0%, rgba(199, 166, 74, 0.20), transparent 60%),
    var(--cream);
  text-align: center;
  position: relative;
}
.closing-cta::before {
  content: "✦";
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-600);
  text-align: center;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.closing-inner { max-width: 720px; }
.closing-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 5.5rem) 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-200);
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--cream); border-bottom: 1px solid transparent; }
.site-footer a:hover { color: var(--gold-200); border-bottom-color: var(--gold-200); }

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--paper);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-200);
  margin-bottom: 1.2rem;
}
.footer-credential {
  font-size: 0.85rem;
  color: rgba(250, 246, 236, 0.7);
  letter-spacing: 0.02em;
}

.footer-contact { line-height: 2; font-size: 0.95rem; }
.footer-list li { padding: 0.3rem 0; font-size: 0.95rem; }

.footer-fineprint {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 1.6rem;
  font-size: 0.83rem;
  color: rgba(250, 246, 236, 0.55);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ---------- Responsive nav (very basic v1) ---------- */
@media (max-width: 720px) {
  .header-inner { gap: 1rem; flex-wrap: wrap; }
  .site-nav ul { gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
  .site-nav a { font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .site-nav ul { width: 100%; justify-content: center; }
}

/* =========================================================
   Inner pages — about / massage / coaching / book
   Shared patterns: page-hero, portrait, pricing-table, service-block, iframe-wrap
   ========================================================= */

/* ---------- Page hero (smaller than home hero, same vocabulary) ---------- */
.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.page-hero-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold-600);
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.page-hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 1.8rem;
  line-height: 1.65;
}

/* ---------- About page: portrait + bio ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: var(--section-y);
}
@media (min-width: 760px) {
  .about-grid { grid-template-columns: minmax(260px, 380px) 1fr; gap: 4rem; align-items: start; }
}
.portrait-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--teal-900);
  /* Deep teal vignette glow tying the portrait to the brand */
  box-shadow: 0 24px 60px -30px rgba(8, 74, 85, 0.50);
}
.portrait-wrap img {
  display: block;
  width: 100%;
  height: auto;
  /* Soft fade from full opacity in center to teal at edges via mask */
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, #000 60%, transparent 96%);
          mask-image: radial-gradient(ellipse at 50% 45%, #000 60%, transparent 96%);
}
.about-bio p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.about-bio .greeting {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--gold-600);
  float: left;
  line-height: 0.9;
  padding: 0.15em 0.2em 0 0;
  letter-spacing: -0.02em;
}

.credentials {
  margin-top: 2.5rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: rgba(168, 201, 181, 0.18); /* light sage chip */
  border-radius: 18px;
  border: 1px solid rgba(108, 157, 126, 0.30);
}
.credentials h3 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.credentials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.credentials li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(108, 157, 126, 0.25);
  font-size: 0.98rem;
  color: var(--ink);
}
.credentials li:last-child { border-bottom: 0; }

/* ---------- Service detail (massage page) ---------- */
.service-block {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: 0; }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: start;
}
@media (min-width: 820px) {
  .service-block-inner { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}
.service-block-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.service-block-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- Pricing tables ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  font-size: 0.98rem;
}
.pricing-table caption {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: rgba(168, 201, 181, 0.10);
}
.pricing-table th,
.pricing-table td {
  padding: 0.8rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.pricing-table tr:last-child th,
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table th {
  font-weight: 500;
  color: var(--ink);
}
.pricing-table td {
  text-align: right;
  color: var(--teal-700);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

/* ---------- Coaching page packages ---------- */
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 880px;
}
@media (min-width: 760px) {
  .packages { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.package {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.package:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -22px rgba(14, 110, 127, 0.30);
  border-color: var(--sage-700);
}
.package-name {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.package-detail {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
  min-height: 2.8em;
  line-height: 1.5;
}
.package-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--teal-900);
  font-weight: 500;
}
.coaching-note {
  margin: 2rem auto 0;
  max-width: 680px;
  text-align: center;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-family: var(--font-serif);
}

/* ---------- Discovery / contact CTA (coaching + book pages) ---------- */
.contact-cta {
  margin-top: var(--section-y);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(168, 201, 181, 0.35), transparent 70%),
    var(--paper);
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--line);
}
.contact-cta-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.contact-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-cta-body {
  max-width: 560px;
  margin: 0 auto 1.8rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.contact-cta-channels {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.contact-cta-channels a {
  color: var(--teal-700);
  font-weight: 500;
}

/* ---------- Book page: iframe wrap ---------- */
.booking-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: var(--section-y) 0;
}
.booking-wrap-header {
  text-align: center;
  margin-bottom: 2.2rem;
}
.booking-wrap-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.booking-wrap-header p {
  color: var(--ink-soft);
}
.booking-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -30px rgba(8, 74, 85, 0.30);
  background: var(--paper);
}
.booking-frame iframe {
  display: block;
  width: 100%;
  height: 1000px;
  border: 0;
}
.booking-alt {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.booking-alt a { font-weight: 500; }
