
.pace .pace-progress { background: #5c7a4a; }
.pace .pace-progress-inner { box-shadow: 0 0 10px #5c7a4a, 0 0 5px #5c7a4a; }
.pace .pace-activity {
  border-top-color: #5c7a4a;
  border-left-color: #5c7a4a;
}


:root {
  --moss: #4a6741;
  --stone: #8c7b6b;
  --ink: #1e2420;

  --moss-light: color-mix(in oklch, var(--moss), white 55%);
  --moss-pale: color-mix(in oklch, var(--moss), white 80%);
  --moss-dark: color-mix(in oklch, var(--moss), black 25%);
  --moss-deep: color-mix(in oklch, var(--moss), black 45%);
  --moss-mid: color-mix(in oklch, var(--moss), white 30%);

  --stone-light: color-mix(in oklch, var(--stone), white 55%);
  --stone-pale: color-mix(in oklch, var(--stone), white 80%);
  --stone-dark: color-mix(in oklch, var(--stone), black 20%);

  --ink-light: color-mix(in oklch, var(--ink), white 15%);
  --ink-soft: color-mix(in oklch, var(--ink), white 40%);
  --ink-muted: color-mix(in oklch, var(--ink), white 60%);

  --bg-canvas: color-mix(in oklch, var(--stone), white 92%);
  --bg-section: color-mix(in oklch, var(--moss), white 93%);
  --bg-card: color-mix(in oklch, white, var(--stone) 4%);

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--ink), transparent 88%),
               0 1px 2px color-mix(in oklch, var(--ink), transparent 94%);
  --shadow-md: 0 4px 6px color-mix(in oklch, var(--ink), transparent 85%),
               0 2px 4px color-mix(in oklch, var(--ink), transparent 90%);
  --shadow-lg: 0 10px 25px color-mix(in oklch, var(--ink), transparent 82%),
               0 4px 10px color-mix(in oklch, var(--ink), transparent 88%);
  --shadow-xl: 0 20px 40px color-mix(in oklch, var(--ink), transparent 78%),
               0 8px 16px color-mix(in oklch, var(--ink), transparent 86%);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --gap: clamp(12px, 2vw, 20px);
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1280px;

  --font-display: 'Red Hat Display', sans-serif;
  --font-body: 'Red Hat Text', sans-serif;

  --nav-h: 72px;
}


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

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

body.canvas {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}


h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--ink); }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; }

p { color: var(--ink-soft); line-height: 1.7; }


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--moss);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--moss-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}
.btn-primary.btn-large { padding: 18px 36px; font-size: 1.05rem; }
.btn-primary.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--moss);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--moss);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--moss);
  color: white;
  transform: translateY(-2px);
}
.btn-ghost.btn-sm { padding: 10px 20px; font-size: 0.9rem; }


.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--ink-muted); max-width: 540px; }

.section-header { margin-bottom: clamp(40px, 6vw, 72px); }
.section-header.offset-left { padding-left: 0; }
.section-header.offset-right { text-align: right; margin-left: auto; }


.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}


.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}
.nav-bar.nav-solid {
  background: color-mix(in oklch, white, var(--stone) 3%);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { transition: opacity 0.2s ease; }
.nav-logo:hover img { opacity: 0.8; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s ease;
}
.nav-bar:not(.nav-solid) .nav-link { color: white; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--moss);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-bar:not(.nav-solid) .nav-link::after { background: white; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--moss); }
.nav-bar:not(.nav-solid) .nav-link:hover { color: white; opacity: 0.85; }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--moss);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--moss-dark); transform: translateY(-1px); color: white; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: color-mix(in oklch, var(--moss), transparent 85%); }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background 0.2s ease;
}
.nav-bar:not(.nav-solid) .nav-hamburger span { background: white; }


.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: color-mix(in oklch, white, var(--moss) 3%);
  z-index: 2000;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}
.drawer.drawer-open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--ink);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-close:hover { color: var(--moss); background: var(--moss-pale); }
.drawer-links { display: flex; flex-direction: column; gap: 4px; }
.drawer-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.drawer-links a:hover { background: var(--moss-pale); color: var(--moss-dark); }
.drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--moss);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.25s ease;
  text-align: center;
  min-height: 52px;
}
.drawer-cta:hover { background: var(--moss-dark); color: white; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--ink), transparent 55%);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-backdrop.active { opacity: 1; pointer-events: auto; }

