:root {
  --blue: #086bd8;
  --green: #0a8f45;
  --pink: #c52573;
  --navy: #061f34;
  --navy-2: #08263e;
  --ink: #11203a;
  --muted: #4f5f70;
  --line: #d8e2ec;
  --cream: #fbfaf6;
  --white: #ffffff;
  --max: 1440px;
  --hero-height: 700px;
  --hero-height-mobile: 740px;
  --shadow: 0 18px 45px rgba(18, 32, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand strong,
.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #fff;
  background: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 56px));
  height: 82px;
  margin: 0 auto -82px;
  color: #fff;
  background: rgba(3, 17, 29, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.inner-header {
  margin-bottom: -82px;
  color: #fff;
  background: rgba(3, 17, 29, 0.42);
}

.site-header.is-scrolled {
  background: rgba(6, 31, 52, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(3, 17, 29, 0.18);
}

.nav {
  width: 100%;
  min-height: 80px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: block;
  color: #fff;
}

.brand {
  flex: 0 0 auto;
  min-width: 184px;
  white-space: nowrap;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: 1.92rem;
  font-style: normal;
  font-weight: 700;
  line-height: 0.95;
}

.brand span,
.footer-brand span {
  display: block;
  margin-top: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-menu a {
  padding: 8px 0;
  color: #fff;
  background: transparent;
  white-space: nowrap;
}

.site-menu a:visited,
.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu a[aria-current="page"] {
  color: #fff;
  background: transparent;
}

.site-menu a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.76);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -14px;
  z-index: 30;
  display: none;
  min-width: 240px;
  padding: 14px 10px 10px;
  background: rgba(3, 17, 29, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.site-menu .nav-dropdown-menu a {
  padding: 10px 12px;
  color: #fff;
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0 25px;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-cta,
.btn-blue {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 24px rgba(8, 107, 216, 0.24);
}

.btn-green {
  color: #fff;
  background: #14845d;
  box-shadow: 0 14px 24px rgba(10, 143, 69, 0.22);
}

.btn-pink {
  color: #fff;
  background: #d94f92;
  box-shadow: 0 14px 24px rgba(197, 37, 115, 0.22);
}

.nav-cta {
  min-height: 52px;
  padding-inline: 30px;
}

.site-menu .nav-cta,
.site-menu .nav-cta:visited,
.site-menu .nav-cta:hover,
.site-menu .nav-cta:focus-visible,
.site-menu .nav-cta[aria-current="page"] {
  padding: 0 20px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 24px rgba(8, 107, 216, 0.24);
  text-decoration: none;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.18);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.18);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero,
.page-hero {
  position: relative;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero {
  height: var(--hero-height);
}

.page-hero {
  height: calc(var(--hero-height) - 10px);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 18, 25, 0.84), rgba(2, 18, 25, 0.38) 34%, rgba(2, 18, 25, 0.08) 66%),
    linear-gradient(0deg, rgba(2, 18, 25, 0.86), rgba(2, 18, 25, 0.08) 38%);
}

.hero-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 64px 56px 32px;
}

.eyebrow,
.section-label {
  color: #0c6fd6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
  margin-bottom: 18px;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.75rem, 4.8vw, 4.2rem);
  line-height: 0.98;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.page-hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 520px;
  margin-top: 18px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 28px;
}

.proof-row div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.proof-row svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-row b,
.proof-row span {
  display: block;
}

.proof-row b {
  font-size: 1rem;
}

.proof-row span {
  font-size: 0.95rem;
  line-height: 1.2;
}

