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

:root {
  --color-bg: #0a0a0a;
  --color-bg-light: #111111;
  --color-bg-card: #161616;
  --color-text: #ffffff;
  --color-text-muted: #888880;
  --color-accent: #4D9FFF;
  --color-accent-hover: #6db3ff;
  --color-wine: #4D9FFF;
  --color-wine-light: #6db3ff;
  --color-accent-secondary: #FF3B8B;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--color-accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--color-accent);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.service-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.event-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.pricing-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.blog-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(77, 159, 255, 0.08), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 60px 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  color: var(--color-text);
}

.hero h1 .accent {
  color: var(--color-wine);
}

.hero .tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-style: italic;
}

.hero .subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.hero-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent-secondary);
  margin: 0 auto 32px;
  box-shadow: 0 4px 24px rgba(255, 59, 139, 0.2);
}

.hero-monogram {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--color-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-wine);
  letter-spacing: 0.08em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(77, 159, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent-secondary);
  border: 1px solid var(--color-accent-secondary);
}

.btn-outline:hover {
  background: var(--color-accent-secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-heading .divider {
  width: 60px;
  height: 2px;
  background: var(--color-accent-secondary);
  margin: 20px auto 0;
}

/* ===== MISSION / INTRO SECTION ===== */
.intro {
  background: var(--color-bg);
}

.intro-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 24px;
}

.intro-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ===== SERVICES CARDS ===== */
.services {
  background: var(--color-bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--color-bg-card);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 159, 255, 0.3);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.services .cta-center {
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--color-bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: var(--color-bg-card);
  padding: 40px;
  border-left: 3px solid var(--color-accent-secondary);
  position: relative;
}

.testimonial-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-accent-secondary);
  font-style: normal;
}

.testimonial-card .author-detail {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: normal;
  margin-top: 2px;
}

/* ===== UPCOMING CLASSES ===== */
.upcoming {
  background: var(--color-bg-light);
}

.event-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.event-card .event-header {
  background: var(--color-wine);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.event-card .event-date {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
  white-space: nowrap;
}

.event-card .event-time {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.event-card .event-body {
  padding: 32px;
}

.event-card h3 {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.event-card .event-location {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.event-card .event-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--color-bg);
  text-align: center;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.newsletter p {
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.newsletter .highlight {
  color: var(--color-accent-secondary);
  font-style: italic;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  padding: 14px 20px;
  font-size: 1rem;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  font-family: var(--font-body);
  width: 320px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--color-text-muted);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-accent);
}

.newsletter .privacy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}

.newsletter .success-msg {
  display: none;
  color: var(--color-accent);
  margin-top: 16px;
  font-style: italic;
}

/* ===== PRICING PAGE ===== */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card .card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pricing-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, #161616);
}

.pricing-card .card-content {
  padding: 32px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-text);
  margin-bottom: 16px;
}

.pricing-card .price small {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.pricing-card p {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.pricing-card ul {
  list-style: none;
  margin-top: 16px;
}

.pricing-card ul li {
  color: var(--color-text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
}

.pricing-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-secondary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  font-family: var(--font-body);
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-accent);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D9FFF' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.contact-form select option {
  background: var(--color-bg-light);
  color: var(--color-text);
}

.contact-form .success-msg {
  display: none;
  color: var(--color-accent);
  font-style: italic;
  margin-top: 12px;
}

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 159, 255, 0.3);
}

.blog-card .card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card img.card-image {
  width: 100%;
  object-fit: cover;
}

.blog-card .card-content {
  padding: 24px;
}

.blog-card .card-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-bg-light);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-social a {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto 48px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .pricing-grid[style] {
    grid-template-columns: 1fr !important;
    max-width: 500px !important;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 400px;
  }
}