.canvas.drawer-pushed {
  transform: scale(0.95) translateX(-40px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.stage-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in oklch, var(--ink), transparent 0%) 0%,
    color-mix(in oklch, var(--moss-deep), transparent 30%) 100%
  );
  z-index: 1;
}

.stage-marquee {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}
.stage-marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  color: color-mix(in oklch, var(--moss), transparent 75%);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.stage-marquee-track span { padding: 0 clamp(12px, 2vw, 24px); }
.marquee-dot { color: color-mix(in oklch, var(--moss), transparent 60%); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.spotlight.hero-card {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 90%;
  background: color-mix(in oklch, white, transparent 8%);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid color-mix(in oklch, white, transparent 70%);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 64px);
  box-shadow: var(--shadow-xl),
              0 0 0 1px color-mix(in oklch, white, transparent 85%),
              inset 0 1px 0 color-mix(in oklch, white, transparent 60%);
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--moss-light), white 20%);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-body {
  color: color-mix(in oklch, white, transparent 25%);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }


.bento-section {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: var(--gap);
}

.bento-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm), 0 0 0 1px color-mix(in oklch, var(--stone), transparent 80%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}
.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px color-mix(in oklch, var(--moss), transparent 70%);
}

.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-tall-2 { grid-row: span 2; }

.bento-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in oklch, var(--ink), transparent 10%) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
}
.bento-overlay h3 { color: white; font-size: 1.1rem; margin-bottom: 6px; }
.bento-overlay p { color: color-mix(in oklch, white, transparent 20%); font-size: 0.85rem; line-height: 1.5; }
.bento-overlay-bottom { justify-content: flex-end; }

.bento-tag {
  display: inline-block;
  background: color-mix(in oklch, var(--moss), transparent 20%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  width: fit-content;
}

.bento-accent {
  background: var(--moss);
  color: white;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-accent h3 { color: white; margin-bottom: 10px; font-size: 1.15rem; }
.bento-accent p { color: color-mix(in oklch, white, transparent 25%); font-size: 0.9rem; }

.bento-dark {
  background: var(--ink);
  color: white;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-dark h3 { color: white; margin-bottom: 10px; }
.bento-dark p { color: color-mix(in oklch, white, transparent 30%); font-size: 0.9rem; }

.bento-light {
  background: var(--bg-section);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-light h3 { margin-bottom: 8px; }
.bento-light p { font-size: 0.9rem; }

.bento-stone {
  background: var(--stone-pale);
  min-height: 240px;
}

.bento-cta-cell {
  background: var(--moss-pale);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  grid-column: span 2;
}
.bento-cta-cell .bento-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
}
.bento-cta-cell h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 8px; }

.bento-icon-wrap {
  font-size: 2.4rem;
  color: color-mix(in oklch, var(--moss-light), white 30%);
  margin-bottom: 16px;
}
.bento-icon-sm { font-size: 1.6rem; }

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in oklch, var(--moss-light), white 30%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}
.bento-link:hover { gap: 14px; color: white; }


.services-section { padding: var(--section-pad) 0; }
.services-flow { display: flex; flex-direction: column; gap: 0; }
.service-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--stone), transparent 75%);
  transition: background 0.2s ease;
}
.service-step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--moss-light);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 { margin-bottom: 10px; }
.step-content p { max-width: 640px; }


.why-section { padding: var(--section-pad) 0; background: var(--bg-section); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.why-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--stone), transparent 78%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon {
  font-size: 2rem;
  color: var(--moss);
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  background: var(--moss-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 { margin-bottom: 12px; font-size: 1.15rem; }


.spa-section { padding: var(--section-pad) 0; }
.spa-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.spa-text h2 { margin-bottom: 20px; }
.spa-text p { margin-bottom: 16px; }
.spa-text p:last-of-type { margin-bottom: 28px; }
.spa-img {
  width: 100%;
  height: clamp(300px, 45vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.materials-section { padding: var(--section-pad) 0; background: var(--bg-section); }
.materials-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gap);
}
.mat-cell { border-radius: var(--radius-lg); overflow: hidden; }
.mat-img { position: relative; min-height: 260px; }
.mat-image { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.mat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, color-mix(in oklch, var(--ink), transparent 15%), transparent);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 32px 20px 16px;
}
.mat-text {
  background: var(--bg-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--stone), transparent 78%);
}
.mat-text h3 { margin-bottom: 14px; }
.mat-text-dark { background: var(--ink); }
.mat-text-dark h3 { color: white; }
.mat-text-dark p { color: color-mix(in oklch, white, transparent 30%); }


