/*
Theme Name: Andrew Tobert Therapy
Theme URI: https://andrewtoberttherapy.com
Author: Andrew Tobert
Description: A minimal, personal therapy practice website.
Version: 1.0
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #F5F0E8;
  --bg-alt:   #EDE7DC;
  --text:     #1C1814;
  --muted:    #5A5147;
  --accent:   #7D9177;
  --serif:    'Lora', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--muted);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo-short { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text) !important;
  border: 1px solid var(--text);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--text); color: var(--bg) !important; }

/* ─── NAV DROPDOWN (desktop) ─── */
.has-dropdown {
  position: relative;
}

/* Invisible bridge so cursor can cross the gap to the dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1.25rem;
  display: none;
}

.has-dropdown:hover::after,
.has-dropdown:focus-within::after {
  display: block;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--muted);
  border-radius: 2px;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 220px;
  z-index: 200;
}

.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown li a:hover {
  color: var(--text);
  background: var(--bg);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: block;
}

/* ─── MOBILE NAV (hidden on desktop) ─── */
.nav-mobile-right { display: none; }
.nav-mobile-panel { display: none; }

/* ─── HERO ─── */
.hero {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 140px 2rem 100px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
}

.hero-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-photo {
  flex: 0 0 240px;
  max-width: 240px;
  position: relative;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(180, 130, 80, 0.1);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(18%) saturate(0.9) brightness(1.02);
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-circle-wrap {
  position: relative;
  display: inline-block;
}

.hand-circle {
  position: absolute;
  inset: -10px -14px;
  width: calc(100% + 28px);
  height: calc(100% + 20px);
  color: var(--accent);
  opacity: 0.6;
  pointer-events: none;
}

.btn-primary {
  display: inline-block;
  background: var(--text);
  color: var(--bg) !important;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
}
.btn-primary:hover { opacity: 0.8; }

.btn-secondary {
  display: inline-block;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: calc(0.85rem - 1px) calc(2rem - 1px);
  border: 1px solid var(--text);
  border-radius: 2px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  display: inline-block;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--bg-alt);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--text); }

/* ─── DIVIDER ─── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--bg-alt);
  margin: 0 auto;
}

/* ─── SECTION ─── */
section {
  padding: 100px 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

.section-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

/* ─── HOME AREAS (front page) ─── */
.home-areas {
  padding: 40px 2rem 80px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.home-areas .pull-quote {
  width: 240px;
  margin: -110px 0 1.5rem 2rem;
  padding: 1.75rem 2.25rem;
}

.home-areas .pull-quote p {
  font-size: 1.2rem !important;
}

/* ─── AREAS GRID ─── */
.areas-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  clear: both;
}

@media (min-width: 700px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

.areas-intro-text {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

.areas-grid-index {
  margin-top: 2rem;
}

.areas-outro-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
}

.areas-footnote {
  font-size: 1rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.area-item {
  position: relative;
  padding: 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s;
}
.area-item:hover { color: var(--accent); }

.area-item-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  pointer-events: none;
  overflow: visible;
}

.area-arrow {
  width: 22px;
  height: 11px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ─── CTA SECTION ─── */
.cta-section {
  text-align: center;
  padding: 100px 2rem;
}

.cta-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 2.5rem;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--bg-alt);
}

.footer-desktop {
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-mobile { display: none; }

.bacp-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  width: 100%;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-note {
  font-size: 0.75rem;
  color: var(--muted);
  width: 100%;
}

/* ─── MOBILE ─── */
@media (max-width: 640px) {

  /* NAV: swap desktop links for mobile cluster */
  nav {
    padding: 0 1rem;
    height: 56px;
  }
  .nav-logo-full { display: none; }
  .nav-logo-short { display: inline; font-size: 0.95rem; }
  .nav-links { display: none; }

  .nav-mobile-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .nav-cta-mobile {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    border: 1px solid var(--text);
    padding: 0.4rem 0.75rem;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }
  .nav-cta-mobile:hover { background: var(--text); color: var(--bg); }

  .nav-hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-mobile-panel {
    display: block;
    position: fixed;
    top: 56px;
    left: 0; right: 0;
    z-index: 99;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--muted);
    padding: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-mobile-panel.open {
    max-height: 500px;
    padding: 0.5rem 0;
  }
  .nav-mobile-panel li a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 113, 103, 0.12);
  }
  .nav-mobile-panel li:last-child a { border-bottom: none; }
  .nav-mobile-panel li a.sub {
    padding-left: 2.5rem;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.02em;
  }
  .nav-mobile-panel li.group-label {
    padding: 0.9rem 1.5rem 0.3rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.7;
  }

  /* HERO */
  .hero { flex-direction: column; gap: 2.5rem; padding: 90px 1.25rem 70px; }
  .hero-photo { flex: none; max-width: 100%; width: 100%; }
  .hero-photo img { aspect-ratio: 4 / 3; }

  section { padding: 70px 1.25rem; }
  .home-areas { padding: 30px 1.25rem 60px; }
  .home-areas .pull-quote {
    width: auto;
    max-width: 280px;
    margin: 1rem auto 2.5rem;
    padding: 1.75rem 2.5rem;
  }
  .cta-section { padding: 70px 1.25rem; }

  /* FOOTER: swap desktop for mobile */
  .footer-desktop { display: none; }
  .footer-mobile {
    display: block;
    padding: 2.5rem 1.5rem 3rem;
    text-align: center;
  }
  .footer-mobile .footer-logo {
    display: block;
    margin-bottom: 1.75rem;
  }
  .footer-mobile .bacp-logo {
    margin: 0 auto 1.75rem;
  }
  .footer-address {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .footer-privacy {
    font-size: 0.75rem;
  }
  .footer-privacy a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 113, 103, 0.3);
    padding-bottom: 1px;
  }
}

