:root {
  --green-deep: #2d5016;
  --green-mid: #4a7c23;
  --green-bright: #6ba332;
  --green-light: #a8c97a;
  --green-pale: #d4e8b0;
  --green-mist: #eef5e3;
  --amber: #c8842a;
  --amber-light: #f2c77e;
  --amber-pale: #fdf3e3;
  --cream: #f9f6ef;
  --warm-white: #fdfaf4;
  --bg-light: #f9f6ef;
  --bg-warm: #f4f0e6;
  --text-dark: #1e2a14;
  --text-mid: #3d4f28;
  --text-muted: #6b7a55;
  --text-light: #a8b890;
  --shadow-sm: 0 2px 8px rgba(45,80,22,0.06), 0 1px 3px rgba(45,80,22,0.04);
  --shadow-md: 0 8px 24px rgba(45,80,22,0.10), 0 2px 8px rgba(45,80,22,0.06), 0 1px 3px rgba(45,80,22,0.04);
  --shadow-lg: 0 20px 48px rgba(45,80,22,0.13), 0 8px 20px rgba(45,80,22,0.08), 0 2px 6px rgba(45,80,22,0.05);
  --shadow-card: 0 4px 16px rgba(45,80,22,0.08), 0 1px 4px rgba(45,80,22,0.05);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Urbanist', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { text-decoration: none; color: inherit; transition: color 0.25s ease, opacity 0.25s ease; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-lg) 0;
}

.section--warm { background: var(--bg-warm); }
.section--green { background: var(--green-deep); color: var(--warm-white); position: relative; }
.section--wide { max-width: 100%; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-md);
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: var(--green-mist);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.label--light {
  color: var(--green-pale);
  background: rgba(255,255,255,0.12);
}

.heading--1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.heading--2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.heading--3 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.heading--light { color: var(--warm-white); }

.page-transition-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-bright), var(--amber));
  z-index: 9999;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 2px 2px 0;
}

.header {
  background: rgba(249,246,239,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,163,50,0.12);
  position: relative;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.header__logo { display: flex; align-items: center; }

.nav {
  display: none;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .nav { display: flex; }
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__link:hover { background: var(--green-mist); color: var(--green-mid); }
.nav__link--active { color: var(--green-bright); background: var(--green-mist); }

.header__flip-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.header__flip-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.header__flip-btn:hover { background: var(--green-mist); }

@media (min-width: 900px) {
  .header__flip-btn { display: none; }
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(30,42,20,0.5);
  backdrop-filter: blur(4px);
  perspective: 1200px;
}

.mobile-menu-overlay.is-open { display: flex; flex-direction: column; }

.mobile-menu-card {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu-card.is-flipped { transform: rotateX(-180deg); }

.mobile-menu-card__front,
.mobile-menu-card__back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  width: 100%;
}

.mobile-menu-card__front {
  background: var(--bg-light);
  border-bottom: 1px solid rgba(107,163,50,0.12);
}

.mobile-menu-card__back {
  background: var(--green-deep);
  padding: 2rem 1.5rem 3rem;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(180deg);
}

.mobile-menu__close {
  background: none;
  border: none;
  color: var(--green-pale);
  font-size: 1.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; }

.mobile-nav__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav__link:hover { background: rgba(255,255,255,0.1); color: var(--green-pale); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  line-height: 1.2;
}

.btn--primary {
  background: var(--green-bright);
  color: #fff;
  border-color: var(--green-bright);
  box-shadow: 0 4px 16px rgba(107,163,50,0.3);
}

.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  box-shadow: 0 6px 24px rgba(107,163,50,0.4);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background: var(--green-mist);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--warm-white);
  border-color: var(--green-pale);
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  border: 2px solid var(--green-pale);
  cursor: pointer;
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 5rem;
}

@media (min-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 6rem;
  }
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.hero__blob--1 {
  width: 500px; height: 500px;
  background: var(--green-pale);
  top: -150px; left: -150px;
}

