/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #09080a;
  --bg2:      #100e12;
  --bg3:      #161318;
  --border:   rgba(255,255,255,.07);
  --border-h: rgba(200,16,46,.45);
  --crimson:  #c8102e;
  --crimson-l:#e8213f;
  --gold:     #c9a84c;
  --gold-l:   #e5c87a;
  --cream:    #f0e9de;
  --muted:    #7a7070;
  --text:     #d8d0c8;
  --ff-disp:  'Cormorant Garamond', Georgia, serif;
  --ff-body:  'DM Sans', sans-serif;
  --nav-h:    64px;
  --ease:     cubic-bezier(.4,0,.2,1);
}
@media (min-width: 768px) {
  :root { --nav-h: 72px; }
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--crimson); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 2px; }

/* ─── UTILS ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 480px) { .container { padding: 0 24px; } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: .5;
}

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(9,8,10,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--crimson);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-disp);
  font-size: 15px;
  color: var(--crimson);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .15em;
  color: #fff;
}
@media (min-width: 768px) { .nav-logo-text { font-size: 22px; } }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
@media (max-width: 1100px) { .nav-links { gap: 20px; } }
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-enroll {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 20px;
  border: 1px solid var(--crimson);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.btn-enroll:hover { background: var(--crimson); }
.nav-mob-btn {
  display: none;
  color: var(--text);
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-enroll { display: none; }
  .nav-mob-btn { display: block; }
}

/* ─── MOBILE MENU ─── */
#mob-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
  padding: 80px 24px 40px;
}
#mob-menu.open { transform: translateY(0); }
#mob-menu a {
  font-family: var(--ff-disp);
  font-size: clamp(24px, 7vw, 36px);
  font-style: italic;
  color: var(--text);
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
#mob-menu a:active { color: var(--gold); }
@media (hover: hover) { #mob-menu a:hover { color: var(--gold); } }
.mob-close {
  position: fixed; top: 16px; right: 16px;
  color: var(--muted); padding: 10px;
  font-size: 22px; line-height: 1;
  z-index: 100;
  -webkit-tap-highlight-color: transparent;
}
#mob-menu .mob-cta {
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 40px;
  border: 1px solid var(--crimson);
  margin-top: 8px;
  -webkit-tap-highlight-color: transparent;
}
#mob-menu .mob-cta:active { background: var(--crimson); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,16,46,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,.04) 0%, transparent 60%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: -20%; left: 35%;
  width: 1px; height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.06) 40%, rgba(255,255,255,.06) 60%, transparent);
  transform: rotate(-15deg);
}
.hero-lines::after {
  content: '';
  position: absolute;
  top: -20%; left: 65%;
  width: 1px; height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(200,16,46,.08) 40%, rgba(200,16,46,.08) 60%, transparent);
  transform: rotate(-15deg);
}
.hero-tag {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
}
@media (min-width: 480px) {
  .hero-tag { font-size: 11px; letter-spacing: .25em; margin-bottom: 24px; }
}
.hero-h1 {
  font-family: var(--ff-disp);
  font-size: clamp(44px, 13vw, 120px);
  font-weight: 300;
  line-height: .95;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .4s forwards;
}
@media (min-width: 480px) { .hero-h1 { margin-bottom: 32px; } }
.hero-h1 em {
  font-style: italic;
  color: var(--crimson);
  display: block;
}
.hero-h1 span {
  display: block;
  font-weight: 600;
  letter-spacing: -.01em;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .6s forwards;
}
@media (min-width: 480px) { .hero-sub { font-size: 16px; margin-bottom: 48px; } }
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}
.btn-primary {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--crimson);
  padding: 14px 24px;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 480px) { .btn-primary { padding: 14px 32px; } }
