/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #2D1F33;
  background: #FFFAF5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: #2D1F33; }
.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7B2D8E;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #5A4060;
  max-width: 600px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, box-shadow .25s, transform .2s;
}
.btn--primary {
  background: #7B2D8E;
  color: #fff;
  border-color: #7B2D8E;
}
.btn--primary:hover { background: #632472; border-color: #632472; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,142,.25); }
.btn--ghost {
  background: transparent;
  color: #7B2D8E;
  border-color: #7B2D8E;
}
.btn--ghost:hover { background: #7B2D8E; color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 9px 20px; font-size: .875rem; }
.btn--lg { padding: 15px 36px; font-size: 1rem; }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,250,245,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,142,.08);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(123,45,142,.1); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2D1F33;
}
.logo-icon { flex-shrink: 0; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: #5A4060;
  transition: color .2s;
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #7B2D8E;
  transition: width .25s;
}
.main-nav a:not(.btn):hover { color: #7B2D8E; }
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #2D1F33;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  background: linear-gradient(135deg, #1A0A1E 0%, #2D1F33 50%, #3D2548 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero-copy { color: #fff; padding-right: 16px; }
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F5C518;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn--primary.hero-btn { background: #F5C518; color: #1A0A1E; border-color: #F5C518; }
.btn--primary.hero-btn:hover { background: #E0B000; border-color: #E0B000; box-shadow: 0 8px 24px rgba(245,197,24,.3); }
.btn--ghost.hero-btn { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost.hero-btn:hover { background: #fff; color: #2D1F33; border-color: #fff; }
.hero-bullets { display: flex; flex-direction: column; gap: 12px; }
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.hero-bullets svg { color: #F5C518; flex-shrink: 0; }
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 640/720;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  background: #F5C518;
  border-radius: 50%;
  opacity: .15;
  filter: blur(40px);
  pointer-events: none;
}

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-title { margin-bottom: 16px; }
.section-subtitle { margin-bottom: 56px; }

/* ── Products ─────────────────────────────────────────── */
.products { background: #FFFAF5; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45,31,51,.06);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(45,31,51,.1); }
.card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card h3 {
  font-size: 1.2rem;
  padding: 20px 24px 0;
  color: #2D1F33;
}
.card p {
  padding: 8px 24px 24px;
  font-size: .95rem;
  color: #5A4060;
  line-height: 1.65;
}

/* ── About ────────────────────────────────────────────── */
.about {
  background: linear-gradient(160deg, #F9EFFF 0%, #FFFAF5 60%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123,45,142,.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute;
  bottom: -32px; right: -24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(123,45,142,.15);
  border: 4px solid #FFFAF5;
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -24px; left: -24px;
  width: 120px; height: 120px;
  background: #F5C518;
  border-radius: 50%;
  opacity: .12;
  filter: blur(32px);
  pointer-events: none;
}
.about-copy { max-width: 520px; }
.about-copy p { font-size: 1.05rem; color: #5A4060; line-height: 1.75; margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(123,45,142,.12);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #7B2D8E;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .85rem; color: #5A4060; }

/* ── Classes ──────────────────────────────────────────── */
.classes { background: #FFFAF5; }
.classes-header { text-align: center; margin-bottom: 56px; }
.classes-header .section-subtitle { margin-left: auto; margin-right: auto; }
.class-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.class-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(123,45,142,.08);
  transition: border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.class-card:hover { border-color: rgba(123,45,142,.2); box-shadow: 0 8px 32px rgba(123,45,142,.08); }
.class-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(123,45,142,.1);
  line-height: 1;
  margin-bottom: 12px;
}
.class-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2D1F33;
}
.class-card p { font-size: .95rem; color: #5A4060; line-height: 1.7; }
.classes-note { text-align: center; font-size: .95rem; color: #5A4060; }
.classes-note a { color: #7B2D8E; font-weight: 600; border-bottom: 1px solid rgba(123,45,142,.3); transition: border-color .2s; }
.classes-note a:hover { border-color: #7B2D8E; }

/* ── Visit ────────────────────────────────────────────── */
.visit {
  background: linear-gradient(160deg, #F9EFFF 0%, #FFFAF5 70%);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-list svg { color: #7B2D8E; flex-shrink: 0; margin-top: 2px; }
.contact-list strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #7B2D8E; margin-bottom: 4px; }
.contact-list span, .contact-list a { font-size: 1rem; color: #2D1F33; }
.contact-list a:hover { color: #7B2D8E; }
.hours {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(123,45,142,.08);
}
.hours h3 { font-size: 1.1rem; margin-bottom: 8px; color: #2D1F33; }
.hours p { font-size: .95rem; color: #5A4060; line-height: 1.65; }
.visit-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(123,45,142,.1);
  min-height: 420px;
}

/* ── Contact ──────────────────────────────────────────── */
.contact { background: #FFFAF5; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy .section-subtitle { margin-bottom: 0; }
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(45,31,51,.06);
  border: 1px solid rgba(123,45,142,.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: #2D1F33;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(123,45,142,.15);
  border-radius: 10px;
  background: #FFFAF5;
  color: #2D1F33;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D8E;
  box-shadow: 0 0 0 3px rgba(123,45,142,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B09AB5; }
.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 10px;
  color: #2E7D32;
  font-size: .95rem;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: #1A0A1E;
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,.5); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: #F5C518; }
.footer-contact p { font-size: .9rem; line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: #F5C518; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); text-align: center; }

/* ── Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Nav ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,250,245,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    border-bottom: 1px solid rgba(123,45,142,.08);
  }
  .main-nav.open { max-height: 400px; padding: 16px 0; }
  .main-nav a { padding: 12px 24px; font-size: 1rem; }
  .main-nav a:not(.btn)::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; max-height: 50vh; }
  .hero-copy { padding-right: 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .visit-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-small { right: 0; }
  .class-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; gap: 20px; }
  .contact-form { padding: 24px; }
}

/* ── Reduced Motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .card:hover .card-img img { transform: none; }
  .btn:hover { transform: none; }
}