.hero__blob--2 {
  width: 350px; height: 350px;
  background: var(--amber-pale);
  top: 100px; right: -80px;
}

.hero__blob--3 {
  width: 250px; height: 250px;
  background: var(--green-mist);
  bottom: 50px; left: 40%;
}

.hero__content { position: relative; z-index: 1; }

.hero__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero__typed-wrapper {
  color: var(--green-bright);
  min-height: 1.1em;
  display: block;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__meta-item i { color: var(--green-bright); }

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__img-blob {
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__img-blob:hover .hero__img { transform: scale(1.04); }

.hero__badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--amber);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.hero__wave { line-height: 0; margin-top: -1px; }
.hero__wave svg { width: 100%; display: block; }

.intro-section { background: var(--bg-warm); }

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

@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.intro-grid__text h2 { margin-bottom: 1rem; }
.intro-grid__text p { color: var(--text-muted); margin-bottom: 1rem; }
.intro-grid__text .btn { margin-top: 1rem; }

.intro-grid__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card--featured {
  background: var(--green-deep);
  color: var(--warm-white);
}

.card--featured h3 { color: var(--warm-white); }
.card--featured p { color: var(--green-light); }
.card--featured .card__icon { color: var(--green-pale); }

.card--accent {
  background: var(--amber-pale);
  border: 1px solid var(--amber-light);
}

.card__icon {
  font-size: 1.5rem;
  color: var(--green-bright);
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-alternating { display: flex; flex-direction: column; gap: 5rem; margin-top: 3rem; }

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

@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature-row--reverse .feature-row__visual { order: 2; }
  .feature-row--reverse .feature-row__text { order: 1; }
}

.feature-row__img-wrap {
  border-radius: 40% 60% 50% 50% / 45% 50% 55% 50%;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: border-radius 0.4s ease;
}

.feature-row__img-wrap:hover {
  border-radius: 50% 50% 40% 60% / 55% 45% 50% 50%;
}

.feature-row__img { width: 100%; height: 100%; object-fit: cover; }

.feature-row__text .label { margin-bottom: 0.75rem; }
.feature-row__text h3 { margin-bottom: 0.85rem; }
.feature-row__text p { color: var(--text-muted); margin-bottom: 0.75rem; }

.theory-section { position: relative; overflow: hidden; }
.theory-wave-top, .theory-wave-bottom { line-height: 0; }
.theory-wave-top svg, .theory-wave-bottom svg { width: 100%; display: block; }

.theory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 2rem 0;
}

@media (min-width: 900px) {
  .theory-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}

.theory-grid__left h2 { color: var(--warm-white); margin-bottom: 1rem; }
.theory-grid__left p { color: var(--green-light); margin-bottom: 1.5rem; }

.theory-grid__img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.theory-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: background 0.2s ease;
}

.theory-item:hover { background: rgba(255,255,255,0.12); }

.theory-item__icon {
  width: 44px; height: 44px;
  background: var(--green-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.theory-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.3rem;
}

.theory-item p { font-size: 0.85rem; color: var(--green-light); line-height: 1.6; }

.takes-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .takes-bento {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .bento-cell--wide { grid-column: 1; grid-row: 1 / 3; }
  .bento-cell--tall { grid-column: 3; grid-row: 1 / 3; }
}

.bento-cell {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.bento-cell--wide, .bento-cell--tall { padding: 0; }

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

.bento-cell__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(30,42,20,0.85) 0%, transparent 100%);
  padding: 1.5rem;
  color: var(--warm-white);
}

.bento-cell__overlay h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.bento-cell__overlay p { font-size: 0.85rem; color: var(--green-pale); }

.bento-cell--accent { background: var(--green-deep); color: var(--warm-white); }
.bento-cell--accent h4 { color: var(--warm-white); }
.bento-cell--accent p { color: var(--green-light); }
.bento-cell--accent .bento-cell__icon { color: var(--green-pale); }