.btn-primary:hover { background: var(--crimson-l); }
@media (hover: none) { .btn-primary:active { background: var(--crimson-l); } }
.btn-ghost {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 24px;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 480px) { .btn-ghost { padding: 14px 32px; } }
.btn-ghost:hover { border-color: rgba(255,255,255,.25); color: #fff; }
.hero-year {
  position: absolute;
  right: 16px; bottom: 32px;
  font-family: var(--ff-disp);
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.15);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@media (min-width: 768px) { .hero-year { right: 40px; bottom: 40px; } }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .35;
}
@media (max-width: 480px) { .hero-scroll-hint { display: none; } }
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; }
  50% { opacity: .8; }
}

/* ─── SECTION COMMONS ─── */
section { position: relative; }
.sec-label {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.sec-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.sec-h2 {
  font-family: var(--ff-disp);
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sec-h2 em { font-style: italic; color: var(--crimson); }
.sec-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.divider {
  width: 48px; height: 1px;
  background: var(--border-h);
  margin: 20px 0;
}
@media (min-width: 480px) { .divider { margin: 24px 0; } }

/* ─── ABOUT ─── */
#about {
  padding: 80px 0;
  background: var(--bg2);
}
@media (min-width: 768px) { #about { padding: 120px 0; } }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 480px) { .about-features { gap: 24px; margin-top: 40px; } }
@media (max-width: 400px) { .about-features { grid-template-columns: 1fr; } }
.about-feat {
  padding: 16px;
  border: 1px solid var(--border);
  transition: border-color .25s;
}
@media (min-width: 480px) { .about-feat { padding: 20px; } }
.about-feat:hover { border-color: var(--border-h); }
.about-feat-icon {
  font-size: 18px;
  margin-bottom: 8px;
}
.about-feat h4 {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}
.about-feat p {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.about-visual {
  position: relative;
  height: 360px;
}
@media (min-width: 768px) { .about-visual { height: 480px; } }
.about-visual-inner {
  position: absolute; inset: 0;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  background: var(--bg3);
  overflow: hidden;
}
.about-visual-inner::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}
.about-big-word {
  font-family: var(--ff-disp);
  font-size: clamp(56px, 12vw, 108px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.04);
  position: absolute;
  bottom: -10px; left: -10px;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.about-center-text {
  text-align: center; z-index: 1; padding: 24px;
}
@media (min-width: 480px) { .about-center-text { padding: 32px; } }
.about-center-text p {
  font-family: var(--ff-disp);
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
}
.about-center-text p em { font-style: italic; color: var(--crimson); }
.about-center-text .tagline {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
  font-family: var(--ff-body);
}
.about-stat-row {
  display: flex; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  z-index: 1;
}
@media (min-width: 480px) { .about-stat-row { gap: 32px; } }
.about-stat { text-align: center; }
.about-stat-num {
  font-family: var(--ff-disp);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}
@media (min-width: 480px) { .about-stat-num { font-size: 32px; } }
.about-stat-label {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── SCHEDULE ─── */
#schedule {
  padding: 80px 0;
  background: var(--bg);
}
@media (min-width: 768px) { #schedule { padding: 120px 0; } }
.schedule-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .schedule-header { margin-bottom: 64px; } }
.schedule-header .sec-label { justify-content: center; }
.schedule-header .sec-label::before { display: none; }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 480px) { .schedule-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .schedule-grid { grid-template-columns: repeat(3, 1fr); } }
.sched-card {
  background: var(--bg2);
  padding: 20px 18px;
  transition: background .2s;
}
@media (min-width: 480px) { .sched-card { padding: 28px 24px; } }
.sched-card:hover { background: var(--bg3); }
.sched-day {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
@media (min-width: 480px) { .sched-day { margin-bottom: 16px; } }
.sched-class {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sched-class:last-child { border-bottom: none; padding-bottom: 0; }
.sched-level {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}
.sched-teacher {
  font-size: 12px;
  color: var(--muted);
}
.sched-time {
  margin-top: 6px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .04em;
}
.schedule-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
@media (min-width: 480px) { .schedule-note { margin-top: 32px; } }

/* ─── MASTER PRACTICE ─── */
#master-practice {
  padding: 80px 0;
  background: var(--bg2);
  overflow: hidden;
}
@media (min-width: 768px) { #master-practice { padding: 120px 0; } }
.mp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .mp-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.mp-card {
  padding: 20px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: border-color .2s;
}
@media (min-width: 480px) { .mp-card { padding: 24px; margin-bottom: 16px; } }
.mp-card:hover { border-color: var(--border-h); }
.mp-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.mp-card-title .icon { font-size: 16px; }
.mp-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.mp-cta-box {
  margin-top: 32px;
  padding: 28px 24px;
  border: 1px solid var(--border-h);
  background: rgba(200,16,46,.03);
  text-align: center;
}
@media (min-width: 480px) { .mp-cta-box { margin-top: 40px; padding: 36px; } }
.mp-cta-box h3 {
  font-family: var(--ff-disp);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.mp-cta-box p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}
.mp-price {
  font-family: var(--ff-disp);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ─── TEACHERS ─── */
#team {
  padding: 80px 0;
  background: var(--bg);
}
@media (min-width: 768px) { #team { padding: 120px 0; } }
.team-header { text-align: center; margin-bottom: 48px; }
@media (min-width: 768px) { .team-header { margin-bottom: 64px; } }
.team-header .sec-label { justify-content: center; }
.team-header .sec-label::before { display: none; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 460px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 40px;
  }
}
.teacher-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--border);
}
.teacher-card:hover .teacher-img { opacity: .85; transform: scale(1.03); }
.teacher-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transform: scale(1);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.teacher-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,8,10,.97) 30%, rgba(9,8,10,.1) 70%, transparent);
}
.teacher-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}
@media (min-width: 480px) { .teacher-info { padding: 32px 28px; } }
.teacher-name {
  font-family: var(--ff-disp);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.teacher-title {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.teacher-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.teacher-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), transparent);
}

