/* ============================================
   Talented Diversity — Design System
   Nature-inspired IT Marketing palette
   ============================================ */

:root {
  --forest-deep: #1b4332;
  --forest: #2d6a4f;
  --emerald: #40916c;
  --sage: #52b788;
  --mint: #74c69d;
  --leaf-light: #b7e4c7;
  --mist: #d8f3dc;
  --cream: #f8faf8;
  --white: #ffffff;
  --text-primary: #142818;
  --text-secondary: #3d5a45;
  --text-muted: #5c7363;
  --border: rgba(45, 106, 79, 0.12);
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
  --shadow-md: 0 8px 32px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-deep);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 620px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

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

/* ---- Header / Navigation ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  pointer-events: none;
  transition: padding var(--transition);
}

.header.scrolled {
  padding: 10px 0;
}

.nav-shell {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  background: rgba(12, 38, 28, 0.62);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(45, 106, 79, 0.14);
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: transform var(--transition), opacity var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.03);
  opacity: 0.92;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), border-color var(--transition);
}

.header.scrolled .nav-links {
  background: rgba(45, 106, 79, 0.06);
  border-color: rgba(45, 106, 79, 0.08);
}

.nav-link {
  display: block;
  padding: 8px 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
  color: var(--forest-deep);
  background: var(--white);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
  color: var(--text-secondary);
}

.header.scrolled .nav-link:hover {
  color: var(--forest-deep);
  background: rgba(45, 106, 79, 0.08);
}

.header.scrolled .nav-link.active {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 2px 10px rgba(45, 106, 79, 0.25);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-deep);
  background: var(--white);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all var(--transition);
}

.nav-cta-btn svg {
  transition: transform var(--transition);
}

.nav-cta-btn:hover {
  background: var(--mint);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(116, 198, 157, 0.4);
}

.nav-cta-btn:hover svg {
  transform: translateX(3px);
}

.header.scrolled .nav-cta-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.3);
}

.header.scrolled .nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  box-shadow: 0 6px 24px rgba(27, 67, 50, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition);
}

.header.scrolled .nav-toggle {
  background: rgba(45, 106, 79, 0.08);
  border-color: rgba(45, 106, 79, 0.12);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header.scrolled .nav-toggle span {
  background: var(--forest-deep);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile-cta {
  display: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.88) 0%,
    rgba(45, 106, 79, 0.72) 45%,
    rgba(64, 145, 108, 0.55) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--leaf-light);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}

.hero-title em {
  font-style: normal;
  color: var(--mint);
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s infinite;
}

/* ---- Intro Strip ---- */
.intro-strip {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.intro-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.intro-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  border-radius: var(--radius-md);
  color: var(--forest);
}

.intro-item h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.intro-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Sections ---- */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ---- About ---- */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--emerald);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.about-image-accent strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-accent span {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  opacity: 0.9;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest-deep);
}

.about-feature svg {
  flex-shrink: 0;
  color: var(--emerald);
}

/* ---- Services ---- */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}

.service-card-body p {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(64, 145, 108, 0.25);
}

.service-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 67, 50, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--mint);
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 12px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  padding: 4px 12px;
  background: var(--mist);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--forest);
}

/* ---- Process ---- */
.process {
  background: linear-gradient(180deg, var(--cream) 0%, var(--mist) 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--emerald), var(--sage));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--sage);
  border-radius: 50%;
  color: var(--forest);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.process-step:hover .process-step-icon {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  transform: scale(1.08);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0 8px;
}

