/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-white:       #ffffff;
  --color-off-white:   #f8f9f7;
  --color-bg-alt:      #f2f4f1;
  --color-green-light: #e8f0e6;
  --color-green-mid:   #c8dbc3;
  --color-green:       #5a8a5a;
  --color-green-dark:  #3d6b3d;
  --color-text:        #2c2c2c;
  --color-text-muted:  #636363;
  --color-text-light:  #8a8a8a;
  --color-border:      #e0e4de;

  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --size-xs:   0.75rem;   /* 12px */
  --size-sm:   0.875rem;  /* 14px */
  --size-base: 1rem;      /* 16px */
  --size-md:   1.125rem;  /* 18px */
  --size-lg:   1.375rem;  /* 22px */
  --size-xl:   1.75rem;   /* 28px */
  --size-2xl:  2.25rem;   /* 36px */
  --size-3xl:  2.5rem;      /* 48px */

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --max-width: 1100px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --transition: 180ms ease;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.05);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: var(--size-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-green); }

ul { list-style: none; }

address { font-style: normal; }

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(var(--size-xl), 4vw, var(--size-3xl)); font-weight: 300; }
h2 { font-size: clamp(var(--size-lg), 3vw, var(--size-2xl)); font-weight: 400; }
h3 { font-size: var(--size-md); font-weight: 500; }

p { color: var(--color-text-muted); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-2xl);
}

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

