/* Olive Branch Laine — shared styles */
:root {
  --olive: #6b7a4f;
  --olive-dark: #4f5c3a;
  --olive-light: #eef0e6;
  --cream: #faf7f0;
  --sand: #f3ede1;
  --ink: #3a3a33;
  --ink-soft: #6d6d63;
  --accent: #a8b58a;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 { font-weight: normal; color: var(--olive-dark); line-height: 1.3; }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--olive-dark); }

.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* Header / nav */
header {
  background: var(--cream);
  border-bottom: 1px solid #e4ddcf;
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "brand book" "nav nav"; align-items: center; gap: 0.85rem 1rem; }
.header-inner .brand { grid-area: brand; }
.header-inner nav { grid-area: nav; }
.header-inner .nav-book { grid-area: book; justify-self: end; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--olive-dark); text-decoration: none; }
.brand-mark { width: 52px; height: 52px; flex-shrink: 0; color: var(--olive); }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.85rem; letter-spacing: 0.5px; white-space: nowrap; }
.brand-name em { color: var(--olive); font-style: italic; }
.brand small { font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; }
.creds { display: inline-block; margin: 0.2rem 0; font-size: 0.82rem; line-height: 1.5; color: #e7ead9; }
nav { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 0.8rem; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
nav a { text-decoration: none; color: var(--ink-soft); padding-bottom: 2px; }
nav a:hover, nav a.active { color: var(--olive-dark); border-bottom: 2px solid var(--accent); }

/* Hero */
.hero { background: linear-gradient(160deg, var(--olive-light), var(--cream) 70%); padding: 5rem 0 4.5rem; text-align: center; }
.hero h1 { font-size: 1.9rem; max-width: 720px; margin: 0 auto 1rem; }
.hero p.lede { max-width: 620px; margin: 0 auto 2rem; font-size: 1.15rem; color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-block;
  background: #0e7a54;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(14,122,84,0.32);
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: #0a5c40; transform: translateY(-1px); }
.btn.secondary { background: transparent; color: var(--olive-dark); border: 1px solid var(--olive); box-shadow: none; margin-left: 0.75rem; }
.btn.secondary:hover { background: var(--olive-light); }

/* Sections */
section.band { padding: 3.5rem 0; }
section.band.alt { background: var(--sand); }
.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 1.5rem; }
.card { background: #fff; border: 1px solid #e8e2d4; border-radius: 6px; padding: 1.8rem; }
.card h3 { color: var(--olive); }
.card a { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; }

/* Page intro */
.page-intro { background: var(--olive-light); padding: 3rem 0 2.5rem; }
.page-intro h1 { font-size: 2rem; }
.page-intro p { color: var(--ink-soft); max-width: 640px; margin-top: 0.5rem; }

main .container > h2 { margin-top: 2.5rem; }
main { padding-bottom: 3.5rem; }
.prose { max-width: 700px; }
.prose ul { margin: 0 0 1rem 1.4rem; }
.prose li { margin-bottom: 0.4rem; }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink-soft);
}

/* Notice + placeholder */
.notice { background: var(--olive-light); border: 1px solid var(--accent); border-radius: 6px; padding: 1.2rem 1.5rem; margin: 1.5rem 0; font-size: 0.95rem; }
.placeholder { background: #fdf3d7; border: 1px dashed #d4b95e; border-radius: 4px; padding: 0.15rem 0.45rem; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85em; color: #7a6320; }

/* FAQ */
details { background: #fff; border: 1px solid #e8e2d4; border-radius: 6px; margin-bottom: 0.75rem; padding: 1rem 1.4rem; }
details summary { cursor: pointer; color: var(--olive-dark); font-size: 1.05rem; }
details[open] summary { margin-bottom: 0.6rem; }

/* Tables */
table { border-collapse: collapse; width: 100%; max-width: 640px; margin: 1rem 0 1.5rem; background: #fff; }
th, td { border: 1px solid #e4ddcf; padding: 0.7rem 1rem; text-align: left; font-size: 0.95rem; }
th { background: var(--olive-light); font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--olive-dark); }

/* CTA band */
.cta-band { background: var(--olive-light); color: var(--ink); text-align: center; padding: 3rem 0; border-top: 1px solid #dde2cf; border-bottom: 1px solid #dde2cf; }
.cta-band h2 { color: var(--olive-dark); }
.cta-band p { color: var(--ink); max-width: 560px; margin: 0.5rem auto 1.5rem; }

/* Footer */
footer { background: var(--olive-dark); color: #d9ddc9; padding: 2.5rem 0; font-size: 0.9rem; }
footer .container { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
footer a { color: #eef0e6; }
footer .fine { font-size: 0.8rem; color: #b3bba0; margin-top: 0.75rem; }

/* Subtle interactivity */
.card, .mr-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover, .mr-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(79, 92, 58, 0.12); }

.js-anim .fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-anim .fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .fade-in { opacity: 1; transform: none; transition: none; }
  .card:hover, .mr-card:hover { transform: none; }
}

/* What We Won't Do */
.wont-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.wont-list li { background: #fff; border: 1px solid #e8e2d4; border-left: 4px solid var(--accent); border-radius: 6px; padding: 1.1rem 1.4rem; font-size: 1.02rem; }
.wont-list li strong { color: var(--olive-dark); }

/* Myth vs Reality */
.mr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.mr-card { background: #fff; border: 1px solid #e8e2d4; border-radius: 8px; overflow: hidden; }
.mr-card .myth { padding: 1rem 1.4rem; background: #f5efe3; border-bottom: 1px solid #e8e2d4; }
.mr-card .reality { padding: 1rem 1.4rem 1.25rem; }
.mr-tag { display: inline-block; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.6rem; border-radius: 20px; margin-bottom: 0.4rem; }
.mr-tag.m { background: #d9cfae; color: #6a5c33; }
.mr-tag.r { background: var(--olive-light); color: var(--olive-dark); }
.mr-card p { margin: 0; font-size: 0.98rem; }
.mr-card .myth p { color: var(--ink-soft); font-style: italic; }

/* Fit checklist */
.fit-list { list-style: none; margin: 1.25rem 0; padding: 0; max-width: 680px; }
.fit-list li { position: relative; padding: 0.55rem 0 0.55rem 2.3rem; font-size: 1.05rem; border-bottom: 1px dashed #e4ddcf; }
.fit-list li::before { content: "✓"; position: absolute; left: 0.25rem; top: 0.45rem; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--olive); color: #fff; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }

/* Video block */
.video-block { background: linear-gradient(150deg, var(--olive-dark), var(--olive)); border-radius: 10px; padding: 3rem 2rem; text-align: center; color: #fff; margin-top: 1.5rem; }
.video-block h3 { color: #fff; font-size: 1.4rem; }
.video-block p { color: #e4e8d8; max-width: 520px; margin: 0.5rem auto 1.5rem; }
.play-circle { width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,0.92); margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.25s ease; }
.play-circle:hover { transform: scale(1.08); }
.play-circle::after { content: ""; border-left: 22px solid var(--olive-dark); border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.gallery figure { margin: 0; border-radius: 8px; overflow: hidden; background: var(--olive-light); border: 1px dashed var(--accent); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; }
.gallery figure span { color: var(--olive-dark); font-size: 0.9rem; font-style: italic; }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 640px) {
  h1 { font-size: 1.8rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .btn.secondary { margin-left: 0; margin-top: 0.75rem; }
}

/* Insurance-forward trust bar (below hero) */
.trust-bar { background: transparent; color: var(--olive-dark); font-family: 'Helvetica Neue', Arial, sans-serif; padding: 0 1.5rem; }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 2.2rem; margin: 2rem auto; padding: 1rem 1.5rem; font-size: 0.92rem; letter-spacing: 0.02em; text-align: center; background: var(--olive-light); border: 2px dashed var(--accent); border-radius: 10px; }
.trust-bar strong { font-weight: 600; color: var(--olive-dark); }

/* Profile header (About page, and future staff profiles) */
.profile-header { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.profile-photo { flex: 0 0 190px; width: 190px; height: 230px; border-radius: 8px; background: #fff; border: 1px dashed #c4bba4; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0.75rem; overflow: hidden; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.profile-meta { flex: 1 1 300px; }
.profile-meta h1 { margin-bottom: 0.4rem; }
.profile-meta p { margin-top: 0; }

/* What We Help With — category cards */
.cond-grid { margin-top: 1.5rem; align-items: start; }
.cond-grid .card h3 { margin-bottom: 0.4rem; }
.cond-grid .card ul { margin: 0 0 0 1.1rem; padding: 0; }
.cond-grid .card li { margin-bottom: 0.45rem; font-size: 0.95rem; line-height: 1.45; color: var(--ink); }

/* Contact & Get Started page */
.trust-line { text-align: center; color: var(--olive-dark); font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.9rem; letter-spacing: 0.02em; background: var(--olive-light); border-radius: 8px; padding: 0.85rem 1rem; margin: 1.5rem 0; }
.phone-cta { display: inline-block; background: var(--olive-light); border: 1px solid var(--accent); border-radius: 8px; padding: 0.9rem 1.4rem; font-size: 1.15rem; color: var(--olive-dark); }
.inquiry-form { display: grid; gap: 1rem; max-width: 640px; margin: 1.25rem 0; }
.inquiry-form .row2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.inquiry-form label { display: block; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--olive-dark); margin-bottom: 0.3rem; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 0.7rem 0.8rem; border: 1px solid #d9d2c2; border-radius: 6px; background: #fff; font-family: inherit; font-size: 1rem; color: var(--ink); }
.inquiry-form textarea { min-height: 120px; resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(107,122,79,0.15); }
.map-placeholder { background: #fff; border: 1px dashed #c4bba4; border-radius: 8px; min-height: 200px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.5rem; margin: 1rem 0; }

/* What to Expect — quick jump nav */
.quicknav { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 0 0 2.5rem; }
.quicknav a { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--olive-dark); background: var(--olive-light); border: 1px solid var(--accent); border-radius: 999px; padding: 0.4rem 0.9rem; text-decoration: none; transition: background 0.2s ease, color 0.2s ease; }
.quicknav a:hover { background: var(--olive); color: #fff; border-color: var(--olive); }
main [id] { scroll-margin-top: 140px; }

/* Footer horizontal links */
.footer-links { display: flex; flex-wrap: wrap; align-items: center; margin-bottom: 0.85rem; }
.footer-links a { padding: 0 0.9rem; border-left: 1px solid #6f7b58; line-height: 1.2; }
.footer-links a:first-child { padding-left: 0; border-left: none; }

/* Lists inside cards (comparison cards, etc.) */
.card ul { margin: 0.5rem 0 0 1.1rem; padding: 0; }
.card li { margin-bottom: 0.4rem; font-size: 0.95rem; line-height: 1.45; color: var(--ink); }

/* Hero practice-name title */
.hero-brand { font-family: Georgia, 'Times New Roman', serif; font-size: 2.4rem; line-height: 1.15; color: var(--olive-dark); letter-spacing: 0.5px; margin: 0 auto 0.6rem; }
.hero-brand em { color: var(--olive); font-style: italic; }

/* Cost page private-pay cards */
.privatepay-grid { margin-top: 1.25rem; align-items: stretch; }
.privatepay-grid .card p { margin-bottom: 0.7rem; }
.privatepay-grid .card p:last-child { margin-bottom: 0; }
.oon-ask { background: var(--olive-light); border-left: 3px solid var(--accent); padding: 0.6rem 0.8rem; border-radius: 4px; font-style: italic; }

/* Cost page: highlighted insurance block */
.insurance-block { background: var(--olive-light); border: 1px solid var(--accent); border-radius: 10px; padding: 1.5rem 1.75rem; margin: 1.75rem 0; }
.insurance-block h3 { margin-bottom: 0.9rem; }
.insurance-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 0.9rem; }
.insurance-pills span { background: #fff; border: 1px solid #cdd3bd; border-radius: 999px; padding: 0.45rem 1.1rem; font-size: 0.95rem; color: var(--olive-dark); }
.insurance-block .fine { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }

/* Careers: hiring status badge */
.hiring-badge { display: inline-block; background: var(--olive); color: #fff; border-radius: 999px; padding: 0.35rem 1rem; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* Hero decorative olive-branch art */
.hero { position: relative; overflow: hidden; }
.hero-art { position: absolute; top: 8%; left: 50%; transform: translateX(-50%); width: min(620px, 85%); color: var(--accent); opacity: 0.32; pointer-events: none; animation: sway 9s ease-in-out infinite; }
.hero-art svg { width: 100%; height: auto; }
.hero .container { position: relative; z-index: 1; }
@keyframes sway { 0%,100% { transform: translateX(-50%) rotate(-1.2deg); } 50% { transform: translateX(-50%) rotate(1.2deg); } }

/* Book Now: standout nav button */
.nav-book { background: #b5673d; color: #fff !important; border-radius: 999px; padding: 0.7rem 1.6rem; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.08em; box-shadow: 0 2px 8px rgba(181,103,61,0.3); transition: background 0.2s ease, transform 0.2s ease; }
.nav-book:hover { background: #9a562f; border-bottom: none !important; transform: translateY(-1px); }
nav a.nav-book:hover, nav a.nav-book.active { border-bottom: none; }



@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none; }
  .nav-book:hover { transform: none; }
}

/* Services: icon cards */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.svc-card { background: #fff; border: 1px solid #e8e2d4; border-radius: 10px; padding: 1.75rem 1.5rem 1.5rem; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(79,92,58,0.13); }
.svc-icon { width: 46px; height: 46px; color: var(--olive); margin-bottom: 0.9rem; }
.svc-card h3 { color: var(--olive-dark); margin-bottom: 0.15rem; }
.svc-who { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.7rem; }
.svc-card > p { font-size: 0.97rem; line-height: 1.55; margin-bottom: 1.1rem; }
.svc-actions { margin-top: auto; display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1rem; }
.btn.small { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.svc-learn { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; color: var(--olive-dark); }

/* Hero: two-column layout with image spot */
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center; text-align: left; }
.hero-copy .hero-brand, .hero-copy h1 { margin-left: 0; margin-right: 0; }
.hero-copy .lede { margin-left: 0; margin-right: 0; max-width: none; }
.hero-actions { margin: 0; }
.hero-photo { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(79,92,58,0.15); }
.hero-photo img, .hero-photo-art { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.hero-photo-note { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); white-space: nowrap; font-size: 0.75rem; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-photo { max-width: 460px; margin: 0 auto; }
}

/* Book Now: emerald, aligned right */
.nav-book { background: #0e7a54; box-shadow: 0 2px 8px rgba(14,122,84,0.32); }
.nav-book:hover { background: #0a5c40; }
@media (max-width: 620px) {
  .header-inner { grid-template-columns: 1fr; grid-template-areas: "brand" "book" "nav"; }
  .header-inner .nav-book { justify-self: start; }
}

/* About page: visual treatment */
.sec-head { display: flex; align-items: center; gap: 0.7rem; }
.sec-icon { width: 38px; height: 38px; flex-shrink: 0; color: var(--olive); }
.lead-para { font-size: 1.28rem; line-height: 1.6; color: var(--olive-dark); margin: 1rem 0 1.25rem; max-width: 720px; }

.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.who-card { background: #fff; border: 1px solid #e8e2d4; border-top: 3px solid var(--accent); border-radius: 8px; padding: 1.1rem 1.2rem; }
.who-card h3 { font-size: 1.02rem; color: var(--olive-dark); margin-bottom: 0.3rem; }
.who-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.45; }

.topic-grid { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 0.6rem 1.5rem; }
.topic-grid li { position: relative; padding: 0.55rem 0 0.55rem 1.9rem; border-bottom: 1px dashed #ddd6c6; font-size: 0.98rem; }
.topic-grid li::before { content: ""; position: absolute; left: 0; top: 0.95rem; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }

.modality-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.5rem 0 1.25rem; }
.modality-pills span { background: var(--olive-light); border: 1px solid var(--accent); color: var(--olive-dark); border-radius: 999px; padding: 0.45rem 1.1rem; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; letter-spacing: 0.03em; }

.pull-quote { margin: 1.5rem 0; padding: 1.25rem 1.5rem; border-left: 4px solid var(--olive); background: #fff; border-radius: 0 8px 8px 0; font-size: 1.18rem; line-height: 1.55; font-style: italic; color: var(--olive-dark); max-width: 720px; }

.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.cred-card { background: #fff; border: 1px solid #e8e2d4; border-radius: 8px; padding: 1.3rem 1.4rem; }
.cred-card h3 { font-size: 1rem; color: var(--olive-dark); margin-bottom: 0.3rem; }
.cred-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* About: closing personal photo beside the writing */
.about-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: center; margin-top: 1rem; }
.about-photo { background: #fff; border: 1px dashed #c4bba4; border-radius: 10px; aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.25rem; overflow: hidden; box-shadow: 0 8px 22px rgba(79,92,58,0.12); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
@media (max-width: 780px) {
  .about-split { grid-template-columns: 1fr; }
  .about-photo { max-width: 340px; margin: 0 auto; aspect-ratio: 4 / 3; }
}

/* Soft secondary note under primary CTA */
.cta-note { display: block; margin-top: 0.9rem; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; color: var(--ink-soft); }
.cta-band .cta-note { color: var(--ink-soft); }

/* Book Now: top booking panel */
.book-panel { background: var(--olive-light); border: 2px solid var(--accent); border-radius: 12px; padding: 2rem 1.9rem; margin-bottom: 2.5rem; text-align: center; }
.book-status { display: inline-block; background: #0e7a54; color: #fff; border-radius: 999px; padding: 0.3rem 1rem; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 0.75rem; }
.book-panel h2 { margin: 0 0 0.4rem; }
.book-sub { color: var(--ink-soft); max-width: 560px; margin: 0 auto 1.4rem; }
.book-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 1.6rem; }
.availability { background: #fff; border: 1px solid #dcd6c6; border-radius: 10px; padding: 1.25rem 1.4rem; }
.availability h3 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive-dark); font-family: 'Helvetica Neue', Arial, sans-serif; margin-bottom: 0.9rem; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.6rem; margin-bottom: 0.9rem; }
.slot-grid .placeholder { padding: 0.65rem 0.5rem; text-align: center; }
.availability .fine { margin: 0; color: var(--ink-soft); font-size: 0.85rem; }

/* Compact booking bar (Cost page and similar) */
.book-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; background: var(--olive-light); border: 2px solid var(--accent); border-radius: 10px; padding: 1rem 1.4rem; margin-bottom: 2rem; }
.book-bar strong { color: var(--olive-dark); }
