/* ============================================================
   FORINMORX — COMPLETE STYLESHEET
   Design: Geometric Clean | Palette: Warm Earth + Deep Navy
   ============================================================ */


:root {
  --primary: #1a1a2e;
  --primary-light: #2d2d4e;
  --secondary: #f5f0e8;
  --accent: #c8602a;
  --accent-dark: #a84f22;
  --accent2: #2a7c6f;
  --text: #1a1a2e;
  --text-light: #5a5a72;
  --text-muted: #8a8a9a;
  --white: #fdfcfa;
  --off-white: #f9f5ee;
  --border: rgba(26,26,46,.1);
  --border-strong: rgba(26,26,46,.18);

  --shadow-xs: 0 1px 3px rgba(26,26,46,.06), 0 1px 2px rgba(26,26,46,.04);
  --shadow-sm: 0 2px 8px rgba(26,26,46,.08), 0 1px 3px rgba(26,26,46,.05);
  --shadow-md: 0 4px 20px rgba(26,26,46,.1), 0 2px 8px rgba(26,26,46,.06);
  --shadow-lg: 0 8px 40px rgba(26,26,46,.12), 0 4px 16px rgba(26,26,46,.08);
  --shadow-xl: 0 16px 60px rgba(26,26,46,.15), 0 8px 24px rgba(26,26,46,.1);
  --shadow-accent: 0 4px 20px rgba(200,96,42,.25), 0 2px 8px rgba(200,96,42,.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --nav-h: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }


h1, h2, h3, h4, h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.75; }
p:last-child { margin-bottom: 0; }


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-alt {
  background: var(--secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-eyebrow-light { color: rgba(253,252,250,.7); }

.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.section-heading-light { color: var(--white); }

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}


.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 24px 48px;
  transition: var(--transition-slow);
}

.nav-bar.scrolled {
  padding: 12px 48px;
  background: rgba(253,252,250,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(26,26,46,.08), 0 1px 6px rgba(26,26,46,.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: var(--space-lg);
}

.nav-logo svg {
  height: 40px;
  width: auto;
  transition: height 0.4s ease;
}

.nav-bar.scrolled .nav-logo svg { height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  padding: 6px 2px;
  position: relative;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active { color: var(--accent); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }


.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 910;
}

.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }


.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.drawer[hidden] {
  display: flex !important;
  opacity: 0;
  pointer-events: none;
}

.drawer-inner {
  width: 100%;
  max-width: 500px;
  padding: var(--space-xl);
  position: relative;
}

.drawer-logo {
  display: block;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.drawer-logo svg { height: 40px; margin: 0 auto; }

.drawer-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-lg);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.drawer-close:hover { background: var(--accent); color: var(--white); }

.drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.drawer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--space-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  min-height: 80px;
  transition: var(--transition);
  text-decoration: none;
}

.drawer-item i {
  font-size: 1.3rem;
  color: var(--accent);
}

.drawer-item:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.drawer-item:hover i { color: var(--white); }


.stage {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
}

.stage-visual {
  position: relative;
  overflow: hidden;
}

.stage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}

.stage-visual:hover img { transform: scale(1.04); }

.stage-geo-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(253,252,250,.15);
}

.geo-c1 {
  width: 300px; height: 300px;
  bottom: -80px; right: -80px;
}

.geo-c2 {
  width: 160px; height: 160px;
  top: 60px; left: 40px;
  border-color: rgba(200,96,42,.3);
}

.stage-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  background: var(--secondary);
  position: relative;
}

.stage-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.stage-heading {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.08;
  margin-bottom: var(--space-md);
}

.stage-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: var(--space-lg);
}

.stage-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.stage-geo-lines {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.geo-line {
  width: 60px; height: 2px;
  background: var(--accent);
  opacity: 0.4;
}

.geo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200,96,42,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(253,252,250,.4);
}

.btn-ghost-white:hover {
  background: rgba(253,252,250,.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }


.strip-accent {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
}

.strip-accent-alt {
  background: var(--primary);
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.strip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(253,252,250,.6);
  flex-shrink: 0;
}

.strip-dot-light { background: rgba(253,252,250,.5); }

.strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,250,.9);
}

.strip-label-light { color: rgba(253,252,250,.75); }

.strip-divider {
  width: 1px; height: 16px;
  background: rgba(253,252,250,.3);
  flex-shrink: 0;
}

.strip-div-light { background: rgba(253,252,250,.2); }


.strip-geo {
  background: var(--secondary);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-geo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  flex-wrap: wrap;
}

.sgeo-item {
  opacity: 0.35;
  flex-shrink: 0;
}

.sgeo-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.sgeo-circle.sgeo-sm { width: 10px; height: 10px; }

.sgeo-rect {
  width: 20px; height: 10px;
  background: var(--accent2);
  border-radius: 2px;
}

