@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --c-ink: #1a1a2e;
  --c-ink-soft: #2d2d4a;
  --c-ink-muted: #5a5a7a;
  --c-page: #f7f6f2;
  --c-page-alt: #eeecea;
  --c-white: #ffffff;
  --c-pri: #1a1a2e;
  --c-acc: #4a7c6f;
  --c-acc-light: #6a9e8f;
  --c-acc-dark: #2d5a50;
  --c-warm: #c8a96e;
  --c-warm-light: #e8d5b0;
  --c-border: #d8d4cc;
  --c-border-soft: #e8e4dc;

  --shadow-sm: 0 1px 3px rgba(26,26,46,0.06), 0 1px 2px rgba(26,26,46,0.04);
  --shadow-md: 0 4px 12px rgba(26,26,46,0.08), 0 2px 4px rgba(26,26,46,0.06);
  --shadow-lg: 0 12px 32px rgba(26,26,46,0.10), 0 4px 8px rgba(26,26,46,0.06);
  --shadow-xl: 0 24px 48px rgba(26,26,46,0.14), 0 8px 16px rgba(26,26,46,0.08);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  --sp-2xl: 8rem;

  --nav-h: 72px;
  --max-w: 1200px;
}

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

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

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: var(--c-page);
  color: var(--c-ink);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
ul { list-style: none; }
address { font-style: normal; }

/* ===========================
   HEADER / NAV
=========================== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--c-ink);
  height: var(--nav-h);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 20px rgba(26,26,46,0.3);
}

.hdr.visible { transform: translateY(0); }

.hdr-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.hdr-logo { flex-shrink: 0; width: 100px; }
.hdr-logo img { }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.hdr-link {
  color: rgba(247,246,242,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}

.hdr-link:hover,
.hdr-link.active {
  color: var(--c-page);
  background: rgba(255,255,255,0.08);
}

.hdr-cta {
  background: var(--c-acc);
  color: var(--c-white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--r-sm);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hdr-cta:hover {
  background: var(--c-acc-dark);
  transform: translateY(-1px);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-page);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===========================
   MOBILE MENU
=========================== */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mob-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--c-page);
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.mob-close:hover { background: rgba(255,255,255,0.1); }

.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mob-link {
  color: rgba(247,246,242,0.8);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 600;
  transition: color 0.2s;
  padding: 0.25rem 1rem;
}

.mob-link:hover { color: var(--c-warm); }

.mob-cta {
  margin-top: 1rem;
  background: var(--c-acc);
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}

.mob-cta:hover { background: var(--c-acc-dark); }

/* ===========================
   HERO SENTINEL
=========================== */
#heroSentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.88) 0%,
    rgba(26,26,46,0.65) 50%,
    rgba(74,124,111,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) var(--sp-md) var(--sp-xl);
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-warm);
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero-h1 em {
  font-style: italic;
  color: var(--c-warm);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(247,246,242,0.82);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247,246,242,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   BUTTONS
=========================== */
.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-acc);
  color: var(--c-white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-sm);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
}

.btn-pri:hover {
  background: var(--c-acc-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: var(--c-white);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.25s, border-color 0.25s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--c-acc);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-sm);
  border: 2px solid var(--c-acc);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--c-acc);
  color: var(--c-white);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-white);
  color: var(--c-acc-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-sm);
  transition: background 0.25s, transform 0.2s;
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background: var(--c-page);
  transform: translateY(-2px);
}

/* ===========================
   INTRO STRIP
=========================== */
.intro-strip {
  background: var(--c-ink);
  padding: 1.25rem var(--sp-md);
}

.intro-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
}

.intro-pill {
  color: rgba(247,246,242,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.intro-pill i { color: var(--c-warm); }

/* ===========================
   SECTIONS
=========================== */
.sec {
  padding: var(--sp-xl) 0;
}

.sec-alt {
  background: var(--c-page-alt);
}

.sec-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.sec-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-lg);
}