.commerce-row {
  width: min(var(--max), calc(100% - 56px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.commerce-card {
  min-height: 232px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.card-blue {
  border-color: #b9d4ef;
  background: linear-gradient(135deg, #f7fbff, #fff);
}

.card-green {
  border-color: #b9e5cd;
  background: linear-gradient(135deg, #f6fff9, #fff);
}

.card-pink {
  border-color: #efc1d6;
  background: linear-gradient(135deg, #fff7fb, #fff);
}

.commerce-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
}

.round-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(8, 107, 216, 0.24);
}

.card-green .round-icon {
  background: #14845d;
  box-shadow: 0 14px 28px rgba(10, 143, 69, 0.24);
}

.card-pink .round-icon {
  background: #d94f92;
  box-shadow: 0 14px 28px rgba(197, 37, 115, 0.22);
}

.round-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commerce-card h2 {
  font-size: 1.3rem;
}

.commerce-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-product {
  min-height: 94px;
  margin-top: 20px;
  padding: 12px;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #e3e9f0;
  border-radius: 6px;
  background: #fff;
}

.mini-product img {
  width: 86px;
  height: 70px;
  border-radius: 4px;
  object-fit: cover;
}

.mini-product b,
.mini-product span {
  display: block;
}

.mini-product b {
  margin-bottom: 4px;
}

.mini-product span {
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-product strong {
  align-self: end;
  font-size: 1rem;
}

.panel-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.card-green .panel-link {
  color: #0a7539;
}

.card-pink .panel-link {
  color: var(--pink);
}

.panel-link::after {
  content: "\2192";
}

.why-section,
.experience,
.locations-section,
.faq-section,
.banner-cta {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.why-section {
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: 0.82fr 1.42fr;
  gap: 42px;
}

.why-copy h2,
.experience h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.why-copy p:not(.section-label),
.experience p {
  margin-top: 18px;
  color: var(--muted);
}

.why-copy .btn {
  margin-top: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.feature-grid article {
  min-height: 146px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  place-items: center;
  border: 1px solid #d3a56e;
  border-radius: 50%;
  color: #102f47;
  background: #fff8ef;
}

.feature-grid svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-grid h3 {
  font-size: 1rem;
}

.feature-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.experience {
  padding: 28px 0 40px;
  display: grid;
  grid-template-columns: 0.86fr 1.34fr;
  gap: 46px;
  align-items: center;
}

.experience > img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.experience ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  list-style: none;
}

.experience li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.experience li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.locations-section {
  padding: 32px 0 20px;
}

.section-title {
  max-width: 780px;
}

.section-title h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-title p:not(.section-label) {
  margin-top: 14px;
  color: var(--muted);
}

.location-links {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.location-links a {
  min-height: 52px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #0c3551;
  background: #fff;
  font-size: 0.94rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 10px 28px rgba(18, 32, 58, 0.05);
}

.location-links a:hover,
.location-links a:focus-visible {
  color: #fff;
  border-color: var(--green);
  background: #14845d;
}

.faq-section {
  padding: 30px 0 42px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 32, 58, 0.06);
}

.faq-list summary {
  min-height: 58px;
  padding: 17px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 18px;
  color: var(--muted);
}

.banner-cta {
  position: relative;
  min-height: 154px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background: var(--navy);
}

.banner-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.banner-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 31, 52, 0.94), rgba(4, 31, 52, 0.58), rgba(4, 31, 52, 0.1));
}

.banner-cta div {
  position: relative;
  z-index: 1;
  padding: 28px 34px;
}

.banner-cta h2 {
  font-family: inherit;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.banner-cta p {
  max-width: 410px;
  margin-top: 10px;
}

.banner-cta .btn {
  margin-top: 20px;
}

.page-hero-image,
.page-hero-shade {
  position: absolute;
  inset: 0;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-person-hero {
  object-position: center 28%;
}

.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 18, 25, 0.86), rgba(2, 18, 25, 0.46) 44%, rgba(2, 18, 25, 0.1)),
    linear-gradient(0deg, rgba(2, 18, 25, 0.82), rgba(2, 18, 25, 0.12) 45%);
}

.page-hero-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 82px 56px 0;
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 4.5vw, 4.45rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.08rem;
  font-weight: 700;
}

.booking-intro,
.class-dates-section,
.gift-voucher-strip,
.online-intro,
.bundle-strip,
.online-courses-section,
.private-tuition-section,
.gift-page-section,
.how-vouchers-work,
.free-lesson-cta,
.gallery-intro,
.student-gallery-section,
.blog-intro,
.blog-section,
.blog-article-layout {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.booking-intro {
  padding: 44px 0 34px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.booking-intro h2,
.gift-voucher-strip h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.booking-intro p:not(.section-label),
.gift-voucher-strip p {
  margin-top: 16px;
  color: var(--muted);
}

.online-intro {
  padding: 44px 0 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 34px;
  align-items: start;
}

.online-intro h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.online-intro p:not(.section-label) {
  margin-top: 16px;
  color: var(--muted);
}

.online-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.online-info-grid article {
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.07);
}

.online-info-grid h3 {
  font-family: inherit;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.online-info-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
}

.online-info-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.bundle-strip {
  margin-bottom: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #b9e5cd;
  border-radius: 8px;
  background: linear-gradient(135deg, #f6fff9, #fff);
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.07);
}

.bundle-copy {
  min-width: min(100%, 380px);
  max-width: 500px;
}

.bundle-gallery {
  flex: 1 1 430px;
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(9, minmax(34px, 1fr));
  gap: 5px;
}

.bundle-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(18, 32, 58, 0.14);
  object-fit: cover;
}
.bundle-strip h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.08;
}

.bundle-strip p {
  margin-top: 10px;
  color: var(--muted);
}

.private-tuition-section {
  padding: 34px 0 30px;
}

.tuition-card-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tuition-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.tuition-card-online {
  border-color: #5da9dc;
  background-color: #dff2ff;
  background-image: linear-gradient(180deg, #dff2ff 0%, #f7fcff 100%);
}

.tuition-card-private {
  border-color: #d87aa0;
  background-color: #ffe3ee;
  background-image: linear-gradient(180deg, #ffe3ee 0%, #fff9fb 100%);
}

.tuition-card-couples {
  border-color: #69bd8e;
  background-color: #ddf8e8;
  background-image: linear-gradient(180deg, #ddf8e8 0%, #f8fffb 100%);
}

.tuition-card-popular {
  border-color: #69bd8e;
  box-shadow: 0 18px 44px rgba(15, 110, 73, 0.13);
}
.popular-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: #14845d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tuition-card-icon {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef6fb;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tuition-card h3 {
  padding-right: 72px;
  font-size: 1.34rem;
  line-height: 1.12;
}

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

.tuition-card strong {
  display: block;
  margin-top: auto;
  color: var(--green);
  font-size: 2.05rem;
  line-height: 1;
}

.tuition-card label {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tuition-card select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.tuition-note {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.tuition-card .btn-book {
  margin-top: 2px;
  width: 100%;
}

.tuition-contact {
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}

.tuition-contact a {
  color: var(--blue);
  font-weight: 900;
}
.online-courses-section {
  padding: 28px 0 42px;
}

.online-course-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.online-course-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.online-course-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  cursor: pointer;
  object-fit: cover;
}

.online-course-card > div {
  padding: 22px;
}

.online-course-card h3 {
  font-size: 1.28rem;
}

.online-course-card p {
  margin-top: 9px;
  color: var(--muted);
}

.course-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.course-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-actions button + button {
  background: #14845d;
}

.online-faq {
  padding-top: 8px;
}

.gift-page-section {
  padding: 46px 0 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.gift-copy h2,
.how-vouchers-work h2,
.free-lesson-cta h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.gift-copy p:not(.section-label),
.free-lesson-cta p {
  margin-top: 16px;
  color: var(--muted);
}

.gift-copy ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.gift-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.gift-copy li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.voucher-preview-card {
  padding: 20px;
  border: 1px solid #efc1d6;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7fb, #fff);
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.voucher-art {
  min-height: 360px;
  padding: 34px;
  display: grid;
  align-content: center;
  border: 2px solid #d3a56e;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 31, 52, 0.88), rgba(8, 107, 216, 0.38)),
    url("assets/images/hero-mountain.webp") center / cover;
}

.voucher-art span {
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: 2.1rem;
  font-weight: 700;
}

.voucher-art h3 {
  max-width: 420px;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.voucher-art p,
.voucher-art small {
  margin-top: 14px;
  max-width: 420px;
}

.voucher-art div {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  max-width: 430px;
}

.voucher-art i {
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.voucher-preview-card .btn-book {
  margin-top: 18px;
}

.voucher-preview-card > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.how-vouchers-work {
  padding: 22px 0 36px;
}

.voucher-steps {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.voucher-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.07);
}

.voucher-steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #14845d;
  font-weight: 900;
}

.voucher-steps h3 {
  margin-top: 14px;
  font-size: 1.15rem;
}

.voucher-steps p {
  margin-top: 8px;
  color: var(--muted);
}

.gift-faq {
  padding-top: 8px;
}

.free-lesson-cta {
  margin-bottom: 34px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #b9d4ef;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbff, #fff);
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.07);
}

.free-lesson-page {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 44px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.free-lesson-copy,
.free-form-card,
.free-lesson-next,
.free-lesson-lists article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.free-lesson-copy {
  padding: 34px;
}

.free-lesson-copy h2,
.free-lesson-next h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.free-lesson-copy p:not(.section-label),
.free-lesson-next p:not(.section-label) {
  margin-top: 16px;
  color: var(--muted);
}

.free-lesson-lists {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.free-lesson-lists article {
  padding: 22px;
}

.free-lesson-lists h3,
.free-form-card h2 {
  font-family: inherit;
  font-size: 1.16rem;
  text-transform: uppercase;
}

.free-lesson-lists ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.free-lesson-lists li + li {
  margin-top: 6px;
}

.free-lesson-panel {
  display: grid;
  gap: 18px;
}

.free-lesson-panel > img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.free-form-card {
  padding: 26px;
}

.free-form-card > p:not(.section-label) {
  margin-top: 10px;
  color: var(--muted);
}

.free-form-card form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.free-form-card label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.free-form-card input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.free-form-card input:focus {
  outline: 3px solid rgba(8, 107, 216, 0.18);
  border-color: var(--blue);
}

.error-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #8a1c1c;
  background: #ffecec;
  font-weight: 800;
}

.privacy-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.free-lesson-next {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto 28px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.free-lesson-next .hero-actions {
  margin-top: 0;
}

.free-lesson-faq {
  padding-top: 12px;
}

.lesson-viewer {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 44px 0 34px;
}

.bookmark-notice {
  margin-bottom: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #b9d4ef;
  border-radius: 8px;
  background: #f7fbff;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.07);
}

.bookmark-notice strong {
  color: var(--blue);
  font-size: 1rem;
  text-transform: uppercase;
}

.bookmark-notice span {
  color: var(--muted);
  font-weight: 800;
}

.video-wrapper {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 18px 45px rgba(18, 32, 58, 0.12);
}

.video-wrapper video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.lesson-info-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lesson-info-card,
.lesson-tips,
.lesson-upsell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.success-section,
.course-viewer {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 56px 0;
}

.success-panel,
.success-card,
.course-info-card,
.course-tips,
.bundle-item,
.loading-state,
.fallback-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.success-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.success-eyebrow {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.success-panel h2,
.course-viewer h2 {
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.success-panel p,
.success-panel li,
.course-tips li,
.course-info-card li,
.fallback-panel p {
  color: var(--muted);
  font-size: 1rem;
}

.success-list,
.course-tips ul,
.course-info-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.success-list li + li,
.course-tips li + li,
.course-info-card li + li {
  margin-top: 10px;
}

.success-card {
  padding: 24px;
}

.success-card h3,
.course-info-card h3,
.course-tips h3,
.bundle-item-header h3 {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.success-contact {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.success-contact a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.course-viewer {
  padding-top: 40px;
}

.course-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.course-info-card,
.course-tips,
.fallback-panel {
  padding: 24px;
}

.course-tips {
  margin-top: 22px;
}

.bundle-list {
  display: grid;
  gap: 18px;
}

.bundle-item {
  overflow: hidden;
}

.bundle-item-header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--cream);
}

.bundle-item-header .toggle-icon {
  color: var(--blue);
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.bundle-item-header.active .toggle-icon {
  transform: rotate(180deg);
}

.bundle-item-content {
  display: none;
  padding: 20px;
}

.bundle-item-content.active {
  display: block;
}

.loading-state {
  width: min(760px, calc(100% - 56px));
  margin: 48px auto;
  padding: 44px 24px;
  text-align: center;
}

.loading-state .spinner {
  display: inline-block;
  width: 42px;
  height: 42px;
  border: 4px solid var(--cream);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fallback-panel {
  width: min(840px, calc(100% - 56px));
  margin: 44px auto;
  text-align: center;
}

.lesson-info-card {
  padding: 24px;
}

.lesson-info-card h2,
.lesson-tips h2,
.lesson-upsell h2 {
  font-family: inherit;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.lesson-info-card ul,
.lesson-tips ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.lesson-info-card li + li,
.lesson-tips li + li {
  margin-top: 7px;
}

.lesson-tips {
  margin-top: 22px;
  padding: 28px;
}

.lesson-tips h2 {
  margin-top: 8px;
}

.lesson-upsell {
  margin-top: 22px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lesson-upsell p:not(.section-label) {
  margin-top: 12px;
  color: var(--muted);
}

.lesson-upsell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-intro {
  padding: 44px 0 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.gallery-intro h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.gallery-intro p:not(.section-label) {
  margin-top: 16px;
  color: var(--muted);
}

.gallery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-stats article {
  min-height: 136px;
  padding: 20px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.07);
  text-align: center;
}

.gallery-stats strong {
  color: var(--green);
  font-size: 1.85rem;
  line-height: 1;
}

.gallery-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.student-gallery-section {
  padding: 28px 0 42px;
}

.student-gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.student-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 32, 58, 0.06);
}

.student-gallery-grid img {
  width: 100%;
  height: 240px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.student-gallery-grid figure:hover img {
  transform: scale(1.04);
}

.student-gallery-grid figcaption {
  min-height: 54px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.blog-intro {
  padding: 44px 0 28px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.blog-intro h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.blog-intro p:not(.section-label) {
  margin-top: 16px;
  color: var(--muted);
}

.blog-feature {
  overflow: hidden;
  display: grid;
  grid-template-columns: 230px 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.blog-feature img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.blog-feature > div {
  padding: 22px;
}

.blog-feature h3 {
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.blog-feature p {
  margin-top: 12px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
}

.blog-section {
  padding: 28px 0 42px;
}

.blog-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
  display: grid;
  align-content: start;
}

.blog-category {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-top: 10px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.blog-card h3 a:hover {
  color: var(--blue);
}

.blog-card p {
  margin-top: 12px;
  color: var(--muted);
}

.blog-card time {
  margin-top: 16px;
  color: #657486;
  font-size: 0.86rem;
  font-weight: 800;
}

.banner-cta .cta-actions {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.banner-cta .cta-actions .btn {
  margin-top: 20px;
}

.blog-article-layout {
  padding: 44px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 880px) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
}

.blog-article-content {
  padding: 40px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.08);
}

.blog-article-content h2 {
  margin-top: 34px;
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  line-height: 1.12;
}

.blog-article-content h2:first-child {
  margin-top: 0;
}

.blog-article-content h3 {
  margin-top: 26px;
  font-family: inherit;
  font-size: 1.22rem;
  line-height: 1.25;
}

.blog-article-content p,
.blog-article-content li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.blog-article-content p {
  margin-top: 16px;
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 16px 0 0;
  padding-left: 22px;
}

.blog-article-content li + li {
  margin-top: 9px;
}

.blog-article-content blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: #f7fbff;
}

.blog-article-content blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.55;
}

.blog-article-content a {
  color: var(--blue);
  font-weight: 900;
}

.blog-article-sidebar {
  display: grid;
  gap: 18px;
}

.blog-article-sidebar > div {
  min-height: 285px;
  padding: 26px;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.07);
}

.blog-article-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.blog-article-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 31, 52, 0.28), rgba(4, 31, 52, 0.92)),
    url("assets/images/hero-sea.webp") center / cover;
}

.blog-article-cta > * {
  position: relative;
  z-index: 1;
}

.blog-article-sidebar h2 {
  margin-top: 8px;
  font-family: inherit;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.blog-article-sidebar a:not(.btn) {
  display: block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
}

.blog-article-sidebar p:not(.section-label) {
  margin-top: 12px;
  color: var(--muted);
}

.blog-article-cta p:not(.section-label) {
  color: #e7f1f8;
}

.blog-free-lesson-box {
  overflow: hidden;
  border-top: 4px solid var(--pink);
  padding-top: 0;
  min-height: 360px;
}

.blog-free-lesson-box img {
  width: calc(100% + 52px);
  max-width: none;
  height: 245px;
  margin: -26px -26px 24px;
  object-fit: cover;
  object-position: center;
}

.blog-free-lesson-box .text-link {
  margin-top: 16px;
}

.blog-google-reviews-box {
  border-top: 4px solid var(--green);
}

.blog-google-reviews-box h2::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
  margin-bottom: 10px;
  color: #f7b500;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.blog-google-reviews-box .text-link {
  margin-top: 16px;
}

.blog-sidebar-faq {
  min-height: 0;
}

.blog-sidebar-faq details {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfe;
}

.blog-sidebar-faq summary {
  min-height: 48px;
  padding: 13px 14px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
}

.blog-sidebar-faq details p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.blog-article-meta-box h2 {
  margin-top: 8px;
  font-family: inherit;
  font-size: 1.22rem;
  text-transform: none;
}

.article-tags {
  margin-top: 10px;
}

.article-tags strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.article-tags span {
  margin: 8px 8px 0 0;
  padding: 6px 10px;
  display: inline-block;
  border-radius: 999px;
  background: #eef6fd;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-tags-box {
  min-height: 0;
  border-top: 4px solid var(--blue);
}

.about-page-section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.about-copy,
.about-side-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-copy {
  padding: 42px;
}

.about-copy h2 {
  margin-top: 34px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.2vw, 2.3rem);
  line-height: 1.08;
}

.about-copy h2:first-child {
  margin-top: 0;
}

.about-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.03rem;
}

.about-copy a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-side {
  display: grid;
  gap: 22px;
}

.about-side-card {
  padding: 24px;
}

.about-side-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}

.about-side-card h3 {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.1;
}

.about-side-card p,
.about-side-card li {
  color: var(--muted);
}

.about-side-card p {
  margin-top: 10px;
}

.about-side-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.about-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.about-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.contact-page-section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.contact-form-card,
.contact-info-card,
.contact-cta-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form-card {
  padding: 36px;
}

.contact-form-card h2,
.contact-info-card h2,
.contact-cta-card h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1.08;
}

.contact-form-card p,
.contact-info-card p,
.contact-cta-card p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(8, 107, 216, 0.18);
  border-color: var(--blue);
}

.required {
  color: #c52573;
}

.contact-side {
  display: grid;
  gap: 22px;
}

.contact-info-card,
.contact-cta-card {
  padding: 28px;
}

.contact-detail-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-detail span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.contact-detail strong {
  display: block;
  color: var(--navy);
}

.contact-detail a {
  display: inline-block;
  margin-top: 3px;
  color: var(--blue);
  font-weight: 900;
}

.contact-side img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
}

.supplies-section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 72px 0;
}

.supplies-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 46px;
}

.supplies-intro h2,
.supply-category h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.supplies-intro p,
.supply-card p,
.supply-note p {
  margin-top: 14px;
  color: var(--muted);
}

.supply-note {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.supply-category {
  margin-top: 48px;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.supply-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.08);
}

.supply-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-bottom: 10px;
}

