:root {
  --linen: #FAF6F0;
  --card: #FFFFFF;
  --terracotta: #A8623F;
  --terracotta-dark: #8B4E30;
  --terracotta-text: #854A30;
  --olive: #6B7456;
  --olive-dark: #565E44;
  --umber: #3D352C;
  --umber-soft: #6B6258;
  --gold: #C9905C;
  --border-soft: rgba(61, 53, 44, 0.12);

  --font-display: 'Playfair Display', serif;
  --font-script: 'Caveat', cursive;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--linen);
  color: var(--umber);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--umber);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--umber-soft); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin: 0 0 0.9em;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* swash accent */
.swash-wrap {
  position: relative;
  font-family: var(--font-script);
  color: var(--terracotta);
  font-weight: 700;
  padding: 0 0.05em;
}
.swash {
  position: absolute;
  left: 0;
  bottom: -0.32em;
  width: 100%;
  height: 0.5em;
  overflow: visible;
}
.swash path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
}
.swash-sm { bottom: -0.28em; }

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-ghost {
  background: transparent;
  border-color: var(--umber);
  color: var(--umber);
}
.btn-ghost:hover { background: rgba(61,53,44,0.06); }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--umber-soft);
}
.main-nav a:hover { color: var(--terracotta); }
.main-nav a.is-current { color: var(--terracotta); font-weight: 600; }
.mobile-nav > a.is-current { color: var(--terracotta); font-weight: 600; }
.nav-cta { padding: 10px 22px; font-size: 14px; }

.has-dropdown { position: relative; }
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: inherit;
  color: var(--umber-soft);
  padding: 0;
}
.dropdown-trigger:hover { color: var(--terracotta); }
.dropdown-trigger svg { width: 9px; height: 9px; transition: transform 0.15s ease; }
.dropdown-menu {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(61,53,44,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 20;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-menu a {
  display: block;
  font-size: 14px;
  color: var(--umber-soft);
  padding: 9px 12px;
  border-radius: 7px;
}
.dropdown-menu a:hover { background: var(--linen); color: var(--terracotta); }
.dropdown-menu a.is-current { color: var(--terracotta); font-weight: 600; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--umber);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 4px 32px 18px;
  border-top: 1px solid var(--border-soft);
}
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--umber-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav > a:last-of-type,
.mobile-nav .mobile-submenu:last-child {
  border-bottom: none;
}
.mobile-nav .mobile-submenu a:last-child { border-bottom: none; }
.mobile-nav.is-open { display: flex; }

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--umber-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
}
.mobile-dropdown-trigger svg {
  width: 10px; height: 10px;
  transition: transform 0.15s ease;
}
.mobile-dropdown-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-submenu.is-open { display: flex; }
.mobile-submenu a { border-bottom: 1px solid var(--border-soft); font-size: 14px; }
.mobile-submenu a:last-child { border-bottom: none; }

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* hero */
.hero {
  position: relative;
  padding: 110px 0 130px;
  overflow: hidden;
  background-image:
    linear-gradient(95deg, rgba(250,246,240,0.88) 0%, rgba(250,246,240,0.82) 35%, rgba(250,246,240,0.55) 60%, rgba(250,246,240,0.3) 100%),
    url('hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; }
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  margin-bottom: 0.6em;
}
.hero-sub {
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2.4em; }

.verse-block {
  max-width: 460px;
  padding-left: 20px;
  border-left: 2px solid var(--terracotta);
}
.verse-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--umber);
  margin-bottom: 0.3em;
}
.verse-ref {
  font-size: 13px;
  color: var(--terracotta-text);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(250,246,240,0.9) 0%, rgba(250,246,240,0.75) 50%, rgba(250,246,240,0.5) 100%),
      url('hero-bg.jpg');
    background-position: center 35%;
  }
}

/* dividers */
.divider { line-height: 0; }
.divider svg { width: 100%; height: 60px; display: block; }
.divider path { fill: var(--card); }
.divider-flip svg { transform: scaleY(-1); }
.divider-flip path { fill: var(--linen); }

/* about */
.about { background: var(--card); padding: 70px 0 90px; }
.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.photo-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #EFE3D3, #E3D2BA);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
}
.photo-label {
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--umber-soft);
  text-align: center;
  line-height: 1.4;
}
.about-text h2 { font-size: 32px; }
.credentials {
  margin: 1.6em 0;
  padding: 18px 22px;
  background: var(--linen);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
}
.credentials-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #965537;
  margin-bottom: 0.6em;
}
.credentials ul { margin: 0; padding-left: 18px; }
.credentials li { font-size: 14px; color: var(--umber-soft); margin-bottom: 0.4em; }
.credentials li:last-child { margin-bottom: 0; }
.disclaimer-inline {
  font-size: 13px;
  color: var(--umber-soft);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin-top: 1.4em;
}

@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; }
  .photo-frame { max-width: 280px; }
}

