:root {
  --color-bg: #f0f7f4;
  --color-bg-alt: #e3f0ea;
  --color-surface: #ffffff;
  --color-text: #142820;
  --color-muted: #4a6358;
  --color-accent: #1a6b5c;
  --color-accent-deep: #0f4539;
  --color-accent-light: #2d9a82;
  --color-violet: #6b4a8a;
  --color-teal: #2a7a8a;
  --color-gold: #c49a3c;
  --color-coral: #c45a4a;
  --gradient-hero: linear-gradient(135deg, #e8f5f0 0%, #d4ebe3 35%, #f5ebe0 70%, #e8eef5 100%);
  --gradient-cta: linear-gradient(120deg, #0f4539 0%, #1a6b5c 40%, #2a7a8a 100%);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --shadow: 0 16px 48px rgba(20, 40, 32, 0.12);
  --shadow-soft: 0 8px 24px rgba(20, 40, 32, 0.08);
  --radius: 16px;
  --max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-light);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 720px);
  margin-inline: auto;
}

.center {
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 107, 92, 0.12);
  box-shadow: 0 2px 20px rgba(20, 40, 32, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.logo-text small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--gradient-cta);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(26, 107, 92, 0.35);
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(107, 74, 138, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 5% 90%, rgba(26, 107, 92, 0.2), transparent);
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: #a8e6cf;
  top: 10%;
  right: 5%;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #d4b8e8;
  bottom: 20%;
  left: 40%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #f5d89a;
  top: 50%;
  left: 10%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0.5rem 0 1rem;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--color-accent), var(--color-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0;
}

.eyebrow a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 154, 60, 0.45);
  transition: color 0.2s, border-color 0.2s;
}

.eyebrow a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.lead {
  font-size: 1.12rem;
  color: var(--color-muted);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stats div {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(26, 107, 92, 0.15);
}

.hero-stats strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-accent);
}

.hero-stats span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.portrait-frame {
  display: inline-block;
  max-width: 100%;
  padding: 6px;
  border: 2px solid rgba(26, 107, 92, 0.22);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85) 0%, rgba(232, 245, 240, 0.75) 100%);
  box-shadow:
    0 4px 24px rgba(26, 107, 92, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  line-height: 0;
}

.hero-portrait {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  image-rendering: auto;
}

.hero-visual {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: center;
}

.hero-badge span {
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid rgba(26, 107, 92, 0.2);
  color: var(--color-accent-deep);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

/* Visual strip / pillars (home section 2) */
.visual-strip.pillars-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 182, 217, 0.18), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(232, 180, 168, 0.14), transparent 38%),
    var(--color-bg);
  padding: 4rem 0 4.5rem;
  overflow: visible;
}

.visual-strip-track,
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.visual-strip figure,
.pillar-card {
  margin: 0;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.visual-strip figure:hover .strip-img,
.pillar-card:hover .strip-img {
  transform: scale(1.05);
}

.visual-strip figcaption,
.pillar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  color: #fff;
}

.pillar-card--sage .pillar-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 40, 32, 0.05) 0%,
    rgba(20, 40, 32, 0.15) 40%,
    rgba(26, 107, 92, 0.84) 100%
  );
}

.pillar-card--lavender .pillar-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 40, 32, 0.05) 0%,
    rgba(20, 40, 32, 0.12) 38%,
    rgba(107, 74, 138, 0.86) 100%
  );
}

.pillar-card--peach .pillar-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 40, 32, 0.05) 0%,
    rgba(20, 40, 32, 0.1) 36%,
    rgba(196, 90, 74, 0.86) 100%
  );
}

.pillar-label {
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pillar-caption {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.pillar-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(26, 107, 92, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-accent-deep) !important;
  border-color: rgba(26, 107, 92, 0.25);
}

.btn-outline {
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
  background: transparent;
}

.btn-outline-light {
  border-color: #fff;
  color: #fff !important;
}

.btn-text {
  padding: 0;
  background: none;
  border: none;
  color: var(--color-accent);
  font-weight: 600;
  box-shadow: none;
}

.btn-text:hover {
  transform: none;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--color-bg-alt);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  margin: 0;
  color: var(--color-accent-deep);
}

.section-header--stacked {
  display: block;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-header--stacked h2 {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

.section-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 34rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.intro-strip blockquote {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
  color: var(--color-accent);
  border-left: 4px solid var(--color-gold);
  padding-left: 1.25rem;
}

/* Service cards with images */
.services-preview {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 107, 92, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 69, 57, 0.55) 100%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-img::after {
  opacity: 1;
}

.service-card-photo,
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover .service-card-photo,
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
}

.service-card-body {
  padding: 1.35rem 1.4rem 1.6rem;
  border-top: 4px solid var(--card-accent, var(--color-accent));
}

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--color-accent-deep);
  line-height: 1.2;
}

.service-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.about-teaser {
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 100%);
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.rounded-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.check-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent-light);
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* Post cards */
.post-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s;
}

.post-card:hover {
  transform: translateY(-3px);
}

.post-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.post-card:hover .post-card-img {
  transform: scale(1.06);
}

.post-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(15, 69, 57, 0.35));
  pointer-events: none;
}

.post-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card time {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
}

