/* =========================================================
   Ensō Therapeutic Wellness — Shared Stylesheet
   Palette: Sage & Cream  •  Timeless, calm, clinical
   ========================================================= */

:root {
  --sage:        #8A9A8B;
  --sage-deep:   #3D4A3F;
  --sage-soft:   #B8C2B5;
  --cream:       #F5F1EA;
  --cream-warm:  #FAF8F4;
  --clay:        #C9A88A;
  --clay-deep:   #A6845C;
  --ink:         #2C2E2A;
  --slate:       #5C5C56;
  --line:        #E5DFD3;
  --shadow:      0 4px 20px rgba(60, 70, 60, 0.06);
  --shadow-lg:   0 12px 40px rgba(60, 70, 60, 0.10);
  --radius:      4px;
  --radius-lg:   12px;
  --max:         1200px;
  --serif:       'Cormorant Garamond', 'Garamond', Georgia, serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream-warm);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sage); }

p { margin: 0 0 1.1em; color: var(--slate); }
a { color: var(--sage-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--clay-deep); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1.1em;
}
/* Tappable chips inside an eyebrow — used in the Home hero to let scanners jump straight to a treatment */
.eyebrow a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.eyebrow a:hover,
.eyebrow a:focus {
  border-bottom-color: currentColor;
  outline: none;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--clay);
  margin: 1.4em auto;
  border: none;
}

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.text-center { text-align: center; }

/* ---------- Header ---------- */
/* Anchor-link target compensation — the sticky site-header sits over the top
   of the page (~90px). Without this, jumping to #bowen etc. hides the
   section heading behind the header. scroll-margin-top tells the browser
   to leave space at the top of the target when scrolling to it. */
section[id], [class*="sub-modality"][id] {
  scroll-margin-top: 100px;
}
html { scroll-behavior: smooth; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--sage-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
}
.brand-mark img,
.brand-mark svg {
  height: 44px;
  width: auto;
  display: block;
}
.brand-name { font-weight: 500; line-height: 1; }

/* Inline logo (footer / inline use) */
.enso-inline {
  height: 36px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 4px;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--sage-deep);
  cursor: pointer;
  padding: 4px 8px;
}

.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--slate);
  letter-spacing: 0.04em;
  position: relative;
}
.nav-links a:hover:not(.btn), .nav-links a.is-active:not(.btn) { color: var(--sage-deep); }
.nav-links a.is-active:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--clay);
}
/* Booking button keeps its primary styling even when "active" */
.nav-links .btn { padding: 9px 20px; }
.nav-links .btn.btn-primary,
.nav-links .btn.btn-primary.is-active,
.nav-links .btn.btn-primary:hover {
  color: var(--cream-warm);
}
.nav-links .btn.btn-primary:hover { background: var(--ink); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream-warm);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border: none; padding-top: 12px; }
  .nav-links a { display: block; padding: 14px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  text-decoration: none;
}
.btn-primary { background: var(--sage-deep); color: var(--cream-warm); }
.btn-primary:hover { background: var(--ink); color: var(--cream-warm); }
.btn-outline { background: transparent; color: var(--sage-deep); border-color: var(--sage-deep); }
.btn-outline:hover { background: var(--sage-deep); color: var(--cream-warm); }
.btn-clay { background: var(--clay-deep); color: var(--cream-warm); }
.btn-clay:hover { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--sage-deep);
}
/* Semi-transparent dark gradient over hero photos so text stays legible
   regardless of which image sits behind. Applies to .hero and .hero-page. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,55,45,0.30) 0%, rgba(45,55,45,0.55) 100%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,55,45,0.35) 0%, rgba(45,55,45,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;             /* sit above the .hero::before overlay */
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px;
  width: 100%;
}
.hero-content {
  max-width: 640px;
  color: var(--cream-warm);
}
/* Eyebrow on hero: cream (not clay) so it pops against darkened photo;
   gentle shadow gives extra legibility on busy images. */
.hero-content .eyebrow {
  color: var(--cream-warm);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.hero h1 {
  color: var(--cream-warm);
  margin-bottom: .3em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero p.lede {
  color: rgba(245, 241, 234, 0.95);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 2em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero .btn-outline { color: var(--cream-warm); border-color: var(--cream-warm); }
.hero .btn-outline:hover { background: var(--cream-warm); color: var(--sage-deep); }

/* Smaller hero used on inner pages */
.hero-page {
  min-height: 46vh;
  text-align: center;
  background-color: var(--sage);
}
.hero-page .hero-inner { padding: 100px 24px; }
.hero-page .hero-content { margin: 0 auto; text-align: center; }

/* ---------- Sections ---------- */
.section-cream { background: var(--cream); }
.section-warm  { background: var(--cream-warm); }
.section-sage  { background: var(--sage-deep); color: var(--cream); }
.section-sage h2, .section-sage h3 { color: var(--cream-warm); }
.section-sage p { color: rgba(245, 241, 234, 0.85); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .divider { margin: 0 auto 1.6em; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--cream-warm);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 22px;
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Credentials page ---------- */
.credential {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.credential:first-of-type { border-top: none; padding-top: 0; }
.credential-meta h2 { margin-top: 0; }
.credential-card {
  background: var(--cream-warm);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.credential-card h4 {
  margin: 0 0 22px;
  color: var(--clay-deep);
}
.credential-body {
  margin: 0 0 14px;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.5;
}
.credential-body strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--sage-deep);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 2px;
}
.credential-number {
  margin: 18px 0 14px;
  padding: 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.credential-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.credential-value {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sage-deep);
}
.credential-link a {
  font-size: 0.88rem;
  color: var(--clay-deep);
  letter-spacing: 0.04em;
}
.credential-link a:hover { color: var(--ink); }
.credential-divider {
  border: none;
  border-top: 1px dashed var(--line);
  margin: 24px 0;
}

@media (max-width: 760px) {
  .credential {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0;
  }
}

/* ---------- Column-directory layout ---------- */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 56px 48px;
  margin-top: 50px;
  text-align: left;
}
.directory-col { position: relative; }
.directory-col + .directory-col::before {
  content: '';
  position: absolute;
  left: -24px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
@media (max-width: 720px) {
  .directory-col + .directory-col::before { display: none; }
}
.directory-mark {
  width: 32px; height: 32px;
  color: var(--clay-deep);
  margin-bottom: 18px;
}
.directory-mark svg { width: 100%; height: 100%; display: block; }
.directory-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--sage-deep);
  margin: 0 0 6px;
  line-height: 1.2;
  font-weight: 500;
}
.directory-sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--clay);
}
.directory-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.directory-list li {
  border-bottom: 1px solid var(--line);
}
.directory-list li:last-child { border-bottom: none; }
.directory-list a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  color: var(--ink);
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  transition: color .2s ease, transform .2s ease;
}
.directory-list a::before {
  content: '—';
  color: var(--sage-soft);
  flex: 0 0 auto;
  transition: color .2s ease;
}
.directory-list a:hover {
  color: var(--clay-deep);
  transform: translateX(4px);
}
.directory-list a:hover::before { color: var(--clay-deep); }
.directory-list .item-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--slate);
  font-style: italic;
  margin-top: 2px;
  letter-spacing: 0;
}

