/*
 * Cookie Yoga homepage stylesheet.
 *
 * Extracted from index.php so the file stays maintainable.
 * Design tokens mirror public.css plus the homepage-specific burgundy
 * accent (#722F37) used sparingly on hero emphasis, primary CTA button,
 * and offering-link hover.
 *
 * Fonts: Londrina Solid (display/headlines), Karla (body/labels).
 * Both self-hosted via assets/css/fonts.css.
 * Radius: 12px everywhere.
 * Motion: hover-only. No scroll animations. prefers-reduced-motion honoured.
 */

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  /* Palette — warm neutrals, one precious accent. */
  --cream:       #fdf6f0;
  --bone:        #f5ece3;
  --parchment:   #ede0d4;
  --ink:         #1a1210;
  --ink-muted:   #6b5c54;
  --ink-faint:   #b8a99e;

  /* Wine — vibrant red-leaning (not purple, not pink). Used for
     section titles, hero emphasis word, primary CTA button, offering
     hover, and the final CTA strip background. */
  --accent:      #A0213C;
  --accent-dark: #7E1A30;

  /* Typography */
  --font-display: 'Londrina Solid', Georgia, serif;
  --font-body:    'Karla', system-ui, sans-serif;

  /* Radius — one value for the whole project */
  --radius: 12px;

  /* Spacing scale (4/8px base) */
  --space-4:   4px;
  --space-8:   8px;
  --space-12:  12px;
  --space-16:  16px;
  --space-20:  20px;
  --space-24:  24px;
  --space-32:  32px;
  --space-48:  48px;
  --space-64:  64px;
  --space-80:  80px;
  --space-100: 100px;

  /* Container */
  --container-max: 1100px;
  --container-pad: 24px;
}

/* =============================================
   RESET + BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Thin/small uppercase labels override: subpixel keeps them crisp */
.label,
.nav-link,
.card-tag,
.footer-label,
.schedule-day,
.btn {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

h1 {
  font-size: clamp(56px, 9.5vw, 112px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

/* Two-tone heading treatment: any <em> inside h1/h2 renders in the
   wine accent, non-italic. Used to highlight the meaning-bearing
   word(s) in section titles. */
h1 em,
h2 em {
  font-style: normal;
  color: var(--accent);
}

h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
}

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

/* Primary: terracotta fill. Used exactly once in the hero.
   The CTA strip uses its own treatment below. */
.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

/* Outline: ink border, transparent fill. Used in schedule section. */
.btn-outline {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background-color: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

/* =============================================
   PROMO BANNER
   ============================================= */
.promo-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 10px var(--space-16);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-16) 0;
  background-color: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--parchment);
  transition: background-color 0.25s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
}

.header-logo img {
  height: 38px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-32);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--ink);
}

.site-nav .btn {
  padding: 7px 16px;
  font-size: 11px;
}

.header-account-link {
  display: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.header-account-link:hover {
  color: var(--ink);
}


/* Mobile hamburger */
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 2px;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background-color: var(--cream);
  padding: var(--space-8) var(--container-pad) var(--space-24);
  border-top: 1px solid var(--parchment);
}

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

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--parchment);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .mobile-nav-cta {
  font-weight: 700;
  color: var(--accent);
}