.sec-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-acc);
  margin-bottom: 0.75rem;
  display: block;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-ink);
  margin-bottom: 1rem;
}

.sec-title-sm {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.2;
}

.sec-lead {
  font-size: 1.0625rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
}

/* ===========================
   QUAD GRID
=========================== */
.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ===========================
   CARDS
=========================== */
.crd {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--c-border-soft);
}

.crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.crd-feat { display: flex; flex-direction: column; }

.crd-img-wrap {
  height: 220px;
  overflow: hidden;
}

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

.crd:hover .crd-img { transform: scale(1.04); }

.crd-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.crd-ico {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--c-acc), var(--c-acc-light));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.crd-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.625rem;
}

.crd-txt {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.crd-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-acc);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s;
}

.crd-link:hover { gap: 0.625rem; }

/* ===========================
   STEPS GRID
=========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-acc), var(--c-warm));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-acc), var(--c-acc-dark));
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.625rem;
}

.step-txt {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  line-height: 1.65;
}

/* ===========================
   VALUES GRID
=========================== */
.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.val-crd {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.val-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.val-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(74,124,111,0.12), rgba(74,124,111,0.06));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-acc);
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.val-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.625rem;
}

.val-txt {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
}

/* ===========================
   IMAGE BREAK
=========================== */
.img-break {
  background: var(--c-ink);
  overflow: hidden;
}

.img-break-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.img-break-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-break-text {
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img-break-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-warm);
  margin-bottom: 1rem;
}

.img-break-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.img-break-body {
  font-size: 1rem;
  color: rgba(247,246,242,0.78);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ===========================
   SPLIDE CAROUSEL
=========================== */
.slide-crd {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.slide-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-acc), var(--c-acc-light));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.slide-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.625rem;
}

.slide-txt {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
}

.splide__pagination__page.is-active { background: var(--c-acc); }
.splide__arrow { background: var(--c-white); box-shadow: var(--shadow-md); }
.splide__arrow svg { fill: var(--c-ink); }
.splide__arrow:hover { background: var(--c-acc); }
.splide__arrow:hover svg { fill: var(--c-white); }

/* ===========================
   CTA BANNER
=========================== */
.cta-ban {
  background: linear-gradient(135deg, var(--c-acc-dark) 0%, var(--c-acc) 60%, var(--c-acc-light) 100%);
  padding: var(--sp-xl) var(--sp-md);
}

.cta-ban-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-ban-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

.cta-ban-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-ban-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ===========================
   PRICING
=========================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.price-crd {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-crd-hi {
  border-color: var(--c-acc);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--c-acc);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-acc);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.price-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(74,124,111,0.12), rgba(74,124,111,0.06));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-acc);
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.price-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.75rem;
}

.price-desc {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.price-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-list li {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-acc);
  flex-shrink: 0;
}

/* ===========================
   FOOTER
=========================== */
.ftr {
  background: var(--c-ink);
  color: rgba(247,246,242,0.7);
  margin-top: auto;
}

.ftr-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md) var(--sp-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
}

.ftr-logo { margin-bottom: 1rem; }

.ftr-tagline {
  font-size: 0.9rem;
  color: rgba(247,246,242,0.55);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ftr-addr {
  font-size: 0.875rem;
  color: rgba(247,246,242,0.6);
  line-height: 1.8;
}

.ftr-addr a { transition: color 0.2s; }
.ftr-addr a:hover { color: var(--c-warm); }

.ftr-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}

.ftr-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ftr-link {
  font-size: 0.9rem;
  color: rgba(247,246,242,0.6);
  transition: color 0.2s;
  padding: 0.125rem 0;
}

.ftr-link:hover { color: var(--c-warm); }