.section-green {
  background-color: var(--color-green-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: var(--size-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn-primary {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  border-color: var(--color-green-dark);
}

.btn-primary:hover {
  background-color: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

.btn-outline:hover {
  background-color: var(--color-green-dark);
  color: var(--color-white);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-green-dark);
  border-color: var(--color-white);
}

.btn-white:hover {
  background-color: var(--color-green-light);
  color: var(--color-green-dark);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-size: var(--size-md);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.logo-divider {
  color: var(--color-green-mid);
  font-weight: 300;
}

.logo-subtitle {
  font-size: var(--size-sm);
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Nav */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-nav a,
.site-nav .nav-link {
  font-size: var(--size-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: none;
  padding-block: 0.25rem;
  border-bottom: 1.5px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.site-nav a:hover,
.site-nav .nav-link:hover {
  color: var(--color-green-dark);
  border-bottom-color: var(--color-green-mid);
}

.nav-link {
  background: none;
  border-color: transparent;
  font-family: inherit;
  text-align: left;
  cursor: default;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   NAV DROPDOWNS
   ============================================================ */
.site-nav .has-dropdown {
  position: relative;
}

.nav-link-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.dropdown-toggle span {
  display: inline-block;
  transition: transform var(--transition);
}

.site-nav ul.dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 220px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: var(--size-sm);
  color: var(--color-text-muted);
  border-bottom: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: var(--color-off-white);
  color: var(--color-green-dark);
}

@media (min-width: 641px) {
  .site-nav ul.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  /* Rightmost dropdown (Resources) opens toward the left instead of the right,
     so it can never push the page's scrollable width past the viewport. */
  .has-dropdown + .has-dropdown > .dropdown-menu {
    left: auto;
    right: 0;
  }

  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu,
  .has-dropdown.is-open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .has-dropdown:hover .dropdown-toggle span,
  .has-dropdown:focus-within .dropdown-toggle span,
  .has-dropdown.is-open .dropdown-toggle span {
    transform: rotate(180deg);
  }
}

@media (max-width: 640px) {
  .nav-link-row {
    justify-content: space-between;
  }

  .dropdown-toggle {
    padding: 0.875rem 1rem;
    margin: -0.875rem -1rem -0.875rem 0;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    font-size: 0.85rem;
  }

  .site-nav ul.dropdown-menu {
    display: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0.25rem var(--space-md);
    min-width: 0;
  }

  .has-dropdown.is-open .dropdown-toggle span {
    transform: rotate(180deg);
  }

  .site-nav .has-dropdown.is-open > ul.dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(232, 240, 230, 0.78) 0%,
      rgba(248, 249, 247, 0.62) 45%,
      rgba(200, 219, 195, 0.55) 100%
    ),
    url('../images/japanese-landscape-bg.jpg') center / cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: var(--space-2xl);
  padding-left: var(--space-md);
}

@media (max-width: 640px) {
  .hero-content {
    padding-left: var(--space-md);
  }
}

.hero-eyebrow {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: var(--size-md);
  color: var(--color-text);
  max-width: 560px;
  margin-bottom: var(--space-lg);
  line-height: 1.65;
  text-align: justify;
}

.br-desktop { display: inline; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-off-white) 50%, var(--color-green-mid) 100%);
  padding-block: var(--space-2xl);
}

.page-hero > .container {
  position: relative;
  z-index: 2;
}

.page-hero-inner {
  max-width: 680px;
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero p {
  font-size: var(--size-md);
  color: var(--color-text);
  max-width: 560px;
}

@media (max-width: 640px) {
  .page-hero { padding-block: var(--space-xl); }

  .page-hero--dark {
    min-height: 320px;
  }
}

.page-hero--dark {
  min-height: 420px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(135deg,
      rgba(14, 26, 18, 0.78) 0%,
      rgba(14, 26, 18, 0.60) 50%,
      rgba(14, 26, 18, 0.80) 100%
    ),
    var(--hero-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--dark > .container {
  display: flex;
  justify-content: center;
}

.page-hero--dark .page-hero-inner {
  text-align: center;
  margin-inline: auto;
}

.page-hero--dark .page-hero-inner h1 {
  color: var(--color-white);
}

.page-hero--dark .page-hero-inner p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero--photo { --hero-photo: url('../images/contact-background.jpg'); }
.page-hero--about { --hero-photo: url('../images/about-background.jpg'); }
.page-hero--books { --hero-photo: url('../images/books-background.jpg'); }
.page-hero--audio { --hero-photo: url('../images/audio-background.jpg'); }
.page-hero--emergency { --hero-photo: url('../images/emergency-background.jpg'); }

/* ============================================================
   BREATHING CIRCLE (mindfulness banner accent)
   ============================================================ */
.breathing-circle {
  position: absolute;
  right: 16%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .breathing-circle {
    position: static;
    transform: none;
    width: 220px;
    height: 220px;
    margin: 0 auto var(--space-lg);
  }
}

/* ============================================================
   SERVICE PAGE LAYOUT (content + sidebar)
   ============================================================ */
.service-title {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

.service-title h1 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.service-title p {
  font-size: var(--size-md);
  color: var(--color-text-muted);
}

.service-content .top-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.service-content .top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-page-content {
  position: relative;
}

.service-page-content > .container {
  position: relative;
  z-index: 1;
}

.service-leaf-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.service-leaf-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.service-leaf-top {
  width: 220px;
  height: auto;
  top: -40px;
  right: -40px;
  opacity: 0.35;
  transform: rotate(15deg);
}

.service-leaf-bottom {
  width: 260px;
  height: auto;
  bottom: -60px;
  left: -60px;
  opacity: 0.3;
  transform: rotate(-20deg) scaleX(-1);
}

@media (max-width: 640px) {
  .service-leaf-top {
    width: 140px;
    opacity: 0.25;
  }

  .service-leaf-bottom {
    width: 160px;
    opacity: 0.22;
  }
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: var(--space-xl);
  align-items: start;
}

.service-content {
  min-width: 0;
}

.service-content h2,
.service-content h3 {
  margin-bottom: var(--space-sm);
}

.service-content h3 {
  margin-top: var(--space-xl);
}

.service-content p {
  margin-bottom: var(--space-md);
}

.service-content .content-image {
  float: right;
  width: 280px;
  margin: 0 0 var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-content .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-width: 0;
}

.sidebar-card {
  background-color: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.sidebar-card h3 {
  margin-bottom: var(--space-xs);
}

.sidebar-card-lead {
  font-size: var(--size-sm);
  margin-bottom: var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-form .form-row {
  display: flex;
  gap: var(--space-sm);
}

.contact-form .form-row > div {
  flex: 1;
  min-width: 0;
}

@media (max-width: 480px) {
  .contact-form .form-row {
    flex-direction: column;
  }
}

.contact-form label {
  display: block;
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: var(--size-base);
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-green);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
  border: none;
}

.sidebar-contact address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-sm);
}

.sidebar-contact address p:last-child {
  margin-bottom: 0;
}

.sidebar-contact .footer-icon {
  color: var(--color-green);
}

.sidebar-card.sidebar-map {
  padding: 0;
  overflow: hidden;
}

.sidebar-card.sidebar-map .map-embed {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}

.service-content ul.content-list {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
}

.service-content ul.content-list li {
  list-style: disc;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.notice-box {
  background-color: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-green);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.notice-box p {
  margin-bottom: var(--space-sm);
}

.notice-box p:last-child {
  margin-bottom: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--size-sm);
  vertical-align: top;
}

.data-table th {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.data-table td {
  color: var(--color-text-muted);
}

.data-table td a {
  color: var(--color-green-dark);
  font-weight: 500;
}

.data-table tbody tr:hover {
  background-color: var(--color-off-white);
}

.data-table .cover-cell {
  width: 56px;
}

.data-table .cover-cell a {
  display: block;
}

.data-table .cover-cell img {
  width: 44px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.data-table .logo-cell {
  width: 120px;
}

.data-table .logo-cell a {
  display: block;
}

.data-table .logo-cell img {
  width: 100px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

@media (max-width: 640px) {
  .data-table {
    font-size: var(--size-xs);
  }

  .data-table th,
  .data-table td {
    padding: 0.6rem 0.5rem;
  }
}

@media (max-width: 1024px) {
  .service-layout {
    gap: var(--space-lg);
  }
}

@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-sidebar {
    position: static;
  }

  .service-content .content-image {
    float: none;
    width: 100%;
    margin: 0 0 var(--space-md);
  }
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

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

.video-embed {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .map-embed {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   ASSOCIATIONS STRIP
   ============================================================ */
.associations {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-xl);
}

.associations .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.assoc-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-inline: var(--space-lg);
}

.assoc-group:first-child {
  padding-left: 0;
  padding-right: var(--space-xl);
}

.assoc-group:last-child {
  padding-left: var(--space-xl);
  padding-right: 0;
}

.assoc-label {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.assoc-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.assoc-logos img {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter var(--transition), opacity var(--transition);
}

.assoc-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.assoc-divider {
  width: 1px;
  align-self: stretch;
  background-color: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .associations .container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .assoc-group:first-child,
  .assoc-group:last-child {
    padding-inline: 0;
  }

  .assoc-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}

@media (max-width: 480px) {
  .assoc-logos img {
    height: 38px;
    max-width: 90px;
  }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

.intro h2 {
  margin-bottom: var(--space-md);
}

.intro p {
  margin-bottom: var(--space-sm);
}

.intro p:last-of-type {
  margin-bottom: var(--space-lg);
}

.intro-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-header {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-lead {
  font-size: var(--size-md);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .services-grid--3 {
    grid-template-columns: 1fr;
  }
}

.media-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.media-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-green-mid);
}

.media-cover {
  flex-shrink: 0;
  width: 90px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--color-off-white);
}

.media-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-body h3 {
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.media-body p {
  font-size: var(--size-sm);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 480px) {
  .media-card {
    flex-direction: column;
  }

  .media-cover {
    width: 100px;
  }
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-green-mid);
}

.service-image {
  margin: calc(var(--space-lg) * -1) calc(var(--space-lg) * -1) var(--space-md);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.service-card p {
  font-size: var(--size-sm);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.service-card .btn {
  padding: 0.5rem 1.1rem;
  font-size: var(--size-xs);
}

/* ============================================================
   THERAPY FOCUS
   ============================================================ */
.focus-inner {
  max-width: 960px;
  margin-inline: auto;
}

.focus-heading {
  margin-bottom: var(--space-lg);
}

.focus-heading h2 {
  margin-bottom: var(--space-sm);
}

.focus-heading p {
  font-size: var(--size-md);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-lg);
}

.focus-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.focus-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green-light);
  color: var(--color-green-dark);
}

.focus-icon svg {
  width: 22px;
  height: 22px;
}

.focus-item h3 {
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.focus-item p {
  font-size: var(--size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

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

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: var(--space-xl);
  row-gap: 0;
  margin-bottom: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.focus-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: var(--size-base);
  line-height: 1.5;
  padding-left: var(--space-md);
  position: relative;
}

.focus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(var(--space-sm) + 0.75em);
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-green);
}

.focus-list li:nth-child(-n+3)::after {
  content: '';
  position: absolute;
  left: 100%;
  bottom: -1px;
  width: var(--space-xl);
  height: 1px;
  background-color: var(--color-border);
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach-inner {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.approach-sprig {
  margin-left: auto;
  margin-right: auto;
}

.approach-inner h2 {
  margin-bottom: var(--space-md);
}

.approach-inner p {
  margin-bottom: var(--space-sm);
  text-align: justify;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: var(--space-lg);
  align-items: start;
}

.about-media {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-portrait {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-label {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-xs);
}

.about-text h2 {
  margin-bottom: 0.25rem;
}

.about-role {
  font-size: var(--size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.about-text p:not(.about-label):not(.about-role) {
  max-width: 560px;
  margin-bottom: var(--space-lg);
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 260px;
  padding: var(--space-lg);
  background-color: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  position: relative;
}

.about-credentials-accent {
  position: absolute;
  inset: 14px 14px -14px -14px;
  background: linear-gradient(135deg, var(--color-green-light), var(--color-green-mid));
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 900px) {
  .about-credentials-accent { display: none; }
}

.credential-label {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.credential-value {
  font-size: var(--size-sm);
  color: var(--color-text-muted);
}

.credential-number {
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--color-green-dark);
  margin-top: 0.25rem;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
  background-image:
    linear-gradient(135deg,
      rgba(232, 240, 230, 0.80) 0%,
      rgba(248, 249, 247, 0.68) 50%,
      rgba(200, 219, 195, 0.78) 100%
    ),
    url('../images/watercolour-landscape-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-cta-inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.contact-cta h2 {
  margin-bottom: var(--space-sm);
}

.contact-cta p {
  font-size: var(--size-md);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-text);
  color: var(--color-off-white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 1.2fr 1.2fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
}

.footer-logo {
  font-size: var(--size-md);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.footer-logo span {
  font-size: var(--size-sm);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

.footer-desc {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 340px;
}

.site-footer h3 {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-md);
}

.footer-contact address p {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-icon {
  flex-shrink: 0;
  color: var(--color-green);
  margin-top: 0.15rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-registration p {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-md);
  line-height: 1.65;
}

.reg-number {
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .container {
  padding-block: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom p {
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.35);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-credit:hover {
  color: rgba(255, 255, 255, 0.65);
}

.footer-credit img {
  height: 14px;
  width: auto;
  display: block;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {

  .logo-subtitle { display: none; }

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

  .focus-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .focus-list li:nth-child(-n+3)::after {
    display: none;
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .intro-image {
    order: -1;
    max-height: 340px;
  }

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

  .about-media {
    flex-direction: row;
    align-items: flex-start;
  }

  .about-portrait {
    flex: 0 0 240px;
  }

  .about-credentials {
    flex: 1;
    min-width: unset;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
/* ============================================================
   DECORATIVE ELEMENTS (additive — no layout impact)
   ============================================================ */

/* Make sure host sections clip their decorations */
.hero,
.intro,
.services,
.focus,
.approach,
.about-preview,
.contact-cta,
.video-feature {
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture overlay — can be applied to any section */
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/texture-grain.svg');
  background-size: 240px 240px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.section-alt > .container {
  position: relative;
  z-index: 1;
}

/* Lift content above section decorations everywhere */
.hero > .container,
.intro > .container,
.services > .container,
.focus > .container,
.approach > .container,
.about-preview > .container,
.contact-cta > .container,
.video-feature > .container {
  position: relative;
  z-index: 2;
}

/* ---------- HERO decorations ---------- */
.hero-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero-decor-blob {
  width: 640px;
  height: 640px;
  top: -180px;
  right: -160px;
  opacity: 0.85;
}

/* ---------- FOCUS (Challenges) decorations ---------- */
.focus-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.focus-decor-leaf {
  width: 240px;
  height: auto;
  top: 120px;
  left: -60px;
  opacity: 0.45;
  transform: rotate(-8deg);
}

.focus-decor-dots {
  width: 140px;
  height: 140px;
  bottom: 40px;
  right: 4%;
  opacity: 0.50;
}

/* ---------- INTRO decorations ---------- */
.intro-decor-arc {
  position: absolute;
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -140px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.intro-image {
  position: relative;
}

.intro-image-accent {
  position: absolute;
  inset: auto -18px -18px auto;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--color-green-mid), var(--color-green-light));
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.7;
}

/* ---------- SERVICES decorations ---------- */
.services-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.services-decor-dots {
  width: 160px;
  height: 160px;
  top: 40px;
  right: 30px;
  opacity: 0.45;
}

.services-decor-leaf {
  width: 260px;
  height: auto;
  bottom: -60px;
  right: -70px;
  opacity: 0.30;
  transform: rotate(20deg);
}

.focus {
  padding-bottom: var(--space-lg);
}

.video-feature {
  padding-top: var(--space-lg);
}

/* ---------- VIDEO decorations ---------- */
.video-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.video-decor-contours {
  width: 320px;
  height: auto;
  top: -80px;
  left: -120px;
  opacity: 0.35;
}

.video-decor-branch {
  width: 220px;
  height: auto;
  bottom: -50px;
  right: -60px;
  opacity: 0.40;
  transform: scaleX(-1) rotate(-10deg);
}

.video-decor-dots {
  width: 120px;
  height: 120px;
  bottom: 30px;
  left: 4%;
  opacity: 0.40;
}

/* Add a soft inner accent stripe to service cards */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-green) 0%, var(--color-green-mid) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* ---------- APPROACH decoration ---------- */
.approach-sprig {
  width: 110px;
  height: auto;
  margin-bottom: var(--space-sm);
  display: block;
}

.approach-branch {
  position: absolute;
  width: 230px;
  height: auto;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) scaleX(-1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .approach-branch {
    width: 140px;
    right: -60px;
    opacity: 0.45;
  }
}

@media (max-width: 640px) {
  .approach-branch {
    width: 100px;
    right: -50px;
    opacity: 0.30;
  }
}

/* ---------- ABOUT PREVIEW ---------- */
.about-decor-dots {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 60px;
  right: 5%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.about-portrait {
  position: relative;
}

.about-portrait-accent {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--color-green-mid);
  border-radius: var(--radius-md);
  z-index: -1;
  pointer-events: none;
}

/* ---------- CONTACT CTA decorations ---------- */
.contact-cta-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.contact-cta-decor-leaf {
  width: 240px;
  height: auto;
  top: -30px;
  left: -40px;
  opacity: 0.40;
  transform: rotate(15deg);
}

.contact-cta-decor-blob {
  width: 480px;
  height: 480px;
  bottom: -200px;
  right: -180px;
  opacity: 0.7;
}

/* Mobile: scale decorations down so they don't dominate */
@media (max-width: 640px) {
  .hero-decor-blob   { width: 380px; height: 380px; top: -120px; right: -120px; }
  .focus-decor-leaf  { width: 150px; opacity: 0.32; top: 90px; left: -60px; }
  .focus-decor-dots  { width: 90px; height: 90px; bottom: 30px; right: -20px; }
  .intro-decor-arc   { width: 260px; height: 260px; bottom: -100px; left: -100px; }
  .services-decor-dots  { width: 100px; height: 100px; }
  .services-decor-leaf  { width: 160px; bottom: -40px; right: -50px; }
  .video-decor-contours { width: 200px; top: -50px; left: -80px; }
  .video-decor-branch   { width: 140px; bottom: -30px; right: -40px; }
  .video-decor-dots     { width: 80px; height: 80px; bottom: 20px; left: -10px; }
  .about-decor-dots  { width: 90px; height: 90px; }
  .contact-cta-decor-leaf { width: 140px; }
  .contact-cta-decor-blob { width: 320px; height: 320px; bottom: -140px; right: -120px; }
  .intro-image-accent { display: none; }
  .about-portrait-accent { inset: 10px -10px -10px 10px; }
}

@media (max-width: 640px) {

  :root {
    --space-2xl: 4rem;
  }

  .br-desktop { display: none; }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: var(--space-md);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a,
  .site-nav .nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--size-base);
  }

  .site-nav li:last-child a {
    border-bottom: none;
  }

  .nav-link-row {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link-row .nav-link {
    flex: 1;
    border-bottom: none;
  }

  .site-nav li:last-child .nav-link-row {
    border-bottom: none;
  }

  .logo-name { font-size: var(--size-base); }

  .hero {
    min-height: 480px;
  }

  .hero-content {
    padding-block: var(--space-xl);
  }

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

  .about-media {
    flex-direction: column;
  }

  .about-portrait {
    flex: none;
    aspect-ratio: 3 / 2;
    max-height: 280px;
  }

  .about-credentials {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

}

/* ============================================================
   LEGAL PAGES (privacy-policy, terms-and-conditions)
   ============================================================ */
.contact-heading {
  padding-block: var(--space-xl) var(--space-lg);
  background-color: var(--color-green-light);
  text-align: center;
}

.contact-heading h1 {
  margin-bottom: var(--space-xs);
}

.contact-heading p {
  color: var(--color-text-muted);
  font-size: var(--size-md);
}

.legal-content {
  padding-block: var(--space-2xl);
  line-height: 1.8;
}

.legal-content .container {
  max-width: 860px;
}

.legal-content h2 {
  margin: var(--space-lg) 0 var(--space-xs);
}

.legal-content ul {
  margin: var(--space-sm) 0 var(--space-sm) var(--space-md);
}
