:root {
  --ivory: #f3efe6;
  --paper: #faf7f1;
  --sand: #e7ddd0;
  --mist: #ebe6dc;
  --sage: #8d9178;
  --sage-soft: #a3a68f;
  --olive: #5d624c;
  --forest: #2b3228;
  --ink: #1c2219;
  --muted: #6a7063;
  --navy: #243040;
  --gold: #b8944a;
  --line: rgba(43, 50, 40, 0.12);
  --line-strong: rgba(43, 50, 40, 0.22);
  --white: #fffcf7;
  --shadow: 0 24px 60px rgba(28, 34, 25, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
  --header: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 8% -10%, rgba(141, 145, 120, 0.14), transparent 50%),
    radial-gradient(900px 420px at 100% 0%, rgba(184, 148, 74, 0.08), transparent 46%),
    var(--ivory);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

::selection {
  background: #d8dcc8;
  color: var(--ink);
}

.wrap {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sage);
}

h1, h2, h3, .serif { font-family: var(--font-serif); font-weight: 500; }

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.btn:hover { transform: translateY(-1px); }

.btn-dark {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(43, 50, 40, 0.18);
}

.btn-dark:hover { background: #1f261d; }

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover { background: var(--white); }

.btn-gold {
  background: var(--gold);
  color: #1c180f;
}

.btn-gold:hover { background: #c5a45a; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(243, 239, 230, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.site-header .wrap.nav { position: relative; }

.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(28, 34, 25, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

.brand-copy span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-place {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-sep {
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  position: relative;
  color: var(--olive);
  font-size: 14.5px;
  font-weight: 400;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { min-height: 46px; padding: 0 18px; font-size: 13px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: auto;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
  padding: 28px 0 80px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 5.6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero-copy h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
}

.hero-copy p {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 36px;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--olive);
  font-size: 14px;
}

.hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 148, 74, 0.16);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 640px;
}

.hero-plate {
  position: absolute;
  inset: 64px 20px 20px 0;
  border-radius: 170px 170px 32px 32px;
  background: linear-gradient(180deg, var(--sand), #d9d1c2);
  z-index: 0;
}

.hero-frame {
  position: absolute;
  inset: 40px 0 0 52px;
  z-index: 1;
  border-radius: 170px 170px 28px 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(28, 34, 25, 0.28));
}

.hero-badge {
  position: absolute;
  left: 0;
  bottom: 36px;
  z-index: 3;
  width: min(270px, 68%);
  padding: 20px 22px 18px;
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
}

.hero-badge span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

/* Sections */
.section { padding: 92px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}

.section-head h2 {
  max-width: 18ch;
}

.section-head h2,
.article-body h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  position: sticky;
  top: calc(var(--header) + 24px);
}

.about-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery figure:first-child {
  height: 430px;
  margin-top: 36px;
}

.about-gallery figure:nth-child(2) { height: 360px; }

.about-note {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.about-note b {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
}

.about-note span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.about-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
  line-height: 1.08;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.75;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--olive);
  font-size: 13px;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  border-left: 1px solid var(--line-strong);
}

.timeline-item {
  position: relative;
  padding: 0 0 22px 22px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-item strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.timeline-item span {
  color: var(--muted);
  font-size: 15px;
}

/* Services */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--forest);
}

