@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Caveat:wght@500;700&display=swap');

/* ============================================================
   Tokens
   ============================================================ */
:root {
  --cream:      #FBF8F3;
  --sand:       #F2ECE1;
  --sand-deep:  #E7DFD1;
  --ink:        #3B342D;
  --ink-soft:   #746A5E;
  --ink-faint:  #9C9285;
  --terra:      #C98763;
  --terra-deep: #A9694A;
  --terra-tint: #F5E4DA;
  --white:      #FFFFFF;

  --font-round: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  --font-body:  'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  --font-hand:  'Caveat', cursive;

  --wrap: 1080px;
  --wrap-narrow: 760px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 10px 30px rgba(59, 52, 45, .07);
  --shadow-lift: 0 16px 40px rgba(59, 52, 45, .12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, var(--wrap-narrow)); margin-inline: auto; }

.section { padding: 88px 0; }
.section--sand { background: var(--sand); }
.section--tint { background: var(--terra-tint); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .en {
  display: block;
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 6px;
}
.section-head h2 {
  font-family: var(--font-round);
  font-size: clamp(22px, 4.4vw, 30px);
  font-weight: 700;
  margin: 0;
  letter-spacing: .06em;
}
.section-head .lead {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 15px;
}

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* wavy hand-drawn divider */
.squiggle { display: block; margin: 10px auto 0; width: 68px; height: 10px; color: var(--terra); opacity: .75; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 52, 45, .07);
}
.site-header__inner {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: var(--font-hand);
  font-size: 27px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.brand span { color: var(--terra); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .08em;
  font-family: var(--font-round);
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--terra); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); }

.nav__cta {
  background: var(--terra); color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 999px;
  font-weight: 500; box-shadow: 0 4px 14px rgba(201, 135, 99, .3);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--terra-deep); }

.burger {
  display: none; width: 42px; height: 42px; border: 0; background: transparent;
  cursor: pointer; padding: 0; position: relative;
}
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: .3s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: var(--sand); overflow: hidden; }
.hero__media { position: relative; }
.hero__media picture { display: block; }
.hero__media img {
  width: 100%; height: clamp(420px, 72vh, 660px); object-fit: cover; object-position: 62% 14%;
}
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(40,32,26,.62) 0%, rgba(40,32,26,.30) 46%, rgba(40,32,26,.05) 78%);
}
.hero__copy {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; top: 0;
  display: flex; flex-direction: column; justify-content: center;
  width: min(100% - 40px, var(--wrap)); margin-inline: auto;
  color: var(--white);
}
.hero__en {
  font-family: var(--font-hand); font-size: clamp(22px, 3.4vw, 30px);
  color: #F3C9AE; line-height: 1; margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-round); font-weight: 700;
  font-size: clamp(28px, 5.6vw, 50px); line-height: 1.45;
  margin: 0 0 18px; letter-spacing: .04em;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.hero__sub { font-size: clamp(14px, 2.2vw, 17px); margin: 0; max-width: 30em; opacity: .96; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-round); font-weight: 500; font-size: 15px;
  padding: 15px 30px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; transition: .25s;
  letter-spacing: .04em;
}
.btn--primary { background: var(--terra); color: var(--white); box-shadow: 0 8px 22px rgba(201,135,99,.32); }
.btn--primary:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,135,99,.4); }
.btn--ghost { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.26); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--sand-deep); }
.btn--outline:hover { border-color: var(--terra); color: var(--terra-deep); }
.btn--line { background: #06C755; color: #fff; box-shadow: 0 8px 22px rgba(6,199,85,.28); }
.btn--line:hover { background: #05b04c; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ============================================================
   Badge / notice
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--terra-tint); color: var(--terra-deep);
  font-family: var(--font-round); font-weight: 700; font-size: 13px;
  padding: 7px 16px; border-radius: 999px; letter-spacing: .06em;
}
.badge--free { background: var(--terra); color: var(--white); }

/* ============================================================
   Information (出演情報)
   ============================================================ */
