:root {
  --ink: #102321;
  --muted: #5f6d68;
  --paper: #f7fbf8;
  --panel: #ffffff;
  --line: #d8e3dc;
  --mint: #71c9a8;
  --mint-dark: #153d35;
  --coral: #d95c4b;
  --yellow: #f2bf4b;
  --blue: #2f6f9f;
  --shadow: 0 24px 70px rgba(16, 35, 33, 0.15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(247, 251, 248, 0.92);
  border-bottom: 1px solid rgba(16, 35, 33, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: white;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.topbar nav {
  display: flex;
  gap: 8px;
}

.topbar nav a,
.lang {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.topbar nav a:hover,
.lang:hover {
  border-color: var(--line);
  background: white;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  min-height: calc(100vh - 72px);
  background: var(--mint-dark);
  color: white;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.hero-photo {
  min-height: 540px;
  order: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.card-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  font-weight: 900;
  line-height: 1.1;
}

.button.primary,
.card-actions a:first-child {
  background: var(--coral);
  border-color: var(--coral);
}

.button.secondary,
.card-actions a:last-child {
  background: var(--blue);
  border-color: var(--blue);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.trust-strip div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 28px;
}

.trust-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 22px clamp(18px, 5vw, 72px);
  color: white;
  background: #0e1d1a;
}

.booking span,
.booking strong {
  display: block;
}

.booking span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.booking strong {
  margin-top: 4px;
  font-size: clamp(18px, 2.4vw, 28px);
}

.booking a {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--coral);
  font-weight: 900;
}

.booking a:last-child {
  background: var(--blue);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(880px, 100%);
  margin-bottom: 30px;
}

.section-head h2,
.course-copy h2,
.final-contact h2 {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.course-copy p,
.final-contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.location-grid,
.service-grid,
.proof-grid,
.course {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.location-card,
.service-grid article,
.calculator,
.course-cards article,
.proof-grid article,
.contact-actions,
.price-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.location-card {
  padding: 26px;
  cursor: pointer;
}

.location-card.is-active {
  outline: 3px solid rgba(113, 201, 168, 0.7);
}

.location-card span,
.service-grid span {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.location-card h3,
.service-grid h3 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 3vw, 40px);
}

.location-card p,
.service-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  min-height: 240px;
  padding: 22px;
}

.prices {
  background: #e9f6ef;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.calculator {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.price-output {
  display: block;
  padding: 18px;
  border-radius: 8px;
  color: white;
  background: var(--mint-dark);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
}

.calculator p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.price-image {
  overflow: hidden;
}

.price-image img {
  width: 100%;
  height: auto;
}

.price-image figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-weight: 750;
}

.course {
  align-items: center;
  background: var(--mint-dark);
  color: white;
}

.course-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.course-cards {
  display: grid;
  gap: 14px;
}

.course-cards article {
  padding: 24px;
  color: var(--ink);
}

.course-cards span,
.course-cards strong {
  display: block;
}

.course-cards span {
  color: var(--muted);
  font-weight: 900;
}

.course-cards strong {
  margin-top: 8px;
  font-size: clamp(36px, 5vw, 64px);
}

.proof {
  background: white;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.proof-grid article {
  padding: 22px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: clamp(34px, 5vw, 58px);
}

.proof-grid span {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 12px;
}

.gallery figure {
  position: relative;
  min-width: 0;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.gallery .wide {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  color: white;
  background: rgba(16, 35, 33, 0.78);
  font-size: 14px;
  font-weight: 850;
}

.final-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: start;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  color: white;
  background: #0e1d1a;
}

.final-contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-actions a {
  padding: 18px;
  border-radius: 6px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.contact-actions span,
.contact-actions strong {
  display: block;
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.64);
}

.contact-actions strong {
  margin-top: 6px;
  font-size: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px) 92px;
  color: rgba(255, 255, 255, 0.74);
  background: #07110f;
}

.footer p {
  margin: 0;
}

.footer a {
  color: white;
  font-weight: 900;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: 14px;
  bottom: 14px;
  display: none;
  grid-template-columns: 1fr 0.82fr;
  gap: 8px;
  width: min(430px, calc(100vw - 28px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 6px;
  color: white;
  background: var(--coral);
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.sticky-cta a:last-child {
  background: var(--blue);
}

@media (max-width: 1040px) {
  .hero,
  .booking,
  .location-grid,
  .service-grid,
  .price-layout,
  .course,
  .proof-grid,
  .final-contact {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    order: 0;
    min-height: 430px;
  }

  .calculator {
    position: static;
  }

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

  .gallery .wide {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 10px 14px;
  }

  .topbar nav {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero-copy {
    padding: 36px 16px 52px;
  }

  .hero-photo {
    min-height: 360px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(42px, 15vw, 60px);
  }

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

  .trust-strip,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery .wide {
    grid-column: auto;
  }

  .section,
  .final-contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-head h2,
  .course-copy h2,
  .final-contact h2 {
    font-size: clamp(32px, 12vw, 44px);
  }

  .sticky-cta {
    display: grid;
  }

  .footer {
    display: block;
    padding-bottom: 88px;
  }

  .footer a {
    display: inline-block;
    margin-top: 12px;
  }
}
