@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Jost:wght@300;400;500&family=Playfair+Display:wght@400&display=swap');

:root {
  --evia-bg: #F7F5F1;
  --evia-cream: #F6F4F0;
  --evia-green: #123A2E;
  --evia-green-deep: #12332A;
  --evia-green-hover: #0D2C23;
  --evia-body: #3A4744;
  --evia-ink: #22322C;
  --evia-beige: #DCC9B0;
  --evia-beige-soft: #E0CDB4;
  --evia-beige-hover: #D2BCA0;
  --evia-rule: #DCD6CB;
  --evia-rule-strong: #B9B2A6;

  --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', Arial, sans-serif;

  --page-max: 1440px;
  --gutter-desktop: clamp(42px, 6.5vw, 96px);
  --gutter-mobile: 22px;
  --focus: 2px solid currentColor;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--evia-bg); }
body {
  margin: 0;
  min-width: 0;
  background: var(--evia-bg);
  color: var(--evia-body);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:focus-visible { outline: var(--focus); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-200%);
  background: var(--evia-green);
  color: var(--evia-bg);
  padding: 10px 14px;
}
.skip-link:focus { transform: none; }

.site-shell { width: min(100%, var(--page-max)); margin-inline: auto; min-width: 0; }
.page-pad { padding-inline: var(--gutter-desktop); }