/* ─── BOOKING PAGE ─── */
body .page-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 140px 2rem 100px;
  box-sizing: border-box;
}

.page-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.page-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 520px;
}

.form-group { margin-bottom: 2rem; }

label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--muted);
  padding: 0.5rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus { border-color: var(--text); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7167' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 1.5rem;
  cursor: pointer;
}

.sub-select { margin-top: 1rem; display: none; }
.sub-select.visible { display: block; }
.sub-select label { font-size: 0.72rem; }

.avail-intro {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.avail-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.avail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--bg-alt);
  border-left: 1px solid var(--bg-alt);
}

.avail-slot {
  border-right: 1px solid var(--bg-alt);
  border-bottom: 1px solid var(--bg-alt);
  padding: 0;
}

.avail-slot input[type="checkbox"],
.avail-slot input[type="radio"] { display: none; }

.avail-slot label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  user-select: none;
}

.avail-slot label .slot-time {
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 0.15s;
}

.avail-slot input:checked + label { background: var(--text); color: var(--bg); }
.avail-slot input:checked + label .slot-time { color: var(--bg-alt); }
.avail-slot:hover label { background: var(--bg-alt); }
.avail-slot input:checked + label:hover { background: var(--text); }

.form-submit {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-small { font-size: 0.8rem; color: var(--muted); }

.confirmation { display: none; padding: 3rem 0; text-align: center; }
.confirmation h2 { font-family: var(--serif); font-weight: 400; font-size: 2rem; margin-bottom: 1rem; }
.confirmation p { color: var(--muted); }

@media (max-width: 640px) {
  .page-wrap { padding: 100px 1.25rem 70px; }
  .avail-grid { grid-template-columns: 1fr; }
}

/* ─── THANK YOU PAGE ─── */
.thank-you-meta {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.thank-you-meta a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.thank-you-meta a:hover { color: var(--accent); border-color: var(--accent); }

/* ─── ABOUT PAGE ─── */
body .about-opening {
  padding: 140px 2rem 80px;
  max-width: 820px;
  margin: 0 auto;
  box-sizing: border-box;
}

.opening-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.25;
  color: var(--text);
  max-width: 720px;
}

.opening-statement em {
  font-style: italic;
  color: var(--muted);
}

body .about-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem 100px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text .hiw-summary {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.4;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bg-alt);
}

.about-photo {
  position: sticky;
  top: 100px;
}

.about-photo {
  position: relative;
}

/* Desktop vs mobile photo visibility */
.about-photo-mobile { display: none; }
.about-photo-desktop { display: block; }

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(180, 130, 80, 0.1);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(18%) saturate(0.9) brightness(1.02);
}