.ftr-bottom {
  border-top: 1px solid rgba(247,246,242,0.08);
  padding: 1.5rem var(--sp-md);
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.8125rem;
  color: rgba(247,246,242,0.35);
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.pg-hero {
  background: var(--c-ink);
  padding: calc(var(--nav-h) + 4rem) var(--sp-md) var(--sp-xl);
  position: relative;
  overflow: hidden;
}

.pg-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74,124,111,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.pg-hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pg-hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 20ch;
}

.pg-hero-sub {
  font-size: 1.125rem;
  color: rgba(247,246,242,0.75);
  max-width: 56ch;
  line-height: 1.7;
}

.pg-hero-green { background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-acc-dark) 100%); }

/* ===========================
   ABOUT GRID
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.about-text .sec-title { margin-bottom: 1.25rem; }

.body-lg {
  font-size: 1.125rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.body-md {
  font-size: 1rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

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

/* ===========================
   DIFF GRID
=========================== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.diff-item {
  padding: 2rem 1.5rem;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.diff-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.diff-ico {
  font-size: 1.75rem;
  color: var(--c-acc);
  margin-bottom: 1rem;
  display: block;
}

.diff-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.625rem;
}

.diff-txt {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
}

/* ===========================
   TARGET GRID
=========================== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.target-item {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.target-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.target-ico {
  font-size: 1.5rem;
  color: var(--c-acc);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.target-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}

.target-txt {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
}

/* ===========================
   ECO PAGE
=========================== */
.eco-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-lg);
  align-items: center;
}

.pull-quote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  font-style: italic;
  color: var(--c-acc);
  line-height: 1.3;
  border-left: 4px solid var(--c-warm);
  padding-left: 1.5rem;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.eco-crd {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.eco-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.eco-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.eco-crd-body {
  padding: 1.75rem;
}

.eco-crd-body-only {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.eco-ico {
  font-size: 2rem;
  color: var(--c-acc);
  margin-bottom: 1rem;
}

.eco-crd-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.625rem;
}

.eco-crd-txt {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.health-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
}

.health-ico {
  font-size: 2.25rem;
  color: var(--c-acc);
  margin-bottom: 1.25rem;
  display: block;
}

.health-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.625rem;
}

.health-txt {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-lg);
  align-items: start;
}

.contact-info .sec-title-sm { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail i {
  color: var(--c-acc);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-detail strong {
  display: block;
  font-weight: 700;
  color: var(--c-ink);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-detail p, .contact-detail a {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
}

.contact-detail a:hover { color: var(--c-acc); }

.hours-box {
  background: var(--c-ink);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-top: 2rem;
}

.hours-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: rgba(247,246,242,0.7);
  border-bottom: 1px solid rgba(247,246,242,0.08);
}

.hours-table td:last-child { text-align: right; color: var(--c-warm); font-weight: 600; }

.hours-note {
  font-size: 0.8125rem;
  color: rgba(247,246,242,0.45);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ===========================
   FORM
=========================== */
.frm { display: flex; flex-direction: column; gap: 1.25rem; }

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

.frm-field { display: flex; flex-direction: column; gap: 0.5rem; }

.frm-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-ink);
}

.req { color: var(--c-acc); }

.frm-input,
.frm-textarea {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--c-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.frm-input:focus,
.frm-textarea:focus {
  border-color: var(--c-acc);
  box-shadow: 0 0 0 3px rgba(74,124,111,0.12);
}

.frm-textarea { resize: vertical; min-height: 140px; }

.frm-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--c-ink-muted);
  line-height: 1.6;
}

.frm-check input { margin-top: 0.2rem; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--c-acc); cursor: pointer; }
.frm-check a { color: var(--c-acc); text-decoration: underline; }

.frm-submit { align-self: flex-start; min-height: 48px; }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===========================
   THANKS PAGE
=========================== */
.thanks-sec {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) var(--sp-md) var(--sp-xl);
}

.thanks-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--c-acc);
  margin-bottom: 1.5rem;
}

.thanks-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1rem;
}

.thanks-sub {
  font-size: 1.125rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.thanks-next {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border-soft);
  text-align: left;
}

