:root {
  --plum: #7c0d6a;
  --plum-bright: #9b167f;
  --orange: #ed8824;
  --navy: #0e182b;
  --ink: #242735;
  --muted: #767a81;
  --paper: #ffffff;
  --mist: #f5f6f8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Fira Sans", Arial, sans-serif;
}

a { color: inherit; }

img { max-width: 100%; }

button,
input,
select,
textarea { font: inherit; }

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  color: #202b40;
  line-height: 1.08;
}

p { line-height: 1.65; }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-heading {
  width: min(800px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 52px);
  letter-spacing: -.025em;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.35;
}

.eyebrow.light { color: #eaa2dc; }

.site-header {
  position: relative;
  z-index: 10;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 3px 14px rgb(0 0 0 / 20%);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 45px;
}

.brand img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.header-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.header-detail > span { color: var(--orange); }
.header-detail p { margin: 0; }
.phone-detail p { font-size: 20px; font-weight: 700; }
.phone-detail a { text-decoration: none; }
.phone-detail small {
  display: block;
  margin-top: 4px;
  color: #d6d8df;
  font-size: 12px;
  font-weight: 400;
}

.main-nav {
  min-height: 54px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.main-nav a {
  position: relative;
  padding: 18px 2px 15px;
  color: #f4f4f4;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  background: var(--orange);
  transition: inset .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { right: 0; left: 0; }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--navy) url("images/banner-2-1.jpg") center / cover no-repeat;
  color: #fff;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgb(124 13 106 / 8%), transparent 42%),
    linear-gradient(rgb(9 13 19 / 52%), rgb(9 13 19 / 68%));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 38px));
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .32em;
}

.hero-play {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border: 6px solid var(--plum);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgb(124 13 106 / 78%);
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  text-indent: 5px;
  transition: transform .2s ease, background .2s ease;
}

.hero-play:hover { transform: scale(1.06); background: var(--orange); }

.hero h1 {
  margin: 0 0 42px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.035em;
}

.hero h1 span {
  display: block;
  margin-bottom: 10px;
  font-size: .72em;
  font-weight: 400;
  letter-spacing: -.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border: 0;
  background: var(--plum);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.button:hover { background: var(--orange); transform: translateY(-2px); }
.button span { font-size: 25px; line-height: 0; }

.intro-section { padding-block: 88px 92px; }

.intro-copy {
  max-width: 920px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

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

.benefit-grid article {
  padding: 38px 30px 32px;
  border: 1px solid #ececf0;
  background: var(--mist);
  text-align: center;
}

.benefit-grid article > span {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum);
  color: #fff;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.benefit-grid h3 { margin-bottom: 12px; font-size: 23px; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.book-section { padding-block: 86px; background: #fff; }

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: 62px;
}

.book-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 245px 245px;
  gap: 10px;
}

.book-collage img,
.wide-collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.book-collage img:first-child { grid-row: 1 / 3; }

.booking-card h2,
.free-class-grid h2,
.contact-form-card h2,
.map-card h2 { margin-bottom: 18px; font-size: clamp(38px, 4.2vw, 52px); }

.booking-card > p:not(.eyebrow),
.free-class-grid > div > p:not(.eyebrow) { color: var(--muted); }

form { display: grid; gap: 16px; }

label {
  display: grid;
  gap: 7px;
  color: #444855;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dcdde3;
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input,
select { height: 50px; padding: 0 14px; }
textarea { padding: 14px; resize: vertical; }

input:focus,
select:focus,
textarea:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgb(124 13 106 / 10%); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form .button { justify-self: start; margin-top: 4px; cursor: pointer; }

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-note a { color: var(--plum); font-weight: 700; }

.testimonials {
  padding-block: 84px;
  background:
    radial-gradient(circle at 15% 20%, rgb(124 13 106 / 32%), transparent 35%),
    radial-gradient(circle at 85% 80%, rgb(237 136 36 / 15%), transparent 28%),
    var(--navy);
  color: #fff;
}

.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgb(255 255 255 / 13%); }

.testimonial-grid blockquote {
  margin: 0;
  min-height: 250px;
  padding: 42px;
  background: var(--navy);
}