.cta-section {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 60px);
  background: var(--ink);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-section .section-eyebrow { color: var(--moss-light); }
.cta-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-body {
  color: color-mix(in oklch, white, transparent 30%);
  font-size: 1.05rem;
  margin-bottom: 36px;
}


.page-header {
  padding: calc(var(--nav-h) + clamp(40px, 6vw, 80px)) clamp(20px, 5vw, 60px) clamp(40px, 6vw, 80px);
}
.page-header-solid { background: var(--bg-section); }
.page-header-image {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in oklch, var(--ink), transparent 10%) 0%, color-mix(in oklch, var(--ink), transparent 50%) 100%);
}
.page-header-content { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(40px, 6vw, 80px); }
.page-title { margin-bottom: 12px; }
.page-subtitle { font-size: 1.05rem; color: var(--ink-muted); max-width: 600px; }
.eyebrow-light { color: color-mix(in oklch, var(--moss-light), white 40%); }
.page-title-light { color: white; }
.page-subtitle-light { color: color-mix(in oklch, white, transparent 25%); }


.about-intro { padding: var(--section-pad) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-img {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.philosophy-section { padding: var(--section-pad) 0; background: var(--bg-section); }
.philosophy-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.phil-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--stone), transparent 78%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phil-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.phil-large { grid-column: span 2; background: var(--moss); }
.phil-large h3 { color: white; margin-bottom: 14px; font-size: 1.3rem; }
.phil-large p { color: color-mix(in oklch, white, transparent 25%); }
.phil-wide { grid-column: span 2; }
.phil-icon {
  font-size: 2rem;
  color: color-mix(in oklch, var(--moss-light), white 30%);
  margin-bottom: 20px;
}
.phil-icon-sm { font-size: 1.5rem; color: var(--moss); margin-bottom: 16px; }
.phil-card h3 { margin-bottom: 12px; }


.process-section { padding: var(--section-pad) 0; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 40px);
}
.tool-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.tool-item > i {
  font-size: 1.5rem;
  color: var(--moss);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--moss-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-item h4 { margin-bottom: 8px; }
.tool-item p { font-size: 0.9rem; }


.services-detail-section { padding: var(--section-pad) 0; }
.service-detail-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: clamp(36px, 5vw, 60px) 0;
  border-bottom: 1px solid color-mix(in oklch, var(--stone), transparent 75%);
}
.service-detail-block:last-child { border-bottom: none; }
.sdb-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--moss-pale);
  line-height: 1;
  padding-top: 6px;
}
.sdb-content h2 { margin-bottom: 16px; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.sdb-content p { margin-bottom: 14px; max-width: 720px; }
.sdb-content p:last-child { margin-bottom: 0; }


.spa-intro { padding: var(--section-pad) 0; }
.spa-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.spa-intro-text h2 { margin-bottom: 20px; }
.spa-intro-text p { margin-bottom: 16px; }
.spa-intro-features { display: flex; flex-direction: column; gap: 24px; }
.spa-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in oklch, var(--stone), transparent 80%);
}
.spa-feature > i {
  font-size: 1.3rem;
  color: var(--moss);
  flex-shrink: 0;
  margin-top: 2px;
}
.spa-feature h4 { margin-bottom: 4px; font-size: 1rem; }
.spa-feature p { font-size: 0.88rem; }

.spa-types-section { padding: var(--section-pad) 0; background: var(--bg-section); }
.spa-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.spa-type-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--stone), transparent 78%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spa-type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stc-icon {
  font-size: 1.8rem;
  color: var(--moss);
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  background: var(--moss-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spa-type-card h3 { margin-bottom: 12px; }

.spa-process-section { padding: var(--section-pad) 0; }
.spa-process-steps { display: flex; flex-direction: column; gap: 0; }
.sps-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--stone), transparent 75%);
}
.sps-step:last-child { border-bottom: none; }
.sps-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  background: var(--moss);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sps-step h4 { margin-bottom: 8px; }
.sps-step p { font-size: 0.9rem; }