.thanks-next-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1.75rem;
}

.thanks-steps { display: flex; flex-direction: column; gap: 1.5rem; }

.thanks-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.thanks-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--c-acc), var(--c-acc-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.thanks-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.375rem;
}

.thanks-step-body p {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  line-height: 1.65;
}

/* ===========================
   LEGAL PAGES
=========================== */
.legal-hero {
  background: var(--c-ink);
  padding: calc(var(--nav-h) + 3rem) var(--sp-md) var(--sp-lg);
}

.legal-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: rgba(247,246,242,0.45);
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.legal-faq { display: flex; flex-direction: column; gap: 0; }

.legal-q {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-ink);
  padding: 1.75rem 0 0.75rem;
  border-top: 1px solid var(--c-border-soft);
  margin-top: 0.5rem;
}

.legal-q:first-child { border-top: none; margin-top: 0; }

.legal-a {
  padding-bottom: 1rem;
}

.legal-a p {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-a p:last-child { margin-bottom: 0; }

.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0.75rem 0;
}

.legal-list li {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.65;
}

.legal-intro {
  background: var(--c-page-alt);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  border-left: 4px solid var(--c-acc);
}

.legal-intro-p {
  font-size: 1rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--c-page-alt);
  border-radius: var(--r-md);
  border-left: 4px solid var(--c-acc);
}

.legal-numbered { display: flex; flex-direction: column; gap: 0; }

.legal-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--c-border-soft);
}

.legal-section:last-child { border-bottom: none; }

.legal-sec-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-section p:last-child { margin-bottom: 0; }

/* ===========================
   IMPRESSUM
=========================== */
.imp-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--c-border-soft);
}

.imp-section:last-child { border-bottom: none; }

.imp-h {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1rem;
}

.imp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.imp-table tr:nth-child(even) td { background: var(--c-page-alt); }

.imp-table td {
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  border: 1px solid var(--c-border-soft);
  line-height: 1.5;
}

.imp-table td:first-child {
  font-weight: 600;
  color: var(--c-ink);
  width: 40%;
  background: rgba(74,124,111,0.04);
}

.imp-section p {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

/* ===========================
   COOKIE POLICY
=========================== */
.ck-policy-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--c-border-soft);
}

.ck-policy-section:last-child { border-bottom: none; }

.ck-policy-h {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1rem;
}

.ck-policy-section p {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.ck-table-wrap { overflow-x: auto; margin: 1rem 0; }

.ck-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.ck-table th {
  background: var(--c-ink);
  color: var(--c-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.ck-table td {
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--c-border-soft);
  color: var(--c-ink-soft);
  vertical-align: top;
}

.ck-table tr:hover td { background: var(--c-page-alt); }

/* ===========================
   COOKIE CONSENT WIDGET
=========================== */
.ck-trigger {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-white);
  color: var(--c-ink-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, color 0.2s;
}

.ck-trigger:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--c-acc);
}

.ck-trigger i { color: var(--c-warm); }

.ck-trigger.pulse { animation: ckPulse 2s ease-in-out 3; }

@keyframes ckPulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 0 0 6px rgba(74,124,111,0.15), var(--shadow-md); }
}

.ck-modal-bg {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26,26,46,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ck-modal-bg.open {
  opacity: 1;
  pointer-events: all;
}

.ck-modal {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.ck-modal-bg.open .ck-modal { transform: translateY(0); }

.ck-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.125rem;
  color: var(--c-ink-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.ck-modal-close:hover { background: var(--c-page-alt); }

.ck-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.625rem;
}

.ck-modal-intro {
  font-size: 0.875rem;
  color: var(--c-ink-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.ck-cat {
  padding: 1rem 0;
  border-top: 1px solid var(--c-border-soft);
}

.ck-cat-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.375rem;
}

.ck-cat-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-ink);
}

.ck-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-acc);
  background: rgba(74,124,111,0.1);
  padding: 0.2rem 0.625rem;
  border-radius: 20px;
}

