@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   V2 — MEND & RESTORE — BOLD MODERN DESIGN
   ============================================================ */

/* ---------- Palette: Warm Sand ---------- */
:root {
  --color-primary-bg: #F5EDE4;
  --color-cookie-bg: #E8DCD0;
  --color-text-dark: #2C2420;
  --color-text-body: #5C524A;
  --color-text-warm: #6B5D52;
  --color-btn-outline: #9A8575;
  --color-btn-hover-bg: #EDE3D8;
  --color-input-border: rgba(154, 133, 117, 0.4);
  --color-footer-text: #8A8078;
  --color-footer-link: #D4C4B4;
  --color-header-bg: rgba(245, 237, 228, 0.92);
  --color-nav-drawer-bg: #2C2420;
  --color-nav-drawer-hover: #C4A882;
  --color-accent: #C4A882;
  --color-dark-section: #2C2420;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--color-text-body);
  background-color: var(--color-primary-bg);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > footer { margin-top: auto; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, .heading-display {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--color-text-dark);
  font-weight: 400;
  line-height: 1.1;
}

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-btn-outline);
}

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

/* ============================================================
   GLASS HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
}
.site-header.scrolled {
  background: var(--color-header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.site-header nav a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: opacity 0.3s, color 0.4s;
  color: #fff !important;
}
.site-header nav a:hover { opacity: 0.6; }
.site-header nav a.active { opacity: 0.5; pointer-events: none; }
.site-header.scrolled nav a { color: var(--color-text-dark) !important; }
.site-header.scrolled { color: var(--color-text-dark); }
.site-header .logo { border-radius: 50%; object-fit: cover; }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.nav-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--color-nav-drawer-bg);
  color: #f7f7f7;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 2.5rem;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  padding: 0.75rem 0;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-drawer a:hover { color: var(--color-nav-drawer-hover); }
.nav-drawer .close-btn {
  align-self: flex-end;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 2rem;
  background: none; border: none; color: inherit;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 50%,
    transparent 100%);
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
  padding: 8rem 2rem 4rem;
  color: #fff;
}
.hero-logo { display: none; }
@media (min-width: 768px) { .hero-logo { display: block; } }
.hero-content .label { color: rgba(255,255,255,0.7); }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-title em {
  font-style: italic;
  color: #F5EDE4;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0.9;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  background: var(--color-dark-section);
  padding: 1rem 0;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  padding: 0 2rem;
}
.marquee-inner span .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  margin: 0 1.5rem;
  vertical-align: middle;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 16px 40px;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--color-text-dark);
  color: #f0f0f0;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--color-text-dark);
  transform: translateY(-3px);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-btn-outline);
  color: var(--color-btn-outline);
}
.btn-secondary:hover {
  background: var(--color-btn-hover-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.btn .arrow {
  transition: transform 0.3s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================
   STATS / TRUST
   ============================================================ */
.stats-section {
  padding: 5rem 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-btn-outline);
}

/* ============================================================
   PHILOSOPHY QUOTE
   ============================================================ */
.philosophy {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: clamp(10rem, 25vw, 20rem);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-dark);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}
.philosophy blockquote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--color-text-warm);
}

/* ============================================================
   EDITORIAL SECTIONS (image + text overlap)
   ============================================================ */
.editorial {
  padding: 5rem 0;
  position: relative;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .editorial-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    align-items: center;
    padding: 0 3rem;
  }
  .editorial-grid .ed-img {
    grid-column: 1 / 7;
    grid-row: 1;
  }
  .editorial-grid .ed-text {
    grid-column: 7 / 13;
    grid-row: 1;
    z-index: 2;
  }
  .editorial-grid.reverse .ed-img {
    grid-column: 7 / 13;
  }
  .editorial-grid.reverse .ed-text {
    grid-column: 1 / 7;
  }
}
.ed-img {
  overflow: hidden;
  border-radius: 20px;
}
.ed-img img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.ed-img:hover img { transform: scale(1.05); }

.ed-text {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.06);
}
@media (max-width: 767px) {
  .ed-text {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.ed-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

/* ============================================================
   DARK SECTION
   ============================================================ */
.dark-section {
  background: var(--color-dark-section);
  color: rgba(255,255,255,0.85);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.dark-section h2 { color: #fff; }
.dark-section .label { color: var(--color-accent); }
.dark-section::after {
  content: 'Mend & Restore';
  font-family: 'DM Serif Display', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

/* ============================================================
   HORIZONTAL SCROLL CARDS
   ============================================================ */
.hscroll-section {
  padding: 5rem 0;
}
.hscroll-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hscroll-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.hscroll-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2rem;
  padding: 1rem 2rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.hscroll-track::-webkit-scrollbar { display: none; }
.hscroll-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  border-top: 3px solid var(--color-accent);
  transition: transform 0.4s, box-shadow 0.4s;
}
.hscroll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.hscroll-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}
.hscroll-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}
.scroll-hint {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-btn-outline);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.scroll-hint .arrow-right {
  animation: nudge 1.5s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ============================================================
   FULL-BLEED IMAGE BREAK
   ============================================================ */
.image-break {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break .overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}
.image-break .overlay h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.image-break .overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 1rem auto 0;
}

/* ============================================================
   STICKY SCROLL (text scrolls, image stays)
   ============================================================ */
@media (min-width: 768px) {
  .sticky-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
  }
  .sticky-img {
    position: sticky;
    top: 120px;
    align-self: start;
    height: fit-content;
  }
}
.sticky-section {
  padding: 5rem 2rem;
}
.sticky-img {
  border-radius: 20px;
  overflow: hidden;
}
.sticky-img img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.sticky-text {
  padding: 2rem 0;
}
.sticky-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

/* ============================================================
   REVIEWS — MASONRY / STAGGERED
   ============================================================ */
.reviews-section {
  padding: 5rem 2rem;
}
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid > :nth-child(2) { transform: translateY(24px); }
  .reviews-grid > :nth-child(5) { transform: translateY(24px); }
}
.review-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  border-left: 3px solid var(--color-accent);
  transition: transform 0.4s, box-shadow 0.4s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.review-card .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.review-card .stars svg { width: 16px; height: 16px; color: #f59e0b; }
.review-card .review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.review-card .reviewer {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-dark);
}

