:root {
  --wine-950: #2c0712;
  --wine-900: #450817;
  --wine-800: #650d24;
  --wine-700: #7e1730;
  --wine-500: #b5294c;
  --gold-500: #c9973e;
  --gold-300: #e6c77b;
  --cream: #fff8ea;
  --ivory: #fffdf7;
  --ink: #261b1d;
  --muted: #705e61;
  --line: rgba(101, 13, 36, 0.16);
  --shadow: 0 24px 70px rgba(52, 7, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(230, 199, 123, 0.15), transparent 24rem),
    var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: white;
  color: var(--wine-900);
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 74px;
  padding: 0.85rem clamp(1.1rem, 4vw, 4.5rem);
  color: var(--cream);
  background: rgba(69, 8, 23, 0.95);
  border-bottom: 1px solid rgba(230, 199, 123, 0.35);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-kicker {
  color: var(--gold-300);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
}

nav a {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold-300);
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(3rem, 7vw, 6rem) 1.25rem 3rem;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.72), var(--ivory)),
    repeating-linear-gradient(120deg, rgba(201, 151, 62, 0.06) 0 1px, transparent 1px 18px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--wine-800), var(--gold-500), var(--wine-800));
}

.vine {
  position: absolute;
  top: 6rem;
  width: 13rem;
  height: 26rem;
  opacity: 0.2;
  border-top: 2px solid var(--gold-500);
  border-radius: 50%;
  pointer-events: none;
}

.vine-left {
  left: -8rem;
  transform: rotate(74deg);
}

.vine-right {
  right: -8rem;
  transform: rotate(-74deg) scaleX(-1);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--wine-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--wine-800);
}

.hero-logo {
  width: min(560px, 88vw);
  max-height: 55svh;
  object-fit: contain;
  background: #faf7ee;
  border: 1px solid rgba(201, 151, 62, 0.42);
  border-radius: 1.15rem;
  box-shadow: 0 24px 50px rgba(69, 8, 23, 0.2);
}

.hero-line {
  max-width: 54rem;
  margin: 1rem 0 0;
  color: var(--wine-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 5vw, 3.8rem);
  font-style: italic;
  line-height: 1.05;
}

.hero-copy {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.service-area {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--wine-800);
  box-shadow: 0 12px 30px rgba(101, 13, 36, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--wine-700);
}

.button-secondary {
  color: var(--wine-800);
  background: transparent;
  border-color: var(--wine-800);
}