.service-list a:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.service-list a span {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.service-list a strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

/* Why */
.why {
  background: var(--forest);
  color: var(--paper);
  border-radius: 40px;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.why-photo {
  min-height: 640px;
  background: #1a2118 center/cover no-repeat;
}

.why-copy { padding: 64px 56px; }

.why-copy .eyebrow,
.why-copy .eyebrow::before { color: var(--sage-soft); background-color: var(--sage-soft); }
.why-copy .eyebrow::before { background: var(--sage-soft); }

.why-copy h2 { margin: 0 0 16px; font-size: clamp(2.2rem, 3.5vw, 3.4rem); }
.why-copy p { color: rgba(250, 247, 241, 0.72); }
.why-list + p { margin: 22px 0 0; }

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 0;
}

.why-item {
  padding: 20px 18px;
  border: 1px solid rgba(250, 247, 241, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.why-item b {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}

.why-item span {
  color: rgba(250, 247, 241, 0.65);
  font-size: 14px;
}

/* Process */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 32px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 240px;
}

.process-step em {
  font-family: var(--font-serif);
  font-size: 42px;
  font-style: italic;
  color: var(--sage);
}

.process-step h3 {
  margin: 18px 0 8px;
  font-size: 26px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Articles */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 12px 12px 22px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-card figure {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 20px;
  height: 230px;
  flex: 0 0 230px;
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.article-card:hover img { transform: scale(1.05); }

.article-card .kicker {
  color: var(--olive);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 8px;
}

.article-card h3 {
  margin: 8px 8px 10px;
  font-size: 26px;
  line-height: 1.18;
}

.article-card p {
  margin: 0 8px 16px;
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}

.article-card.featured figure {
  height: 230px;
  flex-basis: 230px;
}

.article-card.featured h3 {
  font-size: 26px;
}

.article-card .link {
  margin: auto 8px 0;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--olive);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.link::after { content: "→"; transition: transform 0.3s var(--ease); }
.article-card:hover .link::after { transform: translateX(4px); }

/* Appointment */
.book {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  overflow: hidden;
  border-radius: 36px;
  background: var(--white);
  border: 1px solid var(--line);
}

.book-form { padding: 48px; }
.book-aside {
  padding: 48px 42px;
  background:
    linear-gradient(180deg, rgba(43, 50, 40, 0.28), rgba(43, 50, 40, 0.72)),
    center/cover no-repeat url("../img/portraits/clinic.jpg");
  color: var(--paper);
}

.book-aside h2 { font-size: 42px; margin: 0 0 12px; }
.book-aside p { color: rgba(250, 247, 241, 0.78); }

.contact-lines { margin: 28px 0 0; display: grid; gap: 16px; }
.contact-lines b { display: block; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.contact-lines span, .contact-lines a {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 26px);
  overflow-wrap: anywhere;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field, .field-full { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(141, 145, 120, 0.16);
}

/* Footer */
.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 40px;
  padding-bottom: 36px;
}

.site-footer h2 {
  margin: 8px 0 18px;
  font-size: 40px;
  line-height: 1;
}

.footer-meta { color: var(--muted); font-size: 15px; }
.footer-meta p { margin: 0 0 8px; }

.footer-nav, .footer-social {
  display: grid;
  gap: 8px;
}

.footer-nav a, .footer-social a { color: var(--olive); }
.footer-nav a:hover, .footer-social a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* Page interiors */
.page-hero {
  padding: 28px 0 48px;
}

.crumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 0;
  margin: 0 0 28px;
  padding: 7px 6px 7px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crumbs > * {
  display: inline-flex;
  align-items: center;
}

.crumbs > * + *::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 10px;
  border-radius: 50%;
  background: var(--gold);
}

.crumbs a {
  color: var(--olive);
}

.crumbs a:hover { color: var(--ink); }

.crumbs span {
  padding-right: 10px;
  color: var(--forest);
}

.page-title .eyebrow { margin-bottom: 14px; }

.page-title h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.5rem, 4.8vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.038em;
}

.page-title p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-title:has(h1 + p) {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  column-gap: 48px;
  row-gap: 12px;
  align-items: end;
}

.page-title:has(h1 + p) .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.page-title:has(h1 + p) h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: none;
}

.page-title:has(h1 + p) h1 + p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: none;
  margin: 0;
  padding: 4px 0 6px 28px;
  border-left: 1.5px solid var(--gold);
}

.inner-about {
  padding-bottom: 88px;
  align-items: start;
}

.inner-list {
  padding-bottom: 72px;
}

.about-intro,
.contact-intro {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 36px 0 28px;
}

.about-intro h1,
.contact-intro h1,
.journal-intro h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.about-intro h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.stat-row div {
  padding: 16px 14px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.stat-row b {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.about-intro-visual {
  position: relative;
  min-height: 560px;
}

.about-intro-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 160px 160px 28px 28px;
  box-shadow: var(--shadow);
}

.about-intro-chip {
  position: absolute;
  left: 18px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 13px;
  color: var(--olive);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  padding: 12px 0 56px;
}

.photo-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  height: 280px;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 72px;
}

.pullquote {
  margin: 0;
  padding: 28px 28px 32px;
  border-radius: 28px;
  background: var(--forest);
  color: var(--paper);
}

.pullquote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.25;
  font-style: italic;
}

.approach, .journey { padding-bottom: 72px; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.approach-grid article:nth-child(-n+3) { grid-column: span 2; }
.approach-grid article:nth-child(n+4) { grid-column: span 3; }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.approach-grid article,
.journey-grid article {
  padding: 24px 22px 26px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 180px;
}

.approach-grid em,
.journey-grid span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--sage);
}

.journey-grid span {
  font-size: 13px;
  font-style: normal;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.approach-grid h3,
.journey-grid h3 {
  margin: 12px 0 8px;
  font-size: 26px;
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.page-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  margin: 0 0 80px;
  border-radius: 36px;
  background: var(--forest);
  color: var(--paper);
}

.page-cta-copy { padding: 48px 44px; }
.page-cta-copy .eyebrow,
.page-cta-copy .eyebrow::before { color: var(--sage-soft); }
.page-cta-copy .eyebrow::before { background: var(--sage-soft); }
.page-cta-copy h2 { margin: 0 0 12px; font-size: clamp(2rem, 3vw, 3rem); }
.page-cta-copy p { color: rgba(250, 247, 241, 0.72); max-width: 42ch; }
.page-cta img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.journal-intro { padding: 40px 0 20px; }
.journal-intro-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 8px;
}

.topic-chips span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--olive);
  font-size: 13px;
}

.journal-lead {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  overflow: hidden;
  margin: 12px auto 28px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--line);
}

.journal-lead figure { margin: 0; height: 420px; }
.journal-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-lead > div { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.journal-lead h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
}
.journal-lead p { color: var(--muted); margin: 0 0 18px; }

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-bottom: 28px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 24px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.journal-card:hover,
.journal-lead:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.journal-card figure {
  margin: 0 0 16px;
  height: 260px;
  overflow: hidden;
  border-radius: 20px;
}

