:root {
  --cream: #f7f4ee;
  --paper: #fffdf8;
  --mist: #eef3ed;
  --sage: #5f7a62;
  --sage-dark: #2f4d3b;
  --clay: #b76f52;
  --amber: #d99142;
  --ink: #26302b;
  --muted: #667069;
  --line: rgba(47, 77, 59, 0.18);
  --shadow: 0 24px 70px rgba(38, 48, 43, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.75;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(47, 77, 59, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 44px;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  line-height: 1;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: rgba(38, 48, 43, 0.76);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--sage-dark);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: rgba(38, 48, 43, 0.72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  background: var(--sage-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--sage-dark);
}

.section-anchor {
  scroll-margin-top: var(--header-height);
}

.hero {
  position: relative;
  min-height: calc(100vh - 32px);
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 48px) clamp(20px, 6vw, 86px) 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.9) 36%, rgba(247, 244, 238, 0.22) 68%, rgba(247, 244, 238, 0.06) 100%),
    url("assets/hero-studio-real.jpg") right center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

h4 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.hero-subtitle,
.lead,
.contact-lead {
  color: var(--sage-dark);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.35;
}

.hero-copy {
  max-width: 620px;
  color: rgba(38, 48, 43, 0.84);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: 0 14px 36px rgba(47, 77, 59, 0.22);
}

.btn-secondary {
  background: rgba(255, 253, 248, 0.84);
  border-color: var(--line);
  color: var(--sage-dark);
}

.hero-line {
  color: var(--sage-dark);
  font-size: 18px;
  font-weight: 800;
}

.section {
  padding: clamp(74px, 10vw, 132px) 0;
}

.section-alt {
  background: var(--mist);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.prose {
  color: rgba(38, 48, 43, 0.82);
  font-size: 17px;
}

.belief-panel,
.service-card,
.program-card,
.why-grid article,
.credential-grid article,
.testimonial-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.belief-panel {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding: clamp(26px, 4vw, 40px);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(95, 122, 98, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.pill-list.compact span {
  font-size: 12px;
}

.difference-band {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: 72px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--sage-dark);
  color: #fff;
}

.difference-band p {
  color: rgba(255, 255, 255, 0.8);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.choice-grid strong {
  display: block;
  font-size: 24px;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered p {
  margin-right: auto;
  margin-left: auto;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.service-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.service-card {
  padding: clamp(24px, 4vw, 38px);
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cards-grid,
.program-grid,
.why-grid,
.credential-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

.cards-grid.two,
.program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-grid {
  margin-top: 24px;
}

.program-media {
  height: 260px;
  margin: calc(0px - var(--program-padding)) calc(0px - var(--program-padding)) 26px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--mist);
}

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

.program-card {
  --program-padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  padding: var(--program-padding);
}

.program-card.accent {
  background: #fff7ee;
  border-color: rgba(183, 111, 82, 0.28);
}

.program-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(217, 145, 66, 0.16);
  color: #8a4f2d;
  font-size: 12px;
  font-weight: 900;
}

.quote {
  color: var(--sage-dark);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}

.check-list,
.simple-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.simple-list li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 900;
}

.simple-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--clay);
  font-weight: 900;
}

.check-list.columns {
  columns: 2;
  column-gap: 28px;
}

.check-list.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  justify-content: center;
}

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

.why-grid article {
  padding: 28px;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--mist);
  font-size: 24px;
}

.takeaway {
  margin-top: 42px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--sage-dark);
  color: #fff;
  text-align: center;
}

.takeaway p {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
}

.takeaway .check-list li::before {
  color: #a9d69d;
}

.instructor-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.instructor-photo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(47, 77, 59, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(38, 48, 43, 0.04) 0%, rgba(38, 48, 43, 0.18) 48%, rgba(38, 48, 43, 0.78) 100%),
    url("assets/kenix-lee.jpg") center / cover;
  box-shadow: var(--shadow);
  color: #fff;
  text-align: left;
}

.instructor-photo span {
  display: block;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.instructor-photo small {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
}

.credential-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.credential-grid article {
  padding: 28px;
}

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

.gallery-grid figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-dark);
  box-shadow: var(--shadow);
}

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

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

.gallery-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(38, 48, 43, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.testimonial-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.stars {
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 0;
}

.disclaimer {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  text-align: center;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid rgba(47, 77, 59, 0.14);
  background: var(--paper);
}

.legal-disclosure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.legal-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 20px 24px;
  color: var(--sage-dark);
  cursor: pointer;
  list-style: none;
}

.legal-disclosure > summary::-webkit-details-marker {
  display: none;
}

.legal-disclosure > summary .eyebrow {
  display: block;
  margin-bottom: 4px;
}

