/* ============================================
   MY WHIPPLE JOURNEY
   COMPLETE MASTER STYLESHEET
   ============================================ */


/* ============================================
   ROOT
   ============================================ */

:root {

  --navy: #1a2a3a;
  --navy-deep: #0f1a24;

  --ivory: #f8f5f0;
  --warm-white: #fdfbf7;

  --sage: #7a9e8e;
  --sage-dark: #5c7a6c;

  --gold: #c4a77d;

  --text: #2c3e50;
  --text-light: #5a6a7a;

  --border: rgba(26, 42, 58, 0.08);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 12px;

  --shadow: 0 20px 40px -15px rgba(15, 26, 36, 0.12);

  --transition: 0.3s ease;

  --focus-ring: 0 0 0 3px rgba(122, 158, 142, 0.45);

}


/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {

    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;

  }

}


/* ============================================
   RESET
   ============================================ */

*,
*::before,
*::after {

  box-sizing: border-box;
  margin: 0;
  padding: 0;

}


html {

  scroll-behavior: smooth;

}


body {

  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;

  color: var(--text);

  background: var(--warm-white);

  -webkit-font-smoothing: antialiased;

}


img {

  max-width: 100%;
  height: auto;
  display: block;

}


a {

  text-decoration: none;
  color: inherit;

  transition: color var(--transition);

}


:focus-visible {

  outline: none;

  box-shadow: var(--focus-ring);

  border-radius: 4px;

}


/* ============================================
   SKIP LINK
   ============================================ */

.skip-link {

  position: absolute;

  top: -100px;
  left: 1rem;

  background: var(--navy);
  color: white;

  padding: 0.75rem 1.25rem;

  z-index: 10000;

  border-radius: 6px;

  font-weight: 500;

}


.skip-link:focus {

  top: 1rem;

}


/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {

  font-size: 0.75rem;

  font-weight: 500;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--sage);

  margin-bottom: 1rem;

}


h1,
h2,
h3 {

  font-family: var(--font-serif);

  font-weight: 600;

  line-height: 1.2;

  color: var(--navy);

}


h1 {

  font-size: clamp(2.8rem, 6vw, 4.5rem);

  letter-spacing: -0.02em;

}


h2 {

  font-size: clamp(2rem, 4vw, 3rem);

  margin-bottom: 1.25rem;

}


h3 {

  font-size: 1.4rem;

  margin-bottom: 0.6rem;

}


p {

  margin-bottom: 1.25rem;

  color: var(--text-light);

}


/* ============================================
   CONTAINERS
   ============================================ */

.container {

  width: min(1100px, 90%);

  margin-inline: auto;

}


.container.narrow {

  width: min(680px, 90%);

  margin-inline: auto;

}


/* ============================================
   BUTTONS
   ============================================ */

.btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0.9rem 1.9rem;

  font-size: 0.9rem;

  font-weight: 500;

  letter-spacing: 0.03em;

  border-radius: 50px;

  transition: all var(--transition);

  border: 2px solid transparent;

  min-height: 48px;

  cursor: pointer;

}


.btn-primary {

  background: var(--navy);

  color: white;

}


.btn-primary:hover {

  background: var(--navy-deep);

  transform: translateY(-2px);

  box-shadow:
    0 10px 25px -8px
    rgba(15, 26, 36, 0.35);

}


.btn-secondary {

  background: transparent;

  color: var(--navy);

  border-color: var(--navy);

}


.btn-secondary:hover {

  background: var(--navy);

  color: white;

  transform: translateY(-2px);

}


.btn-direct {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 1rem 2.2rem;

  background: var(--sage-dark);

  color: white;

  font-size: 1rem;

  font-weight: 500;

  border-radius: 50px;

  border: none;

  transition: all var(--transition);

  min-height: 52px;

}


.btn-direct:hover {

  background: #4a6558;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px -8px
    rgba(92, 122, 108, 0.45);

}


.btn-large {

  padding: 1.05rem 2.4rem;

  font-size: 1.05rem;

  min-height: 54px;

}


