:root {
  --paper: #F7F3EF;
  --paper-strong: #F7F3EF;
  --logo-bg: #F7F3EF;
  --ink: #2B2B2B;
  --muted: #2B2B2B;
  --line: rgba(43, 43, 43, 0.14);
  --rose: #C89AAF;
  --rose-dark: #2B2B2B;
  --sage: #8a9884;
  --clay: #ba806a;
  --shadow: 0 24px 80px rgba(36, 35, 38, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--logo-bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 34px);
  min-height: 82px;
  padding: 12px clamp(36px, 6vw, 92px);
  background: var(--rose);
  border-bottom: 1px solid rgba(43, 43, 43, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  width: auto;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--paper-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.68);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.booking-link {
  position: absolute;
  left: clamp(36px, 6vw, 92px);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 3px;
  background: var(--ink);
  color: #fffaf5;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.booking-link:hover {
  background: #111;
}

.hero {
  display: grid;
  place-items: center;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(64px, 8vw, 120px) clamp(48px, 8vw, 132px) clamp(68px, 8vw, 112px);
  background: var(--logo-bg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  max-width: 1px;
}

.hero-signature {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(100%, 1040px);
  min-height: 500px;
  padding: clamp(8px, 2vw, 22px) 0;
}

.hero-signature::before {
  display: none;
}

.hero-signature img {
  position: relative;
  z-index: 1;
  width: min(84vw, 940px);
  margin-inline: auto;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 12vw, 10.5rem);
}

h2 {
  font-size: 4.6rem;
  color: var(--rose);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

p {
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: var(--paper-strong);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.section,
.section-grid,
.about-section,
.price-section,
.split-section,
.trust-band,
.contact-section {
  min-height: calc(100vh - 82px);
  padding: clamp(66px, 9vw, 130px) clamp(48px, 8vw, 132px);
}

.hero,
.about-section,
.section,
.price-section,
.academy {
  border-bottom: 1px solid var(--line);
}

.section-grid,
.about-section,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 92px);
}

.contact-section {
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
}

.about-section {
  align-items: start;
  position: relative;
  overflow: hidden;
  background: var(--logo-bg);
}

.about-section h2 {
  max-width: none;
  margin-bottom: 20px;
  font-size: 3.8rem;
  color: var(--rose);
}

.about-portrait {
  position: sticky;
  top: 110px;
  margin: 0;
  align-self: start;
}

.about-portrait img {
  width: min(100%, 560px);
  margin-inline: auto;
  border-radius: 0;
  background: var(--logo-bg);
  mix-blend-mode: multiply;
  filter: saturate(0.94) contrast(0.97) brightness(1.03);
}

.about-text h3 {
  margin-top: 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.4;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
  list-style-position: outside;
}

.check-list li {
  padding-left: 0.3rem;
}

.check-list li::marker {
  color: var(--ink);
}

.rich-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.trust-band {
  background: var(--ink);
  color: var(--paper);
}

.trust-band h2 {
  max-width: 920px;
}

.trust-items,
.service-grid,
.course-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

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

.trust-items article,
.service-card,
.course-grid article,
.policy-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.trust-items article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 250, 245, 0.08);
  border-color: rgba(255, 250, 245, 0.18);
}

.trust-items span {
  display: block;
  margin-bottom: 26px;
  color: var(--rose);
  font-weight: 800;
}

.trust-items p {
  margin-top: 14px;
  color: rgba(248, 243, 238, 0.78);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
}

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

.service-card {
  min-height: 340px;
  padding: 26px;
}

.service-card.muted {
  background: #edf0e8;
}

.service-card p:not(.kicker) {
  margin-top: 18px;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: none;
}

.price-section {
  background: var(--logo-bg);
}

.price-intro {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.price-intro p:not(.eyebrow) {
  max-width: none;
  margin-top: 18px;
  color: var(--ink);
}

.price-layout {
  width: min(100%, 1180px);
}

.price-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px) clamp(24px, 4vw, 54px);
}

.price-group {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-group h3 {
  margin-bottom: 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note {
  margin: -8px 0 12px;
  color: var(--ink);
  font-size: 0.88rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
  padding: 5px 0;
  border-bottom: 0;
  background: transparent;
}

.price-row span {
  font-weight: 400;
}

.price-row strong {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.policy-note {
  margin-top: 14px;
  padding: 24px;
}

.policy-note p,
.split-section > div > p {
  margin-top: 18px;
  color: var(--muted);
}

.academy {
  background: var(--logo-bg);
}

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

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

dl {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

dt {
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 0 0 10px;
  color: var(--muted);
}

.press {
  background:
    linear-gradient(90deg, rgba(138, 152, 132, 0.24), transparent 54%),
    var(--paper);
}

.gallery-section {
  background: var(--logo-bg);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--logo-bg);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-grid figure:nth-child(3n) img {
  aspect-ratio: 1 / 1;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.02);
}

.contact-section {
  align-items: center;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-section p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 20px;
  color: var(--muted);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-actions .button {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.contact-actions .button.ghost {
  background: var(--logo-bg);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--logo-bg);
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
}

.footer-links a,
.footer-link-button {
  color: var(--muted);
  font: inherit;
  text-decoration: none;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.legal-modal {
  width: min(92vw, 980px);
  max-height: 86vh;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--logo-bg);
  color: var(--ink);
}

.legal-modal::backdrop {
  background: rgba(43, 43, 43, 0.42);
}

.legal-modal-panel {
  position: relative;
  max-height: 86vh;
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: -12px -12px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.legal-content {
  clear: both;
  display: grid;
  gap: 12px;
}

.legal-content h2 {
  margin-bottom: 8px;
  color: var(--rose);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  white-space: normal;
}

.legal-content h3 {
  margin-top: 22px;
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content p {
  max-width: 82ch;
}

@media (max-width: 1080px) {
  h2 {
    font-size: 3.7rem;
  }

  .about-section h2 {
    font-size: 3.2rem;
  }

  .section,
  .section-grid,
  .about-section,
  .price-section,
  .split-section,
  .trust-band,
  .contact-section {
    padding-inline: clamp(32px, 6vw, 64px);
  }

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

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

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

@media (max-width: 840px) {
  .site-header {
    min-height: 70px;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0;
    padding: 18px 0;
    background: var(--rose);
    border-bottom: 1px solid var(--line);
    transform: translateY(calc(-100% - 70px));
    transition: transform 180ms ease;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
  }

  .hero,
  .section-grid,
  .about-section,
  .price-layout,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .price-board {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    position: static;
  }

  .about-portrait img {
    width: min(100%, 620px);
  }

  .about-section h2 {
    font-size: 3rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-signature {
    min-height: calc(100vh - 130px);
    padding-top: 0;
  }

  .hero-signature img {
    width: 100%;
    max-width: 760px;
  }

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

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

  .contact-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    justify-content: stretch;
    justify-items: stretch;
  }

  .contact-actions .button {
    min-width: 148px;
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 620px) {
  h2 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .about-section h2 {
    font-size: 2.5rem;
  }

  .section,
  .section-grid,
  .about-section,
  .price-section,
  .split-section,
  .trust-band,
  .contact-section {
    min-height: auto;
    padding: 56px 22px;
  }

  .hero {
    padding: 48px 22px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .booking-link {
    left: 18px;
    min-width: 98px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

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

  .contact-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    justify-content: stretch;
    justify-items: stretch;
  }

  .contact-actions .button,
  .button {
    width: 100%;
  }

  .contact-section > div,
  .contact-actions {
    max-width: none;
  }

  .price-row {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

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

  .trust-items,
  .course-grid {
    grid-template-columns: 1fr;
  }
}
