/* ============================================================
   Mercy — doTERRA Wellness Consultant (RN)
   Brand: Holistic & Earthy | Botanical | Clinically Credible
   Built by X4 Digital
   ============================================================ */

/* --- CSS Variables --- */
:root {
  /* Brand Colors — earthy botanical palette */
  --sage:         #6B8F71;   /* primary sage green */
  --sage-light:   #A8C5AC;   /* light sage / hover states */
  --sage-deep:    #4A6B50;   /* deep sage / headings */
  --terracotta:   #C17F5B;   /* warm accent */
  --gold:         #C9A95C;   /* gold accent / highlights */
  --cream:        #FAF6ED;   /* background / warm white */
  --linen:        #F2EBD9;   /* section background */
  --linen-dark:   #E8DECA;   /* card backgrounds */
  --brown:        #5C3D2E;   /* dark text */
  --brown-light:  #8B6347;   /* secondary text */
  --white:        #FFFFFF;
  --charcoal:     #333333;

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Raleway', 'Inter', sans-serif;

  /* Spacing */
  --max-width:    1200px;
  --section-pad:  80px;
  --section-pad-mobile: 48px;

  /* Transitions */
  --ease:         0.3s ease;

  /* Shadows */
  --shadow-soft:  0 4px 24px rgba(92,61,46,0.08);
  --shadow-card:  0 2px 16px rgba(92,61,46,0.10);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--sage-deep); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--terracotta); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--sage-deep);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--brown); }
p:last-child { margin-bottom: 0; }

.serif { font-family: var(--font-serif); }
.gold-text { color: var(--gold); }
.sage-text { color: var(--sage); }
.terracotta-text { color: var(--terracotta); }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-linen {
  background-color: var(--linen);
  padding: var(--section-pad) 0;
}

.section-dark {
  background-color: var(--sage-deep);
  color: var(--cream);
  padding: var(--section-pad) 0;
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(250,246,237,0.88); }

.text-center { text-align: center; }
.text-left { text-align: left; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--brown-light);
  max-width: 620px;
  margin: 0 auto 3rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 1rem 0 2rem;
}

.divider-center {
  margin: 1rem auto 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--sage-deep);
  color: var(--cream);
  border-color: var(--sage-deep);
}

.btn-primary:hover {
  background-color: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--sage-deep);
}

.btn-outline:hover {
  background-color: var(--sage-deep);
  color: var(--cream);
}

.btn-cream {
  background-color: var(--cream);
  color: var(--sage-deep);
  border-color: var(--cream);
}

.btn-cream:hover {
  background-color: var(--linen);
  border-color: var(--linen);
  color: var(--sage-deep);
}

.btn-terracotta {
  background-color: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-terracotta:hover {
  background-color: #a96b4a;
  border-color: #a96b4a;
  color: var(--white);
}

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,246,237,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linen-dark);
  box-shadow: 0 2px 12px rgba(92,61,46,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  transition: color var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-deep);
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brown);
  transition: all var(--ease);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--linen-dark);
  padding: 1.5rem 24px;
}

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

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  border-bottom: 1px solid var(--linen-dark);
}

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--linen);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(107,143,113,0.15) 0%,
    rgba(201,169,92,0.08) 50%,
    rgba(193,127,91,0.12) 100%
  );
  z-index: 0;
}

/* Botanical SVG accent */
.hero-botanical {
  position: absolute;
  right: -80px;
  top: -60px;
  width: 520px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 80px 0;
}

.hero-content .eyebrow {
  margin-bottom: 1rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--sage-deep);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--brown-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-credential-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: 50px;
  padding: 10px 20px;
  width: fit-content;
  box-shadow: var(--shadow-soft);
}

.hero-credential-strip .cred-icon {
  width: 32px;
  height: 32px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-credential-strip .cred-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.hero-credential-strip .cred-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(92,61,46,0.18);
}

.hero-image-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: 4px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  min-width: 180px;
}

.hero-badge .badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 1;
}