/* ---- Metrics ---- */
.metrics {
  background: var(--forest-deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.metrics::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2352b788' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-value--static {
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ---- Values ---- */
.values {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(64, 145, 108, 0.2);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest), var(--emerald));
  border-radius: var(--radius-md);
  color: var(--white);
  margin-bottom: 24px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ---- CTA ---- */
.cta {
  padding: 100px 0;
  background: var(--cream);
}

.cta-box {
  position: relative;
  padding: 72px 64px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
  overflow: hidden;
  text-align: center;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(116, 198, 157, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

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

.btn-white:hover {
  background: var(--mist);
  border-color: var(--mist);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- Inner Page Header ---- */
.page-header {
  padding: calc(var(--nav-height) + 56px) 0 64px;
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(82, 183, 136, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, #0f2b20 0%, var(--forest-deep) 50%, #163d2e 100%);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352b788' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header .section-label {
  color: var(--mint);
}

.page-header .section-label::before {
  background: var(--mint);
}

.page-header .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header .section-desc {
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
}

/* ---- Legal Content ---- */
.legal {
  padding: 72px 0 100px;
  background: var(--cream);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.legal-block {
  margin-bottom: 40px;
}

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

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--mist);
}

.legal-block p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

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

.legal-block ul {
  margin: 12px 0 14px;
  padding-left: 24px;
  list-style: disc;
}

.legal-block li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-block a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.legal-block a:hover {
  color: var(--forest-deep);
}

.legal-block strong {
  color: var(--forest-deep);
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-header {
    padding: calc(var(--nav-height) + 40px) 0 48px;
  }

  .legal {
    padding: 48px 0 72px;
  }

  .legal-content {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }

  .legal-block h2 {
    font-size: 1.25rem;
  }
}

/* ---- FAQs ---- */
.faqs {
  padding: 72px 0 100px;
  background: var(--cream);
}

.faqs-shell {
  max-width: 860px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 48px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 16px;
  padding-left: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(45, 106, 79, 0.22);
}

.faq-item.is-open {
  border-color: rgba(64, 145, 108, 0.35);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--forest-deep);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--emerald);
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--forest);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  background: var(--forest);
  color: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.faq-answer-inner a:hover {
  color: var(--forest-deep);
}

.faqs-cta {
  margin-top: 56px;
  padding: 32px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.faqs-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.faqs-cta p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.75;
}

.faqs-cta .btn {
  display: inline-flex;
}

@media (max-width: 768px) {
  .faqs {
    padding: 48px 0 72px;
  }

  .faq-group {
    margin-bottom: 36px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 1rem;
    gap: 14px;
  }

  .faq-answer-inner p {
    padding: 0 18px 18px;
    font-size: 0.9rem;
  }

  .faqs-cta {
    margin-top: 40px;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

  .faqs-cta h2 {
    font-size: 1.25rem;
  }
}

/* ---- Contact ---- */
.contact {
  padding: 72px 0 80px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-info {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.contact-info-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--forest);
}

.contact-detail-body h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.contact-detail-body p,
.contact-detail-body a {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.contact-detail-body a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.contact-detail-body a:hover {
  color: var(--forest-deep);
}

.contact-hours {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-hours h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 12px;
}

.contact-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-hours-list .day {
  font-weight: 600;
  color: var(--forest-deep);
}

.contact-hours-list .is-closed .time {
  color: var(--text-muted);
}

.contact-form-panel {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.contact-form-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.form-group label span {
  color: var(--emerald);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.12);
}

.form-group textarea {
  min-height: 148px;
  resize: vertical;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.form-checkbox a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox a:hover {
  color: var(--forest-deep);
}

.contact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.contact-form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
  border-color: #c0392b;
  background: #fff8f8;
}

.form-group.is-invalid input:focus,
.form-group.is-invalid textarea:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.form-checkbox.is-invalid span {
  color: #8b2e24;
}

/* ---- Form Modal ---- */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 43, 32, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.form-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 36px 32px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-modal.is-visible .form-modal-dialog {
  transform: translateY(0) scale(1);
}

.form-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.form-modal-close:hover {
  background: var(--mist);
  color: var(--forest-deep);
}

.form-modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.form-modal--success .form-modal-icon {
  background: var(--mist);
  color: var(--forest);
}

.form-modal--error .form-modal-icon {
  background: #fdecea;
  color: #c0392b;
}

.form-modal-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 12px;
}

.form-modal-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.form-modal-errors {
  margin: 18px 0 0;
  padding: 16px 20px 16px 34px;
  text-align: left;
  list-style: disc;
  list-style-position: outside;
  background: #fff8f8;
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: var(--radius-md);
}

.form-modal-errors li {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #8b2e24;
  margin-bottom: 6px;
  padding-left: 6px;
}

.form-modal-errors li:last-child {
  margin-bottom: 0;
}

.form-modal-btn {
  margin-top: 24px;
  min-width: 140px;
}

body.modal-open {
  overflow: hidden;
}

.contact-map {
  padding: 0 0 100px;
  background: var(--cream);
}

.contact-map-header {
  margin-bottom: 24px;
  text-align: center;
}

.contact-map-header .section-label {
  justify-content: center;
}

.contact-map-header .section-title {
  margin-bottom: 10px;
}

.contact-map-header .section-desc {
  max-width: 560px;
  margin: 0 auto;
}

.contact-map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.contact-map-link {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.contact-map-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--emerald);
  transition: color var(--transition);
}

.contact-map-link a:hover {
  color: var(--forest-deep);
}

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

@media (max-width: 768px) {
  .contact {
    padding: 48px 0 56px;
  }

  .contact-info,
  .contact-form-panel {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }

  .contact-info-title,
  .contact-form-title {
    font-size: 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-map {
    padding-bottom: 72px;
  }

  .contact-map-frame {
    border-radius: var(--radius-lg);
  }

  .contact-map-frame iframe {
    height: 320px;
  }

  .form-modal {
    padding: 16px;
  }

  .form-modal-dialog {
    padding: 32px 22px 24px;
    border-radius: var(--radius-lg);
  }

  .form-modal-title {
    font-size: 1.25rem;
  }
}

/* ---- Values Page ---- */
.values-page-intro {
  padding: 72px 0;
  background: var(--cream);
}

.values-page-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.values-page-intro-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.values-page-intro-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.values-page-intro-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.values-page-intro-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
}

.values-page-intro-content .section-label {
  margin-bottom: 16px;
}

.values-page-intro-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.values-page-intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.values-page-intro-content p:last-child {
  margin-bottom: 0;
}

.values-page-pillars {
  padding: 100px 0;
  background: var(--white);
}

.values-page-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.values-page-pillar {
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.values-page-pillar:hover {
  background: var(--white);
  border-color: rgba(64, 145, 108, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.values-page-pillar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--forest-deep), var(--emerald));
  color: var(--white);
}

.values-page-pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.values-page-pillar p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.values-page-spotlight {
  padding: 100px 0;
  background: var(--cream);
}

.values-page-spotlight-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.values-page-spotlight-item:last-child {
  margin-bottom: 0;
}

.values-page-spotlight-item--reverse .values-page-spotlight-image {
  order: 2;
}

.values-page-spotlight-item--reverse .values-page-spotlight-content {
  order: 1;
}

.values-page-spotlight-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.values-page-spotlight-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.values-page-spotlight-image:hover img {
  transform: scale(1.04);
}

.values-page-spotlight-tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(64, 145, 108, 0.1);
  border-radius: 100px;
}

.values-page-spotlight-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 16px;
  line-height: 1.25;
}