.sgeo-rect.sgeo-tall { height: 20px; width: 8px; }


.strip-dots {
  background: var(--white);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-dots-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.strip-dots-inner span {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}

.strip-dots-inner span:nth-child(3n+1) { background: var(--accent); opacity: 0.5; }
.strip-dots-inner span:nth-child(5n+2) { background: var(--accent2); opacity: 0.4; }


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text p { margin-bottom: var(--space-md); }
.about-text .btn { margin-top: var(--space-sm); }

.about-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-img-frame img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.about-geo-block {
  position: absolute;
  width: 100px; height: 100px;
  background: var(--accent);
  border-radius: var(--radius-md);
  bottom: -24px;
  right: -24px;
  z-index: -1;
  opacity: 0.15;
}


.gallery {
  display: grid;
  gap: var(--space-md);
}

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

.shelf-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.shelf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200,96,42,.2);
}

.shelf-card-img {
  height: 200px;
  overflow: hidden;
}

.shelf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shelf-card:hover .shelf-card-img img { transform: scale(1.06); }

.shelf-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shelf-card-icon {
  width: 40px; height: 40px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.shelf-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.shelf-card-body p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: var(--transition);
}

.card-link:hover { gap: 10px; }


.shelf-card-pro {
  position: relative;
  padding: var(--space-lg);
}

.shelf-card-pro .shelf-card-icon-top {
  width: 52px; height: 52px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.shelf-card-featured {
  background: var(--primary);
  border-color: var(--primary);
}

.shelf-card-featured h3,
.shelf-card-featured p,
.shelf-card-featured li { color: rgba(253,252,250,.9); }

.shelf-card-featured .shelf-card-icon-top {
  background: rgba(200,96,42,.2);
  color: var(--accent);
}

.shelf-card-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pro-list {
  list-style: none;
  margin-top: var(--space-sm);
}

.pro-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.pro-list li i { color: var(--accent2); font-size: 0.75rem; }

.shelf-card-featured .pro-list li { color: rgba(253,252,250,.75); }


.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.how-step {
  flex: 1;
  min-width: 200px;
  padding: var(--space-md);
}

.how-step-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.how-step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.how-step-content p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.how-step-connector {
  width: 2px;
  height: 40px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}


.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 var(--space-lg);
}

.spotlight-visual {
  position: relative;
  overflow: hidden;
}

.spotlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.8s ease;
}

.spotlight-visual:hover img { transform: scale(1.04); }

.spotlight-content {
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-content p {
  color: rgba(253,252,250,.8);
  margin-bottom: var(--space-md);
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.spotlight-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(253,252,250,.85);
}

.spotlight-feat i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }


.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.ingr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-sm);
  transition: var(--transition);
}

.ingr-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ingr-card-icon {
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.ingr-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.ingr-card p { font-size: 0.88rem; margin: 0; }

.ingredients-img-row {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ingredients-img-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}


.section-cta {
  background: var(--primary);
  padding: var(--space-3xl) 0;
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: var(--space-xl);
}

.cta-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(253,252,250,.06);
}

.cta-c1 { width: 400px; height: 400px; top: -150px; right: -150px; }
.cta-c2 { width: 200px; height: 200px; bottom: -80px; left: -60px; }

.cta-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-text {
  color: rgba(253,252,250,.7);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-secondary {
  background: var(--secondary);
}

.page-hero-dark {
  background: var(--primary);
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.page-hero-title-light { color: var(--white); }

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.page-hero-desc-light { color: rgba(253,252,250,.75); }

.page-hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.phg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,26,46,.06);
}

.page-hero-dark .phg-circle { border-color: rgba(253,252,250,.06); }

.phg-c1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.phg-c2 { width: 250px; height: 250px; bottom: -100px; left: -60px; }
.phg-line { position: absolute; background: rgba(26,26,46,.05); }
.phg-l1 { width: 1px; height: 100%; top: 0; left: 40%; }


.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

.rounded-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.phil-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.phil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.phil-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 8px;
}

.phil-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.phil-card p { font-size: 0.9rem; }


.cycles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.cycle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cycle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cycle-card-header {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
}

.cycle-card-header i { font-size: 1.4rem; }
.cycle-card-header h3 { color: var(--white); margin: 0; }