.ck-cat-desc {
  font-size: 0.8125rem;
  color: var(--c-ink-muted);
  line-height: 1.6;
}

.ck-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.ck-toggle input { opacity: 0; width: 0; height: 0; }

.ck-slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: 24px;
  transition: background 0.25s;
}

.ck-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--c-white);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: var(--shadow-sm);
}

.ck-toggle input:checked + .ck-slider { background: var(--c-acc); }
.ck-toggle input:checked + .ck-slider::before { transform: translateX(20px); }

.ck-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.ck-btn {
  flex: 1;
  min-width: 120px;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
}

/* ===========================
   DARK MODE
=========================== */
@media (prefers-color-scheme: dark) {
  :root {
    --c-page: #111118;
    --c-page-alt: #1a1a26;
    --c-white: #1e1e2c;
    --c-ink: #e8e6e0;
    --c-ink-soft: #c8c4bc;
    --c-ink-muted: #8a8698;
    --c-border: #2a2a3c;
    --c-border-soft: #222232;
    --c-pri: #e8e6e0;
  }

  .hdr { background: #0a0a12; }
  .mob-menu { background: #0a0a12; }
  .hero-overlay { background: linear-gradient(135deg, rgba(10,10,18,0.92) 0%, rgba(10,10,18,0.72) 50%, rgba(74,124,111,0.4) 100%); }
  .intro-strip { background: #0a0a12; }
  .ftr { background: #0a0a12; }
  .crd, .val-crd, .diff-item, .eco-crd, .health-item, .target-item, .slide-crd, .price-crd, .thanks-next { background: #1e1e2c; }
  .hdr-logo img { }
  .ftr-logo { }
  .pg-hero { background: #0a0a12; }
  .hours-box { background: #0a0a12; }
  .frm-input, .frm-textarea { background: #1e1e2c; border-color: #2a2a3c; color: #e8e6e0; }
  .ck-modal { background: #1e1e2c; }
  .ck-trigger { background: #1e1e2c; border-color: #2a2a3c; color: #8a8698; }
  .legal-intro { background: #1e1e2c; }
  .legal-intro-p { background: #1e1e2c; }
  .imp-table td { border-color: #2a2a3c; color: #8a8698; }
  .imp-table td:first-child { background: rgba(74,124,111,0.06); color: #c8c4bc; }
  .imp-table tr:nth-child(even) td { background: #1a1a26; }
  .ck-table th { background: #0a0a12; }
  .ck-table td { border-color: #2a2a3c; color: #8a8698; }
  .ck-table tr:hover td { background: #1a1a26; }
  .about-img-wrap { box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .quad-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-inner { grid-template-columns: 1fr 1fr; }
  .img-break-inner { grid-template-columns: 1fr; }
  .img-break-photo { height: 360px; }
  .img-break-text { padding: var(--sp-lg) var(--sp-md); }
  .about-grid { grid-template-columns: 1fr; }
  .eco-intro { grid-template-columns: 1fr; }
  .health-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 768px) {
  :root { --sp-xl: 4rem; --sp-lg: 2.5rem; }

  .quad-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  .health-grid { grid-template-columns: 1fr; }
  .ftr-inner { grid-template-columns: 1fr; gap: var(--sp-md); }
  .frm-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .ck-actions { flex-direction: column; }
  .ck-btn { min-width: auto; }
  .intro-strip-inner { flex-direction: column; align-items: center; text-align: center; }
  .thanks-inner { text-align: left; }
  .thanks-icon { text-align: center; }
  .thanks-title { text-align: center; }
  .thanks-sub { text-align: center; }
}

@media (max-width: 480px) {
  :root { --sp-xl: 3rem; }
  .hero-h1 { font-size: 2.5rem; }
  .cta-ban-title { font-size: 1.5rem; }
  .legal-title { font-size: 2rem; }
}