.values-page-spotlight-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.values-page-spotlight-content p:last-child {
  margin-bottom: 0;
}

.values-page-commitments {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(82, 183, 136, 0.15) 0%, transparent 55%),
    linear-gradient(160deg, #0f2b20 0%, var(--forest-deep) 50%, #163d2e 100%);
  color: var(--white);
}

.values-page-commitments-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.values-page-commitments-content .section-label {
  color: var(--mint);
}

.values-page-commitments-content .section-label::before {
  background: var(--mint);
}

.values-page-commitments-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.values-page-commitments-content > p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.values-page-commitments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values-page-commitment {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.values-page-commitment-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 50%;
}

.values-page-commitment h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.values-page-commitment p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.values-page-quote {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.values-page-quote blockquote {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--forest-deep);
}

.values-page-quote blockquote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--emerald);
  margin-bottom: 8px;
}

.values-page-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.values-page-cta {
  padding: 80px 0 100px;
  background: var(--cream);
}

.values-page-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 48px 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.values-page-cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.values-page-cta-box p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

.values-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 992px) {
  .values-page-intro-grid,
  .values-page-commitments-grid,
  .values-page-spotlight-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-page-spotlight-item--reverse .values-page-spotlight-image,
  .values-page-spotlight-item--reverse .values-page-spotlight-content {
    order: unset;
  }

  .values-page-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-page-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .values-page-cta-box p {
    max-width: none;
    margin: 0 auto;
  }

  .values-page-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .values-page-intro,
  .values-page-spotlight,
  .values-page-pillars,
  .values-page-commitments,
  .values-page-quote,
  .values-page-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .values-page-pillars-grid {
    grid-template-columns: 1fr;
  }

  .values-page-spotlight-item {
    margin-bottom: 56px;
  }

  .values-page-cta-box {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }
}

/* ---- Process Page ---- */
.process-page-intro {
  padding: 72px 0;
  background: var(--cream);
}

.process-page-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.process-page-intro-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process-page-intro-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.process-page-intro-content .section-label {
  margin-bottom: 16px;
}

.process-page-intro-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.process-page-intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.process-page-intro-content p:last-child {
  margin-bottom: 0;
}

.process-page-journey {
  padding: 100px 0;
  background: var(--white);
}

.process-page-journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-page-journey-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--mist), var(--emerald), var(--mist));
  z-index: 0;
}

.process-page-journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.process-page-journey-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--emerald));
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
}

.process-page-journey-step h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 8px;
  line-height: 1.35;
}

.process-page-journey-step p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.process-page-spotlight {
  padding: 100px 0;
  background: var(--cream);
}

.process-page-spotlight-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.process-page-spotlight-item:last-child {
  margin-bottom: 0;
}

.process-page-spotlight-item--reverse .process-page-spotlight-image {
  order: 2;
}

.process-page-spotlight-item--reverse .process-page-spotlight-content {
  order: 1;
}

.process-page-spotlight-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process-page-spotlight-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-page-spotlight-image:hover img {
  transform: scale(1.04);
}

.process-page-spotlight-phase {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.process-page-spotlight-phase-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
}

.process-page-spotlight-phase span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
}

.process-page-spotlight-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 16px;
  line-height: 1.25;
}

.process-page-spotlight-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.process-page-spotlight-content p:last-child {
  margin-bottom: 0;
}