.hero-badge .badge-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--sage-deep);
  padding: 28px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
}

.trust-item .t-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

.trust-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(92,61,46,0.14);
}

.card-body {
  padding: 28px;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--sage-deep);
  fill: none;
  stroke-width: 1.8;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* --- About Section / Split Layout --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.split-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--linen);
  border-radius: 4px;
  z-index: -1;
}

/* --- Oil Cards --- */
.oil-card {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease);
  border-top: 3px solid var(--sage-light);
}

.oil-card:hover { transform: translateY(-4px); }

.oil-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.oil-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sage-deep);
  margin-bottom: 0.5rem;
}

.oil-benefit {
  font-size: 0.85rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--sage-light);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sage-deep);
  letter-spacing: 0.05em;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--linen-dark);
  padding: 1.25rem 0;
}

.faq-question {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sage-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question .faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--ease);
}

.faq-answer {
  display: none;
  padding-top: 0.75rem;
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- Forms --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--linen-dark);
  border-radius: 3px;
  background: var(--white);
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: var(--linen);
  border: 1px solid var(--sage-light);
  border-radius: 4px;
  padding: 1.25rem;
  color: var(--sage-deep);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.form-error {
  display: none;
  background: #fdf0ed;
  border: 1px solid #e8a89a;
  border-radius: 4px;
  padding: 1.25rem;
  color: #8b3d2e;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--cream); }
.cta-banner p { color: rgba(250,246,237,0.88); max-width: 540px; margin: 0 auto 2.5rem; }

/* --- Step Blocks --- */
.step-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-content p { font-size: 0.95rem; color: var(--brown-light); }

/* --- Kit Cards --- */
.kit-card {
  background: var(--white);
  border: 2px solid var(--linen-dark);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  position: relative;
}

.kit-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-soft);
}

.kit-card.featured {
  border-color: var(--sage);
  box-shadow: var(--shadow-soft);
}

.kit-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.kit-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--sage-deep);
  margin-bottom: 0.5rem;
}

.kit-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.kit-pv {
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-bottom: 1.25rem;
}

.kit-features {
  list-style: none;
  margin-bottom: 2rem;
}

.kit-features li {
  font-size: 0.9rem;
  color: var(--brown);
  padding: 6px 0;
  border-bottom: 1px solid var(--linen-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kit-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease);
}

.blog-card:hover { transform: translateY(-4px); }

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--linen) 0%, var(--linen-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.blog-body {
  padding: 24px;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-tag {
  display: inline-block;
  background: var(--linen);
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* --- Resource Card (Lead Magnet) --- */
.resource-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.resource-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
}

.resource-desc {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-bottom: 1.5rem;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--linen) 0%, var(--linen-dark) 100%);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(135deg, rgba(107,143,113,0.08) 0%, rgba(201,169,92,0.06) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--brown-light);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Footer --- */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(250,246,237,0.7);
  line-height: 1.8;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(250,246,237,0.75);
  transition: color var(--ease);
}

.footer-col a:hover { color: var(--cream); }

.footer-disclaimer {
  border-top: 1px solid rgba(250,246,237,0.12);
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(250,246,237,0.5);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250,246,237,0.5);
}

/* --- Credential Strip --- */
.cred-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

.cred-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sage-deep);
  box-shadow: var(--shadow-soft);
}

.cred-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Disclaimer --- */
.disclaimer-box {
  background: var(--linen);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-top: 2rem;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image-wrap {
    order: -1;
    max-width: 460px;
    margin: 0 auto;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    min-height: auto;
    padding: 48px 0;
  }

  .hero-image-frame img {
    height: 380px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .split-section.reverse { direction: ltr; }

  .split-image img {
    height: 320px;
  }

  .trust-items {
    gap: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cred-strip {
    gap: 0.75rem;
  }

  .kit-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    bottom: -14px;
    left: -10px;
    padding: 12px 14px;
  }

  .step-block {
    flex-direction: column;
  }
}

/* ============================================================
   FONT IMPORTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@400;500;600;700&display=swap');