/* ─── PRICES ─── */
#prices {
  padding: 80px 0;
  background: var(--bg2);
}
@media (min-width: 768px) { #prices { padding: 120px 0; } }
.prices-header { text-align: center; margin-bottom: 40px; }
@media (min-width: 768px) { .prices-header { margin-bottom: 48px; } }
.prices-header .sec-label { justify-content: center; }
.prices-header .sec-label::before { display: none; }
.tab-bar {
  display: flex; justify-content: center; gap: 2px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  padding: 4px;
  max-width: 100%;
  width: fit-content;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 480px) { .tab-bar { max-width: 480px; margin-bottom: 56px; } }
.tab-btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background .2s, color .2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 480px) { .tab-btn { padding: 10px 16px; font-size: 12px; letter-spacing: .1em; } }
.tab-btn.active { background: var(--crimson); color: #fff; }
.tab-btn:not(.active):hover { color: var(--text); }
.wedding-notice {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 24px 20px;
  border: 1px solid rgba(200,16,46,.3);
  background: rgba(200,16,46,.04);
  display: none;
}
@media (min-width: 480px) { .wedding-notice { padding: 28px 32px; margin-bottom: 48px; } }
.wedding-notice h3 {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 10px;
  font-style: italic;
}
@media (min-width: 480px) { .wedding-notice h3 { font-size: 22px; } }
.wedding-notice p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
#prices-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg);
  padding: 28px 24px;
  position: relative;
  transition: background .2s;
}
@media (min-width: 480px) { .price-card { padding: 40px 36px; } }
.price-card:hover { background: var(--bg3); }
.price-card.featured { background: rgba(200,16,46,.04); }
.price-card.featured::before {
  content: attr(data-badge);
  position: absolute; top: 12px; right: 12px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--crimson);
  border: 1px solid var(--crimson);
  padding: 4px 8px;
}
@media (min-width: 480px) {
  .price-card.featured::before { top: 16px; right: 16px; padding: 4px 10px; }
}
.price-card-top-line {
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
}
.price-card.featured .price-card-top-line { background: var(--crimson); }
.price-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
@media (min-width: 480px) { .price-name { font-size: 15px; margin-bottom: 16px; } }
.price-amount {
  font-family: var(--ff-disp);
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount.featured-price { color: var(--gold); }
.price-unit {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .05em;
  margin-bottom: 24px;
}
@media (min-width: 480px) { .price-unit { margin-bottom: 28px; } }
.price-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 480px) { .price-features { gap: 10px; margin-bottom: 32px; } }
.price-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.4;
}
.price-features li::before {
  content: '—';
  color: var(--crimson);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}
