/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  --surface:                  #faf9f6;
  --surface-container-lowest: #ffffff;
  --surface-container-low:    #f4f3f1;
  --surface-container:        #efeeeb;
  --surface-container-high:   #e9e8e5;
  --on-surface:               #1a1c1a;
  --on-surface-variant:       #434842;
  --outline:                  #747871;
  --outline-variant:          #c4c8c0;
  --primary:                  #54603f;
  --on-primary:               #ffffff;
  --primary-container:        #6c7956;
  --on-primary-container:     #faffe9;
  --primary-fixed:            #dae8be;
  --primary-fixed-dim:        #becca3;
  --inverse-surface:          #2f312f;
  --inverse-on-surface:       #f2f1ee;
  --secondary:                #645e4b;
  --secondary-fixed:          #ece2c9;
  --tertiary:                 #755637;
  --tertiary-fixed:           #ffdcbf;
  --background:               #faf9f6;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--background);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal;
  font-size: 24px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block; line-height: 1;
  text-transform: none; letter-spacing: normal;
  word-wrap: normal; white-space: nowrap; direction: ltr;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
  background: rgba(250,249,246,0.90);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,200,192,0.35);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(84,96,63,0.08); }
.nav-left { display: flex; align-items: center; gap: 32px; }
.nav-logo { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; color: var(--primary); }
.nav-links { display: none; gap: 24px; list-style: none; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--outline); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 700; border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-icon { color: var(--primary); cursor: pointer; font-size: 22px; opacity: 0.8; }
.nav-cta {
  background: var(--primary); color: var(--on-primary);
  padding: 9px 22px; border-radius: 9999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px); margin-top: 64px;
  display: flex; align-items: center;
  padding: 60px 20px 80px;
}
@media (min-width: 768px)  { .hero { padding: 60px 40px 80px; } }
@media (min-width: 1024px) { .hero { padding: 60px 64px 80px; } }

.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.hero-left { display: flex; flex-direction: column; gap: 22px; }

.hero-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 700; color: var(--primary); width: fit-content;
}
.hero-location .material-symbols-outlined { font-size: 17px; }
.hero-location select {
  border: none; outline: none; background: transparent;
  font-size: 14px; font-weight: 700; color: var(--primary); cursor: pointer;
}

/* H1: corporate green */
.hero-headline {
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--primary);
}

.hero-sub {
  font-size: 17px; font-weight: 400;
  color: var(--on-surface-variant); line-height: 1.7; max-width: 440px;
}

/* Pill form */
.hero-form-pill {
  display: flex; flex-direction: column;
  background: var(--surface-container-low);
  border: 1px solid rgba(196,200,192,0.35);
  border-radius: 20px; padding: 8px;
  box-shadow: 0 2px 16px rgba(84,96,63,0.07);
  max-width: 540px; gap: 4px;
}
@media (min-width: 520px) {
  .hero-form-pill {
    flex-direction: row; align-items: center;
    border-radius: 9999px; padding: 5px;
    gap: 0;
  }
  .hero-form-divider { display: block !important; }
}
.hero-form-divider {
  display: none; width: 1px; height: 20px;
  background: var(--outline-variant); opacity: 0.5; flex-shrink: 0;
}
.hero-form-input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 14px; color: var(--on-surface);
  padding: 10px 14px; min-width: 0;
}
.hero-form-input::placeholder { color: var(--outline); }
.hero-form-btn {
  background: var(--primary); color: var(--on-primary);
  padding: 12px 24px; border-radius: 9999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  flex-shrink: 0; transition: opacity 0.2s, transform 0.15s; white-space: nowrap;
  margin: 2px;
}
.hero-form-btn:hover { opacity: 0.88; transform: translateY(-1px); }
@media (max-width: 519px) { .hero-form-btn { border-radius: 14px; padding: 12px; margin: 0; } }

/* Privacy */
.hero-privacy { display: flex; align-items: flex-start; gap: 8px; max-width: 400px; }
.hero-privacy input[type="checkbox"] {
  width: 15px; height: 15px; margin-top: 2px;
  accent-color: var(--primary); flex-shrink: 0; cursor: pointer;
}
.hero-privacy label { font-size: 12px; color: var(--secondary); line-height: 1.55; cursor: pointer; }
.hero-privacy label a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* Hero image */
.hero-image-wrap {
  position: relative; border-radius: 28px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(26,28,26,0.14);
}
@media (min-width: 900px) { .hero-image-wrap { aspect-ratio: 9/10; } }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── Section shared label ─────────────────────────────────────────────────── */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 18px;
}

