/* =========================================================
   ParentsGuide.eu — styles.css
   Brand: burgundy · brown · sage · cream · blush
   Typography: Cormorant Garamond (display) · Inter (body)
   ========================================================= */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  /* Core palette — from brand guidelines */
  --burgundy:     #8B2252;   /* Primary soul colour */
  --burgundy-dark:#6a1a3e;
  --burgundy-soft:#f0dce6;   /* Blush */
  --brown:        #7a5c3a;   /* Structural — outlines, subheads */
  --brown-light:  #ede0d0;   /* Warm taupe */
  --sage:         #7a9e7e;   /* Second voice */
  --sage-light:   #d6e8d8;
  --cream:        #faf7f2;   /* Default page — never pure white */
  --cream-dark:   #f3ede3;
  --ink:          #2c2624;   /* Near-black, warm */
  --mid-grey:     #6b6460;
  --light-grey:   #e8e0d8;
  --white:        #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing & shape */
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.11);

  --max-width:  1140px;
  --header-h:   70px;
  --transition: .25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sage);
}
p { color: var(--mid-grey); line-height: 1.7; }

/* Eyebrow — CALIBRI/Inter, sage, tracked */
.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--sage);
  margin-bottom: .75rem;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

/* Pull quote style */
blockquote, .pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--burgundy);
  border-left: 3px solid var(--burgundy-soft);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.section-heading { margin-bottom: 3rem; }
.section-heading.center { text-align: center; }
.section-intro { max-width: 520px; margin: .75rem auto 0; }

/* ---- BUTTONS ---- */
.button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
}
.button:hover  { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button.primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139,34,82,.22);
}
.button.primary:hover { background: var(--burgundy-dark); box-shadow: 0 6px 20px rgba(139,34,82,.32); }
.button.secondary {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.button.secondary:hover { background: var(--burgundy-soft); }
.button.large { font-size: .95rem; padding: .9rem 2rem; }
.button.full-width { width: 100%; text-align: center; }

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-grey);
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  transition: box-shadow var(--transition);
}
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.logo-img { width: 38px; height: 38px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}
.brand-tld { color: var(--burgundy); }
.main-nav { display: flex; gap: 1.75rem; margin-left: auto; font-size: .875rem; font-weight: 500; }
.main-nav a { color: var(--mid-grey); transition: color var(--transition); }
.main-nav a:hover { color: var(--burgundy); }
.nav-cta { margin-left: .5rem; font-size: .82rem; padding: .55rem 1.25rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 1rem;
  background: var(--cream); padding: 1.5rem clamp(1rem, 4vw, 2.5rem) 2rem;
  border-bottom: 1px solid var(--light-grey);
  position: sticky; top: var(--header-h); z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--ink); }
.mobile-nav .button { text-align: center; }

/* ---- HERO ---- */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
  max-width: var(--max-width); margin: 0 auto;
}
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; }
.hero-bilingual {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--brown);
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--burgundy-soft);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Product mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.product-mockup { position: relative; }
.mockup-cover {
  width: 270px;
  background: linear-gradient(150deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg), 0 0 0 6px var(--burgundy-soft);
  position: relative; z-index: 1;
}
.mockup-logo { width: 46px; height: 46px; object-fit: contain; margin-bottom: 1.25rem; }
.mockup-label { font-family: var(--font-body); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; opacity: .75; margin-bottom: .5rem; color: var(--white); }
.mockup-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; margin-bottom: .75rem; color: var(--white); line-height: 1.25; }
.mockup-sub { font-size: .85rem; opacity: .85; color: var(--white); font-style: italic; }
.mockup-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--brown); color: var(--white);
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .6rem; border-radius: 50px;
}
.mockup-shadow {
  position: absolute; bottom: -12px; left: 12px; right: 12px; height: 24px;
  background: rgba(139,34,82,.18); border-radius: 50%; filter: blur(12px); z-index: 0;
}