@media (min-width: 720px) {
  .site-nav {
    display: flex;
  }

  .header-account-link {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .header-logo img {
    height: 44px;
  }
}

/* =============================================
   HERO
   Asymmetric split. Left: large headline + supporting + CTA.
   Right: tall portrait image that bleeds to the section edge.
   The headline size is the statement. No decoration needed.
   ============================================= */
.hero {
  background-color: var(--cream);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

.hero-text-col {
  padding: var(--space-64) var(--container-pad) var(--space-64);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

/* Stop the hero CTA from stretching to column width on narrow viewports. */
.hero-text-col .btn {
  align-self: flex-start;
  width: auto;
}

.hero-eyebrow {
  margin-bottom: var(--space-20);
}

.hero-h1 {
  margin-bottom: var(--space-24);
}

.hero-supporting {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: var(--space-32);
}

.hero-image-col {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* Credential badge overlaid on the hero image. Anchor element so the
   whole pill clicks through to the Yoga Alliance verification page. */
.hero-credential {
  position: absolute;
  bottom: var(--space-24);
  left: var(--space-24);
  background-color: #fff;
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: var(--space-16);
  text-decoration: none;
  color: inherit;
  z-index: 2;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(26, 18, 16, 0.06);
}

.hero-credential:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 18, 16, 0.10);
}

.hero-credential-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-credential-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* preserve the badge's circular framing */
}

.hero-credential-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-credential-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.hero-credential-text .hero-credential-cert {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  line-height: 1.3;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.hero-credential-text .hero-credential-org {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  line-height: 1.3;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .hero-text-col {
    /* Left pad aligns text with the container edge when viewport exceeds max-width */
    padding-top: var(--space-80);
    padding-bottom: var(--space-80);
    padding-right: var(--space-64);
    padding-left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
    max-width: none;
  }

  .hero-image-col {
    min-height: 560px;
  }
}

@media (min-width: 1080px) {
  .hero-inner {
    grid-template-columns: 52% 48%;
    min-height: 640px;
  }

  .hero-text-col {
    padding-top: var(--space-100);
    padding-bottom: var(--space-100);
  }
}

/* =============================================
   DIVIDER LINE
   Simple ruled line — replaces the wave that added noise without adding meaning.
   ============================================= */
.section-divider {
  border: none;
  border-top: 1px solid var(--parchment);
  margin: 0;
}

/* =============================================
   STYLES STRIP
   Static row naming the styles Cookie teaches. No animation.
   Faded type so it reads as a quiet credential, not a loud banner.
   ============================================= */
.ticker {
  background-color: var(--parchment);
  padding: var(--space-24) var(--container-pad);
}

.ticker-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 var(--space-48);
  row-gap: var(--space-8);
}

.ticker-list li {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
}

.ticker-list li:not(:last-child)::after {
  content: '·';
  margin-left: var(--space-48);
  color: var(--ink-faint);
}

/* =============================================
   CLASSES SECTION
   Featured primary card (Pack of 10) + 3-up secondary grid.
   Hierarchy makes the recommended path immediately obvious.
   ============================================= */
.section-classes {
  background-color: var(--bone);
  padding: var(--space-80) 0;
}

.section-header {
  margin-bottom: var(--space-48);
}

.section-header .label {
  margin-bottom: var(--space-12);
}

.section-header h2 {
  /* No max-width so "Four ways to get started." stays on one line on
     normal viewports. Will wrap naturally on small mobile only. */
}

/* Header variant: places the heading and the currency toggle on one row */
.section-header--with-toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-24);
}

/* =============================================
   CURRENCY TOGGLE
   Pill group for switching VND / PHP / USD on prices.
   ============================================= */
.currency-toggle {
  display: inline-flex;
  background-color: var(--bone);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  align-self: end;
}

.currency-btn {
  background: transparent;
  border: none;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.currency-btn:hover { color: var(--ink); }

.currency-btn.is-active {
  background-color: var(--accent);
  color: #fff;
}

/* =============================================
   OFFERING PRICE
   Sits directly under the name. Body font, modest size.
   ============================================= */
.offering-price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  margin: -4px 0 0;
  line-height: 1.3;
}

/* Price on the featured wine card inverts to a translucent white */
.offering-featured .offering-price {
  color: rgba(255, 255, 255, 0.92);
}

/* Outer layout: featured on top, secondary grid beneath */
.offerings-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

/* ---- Featured card (Pack of 10) ----
   Wine-on-cream: the card itself carries the brand colour. Whole card
   is clickable via the stretched-link trick on its CTA. */
.offering-featured {
  background-color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--space-32);
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}

.offering-featured:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

/* Inside the featured card, text inverts to cream/white so it reads
   on the wine background. */
.offering-featured .offering-name,
.offering-featured .offering-desc,
.offering-featured .offering-link {
  color: #fff;
}

.offering-featured .offering-desc {
  color: rgba(255, 255, 255, 0.88);
}

.offering-featured .offering-link:hover {
  color: #fff; /* card-level hover already provides feedback; don't fight it */
}

.offering-featured .offering-link {
  position: static;
}

.offering-featured .offering-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  z-index: 1;
}