.bento-cell__icon {
  font-size: 2rem;
  color: var(--green-bright);
  margin-bottom: 1rem;
}

.bento-cell h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-dark); }
.bento-cell p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.cta-section { }

.cta-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .cta-card { grid-template-columns: 1fr 1fr; }
}

.cta-card__blob {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--green-mist);
  border-radius: 50%;
  top: -150px; left: -150px;
  filter: blur(80px);
  pointer-events: none;
}

.cta-card__content {
  padding: 3.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-card__content h2 { margin-bottom: 1rem; }
.cta-card__content p { color: var(--text-muted); margin-bottom: 2rem; }

.cta-card__visual { display: none; }

@media (min-width: 768px) { .cta-card__visual { display: block; } }

.cta-card__img { width: 100%; height: 100%; object-fit: cover; }

.page-hero {
  background: var(--cream);
  padding: 4rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.page-hero--green {
  background: var(--green-deep);
}

.page-hero--compact { padding: 3rem 0 1rem; }

.page-hero__blob {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--green-pale) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  opacity: 0.5;
}

.page-hero__content { max-width: 700px; }

.page-hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 600px;
}

.page-hero__lead--light { color: var(--green-light); }
.page-hero--green .heading--1 { color: var(--warm-white); }

.page-hero__wave { line-height: 0; margin-top: 3rem; }
.page-hero__wave svg { width: 100%; display: block; }

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

@media (min-width: 768px) {
  .values-intro { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.values-intro__text h2 { margin-bottom: 1.25rem; }
.values-intro__text p { color: var(--text-muted); margin-bottom: 1rem; }

.values-intro__img-wrap {
  border-radius: 50% 50% 40% 60% / 45% 55% 50% 50%;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.values-intro__img { width: 100%; height: 100%; object-fit: cover; }

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) { .principles-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .principles-grid { grid-template-columns: repeat(4, 1fr); } }

.principle-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.principle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.principle-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.principle-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.principle-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.approach-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .approach-section { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.approach-section__left h2 { margin-bottom: 1.25rem; }
.approach-section__left p { color: var(--text-muted); margin-bottom: 1rem; }

.approach-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s ease;
}

.approach-card:hover { transform: translateX(4px); }

.approach-card--accent { background: var(--green-mist); }

.approach-card__icon {
  font-size: 1.25rem;
  color: var(--green-bright);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.approach-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.approach-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.service-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .service-overview { grid-template-columns: 1fr 380px; gap: 4rem; }
}

.service-overview__main h2 { margin-bottom: 1rem; }
.service-overview__main > p { color: var(--text-muted); margin-bottom: 2rem; }

.timeline { position: relative; padding-left: 2rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--green-pale);
}

.timeline__item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline__dot {
  position: absolute;
  left: -1.95rem;
  top: 0.35rem;
  width: 14px; height: 14px;
  background: var(--green-bright);
  border-radius: 50%;
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 2px var(--green-bright);
}

.timeline__time {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  display: block;
  margin-bottom: 0.3rem;
}

.timeline__content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.timeline__content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.service-sidebar-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.service-sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.service-sidebar-card--accent {
  background: var(--green-deep);
}

.service-sidebar-card--accent h3 { color: var(--warm-white); }

.service-detail-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 500;
}

.service-detail-list li i { color: var(--green-bright); width: 16px; }

.service-check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.service-check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--green-pale);
  font-weight: 500;
}

.service-check-list li i { color: var(--green-bright); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.location-grid__photo {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.location-grid__text p { color: var(--text-muted); margin-bottom: 1rem; }

.guide-intro { max-width: 720px; }

.guide-intro__text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-left: 4px solid var(--green-bright);
  padding-left: 1.5rem;
}

.guide-chapter { margin-bottom: 0; }

.guide-chapter__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.guide-chapter__num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  flex-shrink: 0;
}

.guide-chapter__header h2 { padding-top: 0.5rem; }