.contact-section { padding: var(--section-pad) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 12px; }
.contact-intro { margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid color-mix(in oklch, var(--stone), transparent 60%);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: white;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  min-height: 48px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--moss), transparent 80%);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-check { flex-direction: row; align-items: flex-start; gap: 12px; }
.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 1px;
  accent-color: var(--moss);
  cursor: pointer;
}
.checkbox-label a { color: var(--moss); text-decoration: underline; }

.contact-info-wrap { display: flex; flex-direction: column; gap: var(--gap); }
.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--stone), transparent 78%);
}
.contact-info-card h3 { margin-bottom: 20px; font-size: 1.1rem; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--stone), transparent 80%);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail > i {
  color: var(--moss);
  font-size: 1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}
.contact-detail strong { display: block; font-family: var(--font-display); font-size: 0.85rem; margin-bottom: 3px; }
.contact-detail p { font-size: 0.9rem; }
.contact-detail a { color: var(--moss); }
.contact-detail a:hover { color: var(--moss-dark); }

.contact-info-note { background: var(--moss-pale); }
.contact-note-icon { font-size: 1.8rem; color: var(--moss); margin-bottom: 14px; display: block; }
.contact-info-note h4 { margin-bottom: 10px; }
.contact-info-note p { font-size: 0.9rem; }

.map-section { padding-bottom: var(--section-pad); }
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe { display: block; }


.team-section { padding: var(--section-pad) 0; background: var(--bg-section); }
.team-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.team-img {
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.team-text h3 { margin-bottom: 16px; }
.team-text p { margin-bottom: 16px; }
.team-text p:last-of-type { margin-bottom: 28px; }


.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 20px 80px;
  min-height: 70vh;
}
.thanks-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  box-shadow: var(--shadow-xl);
  text-align: center;
  max-width: 560px;
  width: 100%;
  border: 1px solid color-mix(in oklch, var(--stone), transparent 78%);
}
.thanks-icon {
  font-size: 3.5rem;
  color: var(--moss);
  margin-bottom: 24px;
}
.thanks-card h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.thanks-card p { margin-bottom: 16px; }
.thanks-countdown {
  background: var(--moss-pale);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin: 24px 0;
}
.thanks-countdown p { margin: 0; font-size: 0.9rem; color: var(--moss-dark); }
.thanks-countdown strong { color: var(--moss); font-size: 1.1rem; }


.legal-main { flex: 1; padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px); }
.legal-layout {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.legal-layout-cookies { grid-template-columns: 1fr; }
.legal-content-full { max-width: 860px; }
.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--stone), transparent 78%);
}
.legal-nav { display: flex; flex-direction: column; gap: 4px; }
.legal-nav a {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
  display: block;
  line-height: 1.4;
}
.legal-nav a:hover { background: var(--moss-pale); color: var(--moss-dark); }
.legal-content { max-width: 720px; }
.legal-section { margin-bottom: clamp(36px, 5vw, 60px); }
.legal-section h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--moss-pale);
}
.legal-section p { margin-bottom: 14px; font-size: 0.95rem; }
.legal-section p:last-child { margin-bottom: 0; }


.cookie-block { margin-bottom: clamp(40px, 6vw, 60px); }
.cookie-block h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--moss-pale);
}
.cookie-block p { margin-bottom: 14px; font-size: 0.95rem; }
.cookie-block a { color: var(--moss); text-decoration: underline; }
.cookie-type { margin-bottom: 32px; }
.cookie-type-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.cookie-type h3 { font-size: 1.1rem; margin: 0; }
.cookie-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}
.cookie-badge-required { background: var(--moss-pale); color: var(--moss-dark); }
.cookie-badge-analytics { background: color-mix(in oklch, #4a7bb5, white 75%); color: color-mix(in oklch, #4a7bb5, black 30%); }
.cookie-badge-marketing { background: color-mix(in oklch, #b5804a, white 75%); color: color-mix(in oklch, #b5804a, black 30%); }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.88rem;
}
.cookie-table th {
  background: var(--bg-section);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink);
  border-bottom: 2px solid color-mix(in oklch, var(--stone), transparent 70%);
}
.cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid color-mix(in oklch, var(--stone), transparent 80%);
  color: var(--ink-soft);
}
.cookie-table tr:last-child td { border-bottom: none; }


.footer-wrap {
  background: var(--ink);
  color: white;
  margin-top: auto;
}
.footer-quote {
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 60px);
  border-bottom: 1px solid color-mix(in oklch, white, transparent 85%);
  text-align: center;
}
.footer-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: white;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.4;
}
.footer-quote blockquote cite {
  font-size: 0.85rem;
  color: color-mix(in oklch, white, transparent 50%);
  font-style: italic;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 60px);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { opacity: 0.9; }