.text-link {

  display: inline-flex;

  align-items: center;

  gap: 0.4rem;

  font-weight: 500;

  color: var(--sage-dark);

  margin-top: 0.5rem;

}


.text-link:hover {

  color: var(--navy);

}


/* ============================================
   HEADER
   ============================================ */

.header {

  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  background: rgba(253, 251, 247, 0.92);

  backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--border);

}


.nav {

  display: flex;

  align-items: center;

  justify-content: space-between;

  width: min(1100px, 92%);

  margin-inline: auto;

  padding: 1.1rem 0;

}


.logo {

  font-family: var(--font-serif);

  font-size: 1.15rem;

  font-weight: 600;

  letter-spacing: 0.08em;

  color: var(--navy);

}


.nav-links {

  display: flex;

  gap: 2rem;

}


.nav-links a {

  font-size: 0.9rem;

  color: var(--text-light);

}


.nav-links a:hover,
.nav-links a.active {

  color: var(--navy);

}


.nav-toggle {

  display: none;

  flex-direction: column;

  gap: 5px;

  background: none;

  border: none;

  cursor: pointer;

  padding: 8px;

}


.nav-toggle span {

  display: block;

  width: 22px;

  height: 2px;

  background: var(--navy);

}


/* ============================================
   HERO
   ============================================ */

.hero {

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 8rem 1.5rem 6rem;

  overflow: hidden;

}


.hero-background {

  position: absolute;

  inset: 0;

  z-index: 0;

}


.hero-placeholder {

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      180deg,
      #f7f3ec 0%,
      #ebe4d9 100%
    );

}


.hero-img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

}


.hero-background::after {

  content: "";

  position: absolute;

  inset: 0;

  background: rgba(253, 251, 247, 0.72);

  z-index: 1;

}


.hero-content {

  position: relative;

  z-index: 2;

  max-width: 720px;

}


.hero-subtitle {

  font-family: var(--font-serif);

  font-weight: 400;

  font-size: clamp(1.3rem, 2.5vw, 1.7rem);

  color: var(--sage-dark);

  margin: 0.5rem 0 1.5rem;

}


.hero-text {

  font-size: 1.1rem;

  max-width: 540px;

  margin-inline: auto;

  margin-bottom: 2.5rem;

}


.hero-buttons {

  display: flex;

  gap: 1rem;

  justify-content: center;

  flex-wrap: wrap;

}


/* ============================================
   INTRO
   ============================================ */

.intro {

  padding: 7rem 0;

  text-align: center;

}


.intro h2 {

  margin-bottom: 1.75rem;

}


.intro p {

  font-size: 1.15rem;

}


/* ============================================
   STORY
   ============================================ */

.story {

  padding: 7rem 0;

  background: var(--navy);

  color: white;

}


.story .eyebrow {

  color: var(--gold);

}


.story h2 {

  color: white;

}


.story p {

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.1rem;

  max-width: 560px;

}


.story .text-link {

  color: var(--gold);

}


.story .text-link:hover {

  color: white;

}


.story-content {

  max-width: 600px;

}


/* ============================================
   BOOK
   ============================================ */

.book {

  padding: 7rem 0;

  background: var(--ivory);

}


.book-grid {

  display: grid;

  grid-template-columns: 1fr 1.2fr;

  gap: 4rem;

  align-items: center;

}


.book-cover {

  max-width: 320px;

  margin-inline: auto;

}


.book-img {

  width: 100%;

  max-width: 320px;

  height: auto;

  display: block;

  border-radius: 8px;

  box-shadow: var(--shadow);

}


.direct-buy {

  margin: 1.75rem 0;

}


.store-buttons {

  display: flex;

  gap: 0.8rem;

  flex-wrap: wrap;

}


/* ============================================
   RESOURCES
   ============================================ */

.resources {

  padding: 7rem 0;

  text-align: center;

}


.section-intro {

  max-width: 520px;

  margin-inline: auto;

  margin-bottom: 3.5rem;

  font-size: 1.1rem;

}


.resource-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.75rem;

}


