:root {
  --ink: #16120d;
  --ink-soft: #2a2318;
  --board: #1c1711;
  --cream: #f6efe3;
  --paper: #fffaf2;
  --gold: #c4a15a;
  --gold-deep: #9a7833;
  --line: rgba(196, 161, 90, 0.28);
  --muted: #6f6556;
  --shadow: 0 24px 60px rgba(22, 18, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Outfit, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.7rem; }

p { margin: 0 0 1rem; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(22, 18, 13, 0.94);
  color: var(--cream);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246, 239, 227, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
}

.brand-text em {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav a,
.header-call,
.text-link,
.whatsapp-row a {
  text-decoration: none;
}

.nav a {
  color: rgba(246, 239, 227, 0.82);
  font-size: 0.92rem;
}

.nav a:hover,
.header-call:hover {
  color: var(--gold);
}

.header-call {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  background: var(--board);
  color: var(--cream);
  overflow: hidden;
}

.hero-board {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background:
    linear-gradient(180deg, rgba(22, 18, 13, 0.15), rgba(22, 18, 13, 0.85)),
    repeating-conic-gradient(#3a3124 0% 25%, #1c1711 0% 50%) 0 0 / 84px 84px;
}

.hero-inner {
  padding: 6rem 0 4.5rem;
}

.lede {
  max-width: 38rem;
  font-size: 1.15rem;
  color: rgba(246, 239, 227, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(246, 239, 227, 0.35);
  color: var(--cream);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 1.5rem;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.about,
.coaches,
.coaching,
.batches,
.booking,
.contact {
  padding: 5.5rem 0;
}

.about-grid,
.coaching-grid,
.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.about-copy p,
.coaching p,
.contact-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.coaches {
  background: var(--cream);
}

.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.coach-card {
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.coach-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8cfc0;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.coach-photo-studio {
  background: #f3f3f3;
}

.coach-photo-studio img {
  object-fit: cover;
  object-position: center 20%;
}

.coach-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.coach-role {
  margin: 0 0 0.2rem;
  color: var(--gold-deep);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rating-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  list-style: none;
  margin: 1rem 0;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(22, 18, 13, 0.08);
  border-bottom: 1px solid rgba(22, 18, 13, 0.08);
}

.rating-list li {
  display: flex;
  flex-direction: column;
}

.rating-list span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.rating-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.coach-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link {
  color: var(--gold-deep);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.offer-list li {
  padding: 1.2rem 1.3rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.offer-list strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.offer-list span {
  color: var(--muted);
}

.batches {
  background: var(--cream);
}

.batch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.batch-card,
.booking-form {
  background: var(--paper);
  box-shadow: var(--shadow);
}

.batch-card {
  padding: 1.5rem 1.4rem 1.6rem;
}

.batch-kind,
.booking-form legend {
  margin: 0 0 0.35rem;
  color: var(--gold-deep);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.batch-time {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0.2rem 0 0.6rem;
}

.booking {
  background: #efe6d4;
}

.booking-fee {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.5rem;
}

.booking-fee strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.booking-form label,
.booking-form fieldset {
  display: grid;
  gap: 0.4rem;
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(22, 18, 13, 0.16);
  background: #fff;
  color: var(--ink);
  padding: 0.6rem 0.75rem;
  font: inherit;
}

.booking-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.batch-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(22, 18, 13, 0.12);
  background: #fff;
  cursor: pointer;
}

.batch-option strong {
  display: block;
  font-size: 0.98rem;
}

.batch-option input {
  margin-top: 0.3rem;
}

.batch-option:has(input:checked) {
  border-color: var(--gold);
  background: #fff8ea;
}

.booking-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.booking-form .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.booking-status {
  margin: 0;
  font-size: 0.95rem;
}

.booking-status.is-success { color: #1f6b3a; }
.booking-status.is-error { color: #8a2a1b; }
.booking-status.is-warn,
.booking-status.is-info { color: var(--gold-deep); }

.contact {
  background: var(--ink);
  color: var(--cream);
}

.contact .eyebrow,
.contact a {
  color: var(--gold);
}

.contact-lead,
.contact address {
  color: rgba(246, 239, 227, 0.8);
  font-style: normal;
}

.contact-block {
  margin-top: 1.8rem;
}

.contact-block h3 {
  font-size: 1.15rem;
  color: var(--gold);
}

.contact-block a {
  font-size: 1.35rem;
  text-decoration: none;
}

.whatsapp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 0.6rem;
}

.whatsapp-row a {
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(196, 161, 90, 0.45);
}

.map-wrap {
  min-height: 380px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.site-footer {
  background: #100d0a;
  color: rgba(246, 239, 227, 0.62);
  padding: 1.4rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
    padding-bottom: 0.2rem;
  }

  .nav a {
    font-size: 0.82rem;
  }

  .about-grid,
  .coaching-grid,
  .booking-grid,
  .contact-grid,
  .coach-grid,
  .batch-grid,
  .hero-stats,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .about,
  .coaches,
  .coaching,
  .batches,
  .booking,
  .contact {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .footer-inner {
    display: grid;
  }
}