.button-gold {
  color: var(--wine-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 12px 30px rgba(201, 151, 62, 0.25);
}

.section-shell {
  width: min(1160px, calc(100% - 2.25rem));
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.welcome {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.coach-portrait {
  margin: 0;
}

.coach-photo-window {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--wine-950);
  border: 8px solid white;
  border-radius: 12rem 12rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.coach-photo-window::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(230, 199, 123, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.coach-photo-window img {
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 46% 34%;
  transform: translateX(-4%);
}

.coach-portrait figcaption {
  display: grid;
  gap: 0.15rem;
  width: calc(100% - 2rem);
  margin: -2.2rem auto 0;
  padding: 1rem 1.25rem;
  position: relative;
  color: var(--cream);
  background: var(--wine-900);
  border: 1px solid rgba(230, 199, 123, 0.55);
  border-radius: 0.9rem;
  box-shadow: 0 16px 38px rgba(44, 7, 18, 0.2);
  text-align: center;
}

.coach-portrait figcaption strong {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.coach-portrait figcaption span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--wine-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin: 0;
  color: var(--wine-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.welcome-copy > p:not(.eyebrow) {
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.video-showcase {
  padding-top: 0;
}

.video-copy {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.video-copy > p:not(.eyebrow) {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--wine-950);
  border: 8px solid white;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(230, 199, 123, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.video-card {
  margin: 0;
}

.video-card figcaption {
  margin-top: 0.8rem;
  color: var(--wine-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.classes {
  padding-top: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading > p {
  max-width: 32rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.class-card {
  min-height: 360px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 16px 50px rgba(57, 15, 27, 0.06);
}

.class-card-featured {
  color: var(--cream);
  background:
    radial-gradient(circle at 90% 8%, rgba(230, 199, 123, 0.25), transparent 10rem),
    linear-gradient(145deg, var(--wine-700), var(--wine-950));
}

.class-card-featured h3,
.class-card-featured .location {
  color: white;
}

.class-card p {
  color: var(--muted);
}

.class-card-featured p {
  color: rgba(255, 248, 234, 0.82);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--wine-700);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.class-card-featured .card-topline {
  color: var(--gold-300);
}

.pour-label {
  margin: 0 0 0.5rem;
  color: var(--wine-500) !important;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location {
  margin-bottom: 0.25rem;
  color: var(--wine-800);
  font-weight: 800;
}

.level {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--wine-700);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.text-link.light {
  margin: 0;
  color: var(--gold-300);
}

.venue-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  color: white;
  background: var(--wine-900);
  border-radius: 1rem 1rem 0 0;
}

.venue-strip p {
  margin: 0;
}

.venue-name {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
  background: white;
}

.pricing div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.pricing div:last-child {
  border-right: 0;
}

.pricing span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.pricing strong {
  color: var(--wine-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.events {
  padding-top: 0;
}

.event-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(230, 199, 123, 0.21), transparent 20rem),
    var(--wine-950);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.event-date {
  display: grid;
  place-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--wine-950);
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
  font-weight: 850;
  letter-spacing: 0.15em;
}

.event-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.event-details {
  padding: clamp(1.75rem, 4vw, 3.5rem);
}

.event-details h3 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.event-details > p {
  max-width: 48rem;
  color: rgba(255, 248, 234, 0.8);
}

.event-meta {
  color: var(--gold-300) !important;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-details .location {
  color: white;
}

.event-details .location span {
  color: rgba(255, 248, 234, 0.65);
  font-weight: 500;
}

.ticket-price {
  font-weight: 800;
}

.event-details .button {
  margin-top: 0.5rem;
  color: var(--wine-950);
  background: var(--gold-300);
}

.booking {
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(101, 13, 36, 0.96), rgba(44, 7, 18, 0.99)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, 0.02) 20px 21px);
}

.booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.booking h2 {
  color: white;
}

.booking .eyebrow {
  color: var(--gold-300);
}

.booking-copy > p:not(.eyebrow) {
  color: rgba(255, 248, 234, 0.78);
  font-size: 1.05rem;
}

.direct-email {
  display: inline-block;
  margin: 0.75rem 0 0;
  color: var(--gold-300);
  font-weight: 800;
}

.booking-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(230, 199, 123, 0.35);
  border-radius: 1.25rem;
  box-shadow: 0 25px 60px rgba(18, 2, 8, 0.2);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--wine-950);
  font-size: 0.85rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(101, 13, 36, 0.2);
  border-radius: 0.65rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 151, 62, 0.28);
  border-color: var(--gold-500);
}

.booking-form .button {
  justify-self: start;
}

.booking-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.submission-status {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  color: var(--wine-950);
  background: rgba(230, 199, 123, 0.2);
  border: 1px solid rgba(201, 151, 62, 0.45);
  border-radius: 0.9rem;
}

.submission-status.is-error {
  color: #6f1621;
  background: #fff1f2;
  border-color: rgba(157, 23, 43, 0.35);
}

.submission-status[hidden] {
  display: none;
}

.submission-status strong {
  color: var(--wine-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.social {
  text-align: center;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  flex-direction: column;
  min-height: 140px;
  justify-content: center;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(57, 15, 27, 0.06);
  transition: transform 160ms ease, border-color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-500);
}

.social-links span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links strong {
  color: var(--wine-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.1rem, 4vw, 4.5rem);
  color: rgba(255, 248, 234, 0.72);
  background: var(--wine-950);
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .welcome,
  .booking-inner {
    grid-template-columns: 1fr;
  }

  .coach-portrait {
    width: min(520px, 100%);
    margin-inline: auto;
  }

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

  .class-card {
    min-height: 0;
  }

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

  .pricing div:nth-child(2) {
    border-right: 0;
  }

  .pricing div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-logo {
    width: min(420px, 96vw);
  }

  .coach-photo-window {
    border-width: 6px;
    border-radius: 8rem 8rem 1.25rem 1.25rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .section-heading,
  .venue-strip,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    padding: 1rem 1.5rem;
  }

  .event-date strong {
    font-size: 2.7rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .booking-form .button {
    width: 100%;
  }

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

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .social-links a {
    transition: none;
  }
}
