/* ============================================================
   Get Downes Dance & Choreo — styles.css
   Design tokens live in :root. Change here to restyle site-wide.
   ============================================================ */

:root {
  /* Palette — warm, soulful, movement-forward */
  --bg: #FBF7F2;
  --bg-alt: #F3EBDF;
  --ink: #1F1A17;
  --ink-soft: #5C544D;
  --accent: #B8482E;      /* terracotta */
  --accent-dark: #8F3620;
  --gold: #C89B4A;
  --line: #E7DDCE;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-w: 1180px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(31, 26, 23, 0.06);
  --shadow-md: 0 12px 40px rgba(31, 26, 23, 0.10);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

/* Type scale */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem); }
h3 { font-size: 1.4rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo em { color: var(--accent); font-style: normal; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  padding: 0.55rem 1.1rem;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--white) !important; }

.menu-toggle { display: none; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

/* Hero */
.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse at 20% 20%, rgba(184, 72, 46, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(200, 155, 74, 0.10), transparent 55%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero-subhead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(184, 72, 46, 0.15), rgba(200, 155, 74, 0.15)),
    var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
.section { padding: clamp(4rem, 7vw, 6rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 3rem; }

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--line);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(184, 72, 46, 0.12), rgba(200, 155, 74, 0.14)),
    var(--bg-alt);
  margin: -2rem -2rem 1.5rem;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.service-card h3 { margin-bottom: 0.4rem; }
.service-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.service-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.service-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0.5rem 0 1rem;
}
.service-description {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-cta {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.service-cta:hover { background: var(--ink); color: var(--white); }

/* About block */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(135deg, rgba(184, 72, 46, 0.15), rgba(200, 155, 74, 0.15)),
    var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-body p { font-size: 1.1rem; color: var(--ink-soft); }

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 4rem auto;
  max-width: 900px;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }
.cta-banner .btn-primary { background: var(--white); color: var(--ink); }
.cta-banner .btn-primary:hover { background: var(--gold); color: var(--ink); }

/* Booking page */
.booking-embed {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 600px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.booking-embed iframe {
  width: 100%;
  min-height: 700px;
  border: none;
}
.service-select {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.service-select-card {
  padding: 1.5rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.service-select-card:hover,
.service-select-card.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.service-select-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.service-select-card .price {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}
.service-select-card .meta {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Inquiry list */
.inquiry-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.inquiry-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.inquiry-card h3 { margin-bottom: 0.4rem; }
.inquiry-card .price {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.inquiry-card p { color: var(--ink-soft); margin: 0; }

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1rem;
}
footer a { color: rgba(255,255,255,0.75); display: block; padding: 0.3rem 0; }
footer a:hover { color: var(--gold); }
.footer-brand .logo { color: var(--white); font-size: 1.5rem; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
  .hero-inner,
  .about-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .inquiry-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--ink);
  }
}