.offering-featured-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.offering-featured-meta {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

/* Recommended badge on the wine featured card. Inverted: white pill,
   wine text, so it pops against the wine background. */
.offering-recommended {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background-color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

/* Shared tag pill — used on featured and secondary cards */
.offering-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background-color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

/* On the featured wine card, the second pill (Best value) inverts to
   ink so the two badges sit beside each other as a contrast pair:
   white-pill-with-wine-text + black-pill-with-white-text. */
.offering-featured .offering-tag {
  color: #fff;
  background-color: var(--ink);
}

/* Offering name — shared base */
.offering-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}

/* Featured name is bigger */
.offering-name--featured {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.01em;
}

.offering-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

/* CTA link — shared */
.offering-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-4);
  transition: gap 0.2s, color 0.2s;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.offering-link::after {
  content: '\2192';
  font-size: 14px;
}

.offering-link:hover {
  gap: 14px;
  color: var(--accent);
}

/* Featured CTA inherits the same link style — no special treatment needed */

/* ---- Secondary cards (3-up grid) ---- */
.offerings-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
}

.offering-card {
  background-color: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s, border-color 0.2s;
}

.offering-card:hover {
  background-color: var(--bone);
  border-color: var(--ink-faint);
  transform: translateY(-1px);
}

.offering-card .offering-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  z-index: 1;
}

/* ---- Desktop layout ---- */
@media (min-width: 720px) {
  .section-classes {
    padding: var(--space-100) 0;
  }

  .offerings-secondary {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-16);
  }

  /* Featured card: two-column inner layout on larger screens. Order:
     meta | name | price | desc, with the CTA spanning the right column. */
  .offering-featured-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto auto;
    column-gap: var(--space-48);
    row-gap: var(--space-12);
    align-items: start;
  }

  .offering-featured-meta {
    grid-column: 1;
    grid-row: 1;
  }

  .offering-name--featured {
    grid-column: 1;
    grid-row: 2;
  }

  .offering-featured .offering-price {
    grid-column: 1;
    grid-row: 3;
  }

  .offering-featured .offering-desc {
    grid-column: 1;
    grid-row: 4;
    align-self: end;
  }

  .offering-link--featured {
    grid-column: 2;
    grid-row: 1 / 5;
    align-self: end;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offering-link {
    transition: none;
  }
}

/* =============================================
   ABOUT SECTION
   Photo left (dancer pose), text right.
   Photo is tall to contrast with the square hero portrait.
   ============================================= */
.section-about {
  background-color: var(--cream);
  padding: var(--space-80) 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-48);
  align-items: start;
}

.about-image-col {
  position: relative;
}

.about-image-col img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  object-position: center;
  height: auto;
}

.about-text-col .label {
  margin-bottom: var(--space-20);
}

.about-text-col h2 {
  margin-bottom: var(--space-24);
}

.about-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: var(--space-16);
}

.about-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
  }

  .section-about {
    padding: var(--space-100) 0;
  }
}

@media (min-width: 1080px) {
  .about-inner {
    grid-template-columns: 420px 1fr;
    gap: var(--space-80);
  }
}

/* =============================================
   SCHEDULE SECTION
   Typographic layout. No cards. Day names large, times below.
   ============================================= */
.section-schedule {
  /* Very faint wine wash on white — about 4% of --accent over #fff.
     Subtle enough to read as warmth, not as a coloured panel. */
  background-color: #fcf6f8;
  padding: var(--space-80) 0;
}

.schedule-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-48);
  align-items: center;
}

.schedule-image-col img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  height: auto;
  display: block;
}

.schedule-text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
}

.schedule-header .label {
  margin-bottom: var(--space-16);
}

.schedule-header h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: var(--space-12);
}

.schedule-note {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 380px;
}

/* Small label above the day list */
.schedule-subhead {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-8);
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.schedule-detail .btn {
  margin-top: var(--space-24);
}

/* Small footnote below the day list — timezone disclosure. */
.schedule-footnote {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-top: var(--space-16);
  font-style: italic;
}

/* Day list */
.schedule-days {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.schedule-day-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: var(--space-12) 0;
  border-bottom: 1px solid rgba(26, 18, 16, 0.1);
  gap: var(--space-24);
}

.schedule-day-row:first-child {
  border-top: 1px solid rgba(26, 18, 16, 0.1);
}

.schedule-day-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.schedule-day-time {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  text-align: right;
  flex-shrink: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.schedule-cta {
  margin-top: var(--space-32);
}

@media (min-width: 720px) {
  .schedule-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
  }

  .schedule-cta {
    margin-top: var(--space-48);
  }

  .section-schedule {
    padding: var(--space-100) 0;
  }
}