.eyebrow,
.meta,
.nav-link,
.button,
.text-link {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.display,
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--evia-green-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding: 17px 24px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.1;
  transition: background-color .15s ease, color .15s ease;
}
.button--green { background: var(--evia-green); color: #F3F0E9; }
.button--green:hover { background: var(--evia-green-hover); }
.button--beige { background: var(--evia-beige); color: #2A3A33; }
.button--beige:hover { background: var(--evia-beige-hover); }
.button[aria-disabled='true'],
.is-disabled {
  cursor: default;
  opacity: .46;
  pointer-events: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav .sep { color: var(--evia-rule-strong); }
.desktop-nav a { padding: 4px 0; border-bottom: 1px solid transparent; }
.desktop-nav a:hover,
.desktop-nav a[aria-current='page'] { border-bottom-color: currentColor; }

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.mobile-menu-button[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-button[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.mobile-menu-button[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel { display: none; }

@media (max-width: 767px) {
  :root { --gutter-desktop: var(--gutter-mobile); }
  .desktop-nav { display: none; }
  .mobile-menu-button { display: block; }
  .mobile-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .2s ease;
  }
  .mobile-panel > div { overflow: hidden; }
  .mobile-panel[data-open='true'] { grid-template-rows: 1fr; }
  .mobile-panel nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px var(--gutter-mobile) 20px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* -------------------------------------------------------------
   Chunk 2 — Home / Hero
   Improved Home HTML is the layout authority.
   ------------------------------------------------------------- */
.home-page { overflow-x: hidden; }
.home-shell { width: 100%; max-width: 1672px; margin-inline: auto; }
.home-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  min-height: 720px;
  overflow: hidden;
  background: var(--evia-bg);
  color: #33423D;
}
.home-hero__picture,
.home-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero__photo { object-fit: cover; display: block; }
.home-hero__desktop-layer { position: relative; z-index: 1; width: 100%; height: 100%; }
.home-hero__mobile-layer { display: none; }
.home-logo-link { position: absolute; left: 5.68%; top: 4.78%; width: 21.53%; }
.home-logo--desktop { width: 100%; height: auto; }
.home-nav {
  position: absolute;
  right: 6.70%;
  top: 9.35%;
  display: flex;
  gap: clamp(30px, 3.6vw, 60px);
  align-items: center;
  font: 400 clamp(11px, .84vw, 14px)/1 var(--font-sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--evia-green);
  white-space: nowrap;
}
.home-nav a { padding: 7px 0 5px; border-bottom: 1px solid transparent; }
.home-nav a:hover { color: var(--evia-green-hover); border-bottom-color: currentColor; }
.home-copy { position: absolute; left: 5.68%; top: 26.78%; }
.home-eyebrow {
  font: 400 clamp(12px, .9vw, 15px)/1.2 var(--font-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--evia-green);
}
.home-copy h1,
.home-mobile-copy h1 {
  margin: 22px 0 0;
  font-family: 'Playfair Display', var(--font-serif);
  font-weight: 400;
  color: var(--evia-green);
  letter-spacing: -.015em;
}
.home-copy h1 { font-size: clamp(68px, 5.75vw, 96px); line-height: 1.06; }
.home-lede { margin: 24px 0 0; color: var(--evia-green); font-weight: 300; }
.home-copy .home-lede { font-size: clamp(21px, 1.62vw, 27px); line-height: 1.3; }
.home-actions { display: flex; gap: 18px; margin-top: 43px; }
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: clamp(270px, 20.45vw, 342px);
  min-height: 66px;
  padding: 20px 34px;
  font: 400 clamp(12px, .9vw, 15px)/1.1 var(--font-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background-color .15s ease, color .15s ease;
}
.home-btn--green { background: var(--evia-green); color: #F3F0E9; }
.home-btn--green:hover { background: var(--evia-green-hover); }
.home-btn--beige { background: var(--evia-beige); color: #2A3A33; }
.home-btn--beige:hover { background: var(--evia-beige-hover); }
.home-service-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.55vw, 26px);
  margin-top: 42px;
  font: 400 clamp(10.5px, .78vw, 13px)/1.2 var(--font-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #33423D;
  white-space: nowrap;
}
.home-service-links > span { color: var(--evia-rule-strong); }
.home-service-links a { padding-block: 5px; }
.home-service-links a:hover { color: var(--evia-green); }
.home-scroll-cue {
  position: absolute;
  left: 50.12%;
  bottom: 2.55%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font: 400 clamp(10px, .72vw, 12px)/1.1 var(--font-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #33423D;
}
.home-scroll-cue__tick { width: 1px; height: 44px; background: #6E7A72; }
.home-scroll-cue__chev { font-size: 16px; line-height: .7; color: #6E7A72; }
.home-place {
  position: absolute;
  right: 6.70%;
  bottom: 4.04%;
  display: flex;
  align-items: center;
  gap: 16px;
  font: 400 clamp(10px, .72vw, 12px)/1 var(--font-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #33423D;
}
.home-place i { display: block; width: 56px; height: 1px; background: #8E8A80; }
.future-anchor { height: 0; overflow: hidden; }

@media (min-width: 768px) and (max-width: 1180px) {
  .home-hero { min-height: 700px; aspect-ratio: auto; }
  .home-hero__photo { object-position: center center; }
  .home-logo-link { width: 250px; left: 5.5%; }
  .home-nav { right: 5.5%; gap: 24px; }
  .home-copy { left: 5.5%; top: 28%; }
  .home-copy h1 { font-size: clamp(58px, 7vw, 80px); }
  .home-copy .home-lede { font-size: 21px; }
  .home-actions { margin-top: 34px; }
  .home-btn { min-width: 250px; min-height: 58px; padding: 17px 22px; }
  .home-service-links { margin-top: 30px; gap: 14px; font-size: 10px; }
}

@media (max-width: 767px) {
  .home-shell { max-width: 480px; }
  .home-hero {
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
    background: var(--evia-bg);
  }
  .home-hero__desktop-layer { display: none; }
  .home-hero__mobile-layer { display: block; position: relative; z-index: 2; }
  .home-hero__picture { top: auto; bottom: 115px; height: auto; aspect-ratio: 1 / 1; z-index: 0; }
  .home-hero__photo { object-fit: contain; object-position: center bottom; }
  .home-mobile-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 30px 0 34px;
  }
  .home-mobile-header > a { width: 132px; height: 126.7px; overflow: hidden; display: block; }
  .home-logo--mobile { width: 132px; height: 126.7px; object-fit: contain; object-position: center; }
  .home-menu-button {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 14px 4px;
    border: 0;
    background: transparent;
    color: var(--evia-green);
    cursor: pointer;
  }
  .home-menu-button span {
    display: block;
    width: 38px;
    height: 2px;
    margin: 0;
    background: currentColor;
    transform-origin: center;
    transition: transform .18s ease, opacity .18s ease;
  }
  .home-menu-button[aria-expanded='true'] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .home-menu-button[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .home-menu-button[aria-expanded='true'] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
  .home-mobile-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .2s ease;
  }
  .home-mobile-panel > div { overflow: hidden; }
  .home-mobile-panel[data-open='true'] { grid-template-rows: 1fr; }
  .home-mobile-panel nav { display: flex; flex-direction: column; padding: 10px 0 0; }
  .home-mobile-panel a {
    min-height: 44px;
    padding: 14px 40px;
    border-bottom: 1px solid #E2DED5;
    font: 400 12.5px/1.2 var(--font-sans);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--evia-green);
  }
  .home-mobile-copy { padding: 30px 40px 0; }
  .home-mobile-copy .home-eyebrow { font-size: 12.5px; letter-spacing: .22em; color: #33423D; }
  .home-mobile-copy h1 { margin-top: 16px; font-size: clamp(43px, 9.8vw, 47px); line-height: 1.04; letter-spacing: -.02em; }
  .home-mobile-copy .home-lede { margin-top: 18px; font-size: 21px; line-height: 1.35; }
  .home-mobile-copy .home-actions { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 28px; }
  .home-mobile-copy .home-btn {
    justify-content: space-between;
    width: min(100%, 310px);
    min-width: 250px;
    min-height: 52px;
    padding: 14px 24px;
    font-size: 12.5px;
  }
  .home-mobile-copy .home-service-links {
    justify-content: space-between;
    width: calc(100vw - 62px);
    max-width: 418px;
    margin-top: 26px;
    margin-left: 0;
    gap: 8px;
    font-size: clamp(8.7px, 2.2vw, 10.5px);
    letter-spacing: .08em;
  }
  .home-mobile-photo-spacer { height: min(100vw, 480px); margin-top: 16px; }
  .home-scroll-cue--mobile {
    position: static;
    transform: none;
    gap: 12px;
    padding-top: 6px;
    font-size: 11.5px;
  }
  .home-scroll-cue--mobile .home-scroll-cue__tick { height: 40px; }
  .home-place--mobile {
    position: static;
    justify-content: flex-end;
    gap: 14px;
    padding: 16px 30px 34px;
    font-size: 11.5px;
  }
  .home-place--mobile i { width: 52px; }
}

@media (max-width: 360px) {
  .home-mobile-header { padding-left: 24px; padding-right: 22px; }
  .home-mobile-copy { padding-left: 28px; padding-right: 28px; }
  .home-mobile-copy .home-service-links { width: calc(100vw - 48px); margin-left: -4px; font-size: 8px; gap: 5px; }
  .home-mobile-copy .home-btn { width: 100%; min-width: 0; }
  .home-place--mobile { padding-left: 24px; padding-right: 24px; }
}

/* -------------------------------------------------------------
   Chunk 3 — Services & Pricing
   Improved pricing HTML is the layout and interaction authority.
   ------------------------------------------------------------- */
.pricing-section {
  background: linear-gradient(to right, #F6F4F0 0%, #F4F1EB 100%);
  color: #22322C;
  scroll-margin-top: 20px;
}
.pricing-inner {
  position: relative;
  width: 100%;
  max-width: 1536px;
  min-height: 1024px;
  margin-inline: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 586px;
}
.pricing-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 34px 4% 28px 6%;
}
.pricing-desktop-visual { position: relative; z-index: 1; }
.pricing-desktop-visual img {
  position: absolute;
  right: 0;
  top: 0;
  width: 1016px;
  height: 1024px;
  max-width: none;
  display: block;
}
.pricing-mobile-visual { display: none; }
.pricing-eyebrow,
.pricing-section-label { display: flex; align-items: center; gap: 18px; }
.pricing-eyebrow span {
  font: 400 13px/1.2 var(--font-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
}
.pricing-eyebrow i { flex: 0 0 110px; height: 1px; background: var(--evia-rule-strong); }
.pricing-title {
  margin: 10px 0 0;
  font-family: 'Playfair Display', var(--font-serif);
  font-size: 70px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.015em;
  color: var(--evia-green);
}
.pricing-section-label { gap: 16px; }
.pricing-section-label--private { margin-top: 26px; }
.pricing-section-label--group { margin-top: 30px; }
.pricing-section-label span {
  font: 400 14px/1.2 var(--font-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
}
.pricing-section-label i { flex: 0 0 80px; height: 1px; background: var(--evia-rule-strong); }
.pricing-private-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 0 42px;
  margin-top: 16px;
}
.pricing-service { display: flex; flex-direction: column; min-width: 0; }
.pricing-service:first-child { padding-right: 34px; }
.pricing-service--fi { padding-left: 46px; border-left: 1px solid var(--evia-rule); }
.pricing-service h3 {
  margin: 0;
  font-family: 'Playfair Display', var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--evia-green);
  white-space: nowrap;
}
.pricing-desc {
  max-width: 36ch;
  margin: 14px 0 0;
  font: 300 16px/1.5 var(--font-sans);
  color: #3A4744;
}
.pricing-service:first-child .pricing-desc { max-width: 34ch; }
.pricing-rows { margin-top: auto; padding-top: 24px; }
.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 7px 2px;
  border-bottom: 1px solid var(--evia-rule);
  color: inherit;
  transition: background-color .15s ease, opacity .15s ease;
}
a.pricing-row:hover { background: #EFEBE3; }
.pricing-row__name { flex: 1; min-width: 0; }
.pricing-row__arrow { width: 14px; flex: 0 0 14px; text-align: right; font-size: 13px; color: #A79E90; }
.pricing-row--private .pricing-row__name {
  font: 400 14px/1.3 var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #3A4744;
}
.pricing-row--private .pricing-row__price {
  font-family: 'Playfair Display', var(--font-serif);
  font-size: 22px;
  color: var(--evia-green);
  white-space: nowrap;
}
.pricing-row--group .pricing-row__name { font: 300 16px/1.3 var(--font-sans); color: #2E3B38; }
.pricing-row--group .pricing-row__price { font: 400 16px/1.3 var(--font-sans); color: var(--evia-green); white-space: nowrap; }
.pricing-row.is-disabled { opacity: .52; cursor: not-allowed; user-select: none; }
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding: 13px 20px;
  background: var(--evia-beige);
  font: 400 13px/1.2 var(--font-sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #2A3A33;
  transition: background-color .15s ease;
}
.pricing-cta:hover { background: var(--evia-beige-hover); }
.pricing-group { max-width: 520px; margin-top: 16px; }
.pricing-group-heading {
  font: 400 13px/1.2 var(--font-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4A5754;
}
.pricing-group-heading + .pricing-row { margin-top: 8px; }
.pricing-group-heading--packages { margin-top: 20px; }

@media (min-width: 768px) and (max-width: 1180px) {
  .pricing-inner { min-height: 980px; grid-template-columns: minmax(0, 1fr) 38%; }
  .pricing-content { padding-left: 5.5%; padding-right: 3%; }
  .pricing-desktop-visual img { width: 970px; height: 980px; object-fit: contain; object-position: right top; }
  .pricing-title { font-size: clamp(52px, 6.3vw, 70px); }
  .pricing-private-grid { gap: 0 24px; }
  .pricing-service:first-child { padding-right: 18px; }
  .pricing-service--fi { padding-left: 26px; }
  .pricing-service h3 { font-size: clamp(26px, 3vw, 34px); white-space: normal; }
  .pricing-desc { font-size: 14px; }
  .pricing-row--private .pricing-row__name { font-size: 12px; }
  .pricing-row--private .pricing-row__price { font-size: 19px; }
  .pricing-group { max-width: 480px; }
}

@media (max-width: 767px) {
  .pricing-section { background: #F6F4F0; }
  .pricing-inner { display: block; min-height: 0; overflow: visible; }
  .pricing-desktop-visual { display: none; }
  .pricing-mobile-visual {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 586 / 1024;
    overflow: hidden;
  }
  .pricing-mobile-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
  .pricing-mobile-visual::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(246,244,240,0) 0%, #F6F4F0 100%);
  }
  .pricing-content { display: block; padding: 26px 22px 46px; }
  .pricing-eyebrow { gap: 14px; }
  .pricing-eyebrow span { font-size: 12px; }
  .pricing-eyebrow i { flex: 1; max-width: 90px; }
  .pricing-title { margin-top: 10px; font-size: 44px; line-height: 1.05; }
  .pricing-section-label { gap: 14px; margin-top: 36px; }
  .pricing-section-label i { flex: 0 0 60px; }
  .pricing-section-label span { font-size: 13px; }
  .pricing-private-grid { display: block; margin-top: 0; }
  .pricing-service { display: block; padding: 0 !important; border-left: 0; }
  .pricing-service h3 { margin-top: 18px; font-size: 28px; line-height: 1.15; white-space: normal; }
  .pricing-desc, .pricing-service:first-child .pricing-desc { max-width: none; margin-top: 12px; font-size: 16px; line-height: 1.55; }
  .pricing-rows { margin-top: 18px; padding-top: 0; }
  .pricing-row { align-items: center; gap: 12px; min-height: 52px; padding: 14px 2px; }
  a.pricing-row:active { background: #EFEBE3; }
  .pricing-row--private .pricing-row__name { font-size: 13px; }
  .pricing-row--private .pricing-row__price { font-size: 21px; }
  .pricing-row--group .pricing-row__name { font-size: 16px; line-height: 1.3; }
  .pricing-row--group .pricing-row__price { font-size: 16px; }
  .pricing-cta { margin-top: 18px; padding: 17px 18px; font-size: 12px; text-align: center; }
  .pricing-service--fi { margin-top: 32px; padding-top: 32px !important; border-top: 1px solid var(--evia-rule); }
  .pricing-section-label--group { margin-top: 36px; }
  .pricing-group { max-width: none; margin-top: 0; }
  .pricing-group-heading { margin-top: 22px; font-size: 12px; }
  .pricing-group-heading + .pricing-row { margin-top: 6px; }
  .pricing-group-heading--packages { margin-top: 22px; }
}

@media (max-width: 360px) {
  .pricing-content { padding-inline: 18px; }
  .pricing-title { font-size: 39px; }
  .pricing-service h3 { font-size: 25px; }
  .pricing-row--private .pricing-row__name { font-size: 11.5px; letter-spacing: .11em; }
  .pricing-row--private .pricing-row__price { font-size: 19px; }
  .pricing-row--group .pricing-row__name { font-size: 14.5px; }
  .pricing-row--group .pricing-row__price { font-size: 14.5px; }
}

/* -------------------------------------------------------------
   Chunk 4 — Classes
   Improved desktop/mobile HTML is the layout authority.
   Explicit mobile navigation override: hamburger on standalone page.
   ------------------------------------------------------------- */
.classes-page { background: var(--evia-paper); color: var(--evia-ink); }
.classes-shell { width: min(100%, 1024px); margin-inline: auto; background: var(--evia-paper); }
.classes-mobile-header { display: none; }
.classes-hero { position: relative; height: 521px; overflow: hidden; }
.classes-hero picture { position: absolute; inset: 0; }
.classes-hero__image { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.classes-hero__inner { position: relative; z-index: 1; height: 100%; padding: 26px 56px 0; }
.classes-desktop-nav {
  display: flex; align-items: center; gap: 14px;
  font: 400 10.5px/1.2 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--evia-body);
}
.classes-desktop-nav > span, .classes-anchors > span { color: var(--evia-rule-strong); }
.classes-desktop-nav .is-active { color: var(--evia-green); border-bottom: 1px solid #8E9B94; padding-bottom: 3px; }
.classes-intro { margin-top: 88px; }
.classes-eyebrow { font: 400 11px/1.2 var(--font-sans); letter-spacing: .22em; text-transform: uppercase; }
.classes-intro h1 {
  margin: 10px 0 0; font-family: var(--font-serif); font-weight: 400; font-size: 48px; line-height: 1.1;
  letter-spacing: -.01em; color: var(--evia-green);
}
.classes-lede { max-width: 24ch; margin: 16px 0 0; font-family: var(--font-serif); font-size: 19px; line-height: 1.42; color: #2E3B38; }
.classes-anchors { display: flex; align-items: center; gap: 14px; margin-top: 44px; font: 400 10.5px/1.2 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--evia-body); }
.classes-anchors a:hover { color: var(--evia-green); }
.classes-main { padding: 0 56px 64px; }
.classes-main h2 { scroll-margin-top: 24px; margin: 44px 0 0; font-family: var(--font-serif); font-weight: 400; font-size: 40px; line-height: 1.1; color: var(--evia-green); }
.classes-main .classes-group-heading { margin-top: 40px; }
.class-row { display: grid; grid-template-columns: 300px minmax(0, 1fr) 226px; gap: 0 34px; align-items: start; padding: 26px 0 22px; }
.class-row h3 { margin: 0; font-family: var(--font-serif); font-weight: 400; font-size: 26px; line-height: 1.18; color: var(--evia-green); }
.class-row__title--fi { white-space: nowrap; }
.class-row__info p { margin: 2px 0 0; font: 300 13.5px/1.55 var(--font-sans); color: var(--evia-body); }
.class-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; font: 400 10.5px/1.2 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--evia-meta); }
.class-meta i { color: #A79E90; font-style: normal; }
.class-row__actions { min-width: 0; }
.class-book { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 45px; padding: 13px 14px; font: 400 11px/1.2 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; text-align: center; transition: background-color .15s ease; }
.class-book--private { background: var(--evia-beige); color: #2A3A33; }
.class-book--private:hover { background: var(--evia-beige-hover); }
.class-book--long { padding-inline: 10px; font-size: 10.5px; letter-spacing: .12em; white-space: nowrap; }
.class-book--group { background: var(--evia-green); color: #F3F0E9; }
.class-book--group:hover { background: var(--evia-green-hover); }
.class-learn { display: inline-block; margin-top: 14px; padding-bottom: 2px; border-bottom: 1px solid var(--evia-rule-strong); font: 400 10px/1.2 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--evia-body); }
.class-learn:hover { color: var(--evia-green); }
.class-divider { height: 1px; background: var(--evia-rule); }

@media (min-width: 768px) and (max-width: 1023px) {
  .classes-shell { width: 100%; }
  .classes-hero { height: clamp(390px, 50.9vw, 521px); }
  .classes-hero__inner { padding-left: 5.5vw; padding-right: 5.5vw; }
  .classes-intro { margin-top: clamp(48px, 8.6vw, 88px); }
  .classes-main { padding-left: 5.5vw; padding-right: 5.5vw; }
  .class-row { grid-template-columns: minmax(190px, 30%) minmax(0, 1fr) minmax(170px, 22%); gap: 0 3vw; }
  .class-row__title--fi { white-space: normal; }
  .class-row h3 { font-size: clamp(22px, 2.55vw, 26px); }
  .class-book { font-size: 10px; padding-inline: 10px; }
  .class-book--long { white-space: normal; font-size: 9.5px; }
}

@media (max-width: 767px) {
  .classes-shell { max-width: 520px; }
  .classes-mobile-header { display: flex; position: relative; align-items: center; justify-content: space-between; min-height: 72px; padding: 18px 22px 0; }
  .classes-mobile-home { font-family: var(--font-serif); font-size: 23px; letter-spacing: .18em; color: var(--evia-green); }
  .classes-mobile-header .mobile-panel { position: absolute; z-index: 20; top: 100%; left: 0; right: 0; background: var(--evia-paper); border-bottom: 1px solid var(--evia-rule); }
  .classes-mobile-header .mobile-panel nav { padding-top: 18px; }
  .classes-mobile-header .mobile-panel .is-active { color: var(--evia-green); text-decoration: underline; text-underline-offset: 4px; }
  .classes-desktop-nav { display: none; }
  .classes-hero { margin-top: 18px; height: 230px; }
  .classes-hero__image { object-position: 70% center; }
  .classes-hero__inner { position: static; height: auto; padding: 0; }
  .classes-intro { position: absolute; top: calc(100% + 26px); left: 0; right: 0; margin: 0; padding: 0 22px; }
  .classes-eyebrow { font-size: 11px; }
  .classes-intro h1 { font-size: 40px; line-height: 1.08; }
  .classes-lede { max-width: none; margin-top: 14px; font-size: 19px; }
  .classes-anchors { margin-top: 24px; gap: 12px; }
  .classes-main { padding: 202px 22px 48px; }
  .classes-main h2 { margin-top: 40px; font-size: 34px; }
  .classes-main h2:first-child { margin-top: 0; }
  .classes-main .classes-group-heading { margin-top: 40px; }
  .class-row { display: block; padding: 24px 0; border-bottom: 1px solid var(--evia-rule); }
  .class-divider { display: none; }
  .class-row h3 { font-size: 24px; }
  .class-row__title--fi { white-space: normal; }
  .class-row__info p { margin-top: 10px; font-size: 15px; line-height: 1.55; }
  .class-meta { gap: 8px; margin-top: 12px; }
  .class-book { margin-top: 18px; min-height: 52px; padding: 15px 16px; font-size: 11.5px; }
  .class-book--long { white-space: normal; font-size: 11.5px; letter-spacing: .14em; }
  .class-learn { margin-top: 14px; font-size: 10.5px; }
}

@media (max-width: 360px) {
  .classes-mobile-header { padding-left: 18px; padding-right: 18px; }
  .classes-intro { padding-inline: 18px; }
  .classes-intro h1 { font-size: 37px; }
  .classes-lede { font-size: 18px; }
  .classes-anchors { font-size: 9.5px; gap: 8px; }
  .classes-main { padding-left: 18px; padding-right: 18px; }
  .classes-main h2 { font-size: 31px; }
  .class-row h3 { font-size: 22px; }
  .class-row__info p { font-size: 14.5px; }
}

/* ==============================
   Chunk 5 — Class Guide
   Desktop source layout + explicit right-aligned desktop nav.
   Mobile uses the shared standalone-page hamburger pattern.
   ============================== */
.guide-page { background: #F7F3EA; color: #2A2621; font-family: var(--font-sans); }
.guide-shell { background: #F7F3EA; min-height: 100vh; padding-bottom: 72px; }
.guide-container { width: min(100% - 160px, 1240px); margin-inline: auto; }
.guide-desktop-nav { display: flex; justify-content: flex-end; align-items: center; gap: 38px; padding: 44px 0 78px; color: #4A443C; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.guide-desktop-nav a { padding-bottom: 3px; }
.guide-desktop-nav a:hover { color: #6E6558; }
.guide-desktop-nav .is-active { color: #2A2621; border-bottom: 1px solid #B8AF9E; }
.guide-eyebrow { color: #5B554B; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.guide-title { margin: 16px 0 0; color: #2A2621; font-family: var(--font-serif); font-size: 58px; font-weight: 400; line-height: 1.1; letter-spacing: -.01em; }
.guide-lede { max-width: 26ch; margin: 26px 0 0; color: #3A342C; font-family: var(--font-serif); font-size: 22px; line-height: 1.35; }
.guide-anchors { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 66px; color: #5B554B; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.guide-anchors a:hover { color: #6E6558; }
.guide-anchors span { color: #A79E8E; }
.guide-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.32fr); gap: 44px; border-top: 1px solid #DDD6C7; padding: 44px 0 52px; scroll-margin-top: 24px; }
.guide-section--first { margin-top: 30px; }
.guide-section--after-band { border-top: 0; padding-top: 58px; }
.guide-section__intro h2 { margin: 0; font-family: var(--font-serif); font-size: 34px; font-weight: 400; line-height: 1.12; }
.guide-section__intro blockquote { margin: 28px 0 0; color: #3A342C; font-family: var(--font-serif); font-size: 20px; font-style: italic; line-height: 1.4; }
.guide-attribution { margin: 6px 0 0; color: #3A342C; font-family: var(--font-serif); font-size: 19px; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; color: #5B554B; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.guide-section--first .guide-meta { margin-top: 26px; }
.guide-meta i { color: #A79E8E; font-style: normal; }
.guide-copy { display: flex; max-width: 62ch; flex-direction: column; gap: 18px; color: #3A342C; font-size: 14px; line-height: 1.62; }
.guide-copy p { margin: 0; }
.guide-band { display: block; width: 100%; height: clamp(180px, 17vw, 260px); object-fit: cover; object-position: center 60%; }
.guide-back-wrap { border-top: 1px solid #DDD6C7; padding-top: 40px; }
.guide-back { display: inline-flex; align-items: center; gap: 12px; color: #4A443C; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.guide-back span:last-child { border-bottom: 1px solid #B8AF9E; padding-bottom: 3px; }
.guide-back:hover { color: #6E6558; }
.guide-mobile-header { display: none; }

@media (max-width: 767px) {
  .guide-shell { padding-bottom: 56px; }
  .guide-container { width: auto; margin: 0; padding-inline: 24px; }
  .guide-desktop-nav { display: none; }
  .guide-mobile-header { position: relative; display: flex; min-height: 72px; align-items: center; justify-content: space-between; padding: 18px 24px 0; background: #F7F3EA; }
  .guide-mobile-home { color: var(--evia-green); font-family: var(--font-serif); font-size: 23px; letter-spacing: .18em; }
  .guide-mobile-header .mobile-panel { position: absolute; z-index: 20; top: 100%; right: 0; left: 0; border-bottom: 1px solid #DDD6C7; background: #F7F3EA; }
  .guide-mobile-header .mobile-panel nav { padding-top: 18px; }
  .guide-mobile-header .mobile-panel .is-active { color: #2A2621; text-decoration: underline; text-underline-offset: 4px; }
  .guide-container--top { padding-top: 40px; }
  .guide-eyebrow { font-size: 10px; }
  .guide-title { margin-top: 12px; font-size: 40px; line-height: 1.08; }
  .guide-lede { max-width: none; margin-top: 20px; font-size: 19px; }
  .guide-anchors { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 44px; font-size: 10px; letter-spacing: .15em; }
  .guide-anchors span { display: none; }
  .guide-section { display: block; padding: 32px 0 40px; scroll-margin-top: 88px; }
  .guide-section--first { margin-top: 36px; }
  .guide-section--after-band { padding-top: 40px; }
  .guide-section__intro h2 { font-size: 28px; }
  .guide-section__intro blockquote { margin-top: 22px; font-size: 18px; }
  .guide-attribution { font-size: 17px; }
  .guide-meta, .guide-section--first .guide-meta { gap: 12px; margin-top: 24px; font-size: 10px; letter-spacing: .15em; }
  .guide-section--first .guide-meta { margin-top: 18px; }
  .guide-copy { gap: 16px; margin-top: 26px; max-width: none; font-size: 15px; line-height: 1.6; }
  .guide-band { height: 180px; }
  .guide-back-wrap { padding-top: 32px; }
  .guide-back { gap: 10px; font-size: 10px; letter-spacing: .15em; }
}

@media (max-width: 340px) {
  .guide-container { padding-inline: 18px; }
  .guide-mobile-header { padding-left: 18px; padding-right: 18px; }
  .guide-title { font-size: 37px; }
  .guide-section__intro h2 { overflow-wrap: anywhere; }
  .guide-meta { gap: 8px; }
}

/* ==============================
   Chunk 6 — About
   Desktop follows the approved About source composition.
   Mobile preserves the approved mockup hierarchy: logo + copy + byline, then portrait.
   ============================== */
.about-section {
  background: #F7F4EF;
  color: #2E3B42;
  font-family: var(--font-sans);
  scroll-margin-top: 24px;
}
.about-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(46%, 857px);
  width: min(100%, 1672px);
  min-height: 760px;
  margin-inline: auto;
  overflow: hidden;
  background: #F7F4EF;
}
.about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(30px, 2.3vw, 38px) 52px 56px clamp(48px, 5.3vw, 88px);
}
.about-logo {
  width: clamp(240px, 19.2vw, 320px);
  height: auto;
}
.about-kicker { margin-top: clamp(38px, 3.35vw, 56px); }
.about-kicker i,
.about-byline i {
  display: block;
  width: 62px;
  height: 1px;
  background: #8E8A80;
}
.about-kicker span {
  display: block;
  margin-top: 16px;
  color: #3A4744;
  font: 400 13px/1.2 var(--font-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
}
.about-content h2 {
  margin: 14px 0 0;
  color: #123A2E;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 4.8vw, 80px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.32vw, 22px);
  max-width: 620px;
  margin-top: clamp(22px, 1.7vw, 28px);
}
.about-copy p {
  margin: 0;
  color: #2E3B42;
  font: 300 clamp(14.5px, .99vw, 16.5px)/1.55 var(--font-sans);
}
.about-byline {
  margin-top: auto;
  padding-top: 32px;
}
.about-byline i { margin-bottom: 18px; }
.about-byline span {
  color: #3A4744;
  font: 400 13px/1.2 var(--font-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.about-portrait-wrap {
  position: relative;
  min-width: 0;
  min-height: 760px;
}
.about-portrait {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center top;
}
.about-place {
  position: absolute;
  right: clamp(48px, 5.7vw, 96px);
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #3A4744;
  font: 400 12.5px/1.2 var(--font-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.about-place i {
  display: block;
  width: 56px;
  height: 1px;
  background: #8E8A80;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .about-inner { grid-template-columns: 52% 48%; min-height: 700px; }
  .about-content { padding-left: 44px; padding-right: 34px; }
  .about-copy p { font-size: 14px; }
  .about-portrait-wrap,
  .about-portrait { min-height: 700px; }
  .about-byline span { font-size: 11px; letter-spacing: .16em; }
  .about-place { right: 32px; bottom: 40px; font-size: 10px; }
}

@media (max-width: 767px) {
  .about-section { scroll-margin-top: 0; }
  .about-inner {
    display: flex;
    flex-direction: column;
    width: min(100%, 520px);
    min-height: 0;
    overflow: visible;
  }
  .about-content {
    order: 1;
    display: flex;
    padding: 34px 22px 0;
  }
  .about-logo {
    align-self: center;
    width: min(190px, 48vw);
  }
  .about-kicker { margin-top: 34px; }
  .about-kicker i,
  .about-byline i { width: 52px; }
  .about-kicker span { margin-top: 14px; font-size: 11.5px; }
  .about-content h2 { margin-top: 12px; font-size: 44px; line-height: 1.04; }
  .about-copy { gap: 18px; max-width: none; margin-top: 22px; }
  .about-copy p { font-size: 16px; line-height: 1.6; }
  .about-byline { margin-top: 34px; padding-top: 0; }
  .about-byline i { margin-bottom: 16px; }
  .about-byline span { font-size: 11.5px; line-height: 1.5; letter-spacing: .2em; }
  .about-portrait-wrap {
    order: 2;
    min-height: 0;
    margin-top: 28px;
  }
  .about-portrait {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
  .about-place {
    position: static;
    justify-content: flex-end;
    gap: 14px;
    padding: 20px 22px 40px;
    font-size: 11px;
    letter-spacing: .2em;
  }
  .about-place i { width: 70px; }
}

@media (max-width: 360px) {
  .about-content { padding-left: 18px; padding-right: 18px; }
  .about-content h2 { font-size: 39px; }
  .about-copy p { font-size: 15px; }
  .about-byline span { font-size: 10.5px; letter-spacing: .16em; }
  .about-place { padding-left: 18px; padding-right: 18px; font-size: 10px; }
}

/* ==============================
   Chunk 7 — Contact
   Desktop and mobile follow the approved Contact source layouts.
   Explicit factual override: NW address. Google Maps remains inactive.
   ============================== */
.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 45.25%) minmax(0, 54.75%);
  width: min(100%, 1672px);
  min-height: 940px;
  margin-inline: auto;
  overflow: hidden;
  background: #F7F6F3;
  color: #1F3B52;
  font-family: var(--font-sans);
  scroll-margin-top: 24px;
}
.contact-visual {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  height: 100%;
}
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.contact-content {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  width: 100%;
  padding: clamp(86px, 8.3vw, 138px) 42px 72px clamp(48px, 5.15vw, 86px);
}
.contact-rule { width: 64px; height: 2px; background: #173347; }
.contact-kicker {
  margin-top: 20px;
  color: #173347;
  font: 400 14px/1.2 var(--font-sans);
  letter-spacing: .24em;
  text-transform: uppercase;
}
.contact-content h2 {
  margin: 12px 0 0;
  color: #123241;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(62px, 5.25vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.contact-lede {
  margin: 26px 0 0;
  color: #1F3B52;
  font: 300 clamp(16px, 1.31vw, 19px)/1.6 var(--font-sans);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 52px;
}
.contact-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0 34px;
  align-items: start;
}
.contact-badge {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EDEAE4;
}
.contact-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #173347;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-label {
  color: #3C5468;
  font: 400 12.5px/1.2 var(--font-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.contact-value {
  margin-top: 8px;
  color: #1F3B52;
  font: 300 19px/1.38 var(--font-sans);
}
.contact-value--serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}
.contact-value a { display: inline-block; padding: 2px 0; }
.contact-value a:hover { color: #173347; text-decoration: underline; text-underline-offset: 4px; }
.contact-maps {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #8E9AA4;
  color: #1F3B52;
  font: 300 17px/1.2 var(--font-sans);
}
.contact-maps.is-disabled { opacity: .46; pointer-events: none; }

@media (min-width: 768px) and (max-width: 1100px) {
  .contact-section { grid-template-columns: 50% 50%; min-height: 820px; }
  .contact-content { padding: 70px 32px 56px 42px; }
  .contact-content h2 { font-size: 56px; }
  .contact-lede { font-size: 15px; }
  .contact-items { gap: 26px; margin-top: 40px; }
  .contact-item { grid-template-columns: 54px minmax(0, 1fr); gap: 0 22px; }
  .contact-badge { width: 54px; height: 54px; }
  .contact-value, .contact-value--serif { font-size: 18px; }
}

@media (max-width: 767px) {
  .contact-section {
    display: flex;
    flex-direction: column;
    width: min(100%, 480px);
    min-height: 0;
    overflow: visible;
    scroll-margin-top: 0;
  }
  .contact-visual {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 941 / 733;
    overflow: hidden;
  }
  .contact-visual img { object-fit: cover; object-position: center center; }
  .contact-content {
    order: 2;
    padding: 38px 36px 0;
  }
  .contact-rule { width: 78px; }
  .contact-kicker { margin-top: 18px; font-size: 13px; }
  .contact-content h2 { margin-top: 14px; font-size: 56px; }
  .contact-lede { margin-top: 22px; font-size: 18px; line-height: 1.62; }
  .contact-items { gap: 30px; margin-top: 40px; padding-bottom: 56px; }
  .contact-item { grid-template-columns: 60px minmax(0, 1fr); gap: 0 24px; }
  .contact-badge { width: 60px; height: 60px; }
  .contact-badge svg { width: 23px; height: 23px; }
  .contact-label { font-size: 12px; }
  .contact-value { font-size: 21px; line-height: 1.32; }
  .contact-value--serif { font-size: 23px; }
  .contact-maps { min-height: 44px; margin-top: 10px; font-size: 17px; }
}

@media (max-width: 360px) {
  .contact-content { padding-left: 18px; padding-right: 18px; }
  .contact-content h2 { font-size: 48px; }
  .contact-lede { font-size: 16px; }
  .contact-item { grid-template-columns: 52px minmax(0, 1fr); gap: 0 18px; }
  .contact-badge { width: 52px; height: 52px; }
  .contact-value, .contact-value--serif { font-size: 19px; overflow-wrap: anywhere; }
}