@media (max-width: 640px) {
  .about-opening { padding: 100px 1.25rem 60px; }
  body .about-body {
    display: block;
    padding: 0 1.25rem 70px;
  }
  .about-text {
    width: 100%;
    max-width: 100%;
  }
  .about-photo-desktop { display: none; }
  .about-photo-mobile {
    display: block;
    position: static;
    max-width: 100%;
    margin: 1.5rem 0;
  }
  .about-photo-mobile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }
}

/* ─── HOW I WORK PAGE ─── */
body .hiw-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 140px 2rem 100px;
  box-sizing: border-box;
}

.hiw-section {
  margin-bottom: 3.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--bg-alt);
}

.hiw-section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hiw-section-label svg {
  flex-shrink: 0;
  color: var(--accent);
}

.hiw-section p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.05rem;
}

.hiw-room-photo {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 1.25rem;
  border-radius: 2px;
}

.hiw-cta {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bg-alt);
  font-size: 0.95rem;
  color: var(--muted);
}

.hiw-cta-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.hiw-cta-link:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 640px) {
  .hiw-wrap { padding: 100px 1.25rem 70px; }
}


/* ─── AREA PAGE ─── */
body .area-opening {
  padding: 140px 2rem 0;
  max-width: 820px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

body .area-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 3rem;
}

body .area-hero-photo {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  box-sizing: border-box;
}

body .area-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0 2rem;
  background: rgba(180, 130, 80, 0.07);
  mix-blend-mode: multiply;
  pointer-events: none;
}

body .area-hero-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(10%) saturate(0.9) brightness(1.02);
}

body .area-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem 100px;
  box-sizing: border-box;
  width: 100%;
}

.area-body p,
.area-text-part p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.area-body a,
.area-text-part a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.area-body a:hover,
.area-text-part a:hover { color: var(--accent); border-color: var(--accent); }

.pull-quote {
  position: relative;
  float: right;
  width: 230px;
  margin: 0.25rem -1rem 1.25rem 2rem;
  padding: 1.5rem 2.25rem;
  shape-outside: ellipse(52% 50%);
}

.pull-quote svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--accent);
  pointer-events: none;
}

.pull-quote p {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem !important;
  line-height: 1.5;
  text-align: center;
  color: var(--text) !important;
  margin-bottom: 0 !important;
  z-index: 1;
}

.area-cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bg-alt);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  clear: both;
}

.area-cta p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  .area-opening { padding: 100px 1.25rem 0; }
  .area-hero-photo { padding: 0 1.25rem; }
  .area-hero-photo img { height: 240px; }
  .area-body { padding: 3rem 1.25rem 70px; }
  .pull-quote {
    float: none;
    width: auto;
    max-width: 280px;
    margin: 2.5rem auto;
    padding: 1.75rem 2.5rem;
    shape-outside: none;
  }
}

/* ─── FEES PAGE ─── */
.fees-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 140px 2rem 100px;
  box-sizing: border-box;
}

.fees-wrap .page-heading {
  margin-bottom: 3rem;
}

.fees-statement {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--bg-alt);
  margin-bottom: 3rem;
}

.fees-amount {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.fees-statement p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.faq-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--bg-alt);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--bg-alt);
}

.faq-q {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-a {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.faq-a a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.faq-a a:hover { color: var(--accent); border-color: var(--accent); }

.fees-cta {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bg-alt);
  font-size: 0.95rem;
  color: var(--muted);
}

.fees-cta a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.fees-cta a:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 640px) {
  .fees-wrap { padding: 100px 1.25rem 70px; }
}

/* ─── PRIVACY PAGE ─── */
.privacy-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 140px 2rem 100px;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .privacy-wrap { padding: 100px 1.25rem 70px; }
}

/* ─── MISC ─── */
.label-note {
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.avail-note a { color: var(--text); }

/* ─── EXISTING PRIVACY PAGE ─── */
.privacy-content h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.privacy-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bg-alt);
  line-height: 1.4;
}

.privacy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.privacy-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.privacy-content p:last-child { margin-bottom: 0; }

.privacy-content a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.privacy-content a:hover { color: var(--accent); border-color: var(--accent); }

.privacy-content > p:first-of-type {
  font-size: 1.05rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--bg-alt);
  margin-bottom: 2.5rem;
}
/* ─── LOCATION PAGE ─── */

.location-section {
  margin-bottom: 3.5rem;
}

.location-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bg-alt);
}

.location-section p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.location-section a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-transport {
  display: grid;
  gap: 1.5rem;
}

.location-transport-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem !important;
}

.location-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.location-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}