@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #3a1018;
  --ink-deep: #2a0b11;
  --teal: #6A0C24;
  --teal-soft: #8b2a3d;
  --mint: #c9a3ad;
  --sand: #c4a574;
  --sand-deep: #a8844e;
  --paper: #f3efe6;
  --cream: #f8f0e5;
  --white: #ffffff;
  --muted: #6e5c60;
  --line: rgba(58, 16, 24, 0.12);
  --max: 1180px;
  --header: 82px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(42, 11, 17, 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; color-scheme: light; }
body {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 0;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 2.4rem, var(--max)); margin-inline: auto; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand-deep);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sand);
}

h1, h2, h3, .serif { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.15; }
h3 { font-size: 1.55rem; line-height: 1.25; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 38rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.15rem 1.9rem;
  min-height: 3.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: 600 0.95rem/1.2 Manrope, sans-serif;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary,
a.btn-primary:link,
a.btn-primary:visited {
  background: var(--ink);
  color: #fff;
  border-color: var(--sand);
  box-shadow: 0 14px 32px rgba(42, 11, 17, 0.28);
}
.btn-primary:hover,
a.btn-primary:hover {
  background: var(--ink-deep);
  color: #fff;
}
.btn-dark,
a.btn-dark:link,
a.btn-dark:visited {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover,
a.btn-dark:hover {
  background: var(--ink-deep);
  color: #fff;
}
.btn-outline,
a.btn-outline:link,
a.btn-outline:visited {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover,
a.btn-outline:hover {
  background: #fff;
  color: var(--ink);
}
.btn-outline-dark,
a.btn-outline-dark:link,
a.btn-outline-dark:visited {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover,
a.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}
.btn-whatsapp::before {
  content: "";
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("/assets/whatsapp.svg") center / contain no-repeat;
  mask: url("/assets/whatsapp.svg") center / contain no-repeat;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}
img.logo-mark {
  width: auto;
  height: 62px;
  max-height: 62px;
  max-width: 210px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.site-header.is-scrolled .logo-mark,
.site-header.is-solid .logo-mark { filter: none; }

.header-actions { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; }
.nav-desktop { display: flex; gap: 1.1rem; align-items: center; }
.nav-desktop a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.site-header.is-scrolled .nav-desktop a,
.site-header.is-solid .nav-desktop a { color: var(--muted); }
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--white); }
.site-header.is-scrolled .nav-desktop a:hover,
.site-header.is-scrolled .nav-desktop a.is-active,
.site-header.is-solid .nav-desktop a:hover,
.site-header.is-solid .nav-desktop a.is-active { color: var(--teal); }
.header-cta { padding: 0.85rem 1.4rem; font-size: 0.88rem; min-height: 2.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: 0.25s;
}
.site-header.is-scrolled .nav-toggle span,
.site-header.is-solid .nav-toggle span { background: var(--ink); }
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header);
  left: 0; right: 0;
  background: var(--cream);
  padding: 0.5rem 1.4rem 1.4rem;
  flex-direction: column;
  box-shadow: var(--shadow);
  max-height: calc(100dvh - var(--header));
  overflow-y: auto;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 0.9rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.nav-mobile .btn {
  width: 100%;
  margin-top: 1rem;
  border-bottom: none;
  color: #fff;
  background: var(--ink);
}

.hero {
  padding: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  background: var(--ink-deep);
  color: var(--white);
  overflow: hidden;
  min-height: 100svh;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: calc(var(--header) + 3.2rem) 2rem 3.5rem max(1.2rem, calc((100vw - var(--max)) / 2));
}
.hero-copy .eyebrow { color: var(--sand); }
.hero-copy .eyebrow::before { background: var(--sand); }
.hero-copy h1 { margin: 1rem 0 1.2rem; font-weight: 600; }
.hero-copy h1 em {
  font-style: italic;
  color: var(--sand);
}
.hero-copy > p {
  color: rgba(255,255,255,0.78);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.4rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-meta strong { display: block; font-size: 0.95rem; }
.hero-meta span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.hero-panel {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(42, 11, 17, 0.48) 0%, rgba(42, 11, 17, 0.68) 72%),
    url("/assets/img/clinic.jpg") center / cover no-repeat;
  display: grid;
  place-items: center;
  padding: calc(var(--header) + 2rem) 2.4rem 3rem;
}
.hero-card {
  width: min(100%, 420px);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(42, 11, 17, 0.42);
  backdrop-filter: blur(12px);
  padding: 2.4rem 2rem;
  text-align: center;
}
.hero-card .mark {
  width: min(100%, 240px);
  height: auto;
  margin: 0 auto 1.4rem;
  filter: brightness(0) invert(1);
}
.hero-card h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero-card p { color: rgba(255,255,255,0.72); margin-bottom: 1.6rem; }
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.chip {
  border: 1px solid rgba(201, 180, 138, 0.45);
  color: var(--sand);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.page-hero {
  padding: calc(var(--header) + 4.2rem) 0 3.6rem;
  background: var(--ink-deep);
  color: var(--white);
}
.page-hero .eyebrow { color: var(--sand); }
.page-hero .eyebrow::before { background: var(--sand); }
.page-hero h1 { margin: 0.8rem 0; max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,0.74); max-width: 38rem; }

section { padding: 6rem 0; }
.section-head { max-width: 40rem; margin-bottom: 2.8rem; }
.section-head h2 { margin: 0.7rem 0 0.9rem; }
.paper { background: var(--paper); }
.ink,
.band {
  background: var(--ink-deep);
  color: var(--white);
}
.ink .lead, .ink p, .band .lead, .band p { color: rgba(255,255,255,0.78); }
.ink .eyebrow, .band .eyebrow { color: var(--sand); }
.ink .eyebrow::before, .band .eyebrow::before { background: var(--sand); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 4rem;
  align-items: center;
}
.split-visual {
  min-height: 420px;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 180, 138, 0.28), transparent 50%),
    linear-gradient(160deg, #6A0C24, #2a0b11);
  border-radius: 4px 48px 4px 4px;
  display: grid;
  place-items: center;
  color: var(--sand);
  padding: 2rem;
}
.split-visual .mark { width: 140px; height: 140px; }
.split-visual.has-photo {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #2a0b11;
}
.split-visual.has-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.split-visual.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(106, 12, 36, 0.16), rgba(42, 11, 17, 0.28));
  pointer-events: none;
}
.page-photo {
  width: min(100% - 2.4rem, var(--max));
  margin: -2.4rem auto 0;
  position: relative;
  z-index: 1;
  border-radius: 4px 36px 4px 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-photo img {
  width: 100%;
  height: min(52vw, 380px);
  object-fit: cover;
  display: block;
}
.split-visual .pull {
  max-width: 16rem;
  color: #fff;
}
.split-visual .pull p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.2;
  font-style: italic;
  color: #fff;
}
.split-visual .pull cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}
.split-copy h2 { margin: 0.7rem 0 1rem; }
.split-copy p + p { margin-top: 0.9rem; }
.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.cred {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}
.cred strong { display: block; font-size: 0.92rem; }
.cred span { font-size: 0.8rem; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.7rem 1.5rem 1.5rem;
  border-radius: 4px 28px 4px 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--sand-deep);
  display: block;
  margin-bottom: 0.7rem;
}
.card h3 { margin-bottom: 0.55rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card.has-media {
  padding: 0 0 1.4rem;
  overflow: hidden;
}
.card.has-media .card-media {
  display: block;
  height: 148px;
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.card.has-media .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.card.has-media:hover .card-media img { transform: scale(1.04); }
.card.has-media .num,
.card.has-media h3,
.card.has-media p { padding-left: 1.5rem; padding-right: 1.5rem; }
.ink .card,
.band .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.ink .card p,
.band .card p { color: rgba(255,255,255,0.7); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 0.2rem;
}
.work-item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.2rem 1.15rem 1.1rem;
  border-radius: 4px;
}
.work-item h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.work-item p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.paper .work-item { background: var(--paper); }
.ink .work-item,
.band .work-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.ink .work-item p,
.band .work-item p { color: rgba(255,255,255,0.7); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.who-grid h3 { margin-bottom: 0.35rem; }
.who-grid .role { color: var(--muted); margin-bottom: 1rem; }

.titles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
}
.titles-grid article {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}
.titles-grid h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.titles-grid p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.review-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.6rem;
  align-items: center;
}
.review-band p { color: var(--muted); }