.supply-thumb {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.supply-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.18;
}

.supply-title h3 {
  display: block;
}

.paint-swatch {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(17, 32, 58, 0.22);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.supply-card .btn {
  width: 100%;
  margin-top: auto;
}

.supply-card p + .btn {
  margin-top: 16px;
}

.class-info-box {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.07);
}

.class-info-box h3 {
  font-family: inherit;
  font-size: 1rem;
  text-transform: uppercase;
}

.class-info-box ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.class-info-box li + li {
  margin-top: 9px;
}

.location-page-section,
.location-gallery-section,
.location-travel-section,
.location-nearby-section,
.location-faq-section,
.location-cta-section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 56px 56px;
}

.location-page-section {
  background: #fff;
}

.location-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: start;
}

.location-copy {
  max-width: 940px;
}

.location-copy h2,
.location-gallery-section h2,
.location-travel-section h2,
.location-nearby-section h2,
.location-faq-section h2,
.location-cta-section h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.location-copy h2:not(:first-child) {
  margin-top: 34px;
}

.location-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.location-copy a:not(.btn),
.location-sidebar a:not(.btn),
.location-travel-section a:not(.btn),
.location-faq-section a:not(.btn) {
  color: var(--blue);
  font-weight: 900;
}

.location-travel-section .btn,
.location-cta-section .btn {
  color: #fff;
}