.info-list { display: grid; gap: 14px; }
.info-item {
  display: grid; grid-template-columns: 128px 1fr; gap: 20px; align-items: start;
  background: var(--white); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow);
  border-left: 4px solid var(--terra-tint);
  transition: .25s;
}
.info-item:hover { box-shadow: var(--shadow-lift); border-left-color: var(--terra); }
.info-item__date {
  font-family: var(--font-round); font-weight: 700; font-size: 14px;
  color: var(--terra-deep); letter-spacing: .04em; padding-top: 2px;
}
.info-item__date .dow {
  display: inline-block; margin-left: 6px; font-size: 11px;
  color: var(--ink-faint); letter-spacing: .1em;
}
.info-item--up { border-left-color: var(--terra); }
.info-item--up .info-item__title { font-weight: 700; font-size: 17px; }
.info-item__detail {
  margin: 10px 0 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.85;
  padding-top: 10px; border-top: 1px dashed var(--sand-deep);
}
.info-item__price {
  margin: 8px 0 0; font-size: 13.5px; color: var(--ink); font-family: var(--font-round);
}
.info-item__note {
  margin: 10px 0 0; font-size: 13.5px; color: var(--terra-deep);
  background: var(--terra-tint); border-radius: 10px; padding: 10px 14px; line-height: 1.75;
}
.info-item .btn--sm { margin-top: 14px; }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }

.info-item__body { font-size: 15px; }
.info-item__title { font-family: var(--font-round); font-weight: 500; margin: 0 0 4px; font-size: 16px; }
.info-item__venue { margin: 0; color: var(--ink-soft); font-size: 13.5px; }
.info-empty {
  text-align: center; color: var(--ink-soft); font-size: 15px;
  background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow);
}

/* ============================================================
   About (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); width: 100%; }
.split__media::before {
  content: ''; position: absolute; inset: 16px -16px -16px 16px;
  border: 1.5px solid var(--terra); border-radius: var(--radius-lg); z-index: -1; opacity: .5;
}
.split__body h2 { font-family: var(--font-round); font-size: clamp(21px, 3.6vw, 27px); margin: 0 0 8px; letter-spacing: .05em; }
.split__body .en { font-family: var(--font-hand); font-size: 28px; color: var(--terra); line-height: 1; }
.split__body p { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   Feature cards (3つの特徴)
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: var(--white); border-radius: var(--radius-lg); padding: 38px 30px 34px;
  box-shadow: var(--shadow); position: relative; transition: .3s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.feature__icon {
  width: 62px; height: 62px; border-radius: 50%; background: var(--terra-tint);
  display: grid; place-items: center; margin-bottom: 20px; color: var(--terra-deep);
}
.feature__num {
  position: absolute; top: 26px; right: 28px;
  font-family: var(--font-hand); font-size: 40px; color: var(--sand-deep); line-height: 1;
}
.feature h3 {
  font-family: var(--font-round); font-weight: 700; font-size: 17.5px;
  margin: 0 0 12px; line-height: 1.65; letter-spacing: .03em;
}
.feature p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.95; }
.feature strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   Steps (体験レッスンの流れ)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 28px 22px;
  box-shadow: var(--shadow); position: relative; text-align: center;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 38px; height: 38px; margin: 0 auto 14px;
  background: var(--terra); color: var(--white); border-radius: 50%;
  font-family: var(--font-hand); font-size: 22px; font-weight: 700; line-height: 1;
}
.step h3 { font-family: var(--font-round); font-size: 15.5px; margin: 0 0 8px; }
.step p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.85; }

/* ============================================================
   Course / price cards
   ============================================================ */
