/* Rebuild with Rhett — shared site styles
   Hybrid aesthetic: bold sans-serif headlines (Inter / system stack, Hormozi-feel)
   paired with serif body text (Georgia, literary memoir feel). Cream + sage palette.
   Mobile-first. */

:root {
  --cream:       #F5F1E8;
  --cream-deep:  #EEE7D9;
  --cream-soft:  #FBF8F1;
  --sage:        #6E8770;
  --sage-faint:  #B6C2B5;
  --sage-pale:   #D2DACF;
  --ink:         #1F1F1F;
  --ink-deep:    #0E0E0E;
  --soft-ink:    #4A4A4A;
  --warm-line:   #DCD3BD;
  --max-w:       880px;
  --max-w-wide:  1100px;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;        /* clip = stronger than hidden, doesn't create scroll container */
  overscroll-behavior-x: none;
  touch-action: pan-y;     /* disable horizontal pan gestures on touch devices */
}
html, body {
  position: relative;      /* contain absolutely-positioned children */
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Belt-and-suspenders against any element causing horizontal overflow */
img, video, iframe, table { max-width: 100%; height: auto; }
main, section, .wrap { max-width: 100%; }

/* ---------------- Nav ---------------- */
nav.site-nav {
  border-bottom: 1px solid var(--sage-pale);
  background: var(--cream);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
nav.site-nav .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}
nav .brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-decoration: none;
}
nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px;
}
nav ul a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--soft-ink);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s;
}
nav ul a:hover { color: var(--sage); }
nav ul a.active { color: var(--ink); }
nav ul li { white-space: nowrap; }  /* prevent multi-word items from wrapping */

/* ---------------- Hamburger button (mobile only) ---------------- */
/* The checkbox itself is invisible — it's just the toggle state. */
.menu-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
/* The label is the visible hamburger icon. Hidden on desktop. */
.menu-toggle-button {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 20;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s, top 0.2s;
}
.menu-toggle-button span:nth-child(1) { top: 2px;  }
.menu-toggle-button span:nth-child(2) { top: 10px; }
.menu-toggle-button span:nth-child(3) { top: 18px; }
/* When checked, transform into an X */
.menu-toggle-input:checked ~ .menu-toggle-button span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.menu-toggle-input:checked ~ .menu-toggle-button span:nth-child(2) {
  opacity: 0;
}
.menu-toggle-input:checked ~ .menu-toggle-button span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ---------------- Layout ---------------- */
main { max-width: var(--max-w); margin: 0 auto; padding: 56px 28px 96px; }
.section { padding: 56px 0; }
.section + .section { border-top: 1px solid var(--sage-pale); }

/* ---------------- Headlines (sans-serif, bold display) ---------------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink-deep);
}
h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}
h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}

/* Eyebrow above headlines */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage);
  margin: 0 0 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--sage);
  vertical-align: middle;
  margin-right: 10px;
}

.divider {
  width: 56px; height: 2px;
  background: var(--sage);
  margin: 28px 0;
  border: 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ---------------- Body text ---------------- */
p { margin: 0 0 18px; max-width: 620px; }
p.lead { font-size: 21px; line-height: 1.55; color: var(--soft-ink); font-style: italic; }
em { font-style: italic; }
strong { font-weight: 700; color: var(--ink); }

a { color: var(--sage); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--ink);
  color: #FFF !important;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 3px;
  transition: background 0.15s, transform 0.08s;
}
.btn:hover { background: var(--sage); border-color: var(--sage); }
.btn:active { transform: translateY(1px); }
.btn.outline {
  background: transparent;
  color: var(--ink) !important;
}
.btn.outline:hover { background: var(--ink); color: #FFF !important; }

/* ---------------- Standard Hero (used on About, Story, Shop, etc.) ---------------- */
.hero {
  padding: 72px 0 56px;
  text-align: left;
}
.hero h1 { font-size: 64px; max-width: 760px; }
.hero p.lead { max-width: 580px; }

/* ---------------- Landing Hero (homepage — Hormozi-style big lead capture) ---------------- */
.hero-landing {
  padding: 64px 0 80px;
  text-align: left;
  border-bottom: 1px solid var(--sage-pale);
}
.hero-landing .hero-tag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.hero-landing .hero-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink-deep);
  max-width: 880px;
  margin: 0 0 24px;
}
.hero-landing .hero-sub {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--soft-ink);
  max-width: 620px;
  font-style: italic;
  margin: 0 0 36px;
}
.hero-landing .hero-form {
  margin: 0;
  max-width: 520px;
}
.hero-landing .hero-form input[type="text"],
.hero-landing .hero-form input[type="email"] {
  display: block;
  width: 100%;
  padding: 18px 20px;
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 17px;
  background: #FFFFFF;
  border: 1.5px solid var(--warm-line);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  color: var(--ink-deep);
}
.hero-landing .hero-form input:focus {
  border-color: var(--ink-deep);
  box-shadow: 0 0 0 3px rgba(110, 135, 112, 0.15);
}
.hero-landing .hero-form input::placeholder {
  color: #999;
}
.hero-landing .hero-btn {
  display: block;
  width: 100%;
  padding: 20px 26px;
  margin: 12px 0 14px;
  background: var(--ink-deep);
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, transform 0.08s;
}
.hero-landing .hero-btn:hover { background: var(--sage); }
.hero-landing .hero-btn:active { transform: translateY(1px); }
.hero-landing .hero-form-fine {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--soft-ink);
  margin: 8px 0 0;
  letter-spacing: 0.02em;
}