.process-page-spotlight-list {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.process-page-spotlight-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.process-page-spotlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
}

.process-page-rhythm {
  padding: 100px 0;
  background: var(--white);
}

.process-page-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-page-rhythm-card {
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.process-page-rhythm-card:hover {
  background: var(--white);
  border-color: rgba(64, 145, 108, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-page-rhythm-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--forest-deep), var(--emerald));
  color: var(--white);
}

.process-page-rhythm-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.process-page-rhythm-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.process-page-collab {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 0%, rgba(82, 183, 136, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #0f2b20 0%, var(--forest-deep) 50%, #163d2e 100%);
}

.process-page-collab .section-label {
  color: var(--mint);
  justify-content: center;
}

.process-page-collab .section-label::before {
  background: var(--mint);
}

.process-page-collab .section-title {
  color: var(--white);
}

.process-page-collab .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.process-page-collab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.process-page-collab-panel {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.process-page-collab-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.process-page-collab-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-page-collab-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.process-page-collab-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--mint);
}

.process-page-quote {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.process-page-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--forest-deep);
}

.process-page-quote blockquote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--emerald);
  margin-bottom: 8px;
}

.process-page-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.process-page-cta {
  padding: 80px 0 100px;
  background: var(--white);
}

.process-page-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 48px 56px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.process-page-cta-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.process-page-cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}

.process-page-cta-box p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  position: relative;
}

.process-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}

@media (max-width: 1100px) {
  .process-page-journey-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
  }

  .process-page-journey-track::before {
    display: none;
  }
}

@media (max-width: 992px) {
  .process-page-intro-grid,
  .process-page-spotlight-item,
  .process-page-collab-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-page-spotlight-item--reverse .process-page-spotlight-image,
  .process-page-spotlight-item--reverse .process-page-spotlight-content {
    order: unset;
  }

  .process-page-rhythm-grid {
    grid-template-columns: 1fr;
  }

  .process-page-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-page-cta-box p {
    max-width: none;
    margin: 0 auto;
  }

  .process-page-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .process-page-intro,
  .process-page-journey,
  .process-page-spotlight,
  .process-page-rhythm,
  .process-page-collab,
  .process-page-quote,
  .process-page-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .process-page-journey-track {
    grid-template-columns: 1fr;
  }

  .process-page-spotlight-item {
    margin-bottom: 56px;
  }

  .process-page-cta-box {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }
}

/* ---- Calculator Page ---- */
.calculator-page {
  padding: 72px 0 100px;
  background: var(--cream);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.calculator-panel {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.calculator-step {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.calculator-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.calculator-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.calculator-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--emerald));
  border-radius: 50%;
}

.calculator-step-header h2 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest-deep);
}

.calculator-step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.calculator-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calculator-service-card {
  position: relative;
  display: block;
  padding: 16px 16px 16px 44px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.calculator-service-card:hover {
  border-color: rgba(64, 145, 108, 0.3);
  background: var(--white);
}

.calculator-service-card.is-selected {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.12);
}

.calculator-service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calculator-service-check {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(45, 106, 79, 0.25);
  border-radius: 6px;
  background: var(--white);
  transition: all var(--transition);
}

.calculator-service-card.is-selected .calculator-service-check {
  background: var(--forest);
  border-color: var(--forest);
}

.calculator-service-check svg {
  display: none;
  width: 12px;
  height: 12px;
  margin: 2px auto 0;
  color: var(--white);
}

.calculator-service-card.is-selected .calculator-service-check svg {
  display: block;
}

.calculator-service-card h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 4px;
  line-height: 1.35;
}

.calculator-service-card p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.calculator-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calculator-option {
  position: relative;
  cursor: pointer;
}

.calculator-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calculator-option span {
  display: block;
  padding: 11px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.calculator-option:hover span {
  border-color: rgba(64, 145, 108, 0.3);
  color: var(--forest-deep);
}

.calculator-option input:checked + span {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--emerald));
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.25);
}

.calculator-options--stack {
  flex-direction: column;
}

.calculator-options--stack .calculator-option span {
  white-space: normal;
  border-radius: var(--radius-md);
}

.calculator-validation {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8b2e24;
  background: #fff8f8;
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: var(--radius-md);
}

.calculator-validation.is-visible {
  display: block;
}

.calculator-summary {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.calculator-summary-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 8px;
}

.calculator-summary-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 24px;
}

.calculator-summary-empty {
  padding: 24px 16px;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.calculator-summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  max-height: 220px;
  overflow-y: auto;
}

.calculator-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.calculator-summary-line span:last-child {
  font-weight: 600;
  color: var(--forest-deep);
  white-space: nowrap;
}