/* ---- TRUST SECTION ---- */
.trust-section { background: var(--white); padding: 5rem clamp(1rem,4vw,2.5rem); }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.trust-card {
  background: var(--cream); border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem; border: 1px solid var(--light-grey);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-icon { font-size: 1.4rem; color: var(--sage); margin-bottom: .75rem; }
.trust-card strong {
  display: block; font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem;
}
.trust-card p { font-size: .875rem; }

/* ---- PRODUCT SECTION ---- */
.product-section { padding: 6rem clamp(1rem,4vw,2.5rem); background: var(--cream-dark); }
.product-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.product-visual { position: relative; }
.product-card-large {
  background: linear-gradient(150deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border-radius: var(--radius-lg); padding: 3rem 2.5rem;
  color: var(--white); box-shadow: var(--shadow-lg); max-width: 320px;
}
.product-logo { width: 50px; height: 50px; object-fit: contain; margin-bottom: 1.5rem; }
.product-tag {
  display: inline-block; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .1em; background: rgba(255,255,255,.18);
  color: var(--white); padding: .2rem .7rem; border-radius: 50px; margin-bottom: 1rem;
}
.product-card-large h3 { font-size: 1.65rem; color: var(--white); margin-bottom: .75rem; }
.product-card-sub { font-size: .875rem; opacity: .85; color: var(--white); font-style: italic; }
.product-pages { display: flex; gap: .5rem; margin-top: 1rem; }
.page-thumb { width: 60px; height: 80px; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); opacity: .55; }
.product-copy h2 { margin-bottom: 1rem; }
.product-desc { font-size: 1.05rem; margin-bottom: 2rem; }
.benefit-list { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .65rem; }
.benefit-list li { display: flex; gap: .75rem; font-size: .95rem; color: var(--ink); align-items: flex-start; }
.check { color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.price-note { font-size: .8rem; color: var(--mid-grey); margin-top: .75rem; }

/* ---- FREEBIE ---- */
.freebie-section { background: var(--sage-light); padding: 6rem clamp(1rem,4vw,2.5rem); }
.freebie-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.freebie-copy h2 { margin-bottom: 1rem; }
.freebie-copy p { margin-bottom: 1.5rem; }
.freebie-perks { display: flex; flex-direction: column; gap: .65rem; }
.freebie-perks li { font-size: .95rem; color: var(--ink); font-weight: 500; }
.freebie-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.freebie-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.form-note { font-size: .875rem; margin-bottom: 1.5rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .35rem; color: var(--ink); text-transform: uppercase; letter-spacing: .06em; }
.form-field input {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--light-grey); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem;
  background: var(--cream); color: var(--ink);
  transition: border-color var(--transition);
}
.form-field input:focus { outline: none; border-color: var(--burgundy); background: var(--white); }
.form-field input::placeholder { color: var(--mid-grey); opacity: .65; }
.opt-in-form .button { margin-top: .5rem; }
.consent-note { font-size: .75rem; color: var(--mid-grey); margin-top: 1rem; line-height: 1.55; }
.direct-download { margin-top: .75rem; text-align: center; font-size: .85rem; color: var(--mid-grey); }
.direct-dl-link { color: var(--burgundy); font-weight: 600; }
.direct-dl-link:hover { text-decoration: underline; }

/* ---- ABOUT ---- */
.about-section { padding: 6rem clamp(1rem,4vw,2.5rem); background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.photo-frame {
  width: 280px; height: 340px; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--brown-light);
  border: 4px solid var(--burgundy-soft); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.photo-frame.no-photo::after { content: "♡"; font-size: 4rem; color: var(--brown); opacity: .4; }
.about-badge-wrap { margin-top: 1rem; text-align: center; }
.about-badge {
  background: var(--burgundy); color: var(--white);
  font-size: .78rem; font-weight: 600; padding: .4rem 1.2rem;
  border-radius: 50px; display: inline-block; letter-spacing: .04em;
}
.about-copy h2 { margin-bottom: 1.25rem; }
.about-copy p { margin-bottom: 1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.about-tags span {
  background: var(--cream-dark); border: 1px solid var(--light-grey);
  color: var(--ink); font-size: .78rem; font-weight: 500;
  padding: .3rem .9rem; border-radius: 50px;
}

/* ---- BLOG ---- */
.blog-section { background: var(--cream-dark); padding: 6rem clamp(1rem,4vw,2.5rem); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 1.75rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 210px; background-size: cover; background-position: center; position: relative; }
.blog-img-1 { background-color: var(--sage-light); background-image: radial-gradient(ellipse at 30% 50%, rgba(122,158,126,.45) 0%, var(--sage-light) 65%); }
.blog-img-2 { background-color: var(--burgundy-soft); background-image: radial-gradient(ellipse at 70% 40%, rgba(139,34,82,.18) 0%, #fdeaf0 65%); }
.blog-img-3 { background-color: var(--brown-light); background-image: radial-gradient(ellipse at 50% 60%, rgba(122,92,58,.2) 0%, var(--brown-light) 65%); }
.blog-card-img-photo { background-size: cover; background-position: center top; }
/* Overlay for photo cards */
.blog-card-img-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(250,247,242,0) 40%, rgba(250,247,242,.55) 100%);
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block; font-family: var(--font-body);
  font-size: .68rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--sage); font-weight: 600; margin-bottom: .6rem;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.blog-card h3 a { color: var(--ink); transition: color var(--transition); }
.blog-card h3 a:hover { color: var(--burgundy); }
.blog-card p { font-size: .875rem; margin-bottom: 1rem; }
.read-more { font-size: .85rem; font-weight: 600; color: var(--burgundy); }
.read-more:hover { text-decoration: underline; }

/* ---- FINAL CTA ---- */
.final-cta {
  background: linear-gradient(150deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  padding: 6rem clamp(1rem,4vw,2.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.07) 0%, transparent 60%);
}
.final-cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-deco { font-size: 2.5rem; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.final-cta .button.secondary { color: var(--white); border-color: rgba(255,255,255,.55); }
.final-cta .button.secondary:hover { background: rgba(255,255,255,.12); }

/* ---- FOOTER ---- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: 4rem; }
.footer-layout {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-brand .brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; }
.footer-brand .brand-name { color: var(--white); font-size: 1.15rem; }
.footer-brand .brand-tld { color: var(--burgundy-soft); }
.footer-brand .logo-img { filter: brightness(0) invert(1); opacity: .85; }
.tagline { font-family: var(--font-display); font-style: italic; font-size: .9rem; margin-bottom: .75rem; }
.footer-contact { font-size: .85rem; }
.footer-contact a { color: var(--burgundy-soft); }
.footer-contact a:hover { text-decoration: underline; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links h4 { color: rgba(255,255,255,.4); margin-bottom: .25rem; font-size: .7rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem clamp(1rem,4vw,2.5rem);
  text-align: center; font-size: .78rem;
}
.footer-legal-note { margin-top: .35rem; opacity: .45; }

/* ---- ARTICLE PAGE STYLES ---- */
.article-header {
  background: linear-gradient(150deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  padding: 5rem clamp(1rem,4vw,2.5rem) 4rem;
  text-align: center;
}
.article-header .eyebrow { color: rgba(255,255,255,.7); }
.article-header h1 { color: var(--white); max-width: 760px; margin: 0 auto .75rem; font-size: clamp(1.8rem,4vw,2.8rem); }
.article-header .article-meta { color: rgba(255,255,255,.65); font-size: .875rem; margin-top: 1rem; }
.article-header .article-meta span { margin: 0 .5rem; }

.article-hero-img {
  width: 100%; max-height: 420px; object-fit: cover; object-position: center 30%;
  display: block;
}
.article-hero-placeholder {
  height: 320px; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
}

.article-body {
  max-width: 720px; margin: 0 auto;
  padding: 4rem clamp(1rem,4vw,2.5rem);
}
.article-body h2 { font-size: clamp(1.4rem,2.5vw,2rem); margin: 2.5rem 0 .9rem; }
.article-body h3 { font-size: clamp(1.1rem,2vw,1.4rem); margin: 2rem 0 .7rem; color: var(--brown); }
.article-body p { color: var(--mid-grey); margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.75; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.25rem; }
.article-body li { color: var(--mid-grey); font-size: 1rem; line-height: 1.7; margin-bottom: .5rem; }
.article-body ul li { list-style: none; padding-left: 1.25rem; position: relative; }
.article-body ul li::before { content: '✦'; position: absolute; left: 0; color: var(--sage); font-size: .75rem; top: .35rem; }

/* Callout boxes */
.callout {
  border-radius: var(--radius-md); padding: 1.5rem 1.75rem;
  margin: 2rem 0; border-left: 3px solid;
}
.callout.try-this { background: var(--sage-light); border-color: var(--sage); }
.callout.try-this .callout-label { color: var(--sage); }
.callout.parent-note { background: var(--burgundy-soft); border-color: var(--burgundy); }
.callout.parent-note .callout-label { color: var(--burgundy); }
.callout.bilingual { background: var(--brown-light); border-color: var(--brown); }
.callout.bilingual .callout-label { color: var(--brown); }
.callout-label {
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: .6rem;
}
.callout p { color: var(--ink); margin-bottom: 0; font-size: .95rem; }
.callout p + p { margin-top: .5rem; }

.bilingual-pair { display: flex; flex-direction: column; gap: .35rem; }
.bilingual-pair .lang-en { font-weight: 600; color: var(--ink); }
.bilingual-pair .lang-de { color: var(--brown); font-style: italic; }

/* Article CTA */
.article-cta {
  background: var(--cream-dark); border-radius: var(--radius-lg);
  padding: 2.5rem; text-align: center; margin-top: 3rem;
  border: 1px solid var(--light-grey);
}
.article-cta h3 { margin-bottom: .75rem; }
.article-cta p { margin-bottom: 1.5rem; font-size: .95rem; }

/* Author box */
.author-box {
  display: flex; gap: 1.25rem; align-items: center;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.5rem; margin-top: 3rem;
  border: 1px solid var(--light-grey); box-shadow: var(--shadow-sm);
}
.author-photo {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: var(--brown-light); overflow: hidden;
  border: 3px solid var(--burgundy-soft);
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.author-info h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); text-transform: none; letter-spacing: 0; }
.author-info p { font-size: .85rem; margin: 0; }

/* Back link */
.back-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--burgundy); margin-bottom: 2rem; }
.back-link:hover { text-decoration: underline; }

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: unset; padding: 3rem 1.25rem 2rem; gap: 2.5rem; text-align: center; }
  .hero-sub, .hero-bilingual { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { justify-content: center; }
  .product-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-card-large { max-width: 100%; }
  .freebie-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .photo-frame { margin: 0 auto; }
  .about-tags { justify-content: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .author-box { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-layout { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: center; }
  .mockup-cover { width: 240px; }
}

/* ---- Freebie form divider ---- */
.form-divider {
  display: flex; align-items: center; gap: .75rem;
  margin: .25rem 0 .5rem;
  color: var(--mid-grey); font-size: .78rem;
}
.form-divider::before,
.form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--light-grey);
}