.resource-card {

  background: white;

  padding: 2.25rem 1.75rem;

  border-radius: var(--radius);

  border: 1px solid var(--border);

  text-align: left;

  transition: all var(--transition);

}


.resource-card:hover {

  transform: translateY(-6px);

  box-shadow: var(--shadow);

}


.resource-card p {

  font-size: 0.95rem;

  margin-bottom: 1.25rem;

}


/* ============================================
   WINS & COMMUNITY
   ============================================ */

.wins,
.community {

  padding: 7rem 0;

  text-align: center;

}


.wins {

  background: var(--ivory);

}


.community {

  background: var(--navy);

  color: white;

}


.community .eyebrow {

  color: var(--gold);

}


.community h2 {

  color: white;

}


.community p {

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.1rem;

  margin-bottom: 2rem;

}


.social-buttons {

  display: flex;

  gap: 1rem;

  justify-content: center;

  flex-wrap: wrap;

  margin-top: 2rem;

}


/* ============================================
   CLOSING
   ============================================ */

.closing {

  padding: 8rem 0;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      var(--warm-white),
      #f0ebe3
    );

}


.closing-lines h2 {

  font-weight: 400;

  font-size: clamp(1.8rem, 3.5vw, 2.6rem);

  margin-bottom: 0.6rem;

  color: var(--navy);

}


.closing-lines h2:last-child {

  font-weight: 600;

  margin-top: 1.5rem;

}


/* ============================================
   FOOTER
   ============================================ */

.footer {

  background: var(--navy-deep);

  color: rgba(255, 255, 255, 0.75);

  padding: 4.5rem 0 2.5rem;

  text-align: center;

}


.footer-logo {

  font-family: var(--font-serif);

  font-size: 1.3rem;

  font-weight: 600;

  letter-spacing: 0.1em;

  color: white;

  margin-bottom: 0.4rem;

}


.footer-tagline {

  font-size: 0.95rem;

  margin-bottom: 2rem;

  color: rgba(255, 255, 255, 0.6);

}


.footer-links {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 1.5rem;

  margin-bottom: 2.5rem;

}


.footer-links a {

  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.65);

}


.footer-links a:hover {

  color: white;

}


.copyright {

  font-size: 0.8rem;

  color: rgba(255, 255, 255, 0.4);

  margin: 0;

}


/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {

  padding: 9rem 0 4rem;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      var(--warm-white) 0%,
      #f3efe8 100%
    );

}


.page-hero h1 {

  font-size: clamp(2.6rem, 5vw, 3.6rem);

  margin-bottom: 0.75rem;

}


.page-intro {

  font-size: 1.15rem;

  color: var(--text-light);

  max-width: 500px;

  margin-inline: auto;

}


/* ============================================
   SHOP
   ============================================ */

.shop-product {

  padding: 4rem 0 6rem;

}


.shop-grid {

  display: grid;

  grid-template-columns: 1fr 1.3fr;

  gap: 4.5rem;

  align-items: center;

}


.shop-cover {

  max-width: 340px;

  margin-inline: auto;

}


.shop-book-img {

  width: 100%;

  max-width: 340px;

  height: auto;

  display: block;

  border-radius: 10px;

  box-shadow: var(--shadow);

}


.price-row {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 1.5rem;

  margin: 0.5rem 0 1.5rem;

}


.shop-price {

  font-family: var(--font-serif);

  font-size: 2.1rem;

  font-weight: 600;

  color: var(--navy);

  margin: 0;

}


.shop-price span:last-child {

  font-size: 1rem;

  font-weight: 400;

  color: var(--text-light);

  margin-left: 0.3rem;

}


.currency-selector {

  display: flex;

  align-items: center;

  gap: 0.6rem;

  font-size: 0.9rem;

  color: var(--text-light);

}


.currency-selector select {

  padding: 0.45rem 0.8rem;

  border: 1px solid var(--border);

  border-radius: 8px;

  background: white;

  font-size: 0.9rem;

  color: var(--navy);

  cursor: pointer;

}


.shop-description {

  font-size: 1.1rem;

  margin-bottom: 1.75rem;

}