/* ---------------- "What's inside" check list ---------------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  max-width: 640px;
}
.check-list li {
  position: relative;
  padding: 0 0 0 36px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--sage);
  color: #FFF;
  border-radius: 50%;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---------------- Credibility band ---------------- */
.cred-band {
  background: var(--cream-deep);
  border-top: 1px solid var(--sage-pale);
  border-bottom: 1px solid var(--sage-pale);
  padding: 36px 0;
  margin: 0;
}
.cred-band .cred-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-around;
}
.cred-band .cred-stat {
  font-family: var(--sans);
  text-align: center;
}
.cred-band .cred-stat .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-deep);
  display: block;
}
.cred-band .cred-stat .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sage);
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ---------------- Product cards ---------------- */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 36px 0 0;
}
@media (min-width: 720px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: #FFFFFF;
  border: 1px solid var(--warm-line);
  border-radius: 4px;
  padding: 28px 24px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.card h3 {
  font-size: 24px;
  margin: 0 0 4px;
}
.card .price {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin: 0 0 12px;
}
.card p { font-size: 15px; line-height: 1.55; margin: 0 0 16px; }
.card .btn { align-self: flex-start; margin-top: auto; }

/* ---------------- Pull-quote ---------------- */
.pull {
  margin: 48px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--sage);
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--soft-ink);
}
.pull cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--sage);
}

/* ---------------- Form ---------------- */
.signup-card {
  background: var(--cream-soft);
  border: 1px solid var(--warm-line);
  border-radius: 6px;
  padding: 32px 28px;
  margin: 48px 0;
}
.signup-card .eyebrow { margin-bottom: 8px; }
.signup-card h3 { margin-bottom: 18px; }
form .field { display: block; margin: 0 0 14px; }
form label.text {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--soft-ink);
  margin: 0 0 6px;
}
form input[type="text"], form input[type="email"] {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-family: var(--serif);
  font-size: 16px;
  background: var(--cream);
  border: 1px solid var(--warm-line);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.15s;
}
form input:focus { border-color: var(--sage); }
form .opt-in {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--soft-ink);
  margin: 12px 0 18px;
}
form .opt-in input[type="checkbox"] { margin-top: 3px; accent-color: var(--sage); }

/* ---------------- Footer ---------------- */
footer.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--sage-pale);
  padding: 48px 28px;
  text-align: center;
  margin-top: 96px;
}
footer .wrap { max-width: var(--max-w); margin: 0 auto; }
footer .closing-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--soft-ink);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.55;
}
footer nav ul { justify-content: center; gap: 22px; }
footer .copyright {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-top: 28px;
}