.location-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.location-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.location-detail-list div {
  padding: 14px;
  border-radius: 8px;
  background: var(--cream);
}

.location-detail-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-detail-list dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.location-gallery-section,
.location-travel-section,
.location-faq-section {
  background: var(--cream);
}

.location-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(18, 32, 58, 0.12);
}

.location-travel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.location-map {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #dbe8f2;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.07);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.location-route-map {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 107, 216, 0.22), rgba(10, 143, 69, 0.14)),
    radial-gradient(circle at 24% 31%, rgba(255, 255, 255, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 60%, rgba(255, 255, 255, 0.95) 0 3px, transparent 4px),
    linear-gradient(25deg, transparent 0 47%, rgba(8, 107, 216, 0.28) 48% 51%, transparent 52% 100%),
    #d9e9f2;
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.07);
}

.location-route-map::before,
.location-route-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.location-route-map::before {
  inset: 34px;
  border: 1px solid rgba(8, 107, 216, 0.18);
  border-radius: 8px;
}

.location-route-map::after {
  left: 25%;
  top: 33%;
  width: 45%;
  height: 28%;
  border-top: 5px solid var(--blue);
  border-right: 5px solid var(--blue);
  border-radius: 0 60px 0 0;
  transform: rotate(13deg);
  opacity: 0.82;
}

