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

:root {
  --brown: #8B7355;
  --brown-dark: #6e5c43;
  --beige: #F9F4EF;
  --beige-dark: #ede6dc;
  --dark: #1A1A1A;
  --text: #333;
  --muted: #888;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: var(--dark); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(10px);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: flex-end;
  height: 68px;
}
.nav-logo img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: #ccc; text-decoration: none; font-size: 14px;
  font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.nav-active { color: #fff; }
.nav-links a.nav-active { font-weight: 700; }
.nav-cta {
  background: var(--brown) !important; color: #fff !important;
  padding: 9px 22px; border-radius: 8px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brown-dark) !important; }

/* ── LOGO BANNER ── */
.logo-banner {
  background: var(--dark);
  padding: 0 0 0 40px;
  overflow: hidden;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo-banner img {
  height: 300px;
  width: auto;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--dark);
  padding: 120px 24px 64px;
  text-align: center;
}
.page-header .section-title { color: #fff; }
.page-header .section-sub { margin: 0 auto; color: rgba(255,255,255,0.65); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: url('images/Dummy Studio.png') center/cover no-repeat;
  filter: blur(2.4px);
  transform: scale(1.05);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65));
  z-index: 1;
}
.hero-inner { max-width: 760px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(139,115,85,0.3);
  border: 1px solid rgba(139,115,85,0.6);
  color: #d4b896; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero h1 span { color: #d4b896; }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--brown); color: #fff;
  padding: 15px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--brown-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 15px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-white {
  background: #fff; color: var(--brown);
  padding: 15px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-block; transition: background 0.2s;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

/* ── SECTION BASE ── */
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--brown); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.7; max-width: 600px;
}