/* ============================================================
   CONTACT SPLIT
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-split { grid-template-columns: 5fr 7fr; }
}
.contact-info {
  background: var(--color-dark-section);
  color: rgba(255,255,255,0.85);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}
.contact-info p { margin-bottom: 0.75rem; }
.contact-info a { color: var(--color-accent); }
.contact-info a:hover { text-decoration: underline; }

.contact-form-wrap {
  padding: 4rem 3rem;
}
.contact-form-wrap h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--color-input-border);
  padding: 20px 0 8px;
  font-size: 1rem;
  color: var(--color-text-warm);
  background: transparent;
  outline: none;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-text-dark);
}
.form-group label {
  position: absolute;
  top: 16px;
  left: 0;
  color: var(--color-text-warm);
  font-size: 0.9rem;
  transition: all 0.25s;
  pointer-events: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin-top: 3rem;
}
.map-wrapper iframe { display: block; }

/* ============================================================
   SOCIAL STRIP
   ============================================================ */
.social-strip {
  padding: 4rem 2rem;
  text-align: center;
}
.social-strip h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 2rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.social-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-btn-outline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  color: var(--color-text-dark);
}
.social-icon:hover {
  background: var(--color-text-dark);
  border-color: var(--color-text-dark);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.social-icon svg { width: 24px; height: 24px; }
.social-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-btn-outline);
  margin-top: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark-section);
  padding: 4rem 2rem 2rem;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-grid h4 {
  font-family: 'DM Serif Display', serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-grid a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-grid a:hover { color: var(--color-accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  text-align: center;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94),
              transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94),
              transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94),
              transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.6s; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  max-width: 360px;
  z-index: 150;
  background: var(--color-cookie-bg);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  animation: slideUp 0.5s ease forwards;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.max-w-narrow { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--color-dark-section) 0%, transparent 60%);
  opacity: 0.04;
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-warm);
}

/* ============================================================
   CONTENT SECTION
   ============================================================ */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.content-narrow {
  max-width: 750px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* ============================================================
   STEPS GRID (How It Works)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.step-card img {
  width: 100%;
  aspect-ratio: 2;
  object-fit: cover;
  display: block;
}
.step-card-body {
  padding: 2rem;
}
.step-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-text-dark);
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ============================================================
   INFO GRID (two-column layouts)
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
}
.info-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

/* ============================================================
   DOWNLOAD CARDS
   ============================================================ */
.download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .download-grid { grid-template-columns: repeat(3, 1fr); }
}
.download-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border-top: 3px solid var(--color-accent);
  transition: transform 0.4s, box-shadow 0.4s;
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.download-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
}

/* ============================================================
   FORM PREVIEW CARD
   ============================================================ */
.form-preview-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.06);
  text-align: left;
  margin-bottom: 2rem;
}
.form-preview-card .form-logo {
  display: block;
  max-width: 180px;
  margin: 0 auto 1.5rem;
}
.form-preview-card .form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}
.form-preview-card .form-section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
  margin: 2rem 0 1rem;
}
.form-preview-card .field-line {
  font-size: 0.9rem;
  color: var(--color-text-body);
  padding: 0.35rem 0;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  position: static;
  pointer-events: auto;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   HOURS TABLE
   ============================================================ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.hours-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-input-border);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-dark);
  font-weight: 500;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '\2192';
  font-size: clamp(8rem, 20vw, 14rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-text-dark);
  opacity: 0.03;
  pointer-events: none;
}
.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
}

/* ============================================================
   BENEFITS LIST
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
.benefit-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--color-accent);
  transition: transform 0.3s;
}
.benefit-item:hover { transform: translateX(4px); }
.benefit-item strong {
  display: block;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

/* ============================================================
   BLOCKQUOTE (inner page)
   ============================================================ */
.page-blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 1.5rem 2rem;
  font-style: italic;
  color: var(--color-text-warm);
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.5);
  border-radius: 0 16px 16px 0;
}

/* ============================================================
   LIST STYLES
   ============================================================ */
.styled-list {
  list-style: none;
  padding: 0;
}
.styled-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}
.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}
.numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}
.numbered-list li {
  padding: 0.75rem 0 0.75rem 2.5rem;
  position: relative;
  counter-increment: item;
}
.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   FILE INPUT
   ============================================================ */
.file-input-wrap {
  margin-bottom: 1.5rem;
}
.file-input-wrap label {
  position: static;
  pointer-events: auto;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text-warm);
  display: block;
  margin-bottom: 0.5rem;
}
.file-input-wrap input[type="file"] {
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
}
.file-input-wrap .file-hint {
  font-size: 0.75rem;
  color: var(--color-text-body);
  margin-top: 0.25rem;
}