/* Modality detail block */
.modality {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.modality:first-of-type { border-top: none; }
.modality-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: var(--sage-soft);
}
.modality-image img { width: 100%; height: 100%; object-fit: cover; }
.modality h2 { margin-top: 0; }
.modality .sub-modality {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.modality .sub-modality h3 { font-size: 1.2rem; color: var(--clay-deep); }

@media (max-width: 760px) {
  .modality { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
}

/* ---------- Testimonials ---------- */
.quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--sage-deep);
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.quote-attr {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-top: 1.6em;
}

/* ---------- Forms ---------- */
.form {
  background: var(--cream-warm);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-section {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.form-section:last-of-type { border-bottom: none; }
.form-section h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 24px;
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-deep);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138, 154, 139, 0.18);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-group label,
.radio-group label {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-group input, .radio-group input { margin-top: 5px; accent-color: var(--sage); }
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 16px;
}

@media (max-width: 600px) {
  .form { padding: 28px 22px; }
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--sage-deep);
  position: relative;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--clay-deep);
  font-family: var(--sans);
  font-weight: 300;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item[open] summary { color: var(--clay-deep); }
.faq-answer { padding: 0 0 24px; color: var(--slate); }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-category-title {
  margin-top: 60px;
  margin-bottom: 8px;
}
.faq-category-title:first-of-type { margin-top: 0; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}
.blog-card {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-image {
  aspect-ratio: 16/10;
  background: var(--sage-soft);
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 10px;
}
.blog-card h3 { margin-bottom: 12px; }
.blog-card p { flex: 1; font-size: 0.95rem; }
.blog-card .read-more {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  margin-top: 12px;
}
.blog-card .read-more::after { content: ' →'; transition: transform .2s ease; display: inline-block; }
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* ---------- Booking embed ---------- */
.booking-embed {
  background: #fff;
  border: 1px dashed var(--clay);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--slate);
}
.booking-embed code {
  display: block;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 18px;
  font-size: 0.82rem;
  text-align: left;
  overflow-x: auto;
  color: var(--sage-deep);
}

/* ---------- Info / contact list ---------- */
.info-list {
  list-style: none;
  margin: 0; padding: 0;
}
.info-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border: none; }
.info-list .label {
  flex: 0 0 110px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 500;
  padding-top: 3px;
}
.info-list .value { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 70px 24px 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245,241,234,0.15);
}
.footer-inner h4 {
  font-family: var(--sans);
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-inner p, .footer-inner li { color: rgba(245,241,234,0.78); font-size: 0.92rem; }
.footer-inner ul { list-style: none; margin: 0; padding: 0; }
.footer-inner li { padding: 6px 0; }
.footer-inner a { color: rgba(245,241,234,0.85); }
.footer-inner a:hover { color: var(--clay); }
.footer-brand-line {
  font-family: var(--serif);
  color: var(--cream-warm);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  font-size: 0.82rem;
  color: rgba(245,241,234,0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Newsletter ---------- */
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--slate); }
/* Footer variant — cream-on-translucent works against the dark sage-deep background */
.site-footer .newsletter-form input {
  border: 1px solid rgba(245,241,234,0.25);
  background: rgba(245,241,234,0.08);
  color: var(--cream-warm);
}
.site-footer .newsletter-form input::placeholder { color: rgba(245,241,234,0.5); }
.newsletter-form button {
  padding: 11px 18px;
  background: var(--clay);
  color: var(--sage-deep);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.newsletter-form button:hover { background: var(--clay-deep); color: var(--cream-warm); }

/* ---------- Misc ---------- */
.cta-banner {
  background: var(--sage-deep);
  color: var(--cream-warm);
  text-align: center;
  padding: 90px 24px;
  background-image:
    linear-gradient(180deg, rgba(45,55,45,0.45) 0%, rgba(45,55,45,0.7) 100%),
    url('images/cta-silk.jpg');
  background-size: cover;
  background-position: center;
}
.cta-banner h2 { color: var(--cream-warm); }
.cta-banner p { color: rgba(245,241,234,0.85); max-width: 540px; margin: 0 auto 2em; }

.note {
  background: var(--cream);
  border-left: 3px solid var(--clay);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--slate);
  margin: 24px 0;
}