.post-card h3 {
  font-family: var(--font-display);
  margin: 0.35rem 0 0.5rem;
  font-size: 1.28rem;
}

.post-card h3 a {
  text-decoration: none;
  color: inherit;
}

.read-more {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Page banner */
.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-banner-media {
  position: absolute;
  inset: 0;
}

.page-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 69, 57, 0.92) 0%, rgba(26, 107, 92, 0.75) 45%, rgba(107, 74, 138, 0.5) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.5rem;
  color: #fff;
}

.page-banner-content .eyebrow {
  color: #f5d89a;
}

.page-banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0.25rem 0 0.5rem;
  max-width: 18ch;
}

.page-banner-content .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 50ch;
}

.page-banner--about {
  min-height: 320px;
  align-items: flex-end;
}

.page-banner--about .page-banner-content {
  padding-bottom: 1.25rem;
  transform: translateY(0.65rem);
}

.page-banner--about .page-banner-content h1 {
  margin-top: 0;
  font-weight: 700;
}

.page-banner--about .page-banner-content .lead {
  font-weight: 700;
  text-transform: capitalize;
}

.page-about .about-main {
  padding-top: 2.5rem;
}

.page-about .about-content-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}

.page-about .about-closing {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  max-width: 28rem;
  align-self: flex-start;
}

.page-about .about-closing-icon {
  margin: 0;
  flex-shrink: 0;
  width: 88px;
}

.page-about .about-closing .healing-icon-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
}

.page-about .about-closing-text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-text);
}

/* Gallery */
.gallery-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-three figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Content layouts */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  color: var(--color-accent-deep);
}

.prose ul {
  padding-left: 1.25rem;
}

.inline-portrait {
  float: right;
  width: min(280px, 40%);
  margin: 0 0 1rem 1.5rem;
}

.sidebar-card {
  background: var(--color-surface);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 107, 92, 0.12);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.sidebar-photo {
  padding: 0;
  overflow: hidden;
}

.sidebar-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.accent-card {
  background: linear-gradient(160deg, #e8f5f0, #f5ebe8);
}

.accent-card p {
  padding: 1rem 1.25rem 1.25rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list a {
  text-decoration: none;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(26, 107, 92, 0.2);
  border-radius: 10px;
  font: inherit;
  background: var(--color-surface);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: #d4f0e4;
  color: #0f4539;
}

.post-meta {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.post-back {
  margin-top: 2.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.tag-list li {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  background: var(--color-bg-alt);
  border-radius: 999px;
  color: var(--color-accent);
  font-weight: 500;
}

.empty-state {
  text-align: center;
  color: var(--color-muted);
  padding: 3rem;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
}

.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/therapy-session.webp") center/cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  color: #fff;
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 2.1rem;
}

.cta-band p {
  opacity: 0.92;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #142820 0%, #0a1812 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 0;
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-grid h4 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  color: #a8e6cf;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.88rem;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .hero-grid,
  .content-grid,
  .intro-grid,
  .about-teaser-grid {
    grid-template-columns: 1fr;
  }

  .visual-strip-track,
  .pillars-grid,
  .gallery-three {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    aspect-ratio: 4 / 5;
  }

  .pillar-caption {
    font-size: 1.75rem;
  }

  .inline-portrait {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid rgba(26, 107, 92, 0.15);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.open {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .about-promo-row {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Promo gallery (custom temp images) */
.promo-gallery {
  background: linear-gradient(180deg, #faf5fc 0%, #eef7f3 100%);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 1.25rem;
  align-items: stretch;
}

.promo-grid-compact {
  grid-template-columns: 1fr 1fr;
  max-width: 820px;
  margin-inline: auto;
}

.promo-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.promo-card-vertical .promo-img {
  object-fit: contain;
  background: linear-gradient(160deg, #f3e8ff, #e8f5f0);
}

.promo-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promo-icon-card {
  margin: 0;
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.promo-icon {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto;
}

.promo-icon-card figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

.logo-img {
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.contain-img {
  object-fit: contain !important;
  background: #f4f9f7;
  aspect-ratio: 1;
}

/* Video section */
.video-section {
  background: var(--color-surface);
}

.center-header {
  text-align: center;
  display: block;
  margin-bottom: 2rem;
}

.center-header h2 {
  margin: 0.25rem 0;
}

.section-lead {
  max-width: 52ch;
  margin: 0.5rem auto 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.video-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26, 107, 92, 0.12);
  box-shadow: var(--shadow-soft);
}

.video-player {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: #0a1812;
  vertical-align: middle;
}

.video-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
  color: var(--color-accent-deep);
}

.video-cta {
  text-align: center;
  margin-top: 2rem;
}

/* About page custom layout */
.about-intro-visual {
  padding-top: 0;
  margin-top: -1rem;
}

.about-promo-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1.5rem;
  align-items: start;
}

.about-promo-main,
.about-promo-side {
  margin: 0;
}

.promo-vertical-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.healing-icon-large {
  margin: 0 auto 1rem;
  max-width: 280px;
}

.healing-icon-img {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.about-teaser-img,
.about-promo-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-photo {
  width: auto;
  max-width: min(100%, 380px);
  height: auto;
  max-height: none;
  object-fit: unset;
  aspect-ratio: unset;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