.price-btn {
  width: 100%;
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
}
.price-btn:hover { border-color: var(--crimson); background: rgba(200,16,46,.08); }
.price-btn.featured-btn { border-color: var(--crimson); background: var(--crimson); }
.price-btn.featured-btn:hover { background: var(--crimson-l); }

/* ─── CONTACT ─── */
#contact {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { #contact { padding: 120px 0; } }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.contact-info-list {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 32px;
}
@media (min-width: 480px) { .contact-info-list { gap: 28px; margin-top: 40px; } }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.social-row {
  display: flex; gap: 12px;
  margin-top: 32px;
}
@media (min-width: 480px) { .social-row { margin-top: 40px; } }
.social-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
  letter-spacing: 0;
  -webkit-tap-highlight-color: transparent;
}
.social-btn:hover { border-color: var(--crimson); color: #fff; background: var(--crimson); }
.social-btn[title="Max"] { font-size: 10px; letter-spacing: .02em; }
.contact-form-box {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--bg2);
}
@media (min-width: 480px) { .contact-form-box { padding: 40px; } }
.contact-form-box h3 {
  font-family: var(--ff-disp);
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}
@media (min-width: 480px) { .contact-form-box h3 { margin-bottom: 28px; } }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px 16px;
  color: #fff;
  font-size: 16px; /* 16px prevents iOS zoom */
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus { border-color: var(--crimson); }
.form-input::placeholder { color: rgba(122,112,112,.5); }
.form-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── FOOTER ─── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
@media (min-width: 480px) { footer { padding: 32px 0; } }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.2);
}
.footer-links {
  display: flex; gap: 16px; flex-wrap: wrap;
}
@media (min-width: 480px) { .footer-links { gap: 24px; } }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.5); }

/* ─── MODAL ─── */
#modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 200;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
}
@media (min-width: 600px) {
  #modal-overlay {
    align-items: center;
    padding: 24px;
  }
}
#modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-bottom: none;
  width: 100%; max-width: 420px;
  padding: 32px 24px;
  position: relative;
  transform: translateY(40px);
  transition: transform .3s var(--ease);
  border-radius: 12px 12px 0 0;
}
@media (min-width: 600px) {
  .modal-box {
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 40px;
    transform: translateY(16px);
  }
}
#modal-overlay.open .modal-box { transform: translateY(0); }
/* Drag handle for mobile */
.modal-drag-handle {
  width: 36px; height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 20px;
}
@media (min-width: 600px) { .modal-drag-handle { display: none; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 18px;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.modal-close:hover { color: #fff; }
.modal-logo {
  width: 36px; height: 36px;
  border: 1px solid var(--crimson);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-disp);
  font-size: 14px; color: var(--crimson);
  margin: 0 auto 16px;
}
.modal-title {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
}
@media (min-width: 480px) { .modal-title { font-size: 26px; } }
.modal-sub {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 480px) { .modal-sub { margin-bottom: 28px; } }
.modal-sub span { color: var(--gold); font-weight: 500; }
#modal-success {
  display: none;
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(100,200,100,.3);
  background: rgba(100,200,100,.05);
  color: #7fb580;
  font-size: 14px;
  margin-bottom: 20px;
}
#modal-success.show { display: block; }
#modal-success.error {
  border-color: rgba(200,16,46,.35);
  background: rgba(200,16,46,.07);
  color: #e0857f;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SAFE AREA (notch/home indicator) ─── */
@supports (padding: max(0px)) {
  #navbar {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .modal-box {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }
  #mob-menu {
    padding-bottom: max(40px, env(safe-area-inset-bottom));
  }
}