.courses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.course {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.course__head {
  background: var(--sand); padding: 22px 26px; border-bottom: 1px solid var(--sand-deep);
}
.course__head h3 { font-family: var(--font-round); font-size: 17px; margin: 0; letter-spacing: .04em; }
.course__head p { margin: 4px 0 0; font-size: 13px; color: var(--ink-soft); }
.course__body { padding: 24px 26px 28px; }
.plan { padding: 14px 0; border-bottom: 1px dashed var(--sand-deep); }
.plan:last-child { border-bottom: 0; }
.plan__name { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 4px; }
.plan__price { font-family: var(--font-round); font-weight: 700; font-size: 22px; margin: 0; letter-spacing: .02em; }
.plan__price small { font-size: 13px; font-weight: 400; color: var(--ink-soft); margin-left: 3px; }

/* ============================================================
   Tables
   ============================================================ */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.tbl {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); font-size: 14.5px;
  min-width: 460px;
}
table.tbl th, table.tbl td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--sand); }
table.tbl thead th { background: var(--sand); font-family: var(--font-round); font-weight: 700; font-size: 14px; }
table.tbl tbody tr:last-child th, table.tbl tbody tr:last-child td { border-bottom: 0; }
table.tbl td.ok { color: var(--terra-deep); font-weight: 700; }
table.tbl td.ng { color: var(--ink-faint); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; }
details.qa {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 0; overflow: hidden;
}
details.qa summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--font-round); font-weight: 500; font-size: 15.5px; line-height: 1.7;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::before { content: 'Q.'; font-family: var(--font-hand); color: var(--terra); font-size: 20px; margin-right: 10px; font-weight: 700; }
details.qa summary::after {
  content: ''; position: absolute; right: 24px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--terra); border-bottom: 2px solid var(--terra);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s;
}
details.qa[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
details.qa .qa__body { padding: 0 24px 22px 24px; font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   Notes / policy blocks
   ============================================================ */
.note {
  background: var(--white); border-radius: var(--radius); padding: 26px 28px;
  box-shadow: var(--shadow); font-size: 14.5px;
}
.note h3 { font-family: var(--font-round); font-size: 16px; margin: 0 0 10px; }
.note ul { margin: 0; padding-left: 1.2em; color: var(--ink-soft); }
.note li { margin-bottom: 7px; }
.note--accent { border-left: 4px solid var(--terra); }
.note-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ============================================================
   Profile / career
   ============================================================ */
.page-hero { background: var(--sand); padding: 62px 0 58px; text-align: center; }
.page-hero .en { font-family: var(--font-hand); font-size: 34px; color: var(--terra); line-height: 1; }
.page-hero h1 { font-family: var(--font-round); font-size: clamp(23px, 4.6vw, 32px); margin: 6px 0 0; letter-spacing: .08em; }
.page-hero p { margin: 12px auto 0; max-width: 600px; color: var(--ink-soft); font-size: 15px; }

.career { list-style: none; padding: 0; margin: 0; }
.career li {
  position: relative; padding-left: 28px; margin-bottom: 14px; font-size: 15px; color: var(--ink-soft);
}
.career li::before {
  content: '♪'; position: absolute; left: 4px; top: 0; color: var(--terra); font-size: 15px;
}
.awards { display: grid; gap: 12px; }
.award {
  background: var(--white); border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow); font-size: 14.5px; display: flex; gap: 14px; align-items: flex-start;
}
.award__mark { color: var(--terra); flex: none; margin-top: 2px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 280px; object-fit: cover; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px 32px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.contact-card h3 { font-family: var(--font-round); font-size: 18px; margin: 0 0 6px; }
.contact-card p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.contact-card .btn { margin-top: 18px; }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-round); font-size: 14px; font-weight: 500; }
.field .req { color: var(--terra-deep); font-size: 12px; margin-left: 6px; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--sand-deep); border-radius: 12px;
  background: var(--white); transition: .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(201,135,99,.14);
}
.field textarea { min-height: 150px; resize: vertical; }

/* 送信完了画面（控えの代わりになるので情報を落とさない） */
.form-done {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 34px 34px;
  box-shadow: var(--shadow-lift); text-align: center;
}
.form-done__mark {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--terra-tint); color: var(--terra-deep); display: grid; place-items: center;
}
.form-done h3 {
  font-family: var(--font-round); font-size: 21px; margin: 0 0 10px; letter-spacing: .04em;
}
.form-done > p { margin: 0 0 8px; font-size: 15px; color: var(--ink-soft); }
.form-done__notice {
  background: var(--terra-tint); border-radius: var(--radius); padding: 18px 20px;
  margin: 22px 0 6px; text-align: left;
}
.form-done__notice p { margin: 0 0 6px; font-size: 14px; color: var(--terra-deep); line-height: 1.8; }
.form-done__notice p:last-child { margin-bottom: 0; }
.form-done__time {
  margin: 22px 0 10px !important; font-size: 13px; color: var(--ink-faint);
  font-family: var(--font-round);
}
.form-done__table {
  width: 100%; border-collapse: collapse; text-align: left; font-size: 14px;
  border-top: 1px solid var(--sand);
}
.form-done__table th, .form-done__table td {
  padding: 12px 6px; border-bottom: 1px solid var(--sand); vertical-align: top;
}
.form-done__table th {
  width: 34%; font-family: var(--font-round); font-weight: 500; color: var(--ink-soft); white-space: nowrap;
}
.form-done__foot { margin: 22px 0 0; font-size: 13px; color: var(--ink-soft); line-height: 1.85; }
.form-done__foot a, .form-error a { color: var(--terra-deep); }
.form-error {
  background: #FBEAE5; color: #9A3B24; border-radius: 12px; padding: 14px 16px;
  font-size: 14px; margin: 0; line-height: 1.8;
}

