:root {
  --ink: #2f2a26;
  --ink-soft: #47403a;
  --muted: #777068;
  --cream: #f7f2ea;
  --paper: #fffdf9;
  --sand: #eadfd2;
  --sand-dark: #dbc7b6;
  --orange: #c9663d;
  --orange-dark: #a64d2c;
  --brown: #755347;
  --brown-dark: #4e3932;
  --sage: #7b8671;
  --line: #e4dcd3;
  --white-line: rgba(255, 255, 255, .18);
  --shadow: 0 22px 70px rgba(70, 52, 41, .11);
  --content: 1240px;
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, blockquote { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.topline {
  min-height: 32px;
  padding: 7px max(5vw, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--brown-dark);
  color: #f7eae2;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(247, 242, 234, .91);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(65, 50, 41, .045);
}
.header-inner {
  width: min(var(--content), 90vw);
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
}
.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}
.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active::after { transform: scaleX(1); }
.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--orange-dark); border-color: var(--orange-dark); }
.header-cta span { color: #e7a181; font-size: 15px; }
.menu-btn {
  width: 42px;
  height: 42px;
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-btn span {
  width: 24px;
  height: 1px;
  display: block;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .2s ease;
}

.section-shell {
  width: min(var(--content), 90vw);
  margin: 0 auto;
  padding: 118px 0;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-label span {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
}
.section-heading, .calendar-heading, .approach-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  align-items: end;
  gap: 9vw;
}
.section-heading > p, .calendar-heading > p, .approach-head > p {
  max-width: 370px;
  margin-bottom: 14px;
  color: var(--muted);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.eyebrow.light { color: #e6a384; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 {
  max-width: 760px;
  margin-bottom: 27px;
  font-size: clamp(53px, 6.2vw, 88px);
  line-height: 1.03;
  letter-spacing: -.05em;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
h3 { letter-spacing: -.025em; }
em { color: var(--orange); font-style: normal; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 17px; }
.button-dark { background: var(--ink); color: #fff; }
.button-dark span { color: #e6a180; }
.button-dark:hover { background: var(--orange-dark); }
.button-light { background: #fff; color: var(--ink); }
.button-accent { background: var(--orange); color: #fff; }
.button-accent:hover { background: #d4764e; }
.button:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.text-link, .card-link {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.text-link span, .card-link span { margin-left: 12px; color: var(--orange); font-size: 15px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  width: min(var(--content), 90vw);
  min-height: 672px;
  margin: 0 auto;
  padding: 70px 0 94px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-text {
  max-width: 550px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  margin: 34px 0 44px;
  display: flex;
  align-items: center;
  gap: 27px;
}
.trust-row {
  max-width: 590px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.trust-row span {
  padding: 0 22px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}
.trust-row span:first-child { padding-left: 0; }
.trust-row span:last-child { border-right: 0; }
.trust-row b { display: block; margin-bottom: 4px; color: var(--ink); font-size: 13px; }
.hero-visual {
  position: relative;
  width: min(100%, 485px);
  justify-self: end;
}
.portrait-frame {
  position: relative;
  height: 532px;
  overflow: hidden;
  border-radius: 49% 49% 30px 30px / 38% 38% 16px 16px;
  background: linear-gradient(145deg, #ead7c7 0%, #d7b49d 100%);
  box-shadow: var(--shadow);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
  pointer-events: none;
}
.portrait-frame img {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 112%;
  max-width: none;
  height: auto;
  filter: none;
  mix-blend-mode: normal;
  transform: translateX(-50%);
}
.portrait-line {
  position: absolute;
  top: 44px;
  right: 38px;
  bottom: 44px;
  left: 38px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50% 50% 22px 22px / 38% 38% 12px 12px;
}
.portrait-halo {
  position: absolute;
  z-index: -1;
  border: 1px solid #d8bca9;
  border-radius: 50%;
}
.portrait-halo-one { inset: -28px -46px 52px -54px; transform: rotate(-8deg); }
.portrait-halo-two { inset: 62px -72px -26px -54px; transform: rotate(14deg); opacity: .65; }
.experience-badge {
  position: absolute;
  top: 60px;
  right: -35px;
  z-index: 5;
  width: 98px;
  height: 98px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 16px 42px rgba(126, 66, 41, .2);
}
.experience-badge b { font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.1; }
.experience-badge span { font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.session-note {
  position: absolute;
  bottom: 29px;
  left: -48px;
  z-index: 5;
  min-width: 230px;
  padding: 14px 19px 14px 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(111, 84, 69, .08);
  border-radius: 10px;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 18px 52px rgba(64, 49, 40, .13);
}
.note-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0e2d7;
  color: var(--orange);
  font-size: 18px;
}
.session-note small, .session-note b { display: block; }
.session-note small { color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.session-note b { font-family: var(--serif); font-size: 13px; font-weight: 400; }
.topics-strip {
  width: min(var(--content), 90vw);
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.topics-label { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.topics-strip ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.topics-strip li { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .38); font-size: 10px; }

/* Support */
.support { padding-bottom: 132px; }
.support-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.support-card {
  min-height: 290px;
  padding: 25px 25px 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .45);
  transition: background .25s ease, transform .25s ease;
}
.support-card:hover { z-index: 1; background: var(--paper); transform: translateY(-5px); box-shadow: var(--shadow); }
.card-index { color: var(--orange); font-family: var(--serif); font-size: 12px; }
.support-card h3 { margin: 48px 0 14px; font-size: 22px; line-height: 1.2; }
.support-card p { margin-bottom: 22px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.card-mark { margin-top: auto; color: var(--orange); font-family: var(--serif); font-size: 30px; }

/* About */
.about {
  width: 100%;
  max-width: none;
  padding-right: max(5vw, calc((100vw - var(--content)) / 2));
  padding-left: max(5vw, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(450px, 1.2fr);
  align-items: center;
  gap: clamp(65px, 9vw, 140px);
  background: var(--paper);
}
.about-photo {
  position: relative;
  height: 670px;
  min-height: 0;
  align-self: center;
  overflow: hidden;
  background: #dec8b8;
}
.about-photo-bg {
  position: absolute;
  inset: 45px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 50% 50% 0 0;
}
.about-photo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  mix-blend-mode: normal;
  transform: none;
}
.about-photo blockquote {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  margin-bottom: 0;
  padding: 20px 22px;
  border-radius: 8px;
  background: rgba(255, 253, 249, .94);
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}
.about-copy { padding: 12px 0; }
.about-copy .section-label { margin-bottom: 46px; }
.about-copy h2 { margin-bottom: 32px; }
.about-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.about-copy .about-lead { color: var(--ink); font-size: 17px; line-height: 1.7; }
.value-list { margin: 34px 0 30px; border-top: 1px solid var(--line); }
.value-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.value-list > div > span { color: var(--orange); font-family: var(--serif); font-size: 11px; }
.value-list p { margin: 0; color: var(--muted); font-size: 11px; }
.value-list b { display: block; margin-bottom: 3px; color: var(--ink); font-size: 12px; }
.education-card {
  padding: 17px 19px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.education-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--brown); color: #fff; font-family: var(--serif); }
.education-card small, .education-card b { display: block; }
.education-card small { margin-bottom: 3px; color: var(--orange); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.education-card b { max-width: 450px; font-size: 10px; line-height: 1.45; }

/* Approach */
.approach {
  width: 100%;
  max-width: none;
  padding-right: max(5vw, calc((100vw - var(--content)) / 2));
  padding-left: max(5vw, calc((100vw - var(--content)) / 2));
  background: var(--brown-dark);
  color: #fff;
}
.approach .section-label { color: #bcaaa1; }
.approach-head > p { color: #c8bbb4; }
.steps {
  margin: 65px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}
.steps li {
  min-height: 270px;
  padding: 23px 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}
.steps > li > span { color: #e4a081; font-family: var(--serif); font-size: 12px; }
.steps li div { margin-top: auto; }
.steps h3 { margin-bottom: 12px; font-size: 19px; }
.steps p { margin-bottom: 0; color: #c4b7b0; font-size: 11px; line-height: 1.7; }

/* Price */
.price { padding-bottom: 100px; }
.price-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.14fr .93fr .93fr;
  gap: 14px;
}
.price-card {
  min-height: 470px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
}
.price-card-main { border-color: var(--orange); background: var(--orange); color: #fff; }
.price-card-top { display: flex; align-items: center; justify-content: space-between; }
.format-pill { padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.price-card-main .format-pill { border-color: rgba(255,255,255,.36); color: #fff; }
.price-arrow { color: var(--orange); font-size: 17px; }
.price-card-main .price-arrow { color: #fff; }
.price-card h3 { margin: 48px 0 17px; font-size: 31px; line-height: 1.1; }
.price-card > p { color: var(--muted); font-size: 12px; }
.price-card-main > p { color: #f1d5c8; }
.price-card ul { margin: 18px 0 0; padding: 0; list-style: none; color: #f8e4db; font-size: 10px; }
.price-card li { padding: 4px 0; }
.price-card li::before { content: "✓"; margin-right: 9px; }
.price-value { margin-top: auto; padding-top: 35px; }
.price-value strong, .price-value span { display: block; }
.price-value strong { font-family: var(--serif); font-size: 29px; font-weight: 400; }
.price-value span { margin-top: 4px; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.price-card-main .price-value span { color: #f2d8cc; }
.price-card .button, .price-card .card-link { margin-top: 22px; }
.contract-row {
  margin-top: 32px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}
.contract-row > div { display: flex; align-items: center; gap: 13px; }
.contract-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); color: var(--orange); font-family: var(--serif); }
.contract-row b, .contract-row small { display: block; }
.contract-row b { font-size: 11px; }
.contract-row small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.outline-button {
  padding: 10px 16px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  background: transparent;
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.outline-button span { margin-left: 13px; color: var(--orange); }

/* Calendar */
.calendar {
  width: 100%;
  max-width: none;
  padding-right: max(5vw, calc((100vw - var(--content)) / 2));
  padding-left: max(5vw, calc((100vw - var(--content)) / 2));
  background: var(--paper);
}
.booking-shell {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid var(--line);
  box-shadow: 0 20px 65px rgba(62, 48, 39, .07);
}
.booking-aside {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  background: var(--brown);
  color: #fff;
}
.aside-kicker { color: #e5b29d; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.booking-aside h3 { max-width: 210px; margin: 25px 0 36px; font-size: 25px; line-height: 1.25; }
.booking-aside ul { margin: 0; padding: 0; list-style: none; }
.booking-aside li { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.16); color: #eaded9; font-size: 10px; }
.booking-aside li span { display: inline-block; width: 22px; color: #f1ad8d; }
.google-note { margin-top: auto; padding-top: 27px; display: flex; align-items: center; gap: 12px; }
.google-mark { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #4285f4; font-weight: 700; }
.google-note b, .google-note small { display: block; }
.google-note b { font-size: 10px; }
.google-note small { max-width: 175px; margin-top: 3px; color: #cdbdb6; font-size: 8px; line-height: 1.4; }
.calendar-panel { min-width: 0; padding: 30px; }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.calendar-toolbar small, .calendar-toolbar b { display: block; }
.calendar-toolbar small { margin-bottom: 2px; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.calendar-toolbar b { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.calendar-toolbar > div:last-child { display: flex; gap: 7px; }
.calendar-toolbar button { width: 35px; height: 35px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }
.calendar-toolbar button:disabled { opacity: .35; cursor: not-allowed; }
.date-list {
  margin: 25px 0 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}
.date-button {
  min-height: 83px;
  padding: 9px 5px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.date-button small, .date-button b, .date-button span { display: block; }
.date-button small { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.date-button b { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.date-button span { color: var(--muted); font-size: 8px; }
.date-button:hover { border-color: var(--orange); }
.date-button.active { border-color: var(--orange); background: var(--orange); color: #fff; }
.date-button.active small, .date-button.active span { color: #f5ddd3; }
.slots-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 11px; }
.slots-head span { font-size: 10px; font-weight: 700; }
.slots-head small { color: var(--muted); font-size: 9px; }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.slot-button {
  min-height: 48px;
  padding: 8px;
  border: 1px solid transparent;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px;
  cursor: pointer;
}
.slot-button:hover:not(:disabled) { border-color: var(--orange); }
.slot-button.active { border-color: var(--orange); background: #fff3ed; color: var(--orange-dark); font-weight: 700; }
.slot-button:disabled { color: #bbb1aa; cursor: not-allowed; text-decoration: line-through; }
.booking-footer { margin-top: 26px; padding-top: 21px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid var(--line); }
.cancel-note { display: flex; align-items: center; gap: 10px; }
.cancel-note > span { width: 29px; height: 29px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #f6e5db; color: var(--orange); font-family: var(--serif); }
.cancel-note p { margin: 0; color: var(--muted); font-size: 8px; line-height: 1.55; }
.cancel-note b { color: var(--orange-dark); font-weight: 600; }

/* News */
.news { padding-bottom: 128px; }
.news-grid { margin-top: 60px; display: grid; grid-template-columns: 1.15fr .93fr .92fr; gap: 14px; }
.news-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper); }
.news-art { height: 220px; position: relative; overflow: hidden; display: grid; place-items: center; }
.news-art-one { background: #dbc1af; }
.news-art-one::before { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(118,80,63,.36); border-radius: 50%; }
.news-word { position: relative; z-index: 2; color: var(--brown-dark); font-family: var(--serif); font-size: 38px; font-style: italic; }
.art-orbit { position: absolute; width: 210px; height: 100px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; transform: rotate(-18deg); }
.news-art-two { background: linear-gradient(142deg, #7b8974 0 50%, #9ba492 50%); color: #fff; }
.news-art-two::after { content: ""; position: absolute; width: 125px; height: 125px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; }
.news-art-two span { position: relative; z-index: 2; font-family: var(--serif); font-size: 25px; line-height: 1.15; text-align: center; }
.news-content { padding: 23px; display: flex; flex: 1; flex-direction: column; }
.news-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.news-meta span { color: var(--orange); }
.news-card h3 { margin: 30px 0 13px; font-size: 21px; line-height: 1.25; }
.news-card p { color: var(--muted); font-size: 10px; }
.news-card a { margin-top: auto; padding-top: 18px; color: var(--ink); font-size: 9px; font-weight: 700; text-decoration: none; }
.news-card a span { margin-left: 10px; color: var(--orange); }
.quote-card { min-height: 442px; padding: 32px; justify-content: center; background: var(--brown-dark); color: #fff; }
.quote-sign { height: 60px; color: #df8a66; font-family: var(--serif); font-size: 74px; line-height: 1; }
.quote-card blockquote { margin-bottom: 25px; font-family: var(--serif); font-size: 22px; line-height: 1.45; }
.quote-caption { color: #b9aaa3; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }

/* FAQ */
.faq {
  width: 100%;
  max-width: none;
  padding-right: max(5vw, calc((100vw - var(--content)) / 2));
  padding-left: max(5vw, calc((100vw - var(--content)) / 2));
  background: var(--paper);
}
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.faq-intro > p:last-child { max-width: 330px; margin-top: 30px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 0; display: flex; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: 15px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-family: var(--sans); font-size: 19px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 610px; margin: -4px 45px 22px 0; color: var(--muted); font-size: 11px; }

/* Contact and footer */
.contact { padding-top: 80px; padding-bottom: 80px; }
.contact-card { padding: 64px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 8vw; background: var(--brown); color: #fff; }
.contact-card h2 { font-size: clamp(40px, 4.8vw, 65px); }
.contact-side > p { margin-bottom: 30px; color: #e0d2cc; }
.contact-side > small { max-width: 380px; margin-top: 26px; display: block; color: #c9b8b1; font-size: 8px; line-height: 1.55; }
.footer { padding: 50px max(5vw, calc((100vw - var(--content)) / 2)) 24px; background: var(--ink); color: #fff; }
.footer-top { padding-bottom: 38px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 60px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: #e79069; border-color: #e79069; }
.footer-brand .brand-copy small { color: #948a85; }
.footer nav, .footer-socials { display: flex; gap: 24px; }
.footer nav a, .footer-socials a { color: #c1b9b5; font-size: 9px; text-decoration: none; }
.footer-socials a { color: #fff; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; color: #827a76; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }

/* Dialogs and feedback */
.dialog {
  width: min(490px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  padding: 38px;
  overflow: auto;
  border: 0;
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(26, 19, 15, .25);
}
.dialog::backdrop { background: rgba(47, 42, 38, .68); backdrop-filter: blur(4px); }
.dialog h2 { margin-bottom: 12px; font-size: 38px; }
.dialog-close { position: absolute; top: 14px; right: 17px; border: 0; background: transparent; color: var(--muted); font-size: 27px; cursor: pointer; }
.dialog-summary { margin-bottom: 25px; color: var(--orange-dark); font-family: var(--serif); }
.dialog form { display: grid; gap: 16px; }
.dialog label { display: grid; gap: 7px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.dialog input[type="text"] { width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 4px; outline: none; background: #fff; color: var(--ink); font-size: 13px; text-transform: none; }
.dialog input[type="text"]:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(201,102,61,.1); }
.checkbox-label { grid-template-columns: 18px 1fr !important; align-items: start; font-weight: 500 !important; line-height: 1.45; letter-spacing: 0 !important; text-transform: none !important; }
.checkbox-label input { margin: 3px 0 0; accent-color: var(--orange); }
.full-button { width: 100%; margin-top: 6px; }
.contract-content { margin: 24px 0; color: var(--muted); font-size: 11px; }
.contract-content b { color: var(--ink); }
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  max-width: 480px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #e5eee2; color: #597054; }
.toast b, .toast small { display: block; }
.toast b { font-size: 10px; }
.toast small { color: var(--muted); font-size: 8px; }
.toast a { margin-left: 10px; color: var(--orange-dark); font-size: 8px; font-weight: 700; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr); gap: 45px; }
  .support-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: minmax(320px, .75fr) minmax(420px, 1.25fr); gap: 60px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-card { grid-column: 1 / -1; min-height: 270px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 74px; }
  .topline span:last-child { display: none; }
  .header-inner { height: 70px; }
  .main-nav {
    position: fixed;
    top: 102px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 19;
    padding: 55px 7vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { font-family: var(--serif); font-size: 27px; }
  .menu-btn { display: block; }
  .menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .section-shell { padding: 86px 0; }
  .section-label { margin-bottom: 38px; }
  .section-heading, .calendar-heading, .approach-head { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .hero-inner { min-height: auto; padding: 60px 0 86px; grid-template-columns: 1fr; gap: 72px; }
  .hero-visual { width: min(82vw, 470px); justify-self: center; }
  .topics-strip { flex-direction: column; align-items: flex-start; }
  .about { grid-template-columns: 1fr; padding-right: 5vw; padding-left: 5vw; }
  .about-photo { width: min(100%, 520px); height: 620px; min-height: 0; justify-self: center; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card-main { grid-row: span 2; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-aside { min-height: 280px; }
  .google-note { margin-top: 30px; }
  .date-list { overflow-x: auto; grid-template-columns: repeat(6, minmax(78px, 1fr)); padding-bottom: 5px; }
  .contact-card { grid-template-columns: 1fr; padding: 48px; }
  .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer nav { display: none; }
}

@media (max-width: 600px) {
  .topline { justify-content: center; font-size: 8px; }
  .header-inner, .section-shell, .hero-inner, .topics-strip { width: min(100% - 32px, var(--content)); }
  .brand-copy small { display: none; }
  .section-shell { padding: 70px 0; }
  .section-label { margin-bottom: 30px; }
  h1 { font-size: clamp(43px, 12.3vw, 58px); }
  h2 { font-size: clamp(38px, 10.5vw, 50px); }
  .hero-inner { padding-top: 48px; gap: 58px; }
  .hero-text { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .trust-row span { padding: 0 10px; font-size: 8px; }
  .trust-row b { font-size: 11px; }
  .hero-visual { width: 88vw; max-width: 400px; }
  .portrait-frame { height: 454px; }
  .experience-badge { top: 45px; right: -18px; width: 84px; height: 84px; }
  .experience-badge b { font-size: 17px; }
  .session-note { bottom: 22px; left: -10px; min-width: 210px; }
  .portrait-halo-one { inset: -20px -23px 45px -23px; }
  .portrait-halo-two { display: none; }
  .topics-strip { padding-bottom: 22px; }
  .support-grid, .steps { grid-template-columns: 1fr; }
  .support-card { min-height: 235px; }
  .support-card h3 { margin-top: 35px; }
  .about { padding-right: 16px; padding-left: 16px; gap: 52px; }
  .about-photo { height: 520px; min-height: 0; }
  .about-photo img { left: 0; width: 100%; }
  .about-photo blockquote { right: 12px; bottom: 12px; left: 12px; }
  .about-copy { padding-right: 2px; padding-left: 2px; }
  .about-copy .about-lead { font-size: 15px; }
  .approach { padding-right: 16px; padding-left: 16px; }
  .steps li { min-height: 215px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card, .price-card-main { min-height: 390px; grid-row: auto; }
  .contract-row { align-items: flex-start; flex-direction: column; }
  .calendar { padding-right: 16px; padding-left: 16px; }
  .booking-aside { min-height: 310px; }
  .calendar-panel { padding: 22px 15px; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .booking-footer { align-items: stretch; flex-direction: column; }
  .booking-footer .button { width: 100%; }
  .news-grid { grid-template-columns: 1fr; }
  .quote-card { grid-column: auto; min-height: 330px; }
  .faq { padding-right: 16px; padding-left: 16px; }
  .contact { width: 100%; padding: 16px; }
  .contact-card { padding: 38px 24px; }
  .footer { padding-right: 16px; padding-left: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .dialog { padding: 34px 22px 25px; }
  .toast { right: 12px; bottom: 12px; left: 12px; max-width: none; align-items: flex-start; flex-wrap: wrap; }
  .toast a { width: 100%; margin: 2px 0 0 46px; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
}