.testimonial-grid blockquote p { margin: 0 0 22px; color: #e7e9ef; font-size: 16px; }

.testimonial-grid cite {
  display: block;
  color: #fff;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
}

.testimonial-grid cite::before { content: ""; width: 35px; height: 3px; margin: 0 0 12px; display: block; background: var(--orange); }

.gallery-section { padding-block: 92px; }

.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }

.photo-grid img { width: 100%; aspect-ratio: 1; display: block; object-fit: cover; transition: filter .2s ease, transform .2s ease; }
.photo-grid img:hover { filter: saturate(1.15); transform: scale(.975); }

.free-class-section { padding-block: 88px; background: var(--mist); }
.free-class-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.free-class-images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.free-class-images img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.contact-band { padding-block: 76px; background: var(--plum); color: #fff; }
.contact-band.compact { padding-block: 46px; }
.contact-band h2 { margin-bottom: 34px; color: #fff; font-size: 48px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-grid a { min-width: 0; display: grid; grid-template-columns: 45px minmax(0, 1fr); column-gap: 12px; text-decoration: none; }
.contact-grid a > span { grid-row: 1 / 3; color: var(--orange); font-size: 28px; }
.contact-grid strong { overflow-wrap: anywhere; font-size: 18px; line-height: 1.35; }
.contact-grid small { margin-top: 4px; color: #eed6e9; font-size: 12px; }

.site-footer { padding-block: 42px; background: #090f1c; color: #bfc3ce; }
.footer-inner { width: min(1180px, calc(100% - 48px)); margin: auto; display: grid; grid-template-columns: 220px 1fr minmax(300px, .8fr); align-items: center; gap: 38px; }
.footer-brand img { display: block; width: 190px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer nav a { color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; }
.site-footer p { margin: 0; font-size: 11px; }

.page-intro { padding-block: 76px 62px; background: var(--mist); }
.page-intro .section-heading { margin-bottom: 0; }
.page-intro a { color: var(--plum); font-weight: 800; }

.style-list { padding-block: 78px; }
.style-row { min-height: 480px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--mist); }
.style-row:nth-child(even) img { order: 2; }
.style-row img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.style-row > div { padding: 64px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.style-row h2 { margin-bottom: 19px; font-size: clamp(34px, 4vw, 46px); }
.style-row p { margin: 0 0 26px; color: var(--muted); }
.style-row a, .concession a { color: var(--plum); font-weight: 800; text-decoration: none; }
.style-number { margin-bottom: 15px; color: var(--orange); font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif; font-size: 18px; font-weight: 800; }
.testimonial-pair .testimonial-grid { background: transparent; }

.prices-section { padding-block: 90px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.price-grid article { min-width: 0; padding: 38px 30px; display: flex; flex-direction: column; align-items: center; border-top: 4px solid var(--plum); background: var(--mist); text-align: center; }
.price-grid h3 { margin-bottom: 14px; font-size: 30px; }
.price-grid p { min-height: 46px; margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.price-grid ul { min-height: 108px; margin: 0 0 18px; padding: 16px 0; border-block: 1px dotted #cfd0d5; color: var(--muted); font-size: 13px; list-style: none; }
.price-grid li + li { margin-top: 7px; }
.price-grid strong { margin: 0 0 24px; color: #202b40; font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif; font-size: 25px; }
.concession { margin-top: 12px; padding: 26px 32px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 38px; background: #eceef2; }
.concession h3 { margin: 0 0 5px; font-size: 26px; }
.concession p { margin: 0; color: var(--muted); font-size: 14px; }
.concession > strong { color: var(--plum); font-size: 26px; }

.wide-collage { height: 520px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.wide-collage img:last-child { grid-column: 1 / 3; }

.schedule-section { padding-block: 78px 92px; }
.archive-notice { margin-bottom: 24px; padding: 20px 24px; border-left: 4px solid var(--orange); display: grid; grid-template-columns: 170px 1fr; gap: 18px; background: #fff7ef; }
.archive-notice strong { color: #7b4214; }
.archive-notice span { color: #7a6758; font-size: 14px; }
.table-wrap { overflow-x: auto; box-shadow: 0 16px 45px rgb(25 31 49 / 8%); }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 24px; border: 1px solid #e5e6e9; text-align: left; }
th { background: var(--navy); color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
td { color: #555a65; font-size: 16px; }

.story-section { padding-block: 88px; background: var(--mist); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.story-grid article { position: relative; padding: 46px; background: #fff; box-shadow: 0 15px 40px rgb(20 28 48 / 7%); }
.story-grid article > img { width: 66px; height: 66px; margin-bottom: 22px; border: 4px solid #f1dfed; border-radius: 50%; object-fit: cover; image-rendering: auto; }
.story-grid h3 { margin-bottom: 16px; font-size: 29px; }
.story-grid article > p:not(.eyebrow) { color: var(--muted); }
.story-grid footer { display: grid; gap: 3px; margin-top: 25px; padding-top: 20px; border-top: 1px solid #e8e8eb; }
.story-grid footer span { color: var(--muted); font-size: 12px; }

.contact-page { padding-block: 82px 96px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: stretch; }
.contact-form-card { padding: 48px; background: var(--mist); }
.map-card { display: grid; grid-template-rows: 310px 1fr; background: var(--navy); color: #fff; }
.map-card iframe { width: 100%; height: 100%; border: 0; }
.map-card > div { padding: 36px 40px; }
.map-card h2 { color: #fff; }
.map-card ul { margin: 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.map-card li { display: grid; grid-template-columns: 30px 1fr; color: #e1e4ea; font-size: 14px; }
.map-card li span { color: var(--orange); }
.map-card a { text-decoration: none; }

@media (max-width: 760px) {
  .header-inner {
    min-height: 84px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  .brand img { width: 210px; }
  .header-detail { display: none; }
  .phone-detail { display: flex; }
  .phone-detail > span, .phone-detail small { display: none; }
  .phone-detail p { font-size: 14px; }
  .main-nav { min-height: 48px; gap: 20px; overflow-x: auto; justify-content: flex-start; padding: 0 20px; }
  .main-nav a { flex: 0 0 auto; padding-top: 15px; font-size: 13px; }
  .hero { min-height: 540px; }

  .section-shell,
  .footer-inner { width: min(100% - 32px, 1180px); }
  .intro-section,
  .gallery-section,
  .prices-section,
  .schedule-section { padding-block: 64px; }
  .benefit-grid,
  .testimonial-grid,
  .price-grid,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .book-grid,
  .free-class-grid,
  .contact-page { grid-template-columns: 1fr; gap: 38px; }
  .book-grid { min-width: 0; }
  .book-collage { grid-template-rows: 180px 180px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid blockquote { min-height: 0; padding: 32px 26px; }
  .style-row { min-height: 0; grid-template-columns: 1fr; }
  .style-row:nth-child(even) img { order: 0; }
  .style-row img { min-height: 0; aspect-ratio: 10 / 7; }
  .style-row > div { padding: 38px 28px 44px; }
  .concession { grid-template-columns: 1fr auto; gap: 16px; }
  .concession a { grid-column: 1 / 3; }
  .archive-notice { grid-template-columns: 1fr; gap: 6px; }
  th, td { min-width: 165px; padding: 18px; }
  .wide-collage { height: 400px; }
  .contact-form-card { padding: 34px 24px; }
  .map-card > div { padding: 32px 26px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin: auto; }
  .site-footer nav { justify-content: center; }
}

@media (max-width: 480px) {
  .header-inner { width: min(100% - 24px, 1180px); }
  .brand img { width: 174px; }
  .phone-detail p { font-size: 12px; }
  .main-nav { gap: 17px; padding-inline: 14px; }
  .hero { min-height: 500px; }
  .hero-play { width: 68px; height: 68px; font-size: 23px; }
  .hero h1 { font-size: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .book-collage { grid-template-rows: 140px 140px; }
  .free-class-images { grid-template-columns: 1fr; }
  .photo-grid { gap: 5px; }
  .story-grid article { padding: 32px 24px; }
}