/* ---------------- Mobile ---------------- */
@media (max-width: 600px) {
  main { padding: 36px 22px 60px; }
  h1 { font-size: 40px; }
  .hero h1 { font-size: 46px; }
  h2 { font-size: 28px; }
  p.lead { font-size: 18px; }

  /* Mobile nav layout:
     [hamburger]   REBUILD WITH RHETT   (empty space)
     Menu drops down below when hamburger is tapped. */
  nav.site-nav { overflow: visible; }
  nav.site-nav .wrap {
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    column-gap: 12px;
  }
  nav.site-nav .menu-toggle-button { display: block; grid-column: 1; }
  nav.site-nav .brand {
    grid-column: 2;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  /* Hidden vertical drop-down menu — shows below the bar when checked */
  nav.site-nav ul {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sage-pale);
    box-shadow: 0 8px 16px rgba(31,31,31,0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  nav.site-nav .menu-toggle-input:checked ~ ul {
    max-height: 60vh;
  }
  nav.site-nav ul li {
    border-top: 1px solid var(--sage-pale);
  }
  nav.site-nav ul li:first-child { border-top: none; }
  nav.site-nav ul a {
    display: block;
    padding: 16px 22px;
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  /* Landing hero — scale down responsively */
  .hero-landing { padding: 36px 0 56px; }
  .hero-landing .hero-headline { font-size: 44px; line-height: 1.0; letter-spacing: -0.03em; }
  .hero-landing .hero-sub { font-size: 18px; }
  .hero-landing .hero-form input[type="text"],
  .hero-landing .hero-form input[type="email"] { padding: 14px 16px; font-size: 16px; }
  .hero-landing .hero-btn { padding: 16px 22px; font-size: 15px; }
  .cred-band .cred-stat .num { font-size: 28px; }
  .cred-band .cred-stat .lbl { font-size: 10px; }
  .check-list li { font-size: 16px; padding-left: 32px; }
}

/* ---------------- Tablet sizing ---------------- */
@media (min-width: 601px) and (max-width: 960px) {
  .hero-landing .hero-headline { font-size: 58px; }
}

/* ---------------- Homepage hero with photo (story + belief) ---------------- */
.story-hero {
  padding: 64px 0 64px;
  border-bottom: 1px solid var(--sage-pale);
}
.story-hero .story-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 820px) {
  .story-hero .story-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}
.story-hero .hero-tag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.story-hero .hero-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: 60px;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink-deep);
  margin: 0 0 22px;
}
.story-hero .hero-sub {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--soft-ink);
  font-style: italic;
  margin: 0 0 28px;
  max-width: 540px;
}
.story-hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

/* Photo block — works as placeholder OR with a real image */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  border: 1px solid var(--warm-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(31, 31, 31, 0.06);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Placeholder appearance when no <img> child is present */
.hero-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  text-align: center;
  background:
    repeating-linear-gradient(
      135deg,
      var(--cream-deep) 0,
      var(--cream-deep) 14px,
      var(--cream-soft) 14px,
      var(--cream-soft) 28px
    );
}
.hero-photo.placeholder .ph-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.hero-photo.placeholder .ph-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  margin: 0 0 8px;
}
.hero-photo.placeholder .ph-help {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--soft-ink);
  margin: 0;
  max-width: 280px;
}

/* Belief band — full-width tinted strip for the belief message */
.belief-band {
  background: var(--cream-deep);
  border-top: 1px solid var(--sage-pale);
  border-bottom: 1px solid var(--sage-pale);
  padding: 56px 0;
  margin: 0;
}
.belief-band .belief-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.belief-band .belief-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink-deep);
  margin: 0 0 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.belief-band .belief-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--soft-ink);
  max-width: 620px;
  margin: 0 auto;
}

/* Free 7-day callout strip (small CTA, not the headline of the page) */
.free7-strip {
  background: var(--cream-soft);
  border: 1px solid var(--warm-line);
  border-radius: 8px;
  padding: 24px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 32px 0 0;
}
.free7-strip .strip-copy {
  flex: 1 1 320px;
}
.free7-strip .strip-copy .strip-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--sage);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.free7-strip .strip-copy .strip-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  margin: 0 0 4px;
}
.free7-strip .strip-copy .strip-sub {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--soft-ink);
  margin: 0;
}

/* Mobile adjustments for new homepage */
@media (max-width: 600px) {
  .story-hero { padding: 36px 0 48px; }
  .story-hero .hero-headline { font-size: 40px; line-height: 1.02; }
  .story-hero .hero-sub { font-size: 17px; }
  .belief-band { padding: 40px 0; }
  .belief-band .belief-headline { font-size: 26px; }
  .belief-band .belief-sub { font-size: 17px; }
  .free7-strip { padding: 20px 20px; }
}