.guide-chapter__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .guide-chapter__body { grid-template-columns: 1fr 320px; gap: 3rem; }
}

.guide-chapter__text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.guide-tip {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--amber);
}

.guide-tip--green { border-left-color: var(--green-bright); }

.guide-tip__icon {
  font-size: 1.1rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
  display: block;
}

.guide-tip--green .guide-tip__icon { color: var(--green-bright); }

.guide-tip h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.guide-tip p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.guide-cta { text-align: center; }

.contact-main { padding: 3rem 0; flex: 1; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.contact-quote { margin-bottom: 2rem; }

.contact-quote__text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.4;
  margin-bottom: 1rem;
  font-style: italic;
}

.contact-quote__sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item i {
  width: 40px; height: 40px;
  background: var(--green-mist);
  color: var(--green-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-info-item__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

a.contact-info-item__value:hover { color: var(--green-bright); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 2rem; }

.contact-form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap__sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-field { display: flex; flex-direction: column; gap: 0.3rem; }

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-required { color: var(--amber); }

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-light);
  border: 1.5px solid rgba(107,163,50,0.2);
  border-radius: var(--radius-md);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  min-height: 44px;
}

.form-input:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(107,163,50,0.15);
}

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

.form-helper { font-size: 0.78rem; color: var(--text-muted); }

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  display: none;
}

.form-field--error .form-error { display: block; }
.form-field--error .form-input { border-color: #c0392b; }

.form-field--checkbox { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

.form-checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid rgba(107,163,50,0.4);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: all 0.2s ease;
  background: var(--bg-light);
  position: relative;
}

.form-checkbox-label input:checked + .form-checkbox-custom {
  background: var(--green-bright);
  border-color: var(--green-bright);
}

.form-checkbox-label input:checked + .form-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 6px; height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-link { color: var(--green-bright); font-weight: 600; }
.form-link:hover { text-decoration: underline; }

.form-field--checkbox .form-error { width: 100%; margin-top: 0.25rem; margin-left: calc(20px + 0.75rem); }

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.thanks-container { text-align: center; max-width: 520px; }

.thanks-anim {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.thanks-svg {
  width: 100px; height: 100px;
}

.thanks-svg__circle {
  stroke-dasharray: 290;
  stroke-dashoffset: 290;
  animation: drawCircle 0.8s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}

.thanks-svg__check {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawCheck 0.5s cubic-bezier(0.4,0,0.2,1) 1.1s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks-heading {
  opacity: 0;
  animation: fadeUp 0.5s ease 1.7s forwards;
  margin-bottom: 1rem;
}

.thanks-text {
  opacity: 0;
  animation: fadeUp 0.5s ease 1.9s forwards;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.thanks-container .btn {
  opacity: 0;
  animation: fadeUp 0.5s ease 2.1s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.legal-section { padding: var(--space-lg) 0; }

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

.legal-body { }

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--green-mist);
}

.legal-body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.legal-body ul { margin: 0 0 1rem 1.5rem; }
.legal-body ul li { color: var(--text-muted); margin-bottom: 0.4rem; line-height: 1.7; font-size: 0.93rem; }

.legal-term {
  color: var(--green-mid);
  font-weight: 700;
  border-bottom: 1px dotted var(--green-mid);
  cursor: help;
}

.legal-def {
  background: var(--green-mist);
  border-left: 4px solid var(--green-bright);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.legal-def strong { color: var(--green-deep); }

.legal-body--clauses .legal-clause { margin-bottom: 1rem; }

.legal-clause h2 {
  font-size: 1.1rem;
  color: var(--green-deep);
  background: var(--green-mist);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  margin: 0 0 0.75rem;
}

.legal-body--technical .cookie-intro-box {
  background: var(--amber-pale);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.cookie-intro-box__icon {
  font-size: 1.5rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cookie-intro-box p { color: var(--text-mid); margin: 0; font-size: 0.95rem; }

.cookie-category {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1rem 0 1.5rem;
  box-shadow: var(--shadow-card);
}

.cookie-category__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-category__header h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }

.cookie-category__badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.cookie-category__badge--required { background: var(--green-mist); color: var(--green-deep); }
.cookie-category__badge--optional { background: var(--amber-pale); color: var(--amber); }

.cookie-category p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.7; }

.cookie-table-wrap { overflow-x: auto; margin-top: 1rem; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.cookie-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  background: var(--green-mist);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cookie-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--bg-warm);
  color: var(--text-muted);
}

.cookie-browser-list {
  list-style: none;
  margin: 0.75rem 0 1rem;
}

.cookie-browser-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-warm);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cookie-browser-list li::before {
  content: '→ ';
  color: var(--green-bright);
  font-weight: 700;
}

.footer {
  background: var(--text-dark);
  color: var(--warm-white);
  margin-top: auto;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__inner { grid-template-columns: auto 1fr auto; gap: 3rem; align-items: start; }
}

.footer__logo-col { }

.footer__tagline { font-size: 0.82rem; color: var(--text-light); margin-top: 0.5rem; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) { .footer__nav { justify-content: center; } }

.footer__link {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.footer__link:hover { color: var(--green-pale); background: rgba(255,255,255,0.06); }

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.2s ease;
}

a.footer__contact-item:hover { color: var(--green-pale); }
.footer__contact-item i { color: var(--green-bright); margin-top: 0.15rem; flex-shrink: 0; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer__legal { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--green-bright);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 200;
  font-size: 1rem;
}

.back-to-top.is-visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green-mid); }