.cycle-japan { background: linear-gradient(135deg, #2d4a5e, #1a3a4a); }
.cycle-india { background: linear-gradient(135deg, #7c4a1a, #5a3010); }
.cycle-mexico { background: linear-gradient(135deg, #2a6e3a, #1a4a28); }
.cycle-mideast { background: linear-gradient(135deg, #5a3a6e, #3a2050); }

.cycle-card-body { padding: var(--space-md) var(--space-lg); }

.cycle-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.cycle-topics {
  list-style: none;
  margin: var(--space-sm) 0;
}

.cycle-topics li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.cycle-topics li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}


.faq-title { font-size: 1.3rem; margin-bottom: var(--space-md); }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 12px;
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-q:hover { color: var(--accent); }

.faq-a {
  padding: 0 0 var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}


.checklist-box {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  border: 1px solid var(--border);
}

.checklist-box h4 { margin-bottom: var(--space-sm); }

.checklist {
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 6px 0;
}

.checklist li i { color: var(--accent2); flex-shrink: 0; margin-top: 3px; }


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-form-col h2 { margin-bottom: var(--space-sm); }
.contact-form-col > p { margin-bottom: var(--space-lg); }

.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group label span { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,96,42,.12);
}

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

.form-privacy { flex-direction: row; align-items: flex-start; gap: 12px; }

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.privacy-label input[type="checkbox"] {
  width: 18px; height: 18px;
  min-height: unset;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-error {
  background: rgba(200,96,42,.08);
  border: 1px solid rgba(200,96,42,.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--accent-dark);
}

.contact-info-card {
  background: var(--secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  margin-bottom: var(--space-md);
}

.contact-info-card h3 { margin-bottom: var(--space-md); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item i {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-item p { font-size: 0.95rem; margin: 0; }
.contact-info-item a { color: var(--accent); }
.contact-info-item a:hover { color: var(--accent-dark); }

.contact-response-note {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-response-note h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.contact-response-note h4 i { color: var(--accent); }
.contact-response-note p { font-size: 0.88rem; }


.section-map { padding: var(--space-2xl) 0; }
.section-map h2 { margin-bottom: var(--space-sm); }
.section-map > .container > p { margin-bottom: var(--space-lg); }

.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.map-frame iframe { display: block; }


.thanks-main {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--space-lg) var(--space-3xl);
  background: var(--secondary);
}

.thanks-container {
  text-align: center;
  max-width: 560px;
}


.envelope-anim {
  margin: 0 auto var(--space-xl);
  width: 100px;
  height: 80px;
  position: relative;
}

.env-body {
  width: 100px;
  height: 70px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-md);
}

.env-flap {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 40px;
  background: var(--secondary);
  border: 2px solid var(--accent);
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transform-origin: top center;
  animation: flapOpen 0.6s ease 0.3s forwards;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
}

.env-letter {
  position: absolute;
  width: 70px;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: 3px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  padding: 8px;
  animation: letterRise 0.5s ease 0.9s forwards;
  opacity: 0;
  z-index: 3;
}

.env-letter-lines span {
  display: block;
  height: 3px;
  background: var(--border-strong);
  border-radius: 2px;
  margin-bottom: 4px;
}

.env-letter-lines span:first-child { width: 100%; }
.env-letter-lines span:nth-child(2) { width: 80%; }
.env-letter-lines span:last-child { width: 60%; }

@keyframes flapOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-160deg); }
}

@keyframes letterRise {
  0% { opacity: 0; bottom: 10px; }
  100% { opacity: 1; bottom: 50px; }
}

.thanks-text { animation: fadeInUp 0.6s ease 1.4s both; }

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.thanks-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.thanks-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.thanks-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px var(--space-lg) var(--space-3xl);
  gap: var(--space-3xl);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
}

.legal-toc-mobile-toggle { display: none; }

.legal-toc {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border);
}

.legal-toc h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.legal-toc ol,
.legal-toc ul {
  list-style: none;
  padding: 0;
}

.legal-toc li { margin-bottom: 2px; }

.toc-link {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.toc-link:hover,
.toc-link.active {
  background: var(--accent);
  color: var(--white);
}

.legal-header {
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--space-xl);
}

.legal-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: var(--space-sm);
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.legal-section {
  margin-bottom: var(--space-xl);
  scroll-margin-top: 110px;
}

.legal-section h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-size: 1.05rem;
  margin: var(--space-md) 0 var(--space-xs);
}

.legal-section p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-light);
}

.legal-section ul,
.legal-section ol {
  padding-left: var(--space-md);
  margin: var(--space-sm) 0;
}

.legal-section li {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-box {
  background: var(--secondary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--border);
  margin: var(--space-sm) 0;
}

.legal-box p { margin: 0; font-size: 0.9rem; line-height: 1.8; }

code {
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  background: var(--secondary);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}


.cookie-table-wrap {
  overflow-x: auto;
  margin-top: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  vertical-align: top;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--off-white); }


.footer {
  background: var(--primary);
  color: var(--white);
}

.footer-stats-bar {
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 18px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(253,252,250,.7);
}

.footer-stat i { color: var(--accent); font-size: 0.9rem; }

.footer-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo { display: inline-block; margin-bottom: var(--space-sm); }
.footer-logo svg { height: 36px; }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(253,252,250,.6);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer-brand address {
  font-size: 0.85rem;
  color: rgba(253,252,250,.5);
  line-height: 1.8;
}

.footer-brand address a {
  color: rgba(253,252,250,.6);
  transition: var(--transition);
}

.footer-brand address a:hover { color: var(--accent); }

.footer-nav-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,250,.4);
  margin-bottom: var(--space-sm);
}