/* ---------------- Product image + copy layout (shop pages) ---------------- */
.product-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  margin: 0 0 12px;
}
@media (min-width: 760px) {
  .product-block {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }
  /* Alternate sides on every other product block for visual rhythm */
  .product-block.flip {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .product-block.flip .product-img { order: 2; }
  .product-block.flip .product-copy { order: 1; }
}
.product-img {
  background: var(--cream-deep);
  border: 1px solid var(--warm-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(31, 31, 31, 0.06);
  aspect-ratio: 1 / 1;
}
.product-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-copy .eyebrow { margin-top: 4px; }
.product-copy h2 { margin-top: 0; }

/* Standalone editorial image (for story page transformation timeline, etc.) */
.editorial-img {
  margin: 32px 0;
  border: 1px solid var(--warm-line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 6px 24px rgba(31, 31, 31, 0.06);
}
.editorial-img img {
  display: block;
  width: 100%;
  height: auto;
}
.editorial-img figcaption {
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-ink);
  background: var(--cream-soft);
  border-top: 1px solid var(--warm-line);
}

/* Photo gallery — for the story page wreck photos */
.photo-gallery {
  margin: 36px 0;
}
.photo-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .photo-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.photo-gallery figure {
  margin: 0;
  border: 1px solid var(--warm-line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 4px 16px rgba(31, 31, 31, 0.06);
  display: flex;
  flex-direction: column;
}
.photo-gallery figure img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (min-width: 720px) {
  .photo-gallery figure img { height: 200px; }
}
.photo-gallery figcaption {
  padding: 12px 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--soft-ink);
  background: var(--cream-soft);
  border-top: 1px solid var(--warm-line);
  flex: 1;
}

/* Small inline product image (for the homepage 7-day strip) */
.strip-img {
  flex: 0 0 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid var(--warm-line);
}
.strip-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .strip-img { display: none; }
}

/* ---------------- Link-in-bio style hub cards (free-7-days landing) ---------------- */
.hub-hero {
  padding: 48px 0 24px;
  text-align: center;
}
.hub-hero .hero-tag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hub-hero h1 {
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 0 0 16px;
}
.hub-hero .hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--soft-ink);
  max-width: 560px;
  margin: 0 auto 0;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .hub-hero { padding: 32px 0 16px; }
  .hub-hero h1 { font-size: 38px; }
  .hub-hero .hero-sub { font-size: 16px; }
}

.hub-card {
  background: #FFFFFF;
  border: 1px solid var(--warm-line);
  border-radius: 12px;
  padding: 28px 28px 28px;
  margin: 0 0 24px;
  box-shadow: 0 4px 16px rgba(31, 31, 31, 0.05);
}
.hub-card .card-tag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--sage);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.hub-card h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.hub-card .card-desc {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--soft-ink);
  margin: 0 0 22px;
  max-width: none;
}
.hub-card .card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 680px) {
  .hub-card .card-body { grid-template-columns: 160px 1fr; gap: 28px; }
}
.hub-card .card-img {
  background: var(--cream-deep);
  border: 1px solid var(--warm-line);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 220px;
}
.hub-card .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hub-card form { margin: 0; max-width: 460px; }
.hub-card form input[type="text"],
.hub-card form input[type="email"] {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 16px;
  background: var(--cream-soft);
  border: 1.5px solid var(--warm-line);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  color: var(--ink-deep);
}
.hub-card form input:focus {
  border-color: var(--ink-deep);
  box-shadow: 0 0 0 3px rgba(110, 135, 112, 0.15);
}
.hub-card form input::placeholder { color: #999; }
.hub-card .hub-btn {
  display: block;
  width: 100%;
  padding: 16px 22px;
  margin: 8px 0 12px;
  background: var(--ink-deep);
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, transform 0.08s;
}
.hub-card .hub-btn:hover { background: var(--sage); color: #FFF; }
.hub-card .hub-btn:active { transform: translateY(1px); }
.hub-card .card-fine {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--soft-ink);
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}
.hub-card .card-price {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--soft-ink);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.hub-card .card-price strong { color: var(--ink-deep); font-weight: 700; }
