@font-face {
  font-family: "DM Sans";
  src: url("/concept-ruhe/assets/fonts/dm-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/concept-ruhe/assets/fonts/dm-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/concept-ruhe/assets/fonts/dm-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/concept-ruhe/assets/fonts/newsreader-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/concept-ruhe/assets/fonts/newsreader-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #173a2c;
  --deep: #0f2f24;
  --green: #275f47;
  --leaf: #a1cf78;
  --leaf-dark: #6da148;
  --sage: #dce9d5;
  --paper: #f7f5ef;
  --white: #fff;
  --muted: #52685d;
  --line: rgba(23, 58, 44, 0.18);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { touch-action: manipulation; }
:focus-visible { outline: 3px solid #dd9b30; outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: #fff; padding: 12px 18px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 14px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: background .25s ease, min-height .25s ease, border-color .25s ease;
}
.home .site-header:not(.scrolled) {
  background: rgba(8, 31, 23, .2);
  backdrop-filter: blur(4px);
}
.site-header.scrolled {
  min-height: 72px;
  background: rgba(247,245,239,.97);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand img { width: 182px; height: auto; filter: brightness(0) invert(1); }
.site-header.scrolled .brand img { filter: none; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.3vw, 36px); color: #fff; font-size: 13px; }
.site-header.scrolled .desktop-nav { color: var(--ink); }
.desktop-nav > a, .nav-dropdown > button {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.desktop-nav > a::after, .nav-dropdown > button::after, .footer-links a::after, .privacy-settings-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.desktop-nav > a:hover::after, .nav-dropdown > button:hover::after, .footer-links a:hover::after, .privacy-settings-trigger:hover::after { right: 0; }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 310px;
  padding: 12px;
  color: var(--ink);
  background: rgba(247, 245, 239, .88);
  border: 1px solid rgba(255, 255, 255, .52);
  box-shadow: 0 24px 54px rgba(10, 42, 30, .18);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.home .site-header:not(.scrolled) .dropdown-panel {
  color: #fff;
  background: rgba(8, 31, 23, .78);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 24px 54px rgba(3, 18, 13, .3);
}
.home .site-header:not(.scrolled) .dropdown-panel a,
.home .site-header:not(.scrolled) .menu-disabled {
  border-color: rgba(255, 255, 255, .16);
}
.home .site-header:not(.scrolled) .dropdown-panel a:hover { background: rgba(255, 255, 255, .1); }
.home .site-header:not(.scrolled) .dropdown-panel small { color: rgba(255, 255, 255, .66); }
.home .site-header:not(.scrolled) .menu-disabled { color: rgba(255, 255, 255, .5); }
.dropdown-locations { width: 340px; }
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown-panel a, .menu-disabled {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.dropdown-panel a:hover { background: var(--sage); }
.dropdown-panel small { color: var(--muted); font-size: 10px; text-align: right; }
.menu-group-label { display: block; padding: 7px 12px; color: var(--leaf-dark); font-size: 10px; font-weight: 600; text-transform: uppercase; }
.menu-overview-link { margin-bottom: 7px; border-bottom: 1px solid var(--line); font-weight: 600; }
.menu-disabled { color: #849188; cursor: default; }
.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.65);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.site-header.scrolled .header-cta { color: var(--ink); border-color: var(--ink); }
.header-cta:hover { background: var(--leaf); border-color: var(--leaf); color: var(--ink); }
.menu-button { display: none; border: 0; background: transparent; width: 48px; height: 48px; padding: 13px; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 7px 0; background: #fff; transition: transform .2s ease; }
.site-header.scrolled .menu-button span { background: var(--ink); }
body.menu-open .site-header {
  background: var(--paper);
  border-color: var(--line);
}
body.menu-open .brand img { filter: none; }
body.menu-open .menu-button span { background: var(--ink); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: min(860px, 92dvh);
  background: url("assets/lio-meditation.webp") center 52% / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 130px clamp(22px, 7vw, 110px) 108px;
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,31,23,.76) 0%, rgba(8,31,23,.28) 52%, rgba(8,31,23,.08) 100%), linear-gradient(0deg, rgba(8,31,23,.58), transparent 56%); }
.hero-copy { position: relative; z-index: 1; max-width: 760px; }
.eyebrow { margin: 0 0 18px; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.eyebrow.dark { color: var(--green); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(76px, 10vw, 142px); line-height: .82; font-weight: 400; }
.hero-statement { margin: 28px 0 32px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); line-height: 1.04; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.hero-meta {
  position: absolute;
  right: clamp(22px, 4vw, 68px);
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 14px 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 12px;
}
.hero-meta span + span::before { content: "·"; margin-right: 28px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: #fff; color: var(--ink); }
.button-light:hover { background: var(--leaf); }
.button-dark { background: var(--deep); color: #fff; }
.button-dark:hover { background: var(--green); }
.button-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.button-outline:hover { background: var(--ink); color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.text-link-light { color: #fff; }

.trust-band { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--leaf); border-bottom: 1px solid var(--line); }
.trust-band div { padding: 26px clamp(20px, 4vw, 64px); border-right: 1px solid rgba(23,58,44,.22); }
.trust-band div:last-child { border-right: 0; }
.trust-band strong, .trust-band span { display: block; }
.trust-band strong { font-family: var(--serif); font-size: 23px; font-weight: 500; }
.trust-band span { margin-top: 2px; font-size: 13px; }

.section { padding: clamp(78px, 8vw, 120px) clamp(22px, 6vw, 96px); }
.section-label { margin-bottom: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--green); }
.section-heading { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 82px); font-weight: 400; line-height: 1.02; }
.section-intro { max-width: 640px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 54px; }
.section-head > p { max-width: 420px; margin: 0; color: var(--muted); }

.home-about { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 680px; background: #fff; }
.home-about-image { min-height: 540px; overflow: hidden; }
.home-about-image img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.home-about-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(68px, 8vw, 118px) clamp(30px, 7vw, 104px); }
.home-about-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(50px, 6vw, 78px); line-height: 1; font-weight: 400; }
.home-about-copy .role { margin: 20px 0 32px; font-family: var(--serif); font-size: 28px; line-height: 1.2; color: var(--green); }
.home-about-copy p:not(.eyebrow):not(.role) { max-width: 590px; color: var(--muted); }

.category-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 16px; }
.category-card { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); background: #fff; }
.category-card.featured { background: var(--deep); color: #fff; }
.category-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 42px; font-weight: 400; }
.category-card p { margin: 0; color: var(--muted); }
.category-card.featured p { color: rgba(255,255,255,.72); }
.category-status { align-self: flex-start; padding: 6px 10px; border: 1px solid currentColor; font-size: 10px; font-weight: 600; text-transform: uppercase; }
.category-card.muted { background: #efeee8; color: #6f7d75; }
.category-details { display: block; padding: 0; }
.category-summary {
  position: relative;
  width: 100%;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.category-title {
  margin: auto 0 14px;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}
.category-description { max-width: 360px; color: rgba(255,255,255,.72); }
.category-toggle {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  font-size: 24px;
  transition: transform .2s ease, background .2s ease;
}
.category-details.open .category-toggle { background: rgba(255,255,255,.12); }
.category-courses { display: none; border-top: 1px solid rgba(255,255,255,.2); }
.category-details.open .category-courses { display: grid; }
.category-courses a { display: grid; gap: 5px; padding: 20px 30px; border-bottom: 1px solid rgba(255,255,255,.16); }
.category-courses a:last-child { border-bottom: 0; }
.category-courses a:hover { background: rgba(255,255,255,.08); }
.category-courses strong { font-size: 15px; }
.category-courses span { color: rgba(255,255,255,.68); font-size: 12px; }

.course-teasers { background: var(--sage); }
.teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.teaser-card { min-height: 400px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(28px, 4vw, 48px); background: #fff; border-top: 4px solid var(--green); }
.teaser-card { min-width: 0; }
.teaser-card h3 { margin: 26px 0 16px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); line-height: 1; font-weight: 400; }
.teaser-card p { max-width: 560px; color: var(--muted); }
.teaser-card .text-link { margin-top: auto; padding-top: 30px; }

.badge { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 5px 12px; font-size: 11px; font-weight: 600; }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-certified { color: #245c35; background: #dcefdc; border: 1px solid #9ac59f; }
.badge-private { color: #4c5450; background: #efefec; border: 1px solid #c9ceca; }
.badge-planned { color: #6c756f; background: #ecece7; border: 1px solid #d4d7d3; }

.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.location-card { min-height: 300px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.location-card:last-child { border-right: 0; }
.location-card span { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.location-card h3 { margin: 18px 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1.08; }
.location-card address { margin: 0; color: var(--muted); font-style: normal; }
.location-card .text-link { margin-top: auto; padding-top: 28px; }

.insurer-band { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; background: var(--deep); color: #fff; }
.insurer-index { font-family: var(--serif); font-size: clamp(92px, 13vw, 190px); line-height: .85; color: var(--leaf); }
.insurer-band h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(46px, 5vw, 72px); line-height: 1; font-weight: 400; }
.insurer-band p { max-width: 650px; color: rgba(255,255,255,.72); }

.page-hero { padding: 190px clamp(22px, 7vw, 110px) 90px; background: var(--deep); color: #fff; }
.page-hero-inner { max-width: 1100px; }
.page-hero h1 { max-width: 1000px; margin: 16px 0 24px; font-family: var(--serif); font-size: clamp(62px, 9vw, 124px); line-height: .9; font-weight: 400; }
.page-hero h1, .location-hero-copy h1 { overflow-wrap: anywhere; }
.page-hero p { max-width: 700px; margin: 0; color: rgba(255,255,255,.74); font-size: 19px; }
.page-hero .badge { margin-bottom: 22px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.content-grid { display: grid; grid-template-columns: minmax(220px, .55fr) 1.45fr; gap: clamp(45px, 9vw, 130px); }
.content-aside { align-self: start; position: sticky; top: 110px; }
.content-aside dl { margin: 0; border-top: 1px solid var(--line); }
.content-aside div { padding: 15px 0; border-bottom: 1px solid var(--line); }
.content-aside dt { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.content-aside dd { margin: 3px 0 0; font-weight: 600; }
.prose { max-width: 820px; }
.prose h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(46px, 5vw, 68px); line-height: 1; font-weight: 400; }
.prose h3 { margin: 48px 0 12px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.prose p { color: var(--muted); }
.prose .lead { margin: 0 0 42px; font-family: var(--serif); font-size: clamp(31px, 3vw, 42px); line-height: 1.15; color: var(--ink); }
.check-list { list-style: none; margin: 30px 0; padding: 0; border-top: 1px solid var(--line); }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; color: var(--leaf-dark); font-weight: 700; }
.legal-note { margin-top: 36px; padding: 22px; border-left: 3px solid var(--leaf-dark); background: var(--sage); color: var(--ink); font-size: 14px; }

.course-schedule { background: var(--sage); }
.schedule-list { border-top: 1px solid var(--line); }
.schedule-row { display: grid; grid-template-columns: 1.2fr .7fr .7fr auto; align-items: center; gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.schedule-row h3 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.schedule-row span { color: var(--muted); font-size: 13px; }

.course-overview-hero {
  background: linear-gradient(135deg, #16251f 0%, #263b31 100%);
}

.course-family {
  background: #fff;
}

.planned-course-family {
  background: #efeee8;
}

.course-quickfacts {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.course-quickfacts li {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.date-chip-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.date-chip-list time {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 600;
}

.date-chip-list time:last-child {
  border-right: 0;
}

.location-hero { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 690px; padding-top: 88px; background: #fff; }
.location-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(30px, 7vw, 108px); }
.location-hero-copy h1 { margin: 14px 0 22px; font-family: var(--serif); font-size: clamp(58px, 7vw, 100px); line-height: .94; font-weight: 400; }
.location-hero-copy address { color: var(--muted); font-style: normal; font-size: 18px; }
.location-hero-visual { background: url("assets/water.webp") center / cover no-repeat; min-height: 520px; }
.location-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.fact { min-height: 230px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact span { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.fact h2 { margin: 18px 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.fact p { margin: 0; color: var(--muted); }

.about-page { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 760px; padding-top: 88px; background: #fff; }
.about-page-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(30px, 7vw, 110px); }
.about-page-copy h1 { margin: 12px 0; font-family: var(--serif); font-size: clamp(70px, 8vw, 112px); line-height: .9; font-weight: 400; }
.about-page-copy .role { margin: 20px 0 40px; font-family: var(--serif); font-size: 30px; color: var(--green); }
.about-page-image { min-height: 650px; overflow: hidden; }
.about-page-image img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.quote-band { padding: 110px clamp(22px, 8vw, 130px); background: var(--sage); }
.quote-band blockquote { max-width: 1000px; margin: 0; font-family: var(--serif); font-size: clamp(44px, 6vw, 78px); line-height: 1.08; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); }
.contact-copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(60px, 7vw, 100px); line-height: .9; font-weight: 400; }
.contact-copy p { max-width: 460px; color: var(--muted); }
.contact-direct { margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--line); }
.contact-direct span, .contact-direct a { display: block; }
.contact-direct span { color: var(--muted); font-size: 12px; }
.contact-direct a { margin-top: 5px; font-family: var(--serif); font-size: 26px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: clamp(28px, 5vw, 58px); background: #fff; border: 1px solid var(--line); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-form .button { justify-self: start; }
.form-note { grid-column: 1 / -1; min-height: 24px; margin: 0; color: var(--muted); font-size: 12px; }
.form-note.success { color: #17663f; }
.form-note.error { color: #9f2d2d; }
.consent-row { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.consent-row input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.consent-row a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form button:disabled { opacity: .64; cursor: wait; }

.legal-shell { padding-top: 72px; }
.legal-hero {
  padding: clamp(72px, 9vw, 130px) clamp(22px, 9vw, 150px);
  color: #fff;
  background: var(--deep);
}
.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 108px);
  line-height: .95;
  font-weight: 400;
}
.legal-hero > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(16px, 2vw, 20px);
}
.legal-content {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) 0;
}
.legal-status {
  margin-bottom: 58px;
  padding: 24px 26px;
  border-left: 6px solid #dd9b30;
  background: #fff7e8;
}
.legal-status strong { display: block; margin-bottom: 8px; font-size: 17px; }
.legal-status p { margin: 0; }
.legal-section { padding: 0 0 38px; margin: 0 0 38px; border-bottom: 1px solid var(--line); }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 400;
}
.legal-section p { margin: 0 0 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { text-decoration: underline; text-underline-offset: 4px; }
.legal-section mark {
  padding: 2px 5px;
  color: #6a4500;
  background: #fff0c7;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.closing { min-height: 520px; padding: 100px 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--deep); color: #fff; }
.closing h2 { max-width: 950px; margin: 0 0 42px; font-family: var(--serif); font-size: clamp(54px, 8vw, 96px); line-height: .98; font-weight: 400; }
.closing-home {
  min-height: 470px;
  background: var(--paper);
  color: var(--ink);
  border-top: 8px solid var(--leaf);
}
.closing-home .eyebrow { color: var(--leaf-dark); }

footer { display: grid; grid-template-columns: 1.1fr 1fr 1.2fr; gap: 30px; align-items: end; padding: 55px clamp(22px, 6vw, 96px) 28px; background: #fff; border-top: 1px solid var(--line); }
.footer-brand img { width: 220px; height: auto; aspect-ratio: 830 / 210; object-fit: contain; object-position: left center; }
.footer-contact span, .footer-contact a { display: block; }
.footer-contact span { font-size: 12px; color: var(--muted); }
.footer-contact a { font-family: var(--serif); font-size: 22px; }
.footer-links { display: flex; flex-wrap: nowrap; gap: clamp(12px, 1.5vw, 24px); justify-content: flex-end; overflow-x: auto; white-space: nowrap; font-size: 13px; scrollbar-width: none; }
.footer-links::-webkit-scrollbar { display: none; }
.footer-links a, .privacy-settings-trigger { position: relative; }
.privacy-settings-trigger { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.footer-meta { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding-top: 30px; border-top: 1px solid var(--line); }
.footer-meta small { color: var(--muted); }
.footer-meta a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.privacy-notice {
  position: fixed;
  z-index: 300;
  right: clamp(14px, 3vw, 42px);
  bottom: clamp(14px, 3vw, 42px);
  width: min(620px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background: rgba(15, 47, 36, .97);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 24px 70px rgba(5, 26, 18, .28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s;
}
.privacy-notice.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.privacy-kicker { margin: 0 0 8px; color: var(--leaf); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.privacy-notice h2 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(32px, 4vw, 44px); line-height: 1; font-weight: 400; }
.privacy-notice-copy > p:not(.privacy-kicker, .privacy-links) { margin: 0; color: rgba(255, 255, 255, .75); font-size: 14px; }
.privacy-notice details { margin-top: 16px; color: rgba(255, 255, 255, .78); font-size: 12px; }
.privacy-notice summary { width: fit-content; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.privacy-notice dl { margin: 14px 0 0; }
.privacy-notice dl div { display: grid; grid-template-columns: 82px 1fr; gap: 12px; padding: 7px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.privacy-notice dt { color: #fff; font-weight: 600; }
.privacy-notice dd { margin: 0; }
.privacy-links { display: flex; gap: 18px; margin: 18px 0 0; font-size: 12px; }
.privacy-links a { text-decoration: underline; text-underline-offset: 4px; }
.privacy-confirm { min-width: 126px; border-color: var(--leaf); background: var(--leaf); color: var(--ink); }
.privacy-confirm:hover { background: #b6dc91; border-color: #b6dc91; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 180px 1fr auto; }
  .desktop-nav { gap: 14px; }
  .desktop-nav > a, .nav-dropdown > button { font-size: 12px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card.featured { grid-column: 1 / -1; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-card:nth-child(2) { border-right: 0; }
  .location-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 74px; padding: 10px 20px; }
  .brand img { width: 152px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .mobile-menu { position: fixed; inset: 0; z-index: 90; display: block; overflow-y: auto; padding: 96px 24px 40px; background: var(--paper); transform: translateY(-105%); transition: transform .3s ease; }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu > nav > a, .mobile-menu summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 28px; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-subnav { padding: 8px 0 16px 14px; border-bottom: 1px solid var(--line); }
  .mobile-subnav a, .mobile-subnav .menu-disabled { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 8px 0; border: 0; font-family: var(--sans); font-size: 14px; }
  .mobile-subnav .menu-group-label { padding-left: 0; }
  .hero { min-height: 86dvh; padding: 110px 22px 90px; background-position: 52% 42%; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,31,23,.78) 0%, rgba(8,31,23,.1) 72%); }
  .hero-meta { left: 22px; right: 22px; bottom: 22px; justify-content: flex-start; }
  .hero-meta span:nth-child(2) { display: none; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band div { border-right: 0; border-bottom: 1px solid rgba(23,58,44,.2); padding: 18px 22px; }
  .home-about, .about-page, .location-hero { grid-template-columns: 1fr; }
  .home-about-image { min-height: 480px; }
  .home-about-copy { grid-row: 1; }
  .category-grid, .teaser-grid, .location-grid, .location-facts { grid-template-columns: 1fr; }
  .category-card.featured, .location-card:last-child { grid-column: auto; }
  .location-card, .location-card:nth-child(2), .fact { border-right: 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 20px; }
  .insurer-band, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .insurer-band > * { min-width: 0; }
  .insurer-band h2 { overflow-wrap: anywhere; }
  .insurer-index { font-size: 110px; }
  .content-aside { position: static; }
  .schedule-row { grid-template-columns: 1fr auto; }
  .schedule-row > span { grid-column: 1; }
  .location-hero { padding-top: 74px; }
  .location-hero-copy { padding: 70px 22px; }
  .location-hero-visual { min-height: 380px; }
  .about-page { padding-top: 74px; }
  .about-page-copy { padding: 70px 22px; }
  .about-page-image { min-height: 500px; }
  .contact-form { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  footer { grid-template-columns: 1fr; align-items: start; }
  .footer-brand img { width: 200px; }
  .footer-links { width: 100%; justify-content: flex-start; flex-wrap: wrap; white-space: normal; overflow-x: visible; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 70px; }
  .hero-statement { font-size: 36px; }
  .page-hero { padding: 150px 20px 70px; }
  .page-hero h1 { font-size: 58px; }
  .page-hero p { font-size: 17px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .section-heading { font-size: 46px; }
  .home-about-image { min-height: 390px; }
  .teaser-card { min-height: 360px; }
  .teaser-card h3 { overflow-wrap: anywhere; }
  .schedule-row { grid-template-columns: 1fr; }
  .schedule-row > span { grid-column: auto; }
  .schedule-row .button { width: 100%; }
  .date-chip-list { grid-template-columns: 1fr 1fr; }
  .date-chip-list time:nth-child(2) { border-right: 0; }
  .date-chip-list time:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .contact-form { padding: 22px; }
  .closing-home { min-height: 400px; padding-top: 80px; padding-bottom: 80px; }
  .closing-home h2 { font-size: 50px; }
  .footer-links { gap: 13px; font-size: 12px; }
  .privacy-notice { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .privacy-confirm { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
