:root {
  --bg: #f6f0e7;
  --bg-soft: #fbf7f1;
  --surface: #fffdf9;
  --surface-2: #f0e5d7;
  --text: #2e2521;
  --muted: #6e5d55;
  --accent: #8d4b4b;
  --accent-dark: #6e3636;
  --border: rgba(46, 37, 33, 0.12);
  --shadow: 0 18px 40px rgba(46, 37, 33, 0.08);

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;

  --container: 1120px;
  --radius: 20px;
  --shadow-soft: 0 10px 24px rgba(46, 37, 33, 0.06);
  --shadow-card: 0 16px 34px rgba(46, 37, 33, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 38%),
    linear-gradient(to bottom, #f9f4ec, #f4ede3);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}

.centred {
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.intro.section {
  padding-top: 3.75rem;
}

.about.section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.panel-section {
  padding-bottom: 0;
}

.styles.section,
.classes.section,
.faq.section,
.private.section,
.contact.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-tint {
  background: rgba(255, 253, 249, 0.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin-bottom: 1rem;
  line-height: 0.98;
  letter-spacing: 0.005em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
  line-height: 1.02;
  position: relative;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead,
.intro-lead {
  font-size: 1.14rem;
  line-height: 1.8;
  max-width: 38rem;
}

.card p,
.faq-item p,
.about-text p,
.contact p {
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(249, 244, 236, 0.82);
  border-bottom: 1px solid rgba(46, 37, 33, 0.09);
  box-shadow: 0 6px 18px rgba(46, 37, 33, 0.04);
}

.intro-shell,
.private-shell {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(46, 37, 33, 0.1);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.intro-top,
.private-top,
.styles-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.private-top {
  margin-bottom: 0;
}

.intro-copy,
.private-copy,
.styles-copy {
  max-width: 760px;
}

.intro-lead {
  margin-bottom: 0;
}

.private-lead {
  margin-bottom: 0;
}

.intro-image,
.private-image,
.classes-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

.classes-image {
  margin-bottom: 0;
}

.intro-image-frame,
.classes-image-frame {
  width: 100%;
  max-width: 220px;
  background: linear-gradient(180deg, #f3e1cf, #ecd6c0);
  padding: 0.55rem;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(46, 37, 33, 0.12);
}

.intro-image-frame {
  max-width: 250px;
}

.private-image-frame {
  width: 100%;
  max-width: 300px;
  background: linear-gradient(180deg, #f3e1cf, #ecd6c0);
  padding: 0.55rem;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(46, 37, 33, 0.12);
}

.classes-image-frame {
  max-width: 320px;
}

.intro-image-art,
.private-image-art,
.classes-image-art {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  filter: contrast(0.98) saturate(0.95);
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.intro-point {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem;
}

.intro-point h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.intro-point p {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .intro-top,
  .private-top,
  .styles-top,
  .intro-points {
    grid-template-columns: 1fr;
  }

  .intro-shell,
  .private-shell {
    padding: 2rem;
  }

  .intro-image,
  .private-image,
  .classes-image {
    justify-content: flex-start;
  }

  .intro-image-frame,
  .private-image-frame {
    max-width: 200px;
  }
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.about-grid {
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 0 1px rgba(46, 37, 33, 0.08),
    0 14px 34px rgba(46, 37, 33, 0.14);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(141, 75, 75, 0.55);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav a:hover {
  text-decoration: none;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: 5.5rem 0 4.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  padding-right: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #9a5656, #844545);
  color: white;
  box-shadow: 0 10px 20px rgba(141, 75, 75, 0.2);
}

.button-primary:hover {
  background: linear-gradient(180deg, #8f4e4e, #743c3c);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(46, 37, 33, 0.18);
}

.hero-art-frame {
  background: linear-gradient(180deg, #f3e1cf, #ecd6c0);
  padding: 0.85rem;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(46, 37, 33, 0.1);
}

.hero-art-frame img {
  border-radius: 20px;
  filter: contrast(0.98) saturate(0.94);
}

.intro-copy h2::after,
.private-copy h2::after,
.styles-copy h2::after,
.classes h2::after,
.contact h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 0.8rem;
  background: linear-gradient(to right, rgba(141, 75, 75, 0.65), rgba(141, 75, 75, 0.08));
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.pill {
  display: inline-block;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(46, 37, 33, 0.12);
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.02em;

  transition: all 0.25s ease;
}

.pill:nth-child(4n+1) {
  background: rgba(243, 225, 207, 0.6);
  /* warm champagne */
}

.pill:nth-child(4n+2) {
  background: rgba(255, 255, 255, 0.9);
}

.pill:nth-child(4n+3) {
  background: rgba(141, 75, 75, 0.08);
  /* burgundy tint */
}

.pill:nth-child(4n+4) {
  background: rgba(240, 229, 215, 0.6);
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(141, 75, 75, 0.35);
  box-shadow: 0 8px 18px rgba(46, 37, 33, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.pill:hover {
  letter-spacing: 0.04em;
}

.pill small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.styles .container {
  background: rgba(255, 253, 249, 0.6);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-tag {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-dark);
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.practice-summary {
  display: grid;
  gap: 1rem;
}

.practice-summary .card,
.practice-date-card {
  height: 100%;
}

.practice-dates-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(46, 37, 33, 0.1);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.card-suspended {
  opacity: 0.58;
  background: rgba(255, 253, 249, 0.65);
  box-shadow: none;
}

.card-suspended:hover {
  transform: none;
  box-shadow: none;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.97), rgba(244, 236, 227, 0.9));
  border: 1px solid rgba(46, 37, 33, 0.1);
  border-top: 3px solid rgba(141, 75, 75, 0.62);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(46, 37, 33, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.faq-item h3 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.faq-item h3::before {
  content: "?";
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #9a5656, #844545);
  box-shadow: 0 8px 16px rgba(141, 75, 75, 0.22);
}

.faq-item p {
  margin-bottom: 0;
}

.faq-link-wrap {
  margin-top: 1.5rem;
}

.text-link {
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(46, 37, 33, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.card:not(.card-suspended):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(141, 75, 75, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 34px rgba(46, 37, 33, 0.1);
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-credit-link {
  text-decoration: underline;
}

.brand img {
  height: 80px;
  width: auto;
  display: block;
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.brand:hover {
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero-grid,
  .two-column,
  .contact-grid,
  .card-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .practice-dates-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .hero-copy {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .intro-image,
  .intro-image-frame,
  .private-image,
  .private-image-frame,
  .classes-image,
  .classes-image-frame {
    width: 100%;
  }

  .intro-image-frame,
  .private-image-frame,
  .classes-image-frame {
    max-width: none;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .site-nav {
    justify-content: center;
    gap: 0.9rem;
  }

  .section {
    padding: 4rem 0;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 3rem 0 0 !important;
  }

  .styles.section,
  .panel-section {
    padding-bottom: 0 !important;
  }
}