.team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.person {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.7rem 1.7rem;
  border-radius: 4px 36px 4px 4px;
  min-height: 100%;
}
.person-photo,
.split-photo {
  display: block;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.3rem;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(42, 11, 17, 0.12);
}
.person-photo img,
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.split-photo {
  width: min(78%, 320px);
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
}
.person h3 { margin-bottom: 0.25rem; }
.person .role {
  color: var(--sand-deep);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.person p { color: var(--muted); font-size: 0.96rem; }
.person p + p { margin-top: 0.7rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.step {
  padding: 1.6rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.step .n {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--sand-deep);
  display: block;
  margin-bottom: 0.6rem;
}
.step p { color: var(--muted); font-size: 0.95rem; margin-top: 0.4rem; }

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  background: var(--ink-deep);
  color: var(--white);
  padding: 3.2rem;
  border-top: 2px solid var(--sand);
}
.cta-band .eyebrow { color: var(--sand); }
.cta-band .eyebrow::before { background: var(--sand); }
.cta-band h2 { margin: 0.4rem 0 0.8rem; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.88); }
.cta-band .btn-dark,
.cta-band a.btn-dark:visited {
  background: #fff;
  color: var(--ink);
}
.cta-band .btn-dark:hover { background: var(--paper); color: var(--ink); }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal-soft); font-size: 1.3rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 0.7rem; color: var(--muted); }