.footer-nav-col ul { list-style: none; }

.footer-nav-col li { margin-bottom: 8px; }

.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(253,252,250,.65);
  transition: var(--transition);
  text-decoration: none;
}

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

.footer-legal-info h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,250,.4);
  margin-bottom: var(--space-sm);
}

.footer-legal-info p {
  font-size: 0.8rem;
  color: rgba(253,252,250,.45);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253,252,250,.35);
  margin: 0;
}

.footer-bottom a {
  color: rgba(253,252,250,.45);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--accent); }


.consent-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(26,26,46,.18);
}

.consent-bar.visible { transform: translateY(0); }

.consent-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.consent-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(253,252,250,.8);
  margin: 0;
  min-width: 200px;
}

.consent-text a {
  color: var(--accent);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.consent-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  min-height: 36px;
}

.consent-accept {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.consent-accept:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.consent-reject {
  background: transparent;
  color: rgba(253,252,250,.7);
  border-color: rgba(253,252,250,.2);
}

.consent-reject:hover {
  background: rgba(253,252,250,.1);
  color: var(--white);
  border-color: rgba(253,252,250,.4);
}

.consent-customize {
  background: transparent;
  color: rgba(253,252,250,.6);
  border-color: transparent;
  text-decoration: underline;
  padding: 8px 10px;
}

.consent-customize:hover { color: var(--white); }


.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,26,46,.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.consent-modal:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.consent-modal[hidden] {
  display: flex !important;
  opacity: 0;
  pointer-events: none;
}

.consent-modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.consent-modal-box h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.consent-modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary);
  border-radius: var(--radius-full);
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.consent-modal-close:hover { background: var(--accent); color: var(--white); }

.consent-category {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.consent-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 4px;
}

.consent-category label input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px; height: 16px;
}

.consent-category p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  padding-left: 26px;
}


.tippy-box[data-theme~='custom'] {
  background: var(--primary);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  border-radius: var(--radius-md);
  padding: 2px 4px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  line-height: 1.5;
}

.tippy-box[data-theme~='custom'] .tippy-arrow { color: var(--primary); }


@media (max-width: 1100px) {
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .spotlight { margin: 0 var(--space-sm); }
  .spotlight-content { padding: var(--space-xl) var(--space-lg); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-bar { padding: 16px 24px; }
  .nav-bar.scrolled { padding: 12px 24px; }

  .stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .stage-visual {
    height: 50vw;
    min-height: 300px;
  }

  .stage-content {
    padding: 60px 32px 48px;
  }

  .about-grid,
  .two-col-grid,
  .ingredients-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .two-col-reverse { direction: ltr; }

  .philosophy-grid { grid-template-columns: 1fr; }
  .cycles-grid { grid-template-columns: 1fr; }

  .spotlight {
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: var(--radius-lg);
  }

  .spotlight-visual { height: 300px; }
  .spotlight-content { padding: var(--space-xl) var(--space-lg); }

  .legal-layout {
    grid-template-columns: 1fr;
    padding: 100px var(--space-sm) var(--space-xl);
    gap: var(--space-lg);
  }

  .legal-sidebar { position: static; }
  .legal-toc-mobile-toggle { display: block; margin-bottom: 8px; }

  #toc-toggle {
    width: 100%;
    padding: 12px 16px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .legal-toc { display: none; }
  .legal-toc.open { display: block; }

  .how-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .how-step-connector {
    width: 40px; height: 2px;
    margin: 0 auto;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-stats-bar { gap: var(--space-md); }
}

@media (max-width: 640px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2.5rem;
  }

  .container { padding: 0 var(--space-sm); }

  .stage-content { padding: 48px 24px 40px; }
  .stage-heading { font-size: clamp(2rem, 8vw, 2.8rem); }

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

  .section-heading { font-size: clamp(1.5rem, 6vw, 2rem); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-stats-bar { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions,
  .stage-actions,
  .thanks-actions { flex-direction: column; align-items: center; }

  .btn { width: 100%; justify-content: center; }

  .consent-bar-inner { flex-direction: column; align-items: flex-start; }
  .consent-actions { width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 120px 0 60px; }

  .spotlight { border-radius: var(--radius-md); }

  .drawer-grid { grid-template-columns: 1fr 1fr; }

  .cycles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .drawer-grid { grid-template-columns: 1fr; }
  .stage-actions { gap: 8px; }
}