@media (max-width: 600px) {
  .form-done { padding: 32px 22px 26px; }
  .form-done__table th { width: auto; display: block; padding-bottom: 2px; border-bottom: 0; }
  .form-done__table td { display: block; padding-top: 0; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--terra-tint); padding: 72px 0; text-align: center; }
.cta-band .en { font-family: var(--font-hand); font-size: 32px; color: var(--terra); line-height: 1; }
.cta-band h2 { font-family: var(--font-round); font-size: clamp(20px, 4vw, 28px); margin: 8px 0 12px; letter-spacing: .05em; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: var(--ink-soft); font-size: 15px; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-band__sub {
  margin: 26px auto 0; max-width: 560px; font-size: 13.5px; color: var(--ink-soft);
  padding-top: 18px; border-top: 1px dashed rgba(169, 105, 74, .3);
}
.cta-band__sub a { color: var(--terra-deep); }

/* 淡い背景の上では白抜きボタンが沈むため、白背景＋テラコッタの枠に */
.cta-band .btn--outline,
.section--tint .btn--outline {
  background: var(--white); border-color: var(--terra); color: var(--terra-deep);
  box-shadow: 0 4px 14px rgba(59, 52, 45, .06);
}
.cta-band .btn--outline:hover,
.section--tint .btn--outline:hover {
  background: var(--terra-deep); border-color: var(--terra-deep); color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 56px 0 96px; font-size: 14px; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 34px; }
.footer-brand { font-family: var(--font-hand); font-size: 30px; color: var(--white); }
.footer-brand + p { margin: 6px 0 0; font-size: 13.5px; opacity: .7; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--font-round); font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; font-size: 12.5px; opacity: .6; }

/* ============================================================
   Mobile sticky CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(251,248,243,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--sand-deep);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none; gap: 10px;
  box-shadow: 0 -6px 20px rgba(59,52,45,.08);
}
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: 14px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .features, .courses, .steps, .gallery, .contact-grid, .note-grid { grid-template-columns: 1fr; }
  .steps { gap: 14px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .split__media::before { display: none; }
  .gallery img { height: 240px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; line-height: 1.85; }
  .section { padding: 60px 0; }
  .site-header__inner { height: 60px; }
  .burger { display: block; }
  .nav {
    position: fixed; inset: 60px 0 auto 0;
    background: var(--cream); flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 20px 24px; border-bottom: 1px solid var(--sand-deep);
    transform: translateY(-120%); transition: transform .32s ease; box-shadow: var(--shadow);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--sand); font-size: 15px; }
  .nav a::after { display: none; }
  .nav__cta { text-align: center; margin-top: 14px; border-bottom: 0 !important; }

  .hero__media img { height: 76vh; min-height: 500px; object-position: 50% 20%; }
  .hero__media::after { background: linear-gradient(180deg, rgba(40,32,26,.10) 0%, rgba(40,32,26,.26) 32%, rgba(40,32,26,.70) 62%, rgba(40,32,26,.88) 100%); }
  .hero__en, .hero__sub { text-shadow: 0 1px 12px rgba(0,0,0,.5); }
  .hero__copy { justify-content: flex-end; padding-bottom: 40px; }
  .hero__title { font-size: clamp(23px, 6.2vw, 30px); letter-spacing: .01em; }
  .hero__actions { flex-direction: column; gap: 10px; margin-top: 24px; }
  .hero__actions .btn { width: 100%; }

  .info-item { grid-template-columns: 1fr; gap: 6px; padding: 20px 22px; }
  .split__media img { height: 400px; object-fit: cover; object-position: 50% 24%; }
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 110px; }
  .btn { width: 100%; }
  .cta-band__actions .btn { width: 100%; }
  .gallery img { height: 220px; }
}