.calculator-summary-total {
  padding: 20px;
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.06), rgba(64, 145, 108, 0.08));
  border: 1px solid rgba(64, 145, 108, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.calculator-summary-total-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.calculator-summary-total-value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--forest-deep);
  line-height: 1.2;
}

.calculator-summary-total-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.calculator-summary-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.calculator-summary-meta-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.calculator-summary-meta-item strong {
  color: var(--forest-deep);
  font-weight: 600;
}

.calculator-summary .btn {
  width: 100%;
}

.calculator-disclaimer {
  margin-top: 24px;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
}

.form-modal--confirm .form-modal-icon {
  background: var(--mist);
  color: var(--forest);
}

.form-modal-form {
  margin-top: 20px;
  text-align: left;
}

.form-modal-form .form-group {
  margin-bottom: 16px;
}

.form-modal-form .form-group:last-of-type {
  margin-bottom: 0;
}

.form-modal-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.form-modal-form-actions .btn {
  min-width: 130px;
}

.form-modal-inline-error {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8b2e24;
  background: #fff8f8;
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: var(--radius-md);
  text-align: left;
}

.form-modal-inline-error.is-visible {
  display: block;
}

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

  .calculator-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .calculator-page {
    padding: 48px 0 72px;
  }

  .calculator-panel,
  .calculator-summary {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }

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

  .calculator-options {
    flex-direction: column;
  }

  .calculator-option span {
    white-space: normal;
    border-radius: var(--radius-md);
  }
}

/* ---- About Page ---- */
.about-page-story {
  padding: 72px 0;
  background: var(--cream);
}

.about-page-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-page-story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-page-story-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.about-page-story-content .section-label {
  margin-bottom: 16px;
}

.about-page-story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-page-story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-page-story-content p:last-child {
  margin-bottom: 0;
}

.about-page-mv {
  padding: 100px 0;
  background: var(--white);
}

.about-page-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-page-mv-card {
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.about-page-mv-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(64, 145, 108, 0.22);
}

.about-page-mv-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--forest-deep), var(--emerald));
  color: var(--white);
}

.about-page-mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 12px;
}

.about-page-mv-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-page-mv-visual {
  margin-top: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-page-mv-visual img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

.about-page-edge {
  padding: 100px 0;
  background: var(--cream);
}

.about-page-edge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-page-edge-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.about-page-edge-card:hover {
  border-color: rgba(64, 145, 108, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.about-page-edge-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--mist);
  -webkit-text-stroke: 1px var(--emerald);
}

.about-page-edge-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

.about-page-edge-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.about-page-location {
  padding: 100px 0;
  background: var(--white);
}

.about-page-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-page-location-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-page-location-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-page-location-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-page-location-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-page-location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-page-location-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-page-location-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--emerald);
}

.about-page-location-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.about-page-location-item span,
.about-page-location-item a {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-page-location-item a {
  color: var(--emerald);
  font-weight: 600;
}

.about-page-spotlight {
  padding: 100px 0;
  background: var(--cream);
}

.about-page-spotlight-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.about-page-spotlight-item:last-child {
  margin-bottom: 0;
}

.about-page-spotlight-item--reverse .about-page-spotlight-image {
  order: 2;
}

.about-page-spotlight-item--reverse .about-page-spotlight-content {
  order: 1;
}

.about-page-spotlight-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-page-spotlight-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-page-spotlight-image:hover img {
  transform: scale(1.04);
}

.about-page-spotlight-tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(64, 145, 108, 0.1);
  border-radius: 100px;
}

.about-page-spotlight-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-page-spotlight-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.about-page-spotlight-content p:last-child {
  margin-bottom: 0;
}

.about-page-stats {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(82, 183, 136, 0.15) 0%, transparent 55%),
    linear-gradient(160deg, #0f2b20 0%, var(--forest-deep) 50%, #163d2e 100%);
}

.about-page-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-page-stat {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.about-page-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--mint);
  margin-bottom: 8px;
  line-height: 1.2;
}

.about-page-stat-label {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.about-page-quote {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.about-page-quote blockquote {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--forest-deep);
}

.about-page-quote blockquote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--emerald);
  margin-bottom: 8px;
}

.about-page-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.about-page-cta {
  padding: 80px 0 100px;
  background: var(--cream);
}

.about-page-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 48px 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.about-page-cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.about-page-cta-box p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

.about-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 992px) {
  .about-page-story-grid,
  .about-page-location-grid,
  .about-page-spotlight-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-page-spotlight-item--reverse .about-page-spotlight-image,
  .about-page-spotlight-item--reverse .about-page-spotlight-content {
    order: unset;
  }

  .about-page-mv-grid,
  .about-page-edge-grid {
    grid-template-columns: 1fr;
  }

  .about-page-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page-cta-box p {
    max-width: none;
    margin: 0 auto;
  }

  .about-page-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-page-story,
  .about-page-mv,
  .about-page-edge,
  .about-page-location,
  .about-page-spotlight,
  .about-page-stats,
  .about-page-quote,
  .about-page-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .about-page-spotlight-item {
    margin-bottom: 56px;
  }

  .about-page-cta-box {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }
}

