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

:root {
  --ink: #1a1a18;
  --cream: #f5f0e8;
  --warm: #f0e9d8;
  --rust: #c4521a;
  --rust-light: #e8824a;
  --forest: #2d5c3a;
  --forest-light: #4a8c5e;
  --gold: #d4a017;
  --gold-light: #f0c844;
  --muted: #7a7568;
  --border: rgba(26,26,24,0.12);
  --card-bg: rgba(255,255,255,0.7);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 30px; height: 30px;
  background: var(--rust);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 800;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-mark { transform: rotate(5deg); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--rust) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: #a84416 !important; opacity: 1; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 8rem 2.5rem 4rem;
  gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; right: -5%; top: 10%;
  width: 55%; height: 85%;
  background: var(--warm);
  border-radius: 2rem 0 0 8rem;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 2px;
  background: var(--rust);
}
h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
h1 em {
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--rust);
  font-weight: 400;
  font-size: 1.15em;
}
.hero-sub {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--muted); max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--rust); color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 8px; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: #a84416; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink);
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.hero-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.hero-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.4rem;
}
.hero-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.card-accent-rust .hero-card-label { color: var(--rust); }
.card-accent-forest .hero-card-label { color: var(--forest); }
.card-accent-gold .hero-card-label { color: var(--gold); }
.card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 500;
  padding: 4px 10px; border-radius: 100px;
  margin-top: 0.8rem;
}
.tag-rust { background: #fbeee7; color: var(--rust); }
.tag-forest { background: #e8f3ec; color: var(--forest); }
.tag-gold { background: #fdf5e0; color: #a07800; }

/* ── SECTION COMMON ── */
section { padding: 6rem 2.5rem; }
.section-label {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--rust); display: block; }
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 1rem;
}
h2 em { font-style: italic; font-family: 'DM Serif Display', serif; color: var(--rust); font-weight: 400; }
.section-intro {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ── SERVICES ── */
#services { background: white; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
  background: var(--cream);
}
.service-card:hover {
  border-color: var(--rust);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196,82,26,0.1);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1.2rem;
}
.icon-rust { background: #fbeee7; }
.icon-forest { background: #e8f3ec; }
.icon-gold { background: #fdf5e0; }
.icon-purple { background: #eeedfe; }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── SCHEDULING ── */
#scheduling { background: var(--warm); }
.schedule-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.schedule-types { display: flex; flex-direction: column; gap: 1rem; }
.consult-type {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: flex-start; gap: 1rem;
}
.consult-type:hover, .consult-type.active {
  border-color: var(--rust);
  box-shadow: 0 4px 20px rgba(196,82,26,0.1);
}
.consult-type.active { background: #fff9f6; }
.consult-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--border); flex-shrink: 0; margin-top: 4px;
  transition: background 0.2s;
}
.consult-type.active .consult-dot { background: var(--rust); }
.consult-type-info h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.3rem;
}
.consult-type-info p { font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.consult-type-info .price {
  font-size: 0.82rem; font-weight: 600;
  color: var(--rust); margin-top: 0.5rem;
}

/* ── BOOKING FORM ── */
.booking-form {
  background: white; border-radius: 20px;
  padding: 2rem; border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.booking-form h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--rust);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.calendar-hint {
  font-size: 0.82rem; color: var(--muted);
  text-align: center; margin-top: 1rem;
  padding: 0.8rem; background: var(--warm);
  border-radius: 8px;
}

/* ── STORE ── */
#store { background: white; }
.store-filters {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px; background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--muted); cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rust); color: white;
  border-color: var(--rust);
}
.store-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.3s ease;
  background: var(--cream);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: transparent;
}
.product-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.product-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.06em;
}
.badge-new { background: #e8f3ec; color: var(--forest); }
.badge-hot { background: #fbeee7; color: var(--rust); }
.badge-custom { background: #fdf5e0; color: #a07800; }
.product-body { padding: 1.2rem; }
.product-cat {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}
.product-body h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.4rem;
}
.product-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.5; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; }
.add-btn {
  background: var(--rust); color: white;
  border: none; border-radius: 8px;
  padding: 0.5rem 1rem; font-size: 0.82rem; font-weight: 500;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.add-btn:hover { background: #a84416; }

/* ── ABOUT ── */
#about { background: var(--ink); color: white; }
#about h2 { color: white; }
#about .section-label { color: var(--gold-light); }
#about .section-label::before { background: var(--gold-light); }
#about h2 em { color: var(--gold-light); }
.about-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.about-text p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.2rem; font-size: 1rem; }
.about-callout {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 2rem;
  margin-top: 2rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; font-style: italic;
  color: var(--gold-light); line-height: 1.4;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.fun-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.fun-tag {
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}

/* ── CATEGORIES BANNER ── */
#categories { background: var(--rust); padding: 3rem 2.5rem; }
.cat-ticker {
  display: flex; gap: 3rem; align-items: center;
  overflow: hidden; white-space: nowrap;
}
.cat-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: rgba(255,255,255,0.9); flex-shrink: 0;
}
.cat-dot { color: var(--gold-light); font-size: 1.3rem; }

/* ── PROCESS ── */
#process { background: var(--cream); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 1rem;
}
.process-step { position: relative; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: var(--border);
  line-height: 1; margin-bottom: 0.5rem;
}
.process-step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.step-line {
  position: absolute; top: 1.75rem; left: 100%;
  width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--rust) 0, var(--rust) 6px, transparent 6px, transparent 14px);
  opacity: 0.3;
}
.process-step:last-child .step-line { display: none; }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.5);
  padding: 3rem 2.5rem 2rem;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  flex-wrap: wrap; gap: 2rem;
}
.footer-brand {
  font-family: 'Syne', sans-serif; font-weight: 800;
  color: white; font-size: 1.1rem; margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.85rem; max-width: 260px; line-height: 1.6; }
.footer-links h5 {
  color: white; font-family: 'Syne', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  margin-bottom: 0.8rem; letter-spacing: 0.05em;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; }
.footer-doodle {
  font-family: 'DM Serif Display', serif;
  font-style: italic; color: var(--rust);
  font-size: 0.9rem;
}

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--forest); color: white;
  padding: 0.9rem 1.4rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
  transform: translateY(8px); opacity: 0;
  transition: all 0.3s ease; z-index: 999;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-1 { animation: float 5s ease-in-out infinite; }
.float-2 { animation: float 6s ease-in-out 1s infinite; }
.float-3 { animation: float 7s ease-in-out 0.5s infinite; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; padding: 7rem 1.5rem 4rem; }
  .hero-bg-shape { display: none; }
  .schedule-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
}