.shop-features {

  list-style: none;

  margin-bottom: 2.25rem;

}


.shop-features li {

  position: relative;

  padding-left: 1.6rem;

  margin-bottom: 0.55rem;

  color: var(--text-light);

}


.shop-features li::before {

  content: "✓";

  position: absolute;

  left: 0;

  color: var(--sage-dark);

  font-weight: 600;

}


.secure-note {

  font-size: 0.85rem;

  color: var(--text-light);

  margin-top: 0.75rem;

  margin-bottom: 2.5rem;

}


.other-stores {

  padding-top: 1.5rem;

  border-top: 1px solid var(--border);

}


.other-stores p {

  font-size: 0.9rem;

  margin-bottom: 1rem;

  color: var(--text-light);

}


.more-products {

  padding: 5rem 0 7rem;

  background: var(--ivory);

  text-align: center;

}


.product-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 2rem;

  max-width: 800px;

  margin-inline: auto;

  margin-top: 3rem;

}


.product-card {

  background: white;

  padding: 2rem 1.75rem;

  border-radius: var(--radius);

  border: 1px solid var(--border);

  text-align: left;

}


.product-placeholder {

  height: 160px;

  background: #eeeae3;

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--text-light);

  font-size: 0.95rem;

  margin-bottom: 1.25rem;

}


.product-card.coming-soon {

  opacity: 0.75;

}


/* ============================================
   DISCLAIMER
   ============================================ */

.disclaimer-content {

  padding: 3rem 0 7rem;

}


.disclaimer-content h2 {

  font-size: 1.6rem;

  margin-top: 2.75rem;

  margin-bottom: 0.9rem;

}


.disclaimer-content p {

  font-size: 1.05rem;

  line-height: 1.8;

}


.disclaimer-box {

  background: #f8f1e9;

  border-left: 4px solid var(--gold);

  padding: 1.5rem 1.75rem;

  margin: 3rem 0;

  border-radius: 0 8px 8px 0;

}


.disclaimer-box p {

  margin: 0;

  color: var(--navy);

}


.last-updated {

  font-size: 0.9rem;

  color: var(--text-light);

  margin-top: 3rem;

  font-style: italic;

}


.back-link {

  margin-top: 3rem;

}


/* ============================================
   CONTACT PAGE
   ============================================ */


/* --------------------------------------------
   CONTACT HERO
   -------------------------------------------- */

.contact-page-hero {

  padding-bottom: 5rem;

}


.contact-page-hero h1 {

  margin-bottom: 1rem;

}


/* --------------------------------------------
   CONTACT GET IN TOUCH
   NAVY BACKGROUND
   -------------------------------------------- */

.contact-get-in-touch {

  padding: 7rem 0;

  background: var(--navy);

  color: white;

  text-align: center;

}


.contact-get-in-touch .container {

  width: min(800px, 90%);

  margin-inline: auto;

}


.contact-get-in-touch .eyebrow {

  color: var(--gold);

}


.contact-get-in-touch h2 {

  color: white;

  margin-bottom: 1.5rem;

}


.contact-get-in-touch p {

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.1rem;

}


.contact-email {

  display: inline-block;

  margin-top: 0.5rem;

  font-family: var(--font-serif);

  font-size: clamp(1.35rem, 3vw, 1.7rem);

  font-weight: 500;

  color: var(--gold);

}


.contact-email:hover {

  color: white;

}


.contact-get-in-touch .social-buttons {

  margin-top: 2rem;

}


/* --------------------------------------------
   CONTACT MESSAGE
   IVORY BACKGROUND
   -------------------------------------------- */

.contact-message {

  padding: 7rem 0;

  background: var(--ivory);

  text-align: center;

}


.contact-message .container {

  width: min(800px, 90%);

  margin-inline: auto;

}


.contact-message h2 {

  margin-bottom: 1rem;

}


/* --------------------------------------------
   CONTACT FORM CARD
   -------------------------------------------- */

.contact-form-card {

  width: 100%;

  max-width: 700px;

  margin: 3rem auto 0;

  padding: 3.5rem;

  background: white;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  text-align: left;

}