/* ---- Services Page ---- */
.services-page {
  padding: 72px 0 100px;
  background: var(--cream);
}

.services-carousel-shell {
  position: relative;
  margin-top: 8px;
}

.services-carousel-viewport {
  overflow: hidden;
  margin: 0 60px;
  container-type: inline-size;
  container-name: services-carousel;
}

.services-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.services-carousel-slide {
  flex: 0 0 calc((100cqi - 24px) / 2);
  width: calc((100cqi - 24px) / 2);
  max-width: calc((100cqi - 24px) / 2);
  min-width: 0;
}

@container services-carousel (max-width: 991px) {
  .services-carousel-slide {
    flex: 0 0 100cqi;
    width: 100cqi;
    max-width: 100cqi;
  }
}

.services-carousel-slide .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.services-carousel-slide .service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.services-carousel-slide .service-card-body p {
  flex: 1;
}

.services-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--forest-deep);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition);
}

.services-carousel-btn:hover:not(:disabled) {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  transform: translateY(-50%) scale(1.05);
}

.services-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.services-carousel-btn--prev {
  left: 0;
}

.services-carousel-btn--next {
  right: 0;
}

.services-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.services-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.services-carousel-dot.is-active {
  width: 28px;
  border-radius: 100px;
  background: var(--emerald);
}

.services-carousel-counter {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 64px;
  text-align: center;
}

.services-carousel-counter span {
  color: var(--forest-deep);
}

.service-card-actions {
  margin-top: 20px;
}

.service-card-actions .btn {
  width: 100%;
}

/* ---- Service Detail Modal ---- */
.service-modal.form-modal {
  padding: 20px;
}

.service-modal .form-modal-dialog {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 780px;
  max-height: min(90dvh, 860px);
  padding: 0;
  text-align: left;
  overflow: hidden;
}

.service-modal-image {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

.service-modal-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  max-height: 280px;
  object-fit: cover;
}

.service-modal-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 67, 50, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--mint);
}

.service-modal-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-height: 0;
  padding: 0;
}

.service-modal-scroll {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 32px 32px 8px;
}

.service-modal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 16px;
  line-height: 1.3;
  padding-right: 36px;
}

.service-modal-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.service-modal-content p:last-child {
  margin-bottom: 0;
}

.service-modal-content h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 20px 0 10px;
}

.service-modal-content ul {
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: disc;
}

.service-modal-content li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.service-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
  padding: 16px 32px calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  background: var(--white);
}

.service-modal .form-modal-close {
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
  .service-modal.form-modal {
    align-items: center;
    justify-content: center;
    padding: 16px;
    padding-top: max(16px, env(safe-area-inset-top, 0px));
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
    overflow: hidden;
  }

  .service-modal .form-modal-dialog {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    height: auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transform: none;
    box-shadow: var(--shadow-lg);
    margin: 0;
    flex-shrink: 0;
  }

  .service-modal.is-visible .form-modal-dialog {
    transform: none;
  }

  .service-modal-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    min-height: 0;
  }

  .service-modal-scroll {
    flex: 1 1 0%;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 22px 18px 0;
  }

  .service-modal-image img {
    aspect-ratio: 16 / 9;
    max-height: 160px;
  }

  .service-modal-body h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    padding-right: 28px;
  }

  .service-modal-content p,
  .service-modal-content li {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .service-modal-content h4 {
    margin: 14px 0 8px;
    font-size: 0.875rem;
  }

  .service-modal-tags {
    gap: 6px;
    margin-top: 14px;
    padding-bottom: 8px;
  }

  .service-modal-actions {
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    padding: 14px 18px 18px;
    box-shadow: none;
  }

  .service-modal-actions .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.875rem;
    white-space: normal;
    text-align: center;
  }

  .service-modal .form-modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .service-modal-number {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 992px) {
  .services-carousel-shell {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 20px;
    align-items: center;
  }

  .services-carousel-viewport {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0;
    width: 100%;
  }

  .services-carousel-btn {
    position: static;
    top: auto;
    width: 44px;
    height: 44px;
    transform: none;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    justify-self: center;
  }

  .services-carousel-btn:hover:not(:disabled) {
    transform: scale(1.05);
  }

  .services-carousel-btn--prev {
    grid-column: 1;
    grid-row: 2;
    left: auto;
  }

  .services-carousel-btn--next {
    grid-column: 3;
    grid-row: 2;
    right: auto;
  }

  .services-carousel-footer {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    flex-direction: column;
    gap: 10px;
  }

  .services-carousel-slide .service-card-body h3 {
    font-size: 1.125rem;
    line-height: 1.35;
  }

  .services-carousel-slide .service-card-body p {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .services-carousel-slide .service-tags {
    gap: 6px;
  }

  .services-carousel-slide .service-tag {
    font-size: 0.6875rem;
    padding: 4px 10px;
  }
}

@media (max-width: 768px) {
  .services-page {
    padding: 48px 0 72px;
  }

  .services-carousel-shell {
    grid-template-columns: 40px 1fr 40px;
    column-gap: 10px;
    row-gap: 18px;
  }

  .services-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .services-carousel-footer {
    gap: 8px;
  }
}

/* ---- Footer ---- */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(82, 183, 136, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(64, 145, 108, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #163d2e 0%, var(--forest-deep) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 0 0 32px;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352b788' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-topline {
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--mint), var(--emerald), var(--sage));
  background-size: 200% 100%;
  animation: footerGlow 6s ease infinite;
}