.journal-card img { width: 100%; height: 100%; object-fit: cover; }
.journal-card .kicker { padding: 0 8px; color: var(--olive); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.journal-card h3 { margin: 8px 8px 10px; font-size: 30px; line-height: 1.15; }
.journal-card p { margin: 0 8px 16px; color: var(--muted); flex: 1; }
.journal-card .link { margin: 0 8px; }

.contact-hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  height: 360px;
}

.contact-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 8px 0 48px;
}

.info-tile {
  display: block;
  padding: 26px 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 170px;
}

.info-tile span {
  display: block;
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-tile strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.info-tile p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.visit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
}

.visit figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  height: 380px;
}

.visit img { width: 100%; height: 100%; object-fit: cover; }
.visit h2 { margin: 0 0 12px; font-size: clamp(2rem, 3vw, 3rem); }
.visit p { color: var(--muted); }
.visit-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.split-page {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  padding-bottom: 80px;
}

.prose {
  font-size: 1.05rem;
  color: #3d4338;
}

.prose h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.prose h2::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  margin: 0 0 16px;
  background: var(--gold);
}

.prose h3 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.prose p { margin: 0 0 16px; }

.prose ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.prose li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--line);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-image {
  margin: 0 0 32px;
  overflow: hidden;
  border-radius: 28px;
  max-height: 460px;
}

.feature-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.side-card {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.side-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.side-list { display: grid; gap: 10px; margin: 0 0 22px; }
.side-list a {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--olive);
}

.faq {
  padding: 0 0 56px;
}

.faq .section-head {
  margin-bottom: 22px;
}

.faq .section-head h2 {
  max-width: 16ch;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--forest);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  height: 420px;
  width: min(1220px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto 80px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(0.98);
}

.float-dock {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 56px;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(28, 34, 25, 0.16);
}

.float-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.float-icon svg {
  display: block;
  overflow: visible;
}

.float-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0;
  pointer-events: none;
  transition: max-width 0.4s var(--ease), opacity 0.28s var(--ease), padding 0.4s var(--ease);
}

.float-btn.is-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.float-btn.is-tel {
  background: var(--forest);
}

.float-btn.is-wa {
  background: #128c4a;
}

@media (hover: hover) and (pointer: fine) {
  .float-btn:hover .float-label,
  .float-btn:focus-visible .float-label {
    max-width: 220px;
    opacity: 1;
    padding-left: 18px;
    padding-right: 2px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

.mobile-panel {
  display: none;
}

@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 14px; }
  .hero { gap: 32px; }
  .hero-visual { min-height: 560px; }
}

@media (max-width: 980px) {
  .hero,
  .about,
  .why-grid,
  .book,
  .split-page,
  .footer-grid,
  .article-grid,
  .process-track,
  .service-list,
  .about-intro,
  .contact-intro,
  .about-bio,
  .photo-strip,
  .approach-grid,
  .journey-grid,
  .page-cta,
  .journal-lead,
  .journal-grid,
  .info-tiles,
  .visit {
    grid-template-columns: 1fr;
  }

  .approach-grid article:nth-child(-n+3),
  .approach-grid article:nth-child(n+4) { grid-column: auto; }
  .about-intro-visual img,
  .contact-hero-photo,
  .journal-lead figure,
  .visit figure,
  .photo-strip figure { height: 320px; min-height: 280px; border-radius: 24px; }
  .about-intro-visual { min-height: 0; }
  .page-cta-copy { padding: 32px 24px; }
  .stat-row { grid-template-columns: 1fr; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .brand-place { font-size: 13px; gap: 8px; }
  .map-wrap { height: 320px; }

  .hero-visual { min-height: 520px; }
  .hero-plate { inset: 36px 12px 12px 12px; border-radius: 32px; }
  .hero-frame { inset: 16px; border-radius: 28px; }
  .hero-badge { left: 28px; bottom: 28px; }
  .article-card.featured figure,
  .article-card figure { height: 220px; flex-basis: 220px; }
  .article-card h3,
  .article-card.featured h3 { min-height: 0; font-size: 26px; }
  .why-photo { min-height: 360px; }
  .book-form, .book-aside { padding: 28px 22px; }
  .about-gallery figure:first-child { margin-top: 0; height: 300px; }
  .about-gallery figure:nth-child(2) { height: 240px; }
  .about-gallery { position: static; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head h2 { max-width: none; }
  .page-title h1 { max-width: none; }
  .page-title:has(h1 + p) {
    grid-template-columns: 1fr;
  }
  .page-title:has(h1 + p) .eyebrow,
  .page-title:has(h1 + p) h1,
  .page-title:has(h1 + p) h1 + p {
    grid-column: 1;
    grid-row: auto;
  }
  .page-title:has(h1 + p) h1 + p {
    padding: 18px 0 0;
    border-left: none;
    border-top: 1.5px solid var(--gold);
  }
  .form-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }

  .mobile-panel.open {
    display: grid;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header) + 8px);
    width: auto;
    margin: 0;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 12px;
    z-index: 60;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