.contact-form-card form {

  display: flex;

  flex-direction: column;

  gap: 1.15rem;

}


.contact-form-card label {

  display: block;

  margin-bottom: 0.45rem;

  font-size: 0.9rem;

  font-weight: 500;

  color: var(--navy);

}


.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {

  width: 100%;

  padding: 0.9rem 1rem;

  font-family: var(--font-sans);

  font-size: 0.95rem;

  font-weight: 400;

  line-height: 1.5;

  color: var(--text);

  background: var(--warm-white);

  border: 1px solid rgba(26, 42, 58, 0.15);

  border-radius: 8px;

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);

}


.contact-form-card input,
.contact-form-card select {

  min-height: 48px;

}


.contact-form-card textarea {

  min-height: 160px;

  resize: vertical;

}


.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {

  color: #8a959f;

}


.contact-form-card input:hover,
.contact-form-card select:hover,
.contact-form-card textarea:hover {

  border-color: rgba(26, 42, 58, 0.25);

}


.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {

  outline: none;

  border-color: var(--sage);

  box-shadow: var(--focus-ring);

  background: white;

}


/* --------------------------------------------
   CONTACT SEND BUTTON
   SAME GREEN AS BUY DIRECT
   -------------------------------------------- */

.contact-form-card .btn-send {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  align-self: center;

  padding: 1rem 2.2rem;

  background: var(--sage-dark);

  color: white;

  font-size: 1rem;

  font-weight: 500;

  border-radius: 50px;

  border: none;

  transition: all var(--transition);

  min-height: 52px;

  cursor: pointer;

}


.contact-form-card .btn-send:hover {

  background: #4a6558;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px -8px
    rgba(92, 122, 108, 0.45);

}


/* --------------------------------------------
   CONTACT CLOSING
   -------------------------------------------- */

.contact-closing {

  max-width: 620px;

  margin: 6rem auto 0;

  padding-top: 5rem;

  border-top: 1px solid var(--border);

  text-align: center;

}


.contact-closing h2 {

  margin-bottom: 1.25rem;

}


.contact-closing p:last-child {

  max-width: 560px;

  margin-left: auto;

  margin-right: auto;

  font-size: 1.05rem;

  line-height: 1.8;

}


/* ============================================
   CONTACT — COMPATIBILITY WITH ORIGINAL HTML
   ============================================ */

/*
   These rules allow the contact page to use
   the simpler classes from the existing
   contact.html without breaking the layout.
*/


.contact-section {

  padding: 7rem 0;

}


.contact-container {

  width: min(800px, 90%);

  margin-inline: auto;

}


.contact-intro {

  max-width: 680px;

  margin: 0 auto 5rem;

  text-align: center;

}


.contact-intro h2 {

  margin-bottom: 1.75rem;

}


.contact-intro p {

  font-size: 1.1rem;

  line-height: 1.8;

}


.contact-details {

  max-width: 680px;

  margin: 0 auto 5rem;

  text-align: center;

}


.contact-detail {

  padding: 2.5rem 0;

  border-top: 1px solid var(--border);

}


.contact-detail:first-child {

  border-top: none;

  padding-top: 0;

}


.contact-detail h3 {

  margin-bottom: 0.75rem;

}


.contact-detail p {

  max-width: 520px;

  margin-left: auto;

  margin-right: auto;

}


.contact-form-wrapper {

  width: 100%;

  max-width: 700px;

  margin: 3rem auto 0;

  padding: 3.5rem;

  background: white;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  text-align: center;

}


.contact-form {

  display: flex;

  flex-direction: column;

  gap: 1.25rem;

  text-align: left;

}


.form-group {

  display: flex;

  flex-direction: column;

  gap: 0.45rem;

}


.form-group label {

  font-size: 0.9rem;

  font-weight: 500;

  color: var(--navy);

}


.form-group input,
.form-group select,
.form-group textarea {

  width: 100%;

  padding: 0.9rem 1rem;

  font-family: var(--font-sans);

  font-size: 0.95rem;

  color: var(--text);

  background: var(--warm-white);

  border: 1px solid rgba(26, 42, 58, 0.15);

  border-radius: 8px;

}