@media (min-width: 1080px) {
  .schedule-inner {
    grid-template-columns: 420px 1fr;
    gap: var(--space-80);
  }
}

/* =============================================
   READING
   Two long-form pieces, no dates. Intentionally low-key — sit between
   the schedule and the final CTA strip without claiming "blog."
   ============================================= */
.section-reading {
  background-color: var(--cream);
  padding: var(--space-80) 0;
}

.reading-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
}

.reading-card {
  background-color: #fff;
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s, transform 0.15s, border-color 0.2s;
}

.reading-card:hover {
  background-color: var(--bone);
  border-color: var(--ink-faint);
  transform: translateY(-1px);
  text-decoration: none;
}

.reading-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

.reading-lead {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.reading-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-4);
  transition: gap 0.2s, color 0.2s;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.reading-link::after {
  content: '\2192';
  font-size: 14px;
}

.reading-card:hover .reading-link {
  gap: 14px;
  color: var(--accent);
}

@media (min-width: 720px) {
  .section-reading {
    padding: var(--space-100) 0;
  }
  .reading-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
  }
}

/* =============================================
   BOOKING CTA STRIP
   ============================================= */
.section-cta-strip {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--accent);
  padding: var(--space-80) 0;
}

.cta-strip-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-strip-inner .label {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-20);
}

.cta-strip-inner h2 {
  color: #fff; /* override h2's wine colour — stays white on the wine bg */
  margin-bottom: var(--space-16);
}

.cta-strip-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--space-32);
}

/* CTA strip button is white-on-dark: accent would wash out here.
   White fill with ink text keeps contrast. */
.btn-cta-strip {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  background-color: #fff;
  color: var(--ink);
  border: 2px solid #fff;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.btn-cta-strip:hover {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  margin-top: auto;
  background-color: #fff;
  color: var(--ink-muted);
  border-top: 1px solid var(--parchment);
  padding: var(--space-48) 0 var(--space-32);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  margin-bottom: var(--space-32);
}

.footer-logo img {
  height: 34px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: var(--space-12);
  align-items: center;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--parchment);
  color: var(--ink-muted);
  transition: border-color 0.2s, color 0.2s;
}

.social-icon-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.social-icon-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--parchment);
  padding-top: var(--space-24);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: var(--ink-faint);
}

.credit-link {
  color: var(--ink-faint);
  transition: color 0.2s;
}

.credit-link:hover {
  color: var(--ink-muted);
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =============================================
   JOURNAL ARTICLE
   Long-form reading pages at /journal/[slug]. Uses the homepage
   chrome (site-head/site-foot) and is wrapped in <main class="journal-main">
   so it can have its own block padding without fighting the header.
   ============================================= */
.journal-main {
  padding-top: var(--space-32);
}

.journal-article {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-48) var(--container-pad) var(--space-100);
}

.journal-hero {
  margin: 0 0 var(--space-48);
}
.journal-hero img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.journal-article h1 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 var(--space-32);
}

.journal-article h2 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0;
  margin: var(--space-48) 0 var(--space-16);
  line-height: 1.15;
}

.journal-article p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 var(--space-20);
  color: var(--ink);
}

.journal-article p:first-of-type {
  font-size: 19px;
  color: var(--ink);
}

.journal-article p strong {
  color: var(--ink);
  font-weight: 700;
}

.journal-article img:not(.journal-hero img) {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: var(--space-32) 0;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.journal-cta-row {
  display: flex !important;
  gap: var(--space-12);
  flex-wrap: wrap;
  margin-top: var(--space-48) !important;
  padding-top: var(--space-32);
  border-top: 1px solid var(--parchment);
}

/* =============================================
   BOOK-A-CLASS SPLIT SCREEN
   ============================================= */
.book-split-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-80) 0;
}

.book-split-header {
  text-align: center;
  margin-bottom: var(--space-48);
}

.book-split-header h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  margin-top: var(--space-12);
}

.book-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  max-width: 720px;
  margin: 0 auto;
}

.book-split-card {
  background: #fff;
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: var(--space-48) var(--space-32);
  display: flex;
  flex-direction: column;
}

.book-split-card h2 {
  font-size: 1.2rem;
  margin-bottom: var(--space-12);
}

.book-split-card p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: var(--space-32);
  flex: 1;
}

@media (max-width: 640px) {
  .book-split-grid {
    grid-template-columns: 1fr;
  }
}