/* ── Philosophy ───────────────────────────────────────────────────────────── */
.section-philosophy { background: #ffffff; padding: 96px 20px; text-align: center; }
.section-philosophy h2 {
  font-size: clamp(26px, 4vw, 46px); font-weight: 700; letter-spacing: -0.025em;
  color: var(--primary);                /* corporate green */
  line-height: 1.2; max-width: 700px; margin: 0 auto 18px;
}
.section-philosophy p {
  font-size: 17px; color: var(--secondary); line-height: 1.75; max-width: 600px; margin: 0 auto;
}

/* ── Categories carousel ──────────────────────────────────────────────────── */
.section-categories {
  background: var(--surface-container-lowest); padding: 56px 0;
  border-top: 1px solid rgba(196,200,192,0.2); border-bottom: 1px solid rgba(196,200,192,0.2);
}
.categories-shelf {
  display: flex; gap: 48px; padding: 4px 20px 16px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.categories-shelf::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .categories-shelf { justify-content: center; padding: 4px 64px 16px; } }

.category-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; cursor: pointer; flex-shrink: 0; min-width: 80px;
}
/* Individual icon background colours matching the screenshot */
.category-icon {
  width: 96px; height: 96px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-icon .material-symbols-outlined { font-size: 36px; }

/* Yoga – sage green */
.category-icon--yoga   { background: #cddbb5; color: var(--primary); }
/* Circles – warm cream/beige */
.category-icon--circles { background: #dfd8c4; color: var(--secondary); }
/* Groups – soft peach */
.category-icon--groups  { background: #f0c9aa; color: var(--tertiary); }
/* Pilates – muted sage (darker) */
.category-icon--pilates { background: #8fa87e; color: #fff; }
/* Products – warm taupe */
.category-icon--products{ background: #b8b09a; color: #fff; }

.category-item:hover .category-icon {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(84,96,63,0.18);
}
.category-label {
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--on-surface-variant); transition: color 0.2s;
}
.category-item:hover .category-label { color: var(--primary); }

/* ── Parallax ─────────────────────────────────────────────────────────────── */
.section-parallax {
  position: relative; height: 420px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: 0;
  background-image: url('images/parallax-bg.jpg');
  background-attachment: fixed; background-position: center;
  background-repeat: no-repeat; background-size: cover;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.12); }
.parallax-content { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.parallax-card {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 28px; padding: 44px 52px; max-width: 500px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.15);
}
.parallax-card h2 {
  font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; letter-spacing: -0.025em;
  color: #ffffff; margin-bottom: 10px; line-height: 1.15;
}
.parallax-card p { font-size: 16px; color: rgba(255,255,255,0.88); line-height: 1.65; }

/* ── Experience Bento ─────────────────────────────────────────────────────── */
.section-experience { background: var(--surface); padding: 96px 20px; }
@media (min-width: 768px)  { .section-experience { padding: 96px 40px; } }
@media (min-width: 1024px) { .section-experience { padding: 96px 64px; } }
.section-experience-inner { max-width: 1200px; margin: 0 auto; }
.section-experience-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px;
}
.section-experience-header h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -0.025em;
  color: var(--primary); margin-top: 6px;   /* corporate green */
}
.section-experience-header p { font-size: 14px; color: var(--on-surface-variant); margin-top: 4px; }
.section-experience-header a {
  font-size: 14px; font-weight: 700; color: var(--primary);
  text-decoration: underline; text-underline-offset: 3px; white-space: nowrap;
}

.bento-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,210px); }
  .bento-large { grid-column: span 2; grid-row: span 2; }
  .bento-small { grid-column: span 2; }
}
.bento-card {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(26,28,26,0.08); cursor: pointer;
}
.bento-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; min-height: 200px;
}
.bento-card:hover img { transform: scale(1.06); }
.bento-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.bento-chip {
  display: inline-block; background: rgba(218,232,190,0.22); backdrop-filter: blur(8px);
  color: rgba(250,255,233,0.95); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 9999px; margin-bottom: 8px; width: fit-content;
}
.bento-card h3 { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.25; }
.bento-small h3 { font-size: 16px; }