.form-group input,
.form-group select {

  min-height: 48px;

}


.form-group textarea {

  min-height: 160px;

  resize: vertical;

}


/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 900px) {

  .book-grid,
  .shop-grid {

    grid-template-columns: 1fr;

    gap: 3rem;

    text-align: center;

  }


  .book-cover,
  .shop-cover {

    max-width: 280px;

    margin-inline: auto;

  }


  .book-img,
  .shop-book-img {

    max-width: 280px;

    margin-inline: auto;

  }


  .store-buttons {

    justify-content: center;

  }


  .resource-grid {

    grid-template-columns: 1fr;

    max-width: 400px;

    margin-inline: auto;

  }


  .shop-features {

    display: inline-block;

    text-align: left;

  }


  .product-grid {

    grid-template-columns: 1fr;

    max-width: 400px;

  }


  .price-row {

    justify-content: center;

  }

}


/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 768px) {

  /* Navigation */

  .nav-toggle {

    display: flex;

  }


  .nav-links {

    position: fixed;

    top: 0;

    right: 0;

    height: 100vh;

    width: min(300px, 80%);

    background: var(--warm-white);

    flex-direction: column;

    padding: 5rem 2rem 2rem;

    gap: 1.5rem;

    box-shadow: -10px 0 30px rgba(0,0,0,0.08);

    transform: translateX(100%);

    transition: transform 0.35s ease;

    z-index: 999;

  }


  .nav-links.open {

    transform: translateX(0);

  }


  /* Homepage sections */

  .hero {

    min-height: 90vh;

    padding-top: 7rem;

  }


  .intro,
  .story,
  .book,
  .resources,
  .wins,
  .community {

    padding: 5rem 0;

  }


  /* Contact */

  .contact-get-in-touch,
  .contact-message {

    padding: 5rem 0;

  }


  .contact-form-card,
  .contact-form-wrapper {

    padding: 2rem 1.5rem;

    margin-top: 2.5rem;

  }


  .contact-intro {

    margin-bottom: 4rem;

  }


  .contact-intro p {

    font-size: 1rem;

  }


  .contact-details {

    margin-bottom: 4rem;

  }


  .contact-email {

    font-size: 1.25rem;

  }


  .contact-closing {

    margin-top: 5rem;

    padding-top: 4rem;

  }

}


/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {

  .page-hero {

    padding-top: 8rem;

  }


  .contact-page-hero h1 {

    font-size: 2.5rem;

  }


  .contact-form-card,
  .contact-form-wrapper {

    padding: 1.75rem 1.25rem;

  }


  .contact-detail {

    padding: 2rem 0;

  }


  .contact-email {

    font-size: 1.1rem;

    word-break: break-word;

  }


  .contact-detail .social-buttons {

    flex-direction: column;

  }


  .contact-detail .social-buttons .btn {

    width: 100%;

    max-width: 220px;

  }

/* ============================================
   MY STORY + HTML5 EBOOK
   ============================================ */

.story-grid {

  display: grid;

  grid-template-columns: 1.1fr 0.75fr;

  gap: 4rem;

  align-items: center;

}


/* Story content */

.story-content {

  max-width: 560px;

}


/* Ebook */

.story-ebook {

  width: 100%;

  max-width: 360px;

  margin-inline: auto;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: var(--radius);

  padding: 1rem;

  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);

}


/* Ebook heading */

.story-ebook-header {

  text-align: center;

  padding: 0.25rem 0.5rem 0.9rem;

}


.story-ebook-label {

  font-size: 0.65rem;

  font-weight: 500;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--gold);

  margin-bottom: 0.25rem;

}


.story-ebook-header h3 {

  color: white;

  font-family: var(--font-serif);

  font-size: 1.35rem;

  margin: 0;

}


/* Ebook frame */

.ebook-frame {

  position: relative;

  width: 100%;

  overflow: hidden;

  background: white;

  border-radius: 7px;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);

}


/* FlipHTML5 */