@keyframes footerGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.footer-about {
  padding-right: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  cursor: pointer;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(116, 198, 157, 0.25);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.footer-logo-icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-logo:hover .footer-logo-mark {
  transform: rotate(-4deg);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-logo-text span {
  color: var(--mint);
}

.footer-about p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 380px;
}

.footer-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
}

.footer-panel:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(116, 198, 157, 0.18);
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(116, 198, 157, 0.12);
  border-radius: 8px;
  color: var(--mint);
}

.footer-contact-block {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--mint);
}

.footer-contact-item p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.footer-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.footer-link-chip:hover {
  color: var(--forest-deep);
  background: var(--mint);
  border-color: var(--mint);
}

.footer-link-chip svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.footer-hours-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.footer-hours-list li {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: background var(--transition);
}

.footer-hours-list li:hover {
  background: rgba(255, 255, 255, 0.07);
}

.footer-hours-list .day {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.footer-hours-list .time {
  color: var(--mint);
  font-weight: 600;
  white-space: nowrap;
}

.footer-hours-list li.is-closed .time {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.footer-bottom-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-dot {
  width: 4px;
  height: 4px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--mint);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

/* ---- Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .nav-link {
    padding: 8px 10px;
    font-size: 0.78125rem;
  }

  .nav-cta-btn {
    padding: 10px 16px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 76px;
  }

  section {
    padding: 72px 0;
  }

  .header {
    padding: 10px 0;
  }

  .nav-shell {
    padding: 8px 12px 8px 14px;
    border-radius: 20px;
    justify-content: space-between;
    gap: 16px;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo-img {
    height: 44px;
    max-width: 190px;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--nav-height) + 8px);
    left: 16px;
    right: 16px;
    flex: unset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(45, 106, 79, 0.12);
    box-shadow: var(--shadow-lg);
  }

  .header.scrolled .nav-links,
  .nav-links {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(45, 106, 79, 0.12);
  }

  .nav-link {
    padding: 14px 18px;
    font-size: 1rem;
    text-align: center;
    color: var(--text-secondary);
  }

  .nav-link:hover {
    color: var(--forest-deep);
    background: var(--mist);
  }

  .nav-link.active {
    color: var(--white);
    background: var(--forest);
  }

  .header.scrolled .nav-link,
  .header.scrolled .nav-link:hover {
    color: var(--text-secondary);
    background: transparent;
  }

  .header.scrolled .nav-link.active {
    color: var(--white);
    background: var(--forest);
  }

  .nav-cta-btn {
    display: none;
  }

  .nav-mobile-cta {
    display: block;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(45, 106, 79, 0.1);
  }

  .nav-link--cta {
    background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%) !important;
    color: var(--white) !important;
    font-weight: 600;
  }

  .nav-link--cta:hover {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%) !important;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .hero-content {
    padding-bottom: 100px;
  }

  .hero-scroll {
    bottom: 24px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-accent {
    width: 110px;
    height: 110px;
    bottom: -12px;
    right: -12px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-about {
    padding-right: 0;
    text-align: center;
  }

  .footer-logo {
    display: inline-flex;
    justify-content: center;
  }

  .footer-about p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom-main {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom-dot {
    display: none;
  }

  .cta-box {
    padding: 48px 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .footer-topline {
    animation: none;
  }

  .scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .cookie-banner.is-visible {
    transform: translateX(-50%) translateY(0);
  }

  .preloader-orbit,
  .preloader-satellite,
  .preloader-node,
  .preloader-line,
  .preloader-lines-spin,
  .preloader-blob,
  .preloader-particle,
  .preloader-ticker-list,
  .preloader-title-word,
  .preloader-emblem,
  .preloader-glass,
  .preloader-icon,
  .preloader-eyebrow,
  .preloader-shine {
    animation: none !important;
  }

  .preloader-glass::after {
    display: none;
  }

  .preloader-title-word {
    opacity: 1;
    transform: none;
  }

  .preloader.is-exiting,
  .preloader.is-hidden {
    clip-path: circle(0% at 50% 50%);
    transition-duration: 0.01ms;
  }
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c2419;
  clip-path: circle(150% at 50% 50%);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.preloader.is-exiting {
  clip-path: circle(0% at 50% 50%);
  pointer-events: none;
}

.preloader.is-hidden {
  visibility: hidden;
}

.preloader-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preloader-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.preloader-blob--1 {
  top: -10%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: rgba(64, 145, 108, 0.35);
  will-change: transform;
}

.preloader-blob--2 {
  bottom: -15%;
  right: -8%;
  width: 360px;
  height: 360px;
  background: rgba(116, 198, 157, 0.22);
  will-change: transform;
}

.preloader-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.6;
  box-shadow: 0 0 14px rgba(116, 198, 157, 0.8);
  will-change: transform, opacity;
}

.preloader-particle--1 { top: 18%; left: 22%; }
.preloader-particle--2 { top: 72%; left: 14%; }
.preloader-particle--3 { top: 28%; right: 18%; }
.preloader-particle--4 { bottom: 20%; right: 26%; }

.preloader-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.preloader-lines-spin {
  transform-origin: 400px 400px;
  will-change: transform;
}

.preloader-line {
  stroke: var(--mint);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
}

.preloader-line--diag {
  stroke: var(--sage);
}

.preloader-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: min(92vw, 520px);
  padding: 24px;
}

.preloader-emblem {
  position: relative;
  width: 168px;
  height: 168px;
  will-change: transform;
}

.preloader-glass {
  position: absolute;
  inset: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(116, 198, 157, 0.28);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.preloader-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  pointer-events: none;
  will-change: transform;
}

.preloader-icon {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(116, 198, 157, 0.4));
  will-change: transform;
}

.preloader-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  will-change: transform;
}

.preloader-orbit--a {
  border: 2px dashed rgba(116, 198, 157, 0.45);
}

.preloader-orbit--b {
  inset: 10px;
  border: 2px solid rgba(82, 183, 136, 0.2);
  border-top-color: var(--mint);
  border-right-color: transparent;
}

.preloader-orbit--c {
  inset: -6px;
  border: 1px solid rgba(116, 198, 157, 0.18);
}

.preloader-satellite {
  position: absolute;
  inset: -4px;
  will-change: transform;
}

.preloader-satellite--2 {
  inset: 6px;
}

.preloader-satellite--3 {
  inset: 14px;
}

.preloader-node {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(116, 198, 157, 1);
}

.preloader-satellite--3 .preloader-node {
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
}

.preloader-copy {
  text-align: center;
}

.preloader-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease;
}

.preloader-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  line-height: 1;
}

.preloader-title-word {
  display: block;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  opacity: 0;
  will-change: transform, opacity;
}

.preloader-title-word--accent {
  color: var(--mint);
}

.preloader-ticker {
  height: 1.4em;
  overflow: hidden;
  mask-image: linear-gradient(transparent, #000 20%, #000 80%, transparent);
}

.preloader-ticker-list {
  will-change: transform;
}

.preloader-ticker-list li {
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.preloader-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
}

.preloader-progress-value {
  flex-shrink: 0;
  width: 36px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--mint);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.preloader-progress-value::after {
  content: '%';
  font-size: 0.6875rem;
  opacity: 0.7;
  margin-left: 1px;
}

.preloader-progress-rail {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.preloader-progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--forest), var(--mint), var(--sage), var(--mint));
  background-size: 200% 100%;
  border-radius: 100px;
  transition: transform 0.18s linear;
  box-shadow: 0 0 12px rgba(116, 198, 157, 0.5);
  will-change: transform;
}

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(27, 67, 50, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), box-shadow var(--transition), background var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.4);
  transform: translateY(-3px);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

body.cookie-visible .scroll-top {
  bottom: 120px;
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 1001;
  width: calc(100% - 48px);
  max-width: 720px;
  transform: translateX(-50%) translateY(calc(100% + 40px));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(27, 67, 50, 0.18);
  backdrop-filter: blur(16px);
}

.cookie-banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--mist) 0%, var(--leaf-light) 100%);
  border-radius: var(--radius-md);
  color: var(--forest);
}

.cookie-banner-content {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.cookie-banner-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.cookie-banner-text a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.cookie-banner-text a:hover {
  color: var(--forest);
}

.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}

.cookie-btn--decline:hover {
  background: var(--mist);
  border-color: rgba(45, 106, 79, 0.2);
  color: var(--forest-deep);
}

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
}

.cookie-btn--accept:hover {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  body.cookie-visible .scroll-top {
    bottom: 200px;
  }

  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }

  .cookie-banner-icon {
    width: 42px;
    height: 42px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