#cookieConsentWidget {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: calc(100% - 2rem);
  max-width: 480px;
  font-family: 'Urbanist', sans-serif;
}

.cookie-card {
  background: var(--text-dark);
  color: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cookie-card__compact { }

.cookie-card__compact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-card__message {
  font-size: 0.88rem;
  color: var(--green-light);
  flex: 1;
  min-width: 180px;
  line-height: 1.5;
}

.cookie-card__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.cookie-btn {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 36px;
}

.cookie-btn--accept {
  background: var(--green-bright);
  color: #fff;
}

.cookie-btn--accept:hover { background: var(--green-mid); }

.cookie-btn--settings {
  background: rgba(255,255,255,0.1);
  color: var(--warm-white);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn--settings:hover { background: rgba(255,255,255,0.18); }

.cookie-card__expanded { display: none; }

.cookie-card--expanded .cookie-card__compact { display: none; }
.cookie-card--expanded .cookie-card__expanded { display: block; }

.cookie-expanded__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--warm-white);
}

.cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cookie-toggle-row:last-of-type { border-bottom: none; }

.cookie-toggle-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-white);
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-toggle-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }

.cookie-toggle__slider {
  display: block;
  width: 40px; height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}

.cookie-toggle__slider::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--green-bright); }
.cookie-toggle input:checked + .cookie-toggle__slider::after { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { opacity: 0.5; cursor: default; }

.cookie-expanded__footer {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-btn--save {
  background: var(--green-bright);
  color: #fff;
  border: none;
}

.cookie-btn--save:hover { background: var(--green-mid); }

.cookie-btn--accept-all {
  background: rgba(255,255,255,0.1);
  color: var(--warm-white);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--accept-all:hover { background: rgba(255,255,255,0.18); }

@media (max-width: 640px) {
  .hero { padding-top: 3rem; }
  .hero__actions { flex-direction: column; }
  .hero__badge { display: none; }
  .takes-bento { grid-template-columns: 1fr; }
  .bento-cell--wide, .bento-cell--tall { grid-column: auto; grid-row: auto; }
  .intro-grid__cards { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .cta-card__content { padding: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .guide-chapter__header { flex-direction: column; gap: 0.5rem; }
  .guide-chapter__num { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .page-hero { padding: 3rem 0 0.5rem; }
  .header__inner { padding: 0.75rem 1rem; }
}