/* ── ABOUT ── */
.about { background: var(--beige); padding: 80px 24px; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-text p {
  font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 20px;
}
.pillars { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--brown); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pillar-text h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.pillar-text p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.about-image img {
  width: 100%; border-radius: 16px; object-fit: cover; height: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ── QUICK LINKS ── */
.quick-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.quick-card {
  background: var(--beige); border-radius: 14px; padding: 28px 22px;
  text-decoration: none; color: var(--dark);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--beige-dark);
}
.quick-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.quick-icon { font-size: 28px; margin-bottom: 12px; }
.quick-card h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.quick-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.quick-link { font-size: 13px; font-weight: 700; color: var(--brown); }

/* ── CLASSES ── */
.category-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid var(--beige-dark);
}
.category-tag {
  background: var(--brown); color: #fff;
  padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
  text-align: center;
}
.category-header h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.class-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.class-card {
  border-radius: 14px; overflow: hidden; border: 1px solid #eee;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.class-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.class-card-img { height: 200px; overflow: hidden; }
.class-card-img img { width: 100%; height: 100%; object-fit: cover; }
.class-card-body { padding: 20px; }
.class-name { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.class-tag {
  display: inline-block; background: var(--beige); color: var(--brown);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 10px;
  margin-bottom: 10px; letter-spacing: 0.5px;
}
.class-desc { font-size: 13.5px; color: #666; line-height: 1.65; }
.class-note {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 10px; font-size: 12px; color: var(--brown);
  font-weight: 600; background: rgba(139,115,85,0.08);
  padding: 4px 10px; border-radius: 6px;
}

/* ── PRICING ── */
.pricing-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.pricing-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  text-align: center; position: relative;
  border: 2px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--brown); }
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brown); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 16px; border-radius: 20px;
}
.pricing-icon { font-size: 32px; margin-bottom: 16px; }
.pricing-card h3 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.pricing-price {
  font-size: 2.4rem; font-weight: 900; color: var(--brown);
  line-height: 1; margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-note { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 28px; text-align: left; }
.pricing-features li {
  font-size: 14px; color: #555; padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: flex-start; gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--brown); font-weight: 700; flex-shrink: 0; }
.btn-pricing {
  display: block; background: var(--brown); color: #fff;
  padding: 13px; border-radius: 10px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background 0.2s;
}
.btn-pricing:hover { background: var(--brown-dark); }
.btn-pricing-outline {
  display: block; border: 2px solid var(--brown); color: var(--brown);
  padding: 11px; border-radius: 10px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: all 0.2s;
}
.btn-pricing-outline:hover { background: var(--brown); color: #fff; }

/* ── POLICIES ── */
.policy-card {
  background: #fff; border-radius: 12px; padding: 24px;
  border: 1px solid var(--beige-dark);
}
.policy-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.policy-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* ── APP ── */
.app-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.app-features { list-style: none; margin-bottom: 32px; }
.app-features li {
  color: rgba(255,255,255,0.8); font-size: 14px;
  padding: 6px 0; display: flex; align-items: center; gap: 10px;
}
.app-features li::before { content: '✓'; color: #d4b896; font-weight: 700; }
.app-btns { display: flex; flex-direction: column; gap: 12px; }
.app-store-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 13px 20px; text-decoration: none;
  color: #fff; transition: background 0.2s;
}
.app-store-btn:hover { background: rgba(255,255,255,0.14); }
.store-icon { font-size: 28px; }
.store-text small { display: block; font-size: 11px; color: rgba(255,255,255,0.5); }
.store-text strong { font-size: 16px; font-weight: 700; }
.app-coming-soon { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.app-mockup {
  width: 240px; height: 460px; background: #111;
  border-radius: 36px; border: 3px solid #333;
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
}
.app-mockup-inner { text-align: center; padding: 20px; }
.app-mockup-inner img { width: 160px; margin-bottom: 16px; }

/* ── INSTRUCTORS ── */
.instructors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 800px; margin: 0 auto;
}
.instructor-placeholder {
  background: var(--beige); border-radius: 16px;
  padding: 40px 24px; text-align: center;
  border: 2px dashed var(--beige-dark);
}
.instructor-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--beige-dark); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.instructor-placeholder h4 { font-size: 15px; font-weight: 700; color: var(--brown); }
.instructor-placeholder p { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brown); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.contact-detail-text span, .contact-detail-text a {
  font-size: 15px; color: var(--dark); font-weight: 500; text-decoration: none;
}
.contact-detail-text a:hover { color: var(--brown); }
.contact-form-box {
  background: #fff; border-radius: 16px; padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
.contact-form-box h3 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid #e8e8e8; border-radius: 10px;
  padding: 12px 14px; font-size: 14px; font-family: inherit;
  color: var(--dark); background: #fafafa;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brown); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--brown); color: #fff;
  border: none; border-radius: 10px; padding: 14px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background 0.2s;
}
.form-submit:hover { background: var(--brown-dark); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 48px 40px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-brand img { height: 40px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 240px; }
.footer-links h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.5px; }
.footer-links a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 13px; margin-bottom: 9px; transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
}
.nav-overlay.open { display: block; }

/* ── INNER PAGE TOP LOGO OFFSET ── */
.logo-banner-top { margin-top: 68px; }

/* ── POLICIES GRID ── */
.policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  nav { padding: 0 20px; justify-content: flex-end; }
  .hamburger { display: flex; }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: -280px;
    width: 260px; height: 100vh;
    background: #1A1A1A;
    padding: 90px 32px 40px;
    z-index: 99;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 20px !important;
    padding: 13px 22px !important;
    text-align: center !important;
    border-radius: 10px !important;
    display: block !important;
  }

  .logo-banner { height: 100px; }
  .logo-banner img { height: 240px; }

  .page-header { padding: 32px 20px 40px; }

  .hero { padding: 80px 16px 60px; }
  .hero-inner { width: 100%; }
  .hero p { font-size: 0.9rem; max-width: 100%; width: 100%; margin-left: 0; margin-right: 0; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { width: 100%; text-align: center; justify-content: center; box-sizing: border-box; }
  .logo-banner { padding: 0 0 0 20px; }
  .category-tag { white-space: normal; }

  .about-grid, .app-inner, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { order: -1; }
  .about-image img { height: 260px; }

  .quick-grid { grid-template-columns: 1fr 1fr; }
  .class-cards { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .policies-grid { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px 18px; }

  .app-mockup { display: none; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