/* ── Community CTA ────────────────────────────────────────────────────────── */
.section-community { padding: 0 20px 96px; }
@media (min-width: 768px)  { .section-community { padding: 0 40px 96px; } }
@media (min-width: 1024px) { .section-community { padding: 0 64px 96px; } }
.community-card {
  max-width: 1200px; margin: 0 auto;
  background: var(--primary-container); border-radius: 36px;
  padding: 64px 52px; position: relative; overflow: hidden;
  text-align: center; color: var(--on-primary-container);
  box-shadow: 0 16px 56px rgba(84,96,63,0.22);
}
.cc-blob1 { position: absolute; top:-80px; right:-80px; width:260px; height:260px; background:rgba(255,255,255,0.1); border-radius:9999px; filter:blur(60px); }
.cc-blob2 { position: absolute; bottom:-60px; left:-60px; width:200px; height:200px; background:rgba(58,69,41,0.2); border-radius:9999px; filter:blur(40px); }
.cc-inner { position: relative; z-index: 1; }
.community-card h2 { font-size: clamp(28px,4vw,44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.1; }
.community-card p { font-size: 17px; opacity: 0.88; line-height: 1.65; margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cc-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-white { background: white; color: var(--primary); padding: 15px 32px; border-radius: 9999px; font-size: 14px; font-weight: 700; transition: background 0.2s, transform 0.2s; box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.btn-white:hover { background: var(--primary-fixed); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--on-primary-container); border: 1.5px solid rgba(250,255,233,0.4); padding: 15px 32px; border-radius: 9999px; font-size: 14px; font-weight: 700; transition: background 0.2s; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer { background: var(--surface-container-high); padding: 64px 20px 32px; }
@media (min-width: 768px)  { footer { padding: 64px 40px 32px; } }
@media (min-width: 1024px) { footer { padding: 64px 64px 32px; } }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; max-width: 1200px; margin: 0 auto; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand-name { font-size: 18px; font-weight: 800; letter-spacing: -0.03em; color: var(--primary); margin-bottom: 10px; }
.footer-brand-desc { font-size: 13px; color: var(--secondary); line-height: 1.65; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; border-radius: 9999px; background: var(--surface-container-lowest); display: flex; align-items: center; justify-content: center; color: var(--primary); transition: transform 0.2s; }
.footer-social:hover { transform: scale(1.1); }
.footer-social .material-symbols-outlined { font-size: 17px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--on-surface); margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: var(--secondary); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom { max-width: 1200px; margin: 36px auto 0; padding-top: 18px; border-top: 1px solid var(--outline-variant); display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 12px; color: var(--secondary); }

/* ── Mobile Bottom Nav ────────────────────────────────────────────────────── */
.bottom-nav {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(196,200,192,0.2); border-radius: 24px 24px 0 0;
  padding: 10px 8px 20px; box-shadow: 0 -4px 20px rgba(84,96,63,0.07); justify-content: space-around;
}
@media (min-width: 768px) { .bottom-nav { display: none; } }
.bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; background: transparent; color: var(--outline); padding: 4px 12px; border-radius: 12px; transition: color 0.2s, background 0.2s; }
.bottom-nav-item.active { color: var(--primary); background: rgba(218,232,190,0.35); }
.bottom-nav-item .material-symbols-outlined { font-size: 22px; }
.bottom-nav-item span:last-child { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Scroll animations ────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }

/* ── Step-2 Modal ─────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(26,28,26,0.48); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface-container-lowest); border-radius: 28px;
  padding: 40px; max-width: 460px; width: 100%;
  box-shadow: 0 20px 64px rgba(26,28,26,0.22); position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-step { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.modal h2 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; color: var(--on-surface); line-height: 1.2; margin-bottom: 6px; }
.modal-subtitle { font-size: 14px; color: var(--secondary); margin-bottom: 26px; }
.modal-fields { display: flex; flex-direction: column; gap: 11px; margin-bottom: 18px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.modal-field {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--outline-variant); border-radius: 12px;
  background: var(--surface-container-low); font-size: 14px; color: var(--on-surface);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.modal-field::placeholder { color: var(--outline); }
.modal-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(84,96,63,0.1); }
.modal-btn { width: 100%; background: var(--primary); color: var(--on-primary); padding: 15px 24px; border-radius: 13px; font-size: 15px; font-weight: 700; transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 14px rgba(84,96,63,0.2); margin-bottom: 10px; }
.modal-btn:hover { background: var(--primary-container); transform: translateY(-1px); }
.modal-skip { display: block; text-align: center; font-size: 13px; color: var(--outline); cursor: pointer; background: none; border: none; width: 100%; padding: 4px; transition: color 0.2s; }
.modal-skip:hover { color: var(--primary); }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--surface-container); border: none; border-radius: 9999px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--on-surface-variant); transition: background 0.2s; }
.modal-close:hover { background: var(--surface-container-high); }
.modal-close .material-symbols-outlined { font-size: 17px; }