.map-place {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 170px;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 107, 216, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(18, 32, 58, 0.12);
}

.map-place strong {
  font-size: 0.96rem;
}

.map-place span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.map-place::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #d94f92;
  box-shadow: 0 0 0 3px var(--blue);
}

.map-place.start {
  left: 12%;
  top: 18%;
}

.map-place.end {
  right: 10%;
  bottom: 16%;
}

.map-note {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  width: min(82%, 360px);
  padding: 10px 14px;
  color: #fff;
  background: rgba(6, 31, 52, 0.88);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
}

.location-card-grid,
.nearby-location-grid,
.location-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nearby-location-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nearby-location-card {
  min-height: 128px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 34px rgba(18, 32, 58, 0.11);
}

.nearby-location-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.nearby-location-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.location-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b3d63);
}

.location-cta-section h2 {
  color: #fff;
}

.location-cta-section p {
  max-width: 760px;
  color: #d4e2ef;
}

.class-dates-section {
  padding: 24px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

.class-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.class-card {
  overflow: hidden;
  border: 1px solid #cfdbe7;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 44px rgba(18, 32, 58, 0.12);
}

.class-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.class-card > div {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.class-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: #d94f92;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.class-status.available {
  background: #14845d;
}

.class-card h3 {
  margin-top: 14px;
  font-size: 1.35rem;
}

.class-card p {
  margin-top: 8px;
  color: var(--muted);
}

.class-card dl {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.class-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #dfe7ef;
  padding-bottom: 8px;
}

.class-card dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.class-card dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.btn-book {
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 22px rgba(8, 107, 216, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-book:hover,
.btn-book:focus-visible {
  background: #0759b3;
}

.btn-book.disabled,
.btn-book:disabled {
  color: #445162;
  background: #e2e8f0;
  border: 1px solid #c8d2df;
  box-shadow: none;
  cursor: not-allowed;
}

.is-sold-out {
  border-color: #d9c4d2;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
}

.gift-voucher-strip {
  margin-bottom: 34px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #efc1d6;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7fb, #fff);
  box-shadow: 0 16px 40px rgba(18, 32, 58, 0.07);
}

.footer-location-links {
  display: grid;
  gap: 6px;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: #fff;
  background: rgba(2, 18, 25, 0.9);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: min(960px, 92vw);
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 2.3rem;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  text-align: center;
  font-weight: 900;
}

.upsell-overlay,
.coaching-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 18, 25, 0.72);
}

.upsell-overlay.active,
.coaching-modal.active {
  display: flex;
}

.upsell-box,
.coaching-box {
  width: min(520px, 100%);
  max-height: 92vh;
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.upsell-box {
  padding: 30px;
}

.upsell-box h2,
.coaching-box h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.08;
}

.upsell-box p:not(.section-label),
.coaching-box p {
  margin-top: 12px;
  color: var(--muted);
}

.upsell-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.btn-ghost-dark {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.coaching-box {
  position: relative;
  padding: 30px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
}

.coaching-box form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.coaching-box label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.coaching-box input,
.coaching-box select,
.coaching-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.form-error {
  display: none;
  border-radius: 6px;
  padding: 10px 12px;
  color: #a92727;
  background: #fde8e8;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  color: #d4e2ef;
  background: linear-gradient(180deg, var(--navy), #041927);
}

.footer-grid {
  width: calc(100% - 56px);
  margin: 0 auto;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 1.32fr 0.8fr 0.9fr 1.25fr;
  gap: 44px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: #d4e2ef;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 14px 0;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer a + a {
  margin-top: 6px;
}

.map-mark {
  width: 160px;
  height: 82px;
  margin-top: 18px;
  border-radius: 55% 45% 50% 45%;
  background: rgba(212, 226, 239, 0.28);
  clip-path: polygon(4% 50%, 15% 32%, 28% 38%, 38% 22%, 58% 30%, 78% 18%, 96% 42%, 86% 68%, 62% 72%, 48% 88%, 32% 72%, 16% 78%);
}

.footer-bottom {
  width: calc(100% - 56px);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(212, 226, 239, 0.2);
  color: #d4e2ef;
  font-size: 0.86rem;
}

.footer-bottom a {
  display: inline;
  margin-left: 28px;
  font-size: 0.86rem;
}

@media (max-width: 1100px) {
  .nav {
    padding-inline: 30px;
    gap: 18px;
  }

  .brand {
    min-width: 176px;
  }

  .brand strong {
    font-size: 1.82rem;
  }

  .brand span {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .site-menu {
    gap: 12px;
    font-size: 0.78rem;
  }

  .site-menu .nav-cta,
  .site-menu .nav-cta:visited,
  .site-menu .nav-cta:hover,
  .site-menu .nav-cta:focus-visible,
  .site-menu .nav-cta[aria-current="page"] {
    padding-inline: 18px;
  }
}

@media (max-width: 900px) {
  .hero-inner,
  .page-hero-inner {
    width: calc(100% - 56px);
    padding-top: 82px;
    padding-right: 28px;
    padding-bottom: 0;
    padding-left: 28px;
  }

  h1 span,
  .page-hero h1 span {
    white-space: normal;
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 8.5vw, 3.75rem);
    line-height: 1.02;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    max-width: min(100%, 440px);
  }

  .location-content-grid,
  .location-travel-grid,
  .location-cta-section {
    grid-template-columns: 1fr;
  }

  .location-sidebar {
    position: static;
  }

  .location-gallery-grid,
  .nearby-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px;
    border-radius: 0;
    background: rgba(6, 31, 52, 0.98);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    background: transparent;
    padding: 12px;
  }

  .nav-dropdown,
  .nav-dropdown > a {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-menu .nav-cta,
  .site-menu .nav-cta:visited,
  .site-menu .nav-cta:hover,
  .site-menu .nav-cta:focus-visible,
  .site-menu .nav-cta[aria-current="page"] {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    background: var(--blue);
  }

  .commerce-row,
  .why-section,
  .experience,
  .faq-section,
  .booking-intro,
  .class-grid,
  .online-intro,
  .online-course-grid,
  .tuition-card-grid,
  .gift-page-section,
  .voucher-steps,
  .free-lesson-page,
  .free-lesson-lists,
  .lesson-info-grid,
  .gallery-intro,
  .blog-intro,
  .blog-feature,
  .blog-grid,
  .blog-article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .online-info-grid {
    grid-template-columns: 1fr;
  }

  .student-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-feature img {
    min-height: 260px;
  }

  .location-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .gift-voucher-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .bundle-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .bundle-gallery {
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }

  .free-lesson-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .free-lesson-next {
    align-items: flex-start;
    flex-direction: column;
  }

  .bookmark-notice,
  .lesson-upsell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .tuition-card {
    padding: 22px 18px;
  }

  .tuition-card h3 {
    padding-right: 0;
  }

  .popular-ribbon {
    position: static;
    width: fit-content;
    order: -2;
  }

  .site-header {
    width: calc(100% - 30px);
  }

  .nav,
  .hero-inner,
  .commerce-row,
  .why-section,
  .experience,
  .locations-section,
  .faq-section,
  .booking-intro,
  .class-dates-section,
  .gift-voucher-strip,
  .online-intro,
  .bundle-strip,
  .online-courses-section,
.private-tuition-section,
  .gift-page-section,
  .how-vouchers-work,
  .free-lesson-cta,
  .free-lesson-page,
  .free-lesson-next,
  .lesson-viewer,
  .gallery-intro,
  .student-gallery-section,
  .blog-intro,
  .blog-section,
  .blog-article-layout,
  .banner-cta,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 30px);
  }

  .about-page-section {
    width: calc(100% - 30px);
    padding: 48px 0;
    grid-template-columns: 1fr;
  }

  .about-copy,
  .about-side-card {
    padding: 24px 20px;
  }

  .contact-page-section {
    width: calc(100% - 30px);
    padding: 48px 0;
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-info-card,
  .contact-cta-card {
    padding: 24px 20px;
  }

  .hero-inner,
  .page-hero-inner {
    width: calc(100% - 30px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav {
    padding-left: 18px;
    padding-right: 18px;
  }


  .brand strong,
  .footer-brand strong {
    font-size: 1.45rem;
  }

  .brand span,
  .footer-brand span {
    font-size: 0.62rem;
  }

  .hero {
    height: var(--hero-height-mobile);
  }

  .page-hero {
    height: calc(var(--hero-height-mobile) - 10px);
  }

  .hero-inner,
  .page-hero-inner {
    padding-top: 82px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1.03;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1.03;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-actions,
  .proof-row {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  h1 span,
  .page-hero h1 span {
    white-space: normal;
  }

  .hero-actions .btn,
  .hero-actions .btn-book {
    width: 100%;
    max-width: 340px;
  }

  .location-page-section,
  .location-gallery-section,
  .location-travel-section,
  .location-nearby-section,
  .location-faq-section,
  .location-cta-section {
    width: calc(100% - 30px);
    padding: 38px 18px;
  }

  .location-gallery-grid,
  .location-card-grid,
  .nearby-location-grid,
  .location-faq-grid {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe,
  .location-route-map {
    min-height: 300px;
  }

  .map-place {
    max-width: 142px;
    padding: 10px;
  }

  .map-place.start {
    left: 8%;
    top: 14%;
  }

  .map-place.end {
    right: 8%;
    bottom: 22%;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.86rem;
  }

  .commerce-row {
    margin-top: 20px;
  }

  .mini-product {
    grid-template-columns: 82px 1fr;
  }

  .mini-product strong {
    grid-column: 2;
  }

  .feature-grid,
  .location-links,
  .course-actions,
  .gallery-stats,
  .experience ul {
    grid-template-columns: 1fr;
  }

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

  .blog-feature img {
    min-height: 220px;
  }

  .blog-article-content {
    padding: 24px 20px;
  }

  .free-lesson-copy,
  .free-form-card,
  .free-lesson-next,
  .lesson-tips,
  .lesson-upsell {
    padding: 24px 20px;
  }

  .lesson-upsell-actions {
    width: 100%;
    flex-direction: column;
  }

  .student-gallery-grid img {
    height: 240px;
  }

  .upsell-actions {
    flex-direction: column;
  }

  .voucher-art {
    min-height: 300px;
    padding: 24px;
  }

  .class-card dl div {
    display: block;
  }

  .class-card dd {
    margin-top: 2px;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 20px;
  }
}


.home-service-grid {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .home-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


section.location-card-grid {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 56px 0;
}

@media (max-width: 720px) {
  section.location-card-grid {
    width: calc(100% - 30px);
    padding: 38px 0;
  }
}


@media (min-width: 900px) {
  .related-options-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}