.ebook-frame iframe {

  display: block;

  width: 100%;

  border: 0;

}


/* ============================================
   TABLET
   ============================================ */

@media (max-width: 900px) {

  .story-grid {

    grid-template-columns: 1fr;

    gap: 3.5rem;

  }

  .story-content {

    max-width: 650px;

    margin-inline: auto;

    text-align: center;

  }

  .story-ebook {

    max-width: 380px;

  }

}


/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {

  .story-ebook {

    max-width: 350px;

  }

}


/* ============================================
   SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {

  .story-ebook {

    max-width: 320px;

  }

}

}
/* ============================================
   FORCE MY STORY + EBOOK SIDE BY SIDE
   ============================================ */

.story-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: 4rem;
  align-items: center;
}

.story-content {
  max-width: 560px;
}

.story-ebook {
  width: 360px;
  max-width: 100%;
  margin: 0;
}

.story-ebook-header {
  text-align: center;
  padding: 0.25rem 0.5rem 0.9rem;
}

.story-ebook-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.story-ebook-header h3 {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0;
}

.ebook-frame {
  width: 100%;
  overflow: hidden;
  background: white;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.ebook-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}


/* ============================================
   TABLET / MOBILE
   ============================================ */

@media (max-width: 900px) {

  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }

  .story-content {
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
  }

  .story-ebook {
    width: 360px;
    max-width: 100%;
    margin-inline: auto;
  }

/* ============================================
   MY WHIPPLE JOURNEY
   SUPPORT THE JOURNEY PAGE
   ============================================ */


/* ============================================
   SUPPORT OPTIONS SECTION
   ============================================ */

.support-options {
  padding: 7rem 0;
  background: var(--ivory);
  text-align: center;
}


/* ============================================
   SUPPORT HEADING
   ============================================ */

.support-heading {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.support-heading .eyebrow {
  text-align: center;
}

.support-heading h2 {
  margin-bottom: 1.25rem;
  text-align: center;
}

.support-heading p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}


/* ============================================
   SUPPORT CARDS
   ============================================ */

.support-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}


/* ============================================
   INDIVIDUAL SUPPORT CARD
   ============================================ */

.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  min-height: 310px;

  padding: 2.5rem 1.75rem;

  background: white;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  box-shadow: 0 10px 30px -18px rgba(15, 26, 36, 0.18);

  text-align: center;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 42, 58, 0.12);
}


/* ============================================
   CARD LABEL
   ============================================ */

.support-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}


/* ============================================
   CARD PRICE
   ============================================ */

.support-card h3 {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}


/* ============================================
   CARD DESCRIPTION
   ============================================ */

.support-card p:not(.support-card-label) {
  max-width: 210px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ============================================
   CARD BUTTON
   ============================================ */

.support-card .btn {
  width: 100%;
  max-width: 220px;
  margin-top: auto;
}


/* ============================================
   FEATURED CARD — R500
   ============================================ */

.support-card.featured {
  border: 2px solid var(--sage);

  transform: translateY(-8px);

  box-shadow:
    0 20px 40px -20px rgba(92, 122, 108, 0.28);
}

.support-card.featured:hover {
  transform: translateY(-12px);
}


/* ============================================
   OTHER AMOUNT CARD
   ============================================ */

.support-card-other {
  grid-column: 2 / 4;

  min-height: 260px;

  margin-top: 0.5rem;

  background: var(--warm-white);
}

.support-card-other h3 {
  font-size: 2rem;
}


/* ============================================
   INTERNATIONAL NOTE
   ============================================ */

.international-note {
  max-width: 650px;

  margin: 2.5rem auto 0;

  font-size: 0.8rem;
  line-height: 1.6;

  color: var(--text-light);

  text-align: center;
}


/* ============================================
   SUPPORT RESOURCE SECTION
   ============================================ */

.support-options + .resources {
  background: var(--warm-white);
}


/* ============================================
   TABLET
   ============================================ */

@media (max-width: 1000px) {

  .support-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }

  .support-card-other {
    grid-column: 1 / -1;

    max-width: 340px;
    width: 100%;

    margin: 0.5rem auto 0;
  }

  .support-card.featured {
    transform: none;
  }

  .support-card.featured:hover {
    transform: translateY(-6px);
  }

}