/* approach */
.approach { background: var(--linen); padding: 80px 0; }
.approach h2 { font-size: 32px; margin-bottom: 1.4em; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 28px;
}
.card-icon {
  color: var(--olive);
  font-size: 22px;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 19px;
  margin-bottom: 0.5em;
}
.card p { font-size: 15px; margin: 0; }

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
}

.specialty-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.specialty-list li {
  font-size: 15px;
  color: var(--umber-soft);
  padding-left: 20px;
  position: relative;
}
.specialty-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--olive);
  border-radius: 50%;
}

@media (max-width: 760px) {
  .specialty-list { grid-template-columns: 1fr; }
}

.specialties-photo {
  position: relative;
  overflow: hidden;
  background-image: url('path-accent.jpg');
  background-size: cover;
  background-position: center 60%;
}
.specialties-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 240, 0.88);
}
.specialties-content { position: relative; z-index: 2; }
.specialties-photo .specialty-list li {
  color: var(--umber);
  font-weight: 500;
}

/* testimonial placeholder */
.testimonial { background: var(--card); padding: 70px 0; text-align: center; }
.testimonial-quote {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--umber-soft);
  line-height: 1.6;
}
.testimonial-note {
  font-size: 13px;
  color: var(--terracotta-text);
  margin-top: 1.2em;
}

/* booking */
.booking { background: var(--card); padding: 80px 0 100px; }
.booking-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.booking h2 { font-size: 32px; }
.booking-sub { font-size: 17px; margin-bottom: 2.2em; }
.booking-embed {
  background: var(--linen);
  border: 1.5px dashed var(--border-soft);
  border-radius: 18px;
  padding: 60px 32px;
  margin-bottom: 1.8em;
}
.embed-placeholder strong { color: var(--umber); font-family: var(--font-display); font-weight: 500; font-size: 18px; }
.embed-note { font-size: 14px; max-width: 440px; margin: 10px auto 0; }
.booking-footnote { font-size: 13px; color: var(--umber-soft); margin: 0; }

/* contact */
.contact { background: var(--linen); padding: 80px 0 100px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact h2 { font-size: 30px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--umber-soft);
  margin-top: 10px;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--card);
  color: var(--umber);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.contact-form button { margin-top: 18px; align-self: flex-start; }
.hidden-field { position: absolute; left: -9999px; }

@media (max-width: 760px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* footer */
.site-footer {
  background: var(--umber);
  color: #E7E1D6;
  padding: 48px 0;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  margin-bottom: 0.6em;
}
.footer-disclaimer {
  font-size: 13px;
  color: #B9B0A2;
  max-width: 720px;
  margin-bottom: 1.2em;
}
.footer-copy { font-size: 13px; color: #A89E90; margin: 0; }

/* focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* simple content pages (bio, distinctives, rates, locations, contact, resources) */
.page-hero {
  background: var(--card);
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 { font-size: clamp(32px, 4.5vw, 46px); margin-bottom: 0.3em; }
.page-hero .eyebrow { margin-bottom: 0.7em; }
.page-hero-sub { font-size: 17px; max-width: 600px; margin: 0; }

.page-content { background: var(--linen); padding: 60px 0 90px; }
.page-content .wrap { max-width: 1140px; }
.page-content .wrap > *:not(.resource-list) { max-width: 760px; }
.page-content .info-card,
.page-content .callout { max-width: 760px; }
.page-content h2 {
  font-size: 26px;
  margin-top: 1.8em;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 16px; line-height: 1.75; }
.page-content ul, .page-content ol {
  padding-left: 22px;
  margin-bottom: 1.4em;
}
.page-content li {
  font-size: 16px;
  color: var(--umber-soft);
  line-height: 1.7;
  margin-bottom: 0.5em;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 20px;
}
.info-card h3 {
  font-size: 17px;
  margin-bottom: 0.5em;
}
.info-card p { margin-bottom: 0; font-size: 15px; }
.info-card .placeholder-rate {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--terracotta-text);
  font-weight: 600;
}

.callout {
  background: var(--card);
  border-left: 3px solid var(--olive);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 1.6em 0;
}
.callout p { margin: 0; font-size: 15px; }

.about-subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.6em;
}
.about-subnav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--umber-soft);
  background: var(--linen);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 8px 16px;
}
.about-subnav a.is-current {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.about-subnav a:hover:not(.is-current) { border-color: var(--terracotta); color: var(--terracotta-text); }

/* simple contact page (non-embedded-form variant reuses .contact styles) */
.simple-contact { background: var(--card); padding: 70px 0 90px; }
.simple-contact .wrap { max-width: 1140px; }
.simple-contact .contact-form { max-width: 560px; }

/* resources page */
.resource-list { display: flex; flex-direction: column; gap: 16px; }
.resource-item {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 22px 24px;
}
.resource-item h3 { font-size: 16px; margin-bottom: 0.3em; }
.resource-item p { font-size: 14px; margin: 0; }