.legal-disclosure > summary strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
}

.summary-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.legal-disclosure[open] .summary-action {
  background: var(--clay);
}

.legal-content {
  padding: 0 24px 24px;
}

.legal-intro {
  max-width: 920px;
  margin: 0 0 20px;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  gap: 16px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 12px 34px rgba(38, 48, 43, 0.08);
}

.legal-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 18px 22px;
  color: var(--sage-dark);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.legal-card summary::-webkit-details-marker {
  display: none;
}

.legal-card summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(95, 122, 98, 0.14);
  color: var(--sage-dark);
  font-size: 18px;
  line-height: 1;
}

.legal-card[open] summary::after {
  content: "-";
}

.legal-card div {
  padding: 0 22px 20px;
  color: rgba(38, 48, 43, 0.8);
}

.legal-card p {
  margin-bottom: 12px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.contact {
  padding: clamp(78px, 10vw, 128px) 0 0;
  background:
    linear-gradient(90deg, rgba(47, 77, 59, 0.95), rgba(47, 77, 59, 0.82)),
    url("assets/gallery-reception.jpg") center / cover;
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.6fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.contact .eyebrow {
  color: #f1c88d;
}

.contact h2 {
  max-width: 620px;
}

.contact p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-lead {
  color: #fff;
}

.booking-form {
  max-width: 720px;
  margin-top: 30px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 900;
}

.booking-date-group {
  padding: 0;
  margin: 0;
  border: 0;
}

.booking-date-group legend {
  margin-bottom: 7px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 900;
}

.date-selects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(47, 77, 59, 0.2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.booking-form input,
.booking-form select {
  padding: 10px 12px;
}

.booking-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(95, 122, 98, 0.16);
}

.booking-full {
  grid-column: 1 / -1;
}

.booking-form .btn {
  width: 100%;
  margin-top: 18px;
}

.booking-note {
  margin: 14px 0 0;
  color: var(--muted) !important;
  font-size: 13px;
  line-height: 1.5;
}

.contact-card {
  padding: clamp(26px, 4vw, 38px);
  color: var(--ink);
  font-style: normal;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 76px;
  height: 58px;
  border-radius: var(--radius);
  background: var(--sage-dark);
}

.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card-header h3 {
  margin-bottom: 4px;
}

.contact-card-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-info-item {
  padding: 16px;
  border: 1px solid rgba(47, 77, 59, 0.12);
  border-radius: var(--radius);
  background: rgba(238, 243, 237, 0.72);
}

.company-info-item span,
.contact-links span {
  display: block;
  margin-bottom: 6px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-info-item strong,
.company-info-item small {
  display: block;
}

.company-info-item strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.company-info-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.company-address {
  margin-top: 12px;
}

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

.contact-links a {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(47, 77, 59, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--sage-dark);
  text-decoration: none;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(47, 77, 59, 0.36);
  outline: none;
}

.contact-links strong {
  font-size: 17px;
  line-height: 1.25;
}

.contact-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-card dt {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: -8px 0 0;
  color: rgba(38, 48, 43, 0.84);
}

.contact-card a {
  color: var(--sage-dark);
  font-weight: 800;
}

.map-panel {
  margin-top: clamp(36px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 42vw, 520px);
  border: 0;
}

.closing-line {
  margin-top: clamp(64px, 9vw, 110px);
  padding: 28px 20px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--sage-dark);
  text-align: center;
}

.closing-line p {
  margin-bottom: 4px;
  color: var(--sage-dark);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.2;
}

.closing-line strong {
  color: var(--sage-dark);
  font-size: clamp(18px, 2vw, 28px);
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .language-switch {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 38px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.93) 58%, rgba(247, 244, 238, 0.72) 100%),
      url("assets/hero-studio-real.jpg") center / cover no-repeat;
  }

  .two-column,
  .difference-band,
  .split-heading,
  .service-showcase,
  .cards-grid.two,
  .program-grid,
  .instructor-layout,
  .credential-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .belief-panel {
    position: static;
  }

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

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

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    line-height: 1.68;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .language-switch a {
    min-width: 34px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .hero,
  .section,
  .contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .container {
    width: 100%;
  }

  .hero {
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-copy,
  .prose,
  .section-heading p {
    font-size: 16px;
  }

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

  .legal-disclosure > summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-action {
    width: 100%;
  }

  .choice-grid,
  .why-grid,
  .testimonial-grid,
  .legal-grid,
  .gallery-grid,
  .company-info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-feature {
    grid-column: auto;
    grid-row: auto;
  }

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

  .check-list.columns {
    columns: 1;
  }

  .service-image {
    min-height: 330px;
  }

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

}