/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 600px) {

  .support-options {
    padding: 5rem 0;
  }

  .support-heading {
    margin-bottom: 3rem;
  }

  .support-heading p {
    font-size: 1rem;
  }

  .support-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .support-card {
    min-height: 290px;
    padding: 2.5rem 1.5rem;
  }

  .support-card-other {
    grid-column: auto;
    max-width: none;
    margin-top: 0;
  }

  .support-card h3 {
    font-size: 2.5rem;
  }

}

/* ============================================
   BOOK — PURCHASE INFORMATION
   ============================================ */

.book-content .secure-note {

  margin: 1rem 0 0;

  font-size: 0.75rem;

  line-height: 1.6;

  color: var(--text-light);

}


.book-policy-link {

  margin: 0.8rem 0 1.8rem;

}


.book-policy-link a {

  font-size: 0.78rem;

  color: var(--text-light);

  text-decoration: none;

  border-bottom: 1px solid var(--border);

  padding-bottom: 0.15rem;

}


.book-policy-link a:hover {

  color: var(--navy);

}

/* ============================================
   FREE RESOURCE BOOKS
   ============================================ */

.resource-book {

  display: grid;

  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);

  gap: 4rem;

  align-items: center;

  padding: 4rem 0;

  border-top: 1px solid rgba(26, 42, 58, 0.08);

}


/* FIRST RESOURCE */

.resource-book:first-of-type {

  border-top: none;

  padding-top: 2rem;

}


/* BOOK COVER */

.resource-book-cover {

  display: flex;

  justify-content: center;

  align-items: center;

}


.resource-book-img {

  display: block;

  width: 100%;

  max-width: 300px;

  height: auto;

  border-radius: 4px;

  box-shadow:
    0 20px 40px -18px rgba(15, 26, 36, 0.35);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

}


.resource-book-img:hover {

  transform: translateY(-5px);

  box-shadow:
    0 25px 45px -18px rgba(15, 26, 36, 0.4);

}


/* RESOURCE CONTENT */

.resource-book-content {

  max-width: 650px;

}


.resource-book-content h3 {

  font-family:
    var(--font-serif,
    "Cormorant Garamond",
    Georgia,
    serif);

  font-size: clamp(2rem, 4vw, 2.8rem);

  font-weight: 500;

  line-height: 1.2;

  color: var(--navy);

  margin-bottom: 1.5rem;

}


.resource-book-content p {

  line-height: 1.8;

}


.resource-book-content .btn {

  margin-top: 1rem;

}


.resource-book-content .secure-note {

  margin-top: 0.9rem;

  font-size: 0.8rem;

  color: var(--text-light);

}


/* INFORMATION BOX */

.resource-book-content .policy-info {

  margin: 1.5rem 0;

  padding: 1.2rem 1.5rem;

  background: var(--warm-white);

  border-left: 3px solid var(--sage);

}


.resource-book-content .policy-info p {

  margin: 0;

  font-size: 0.88rem;

  line-height: 1.7;

}


/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 800px) {

  .resource-book {

    grid-template-columns: 1fr;

    gap: 2.5rem;

    padding: 3.5rem 0;

    text-align: center;

  }


  .resource-book-cover {

    order: 1;

  }


  .resource-book-content {

    order: 2;

    margin: 0 auto;

  }


  .resource-book-img {

    max-width: 260px;

  }


  .resource-book-content .btn {

    display: inline-flex;

  }


  .resource-book-content .policy-info {

    text-align: left;

  }

}

/* ============================================
   FREE E-BOOK DOWNLOAD PAGE
   ============================================ */

.download-information {
  text-align: center;
}

.download-information .container {
  margin-left: auto;
  margin-right: auto;
}

.download-information p {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.download-form {
  text-align: center;
}

.download-form .container {
  margin-left: auto;
  margin-right: auto;
}

.download-form .section-intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

}