.form {
  display: grid;
  gap: 0.9rem;
  background: var(--white);
  padding: 1.8rem;
  border: 1px solid var(--line);
}
.form label { font-size: 0.8rem; font-weight: 600; color: var(--teal); letter-spacing: 0.04em; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  border-radius: 2px;
  font-size: 16px;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--teal-soft);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(106, 12, 36, 0.16);
}
.form textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); }

.select { position: relative; }
.select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0 !important;
  pointer-events: none;
}
.select-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  border-radius: 2px;
  font: inherit;
  font-size: 16px;
}
.select-toggle:focus-visible,
.select.is-open .select-toggle {
  border-color: var(--teal-soft);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(106, 12, 36, 0.16);
  outline: none;
}
.select-value { flex: 1; min-width: 0; }
.select-chevron { width: 18px; height: 18px; color: var(--teal); }
.select-chevron svg { width: 100%; height: 100%; }
.select.is-open .select-chevron { transform: rotate(180deg); }
.select-menu {
  position: absolute;
  z-index: 30;
  left: 0; right: 0;
  top: calc(100% + 6px);
  padding: 0.4rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: 0.2s var(--ease);
}
.select.is-open .select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.select-menu [role="option"] {
  padding: 0.72rem 0.9rem;
  cursor: pointer;
  border-radius: 3px;
}
.select-menu [role="option"]:hover,
.select-menu [role="option"].is-active { background: #f6ecee; }
.select-menu [role="option"].is-selected {
  background: var(--ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
.info-list { display: grid; gap: 1.2rem; }
.info-list h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.info-list p, .info-list a { color: var(--muted); }
.info-list a:hover { color: var(--teal); }

.prose { max-width: 42rem; }
.container.prose {
  max-width: min(100% - 2.4rem, var(--max));
}
.container.prose > p,
.container.prose > h3 {
  max-width: 42rem;
}
.prose h3 { margin: 1.8rem 0 0.6rem; }
.prose p + p { margin-top: 0.9rem; }
.prose a { color: var(--teal); font-weight: 600; }
.page-photo + section { padding-top: 2.6rem; }

footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 22rem; }
.footer-brand img.logo-mark {
  width: auto;
  height: 88px;
  max-height: 88px;
  max-width: 260px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 0.95rem; }
footer h4 {
  font-family: Manrope, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
footer a { display: block; padding: 0.28rem 0; color: rgba(255,255,255,0.78); }
footer a:hover { color: #fff; }
.footer-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.3rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.books {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.book {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1rem 1.25rem;
  min-height: 100%;
}
.book img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #111;
  margin-bottom: 0.95rem;
}
.book h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.book p { color: var(--muted); font-size: 0.86rem; margin: 0; }
.teach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.teach-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 180;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(42, 11, 17, 0.35);
  border: 1.5px solid var(--sand);
}
.wa-float svg { width: 22px; height: 22px; fill: currentColor; }
.wa-float:hover { transform: translateY(-2px); color: #fff; }

.map-embed {
  margin-top: 2.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

@media (max-width: 1100px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .hero, .split, .team, .steps, .cta-band, .review-band, .contact-grid, .footer-grid, .who-grid {
    grid-template-columns: 1fr;
  }
  .books, .teach-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .hero-panel { min-height: 420px; padding: 3rem 1.4rem; }
  .split-visual { min-height: 280px; }
  .split-visual.has-photo img { min-height: 280px; }
}

@media (max-width: 720px) {
  section { padding: 3.4rem 0; }
  .hero-copy { padding: calc(var(--header) + 2.2rem) 1.4rem 2.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .creds, .work-grid, .titles-grid, .books, .teach-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 1.6rem; }
  .header-cta { display: none; }
  .logo-mark { height: 52px; max-height: 52px; max-width: 168px; }
}

@media (max-width: 480px) {
  :root { --header: 72px; }
  body { font-size: 16px; }
}