.footer-brand p { color: color-mix(in oklch, white, transparent 35%); font-size: 0.9rem; }
.footer-brand address { display: flex; flex-direction: column; gap: 8px; }
.footer-brand address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: color-mix(in oklch, white, transparent 35%);
}
.footer-brand address i { color: var(--moss-light); margin-top: 2px; flex-shrink: 0; }
.footer-brand address a { color: color-mix(in oklch, white, transparent 25%); }
.footer-brand address a:hover { color: var(--moss-light); }
.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklch, white, transparent 45%);
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 30%);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--moss-light); }
.footer-bottom {
  padding: 20px clamp(20px, 5vw, 60px);
  border-top: 1px solid color-mix(in oklch, white, transparent 88%);
}
.footer-bottom p { font-size: 0.83rem; color: color-mix(in oklch, white, transparent 55%); }
.footer-bottom a { color: color-mix(in oklch, white, transparent 40%); transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--moss-light); }


.cookie-consent-card {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px color-mix(in oklch, var(--stone), transparent 75%);
  z-index: 9999;
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  overflow: hidden;
}
.cookie-consent-card.cc-visible {
  transform: translateY(0);
  opacity: 1;
}
.cc-icon-bar {
  background: var(--moss-pale);
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cc-icon-bar i { font-size: 1.6rem; color: var(--moss); }
.cc-icon-bar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.cc-body { padding: 16px 24px; }
.cc-message { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; }
.cc-message a { color: var(--moss); text-decoration: underline; }

.cc-toggles { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.cc-toggles.cc-expanded { max-height: 200px; }
.cc-toggle { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cc-toggle label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }
.cc-toggle input[type="checkbox"] { accent-color: var(--moss); width: 16px; height: 16px; }
.cc-toggle-required label { color: var(--ink-muted); }

.cc-actions { display: flex; flex-direction: column; gap: 8px; }
.cc-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease;
  text-align: center;
}
.cc-btn-accept { background: var(--moss); color: white; }
.cc-btn-accept:hover { background: var(--moss-dark); transform: translateY(-1px); }
.cc-btn-customize { background: var(--bg-section); color: var(--ink); border: 1.5px solid color-mix(in oklch, var(--stone), transparent 60%); }
.cc-btn-customize:hover { background: var(--moss-pale); }
.cc-btn-reject { background: transparent; color: var(--ink-muted); font-size: 0.8rem; padding: 8px; }
.cc-btn-reject:hover { color: var(--ink); }
.cc-footer-note { font-size: 0.75rem; color: var(--ink-muted); text-align: center; padding: 12px 24px; border-top: 1px solid color-mix(in oklch, var(--stone), transparent 80%); }
.cc-footer-note a { color: var(--moss); text-decoration: underline; }


@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-wide { grid-column: span 2; }
  .bento-cta-cell { grid-column: span 3; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr 360px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .spa-bento { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .spa-intro-grid { grid-template-columns: 1fr; }
  .team-bento { grid-template-columns: 1fr; }
  .materials-bento { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .philosophy-bento { grid-template-columns: 1fr 1fr; }
  .phil-large { grid-column: span 2; }
  .phil-wide { grid-column: span 2; }
  .tools-grid { grid-template-columns: 1fr; }
  .spa-types-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .bento-tall { grid-row: span 1; }
  .bento-tall-2 { grid-row: span 1; }
  .bento-cta-cell { grid-column: span 2; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .section-header.offset-right { text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .service-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .service-detail-block { grid-template-columns: 70px 1fr; gap: 24px; }
  .sdb-number { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .philosophy-bento { grid-template-columns: 1fr; }
  .phil-large { grid-column: span 1; }
  .phil-wide { grid-column: span 1; }
}

@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .bento-cta-cell { grid-column: span 1; }
  .materials-bento { grid-template-columns: 1fr; }
  .cookie-consent-card { right: 12px; left: 12px; width: auto; bottom: 12px; }
  .service-detail-block { grid-template-columns: 1fr; gap: 12px; }
  .sdb-number { font-size: 2rem; }
}


main { flex: 1; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }