/* ========================================
   CSS CUSTOM PROPERTIES
======================================== */
:root {
  --clay: #C4A882;
  --clay-light: #E8D5B7;
  --clay-dark: #8B6F47;
  --ink: #2C2416;
  --ink-soft: #4A3F2F;
  --parchment: #F5F0E8;
  --parchment-dark: #EDE5D4;
  --moss: #5C6B4A;
  --moss-light: #8A9E72;
  --rust: #A05C3A;
  --rust-light: #C8784E;
  --cream: #FAF7F2;
  --shadow-sm: 0 2px 8px rgba(44,36,22,0.06), 0 1px 3px rgba(44,36,22,0.1);
  --shadow-md: 0 4px 16px rgba(44,36,22,0.08), 0 2px 6px rgba(44,36,22,0.12);
  --shadow-lg: 0 8px 32px rgba(44,36,22,0.10), 0 4px 12px rgba(44,36,22,0.14);
  --shadow-xl: 0 16px 48px rgba(44,36,22,0.12), 0 6px 18px rgba(44,36,22,0.16);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

address { font-style: normal; }

/* ========================================
   TYPOGRAPHY
======================================== */
.section__heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.section__heading--light { color: var(--parchment); }

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

.body-text--light { color: rgba(245,240,232,0.8); }

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,168,130,0.18);
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.label-tag--light {
  background: rgba(255,255,255,0.12);
  color: rgba(245,240,232,0.9);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.btn--outline {
  border-color: var(--clay);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover {
  background: var(--clay-light);
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--rust);
  color: var(--cream);
  border-color: var(--rust);
  box-shadow: 0 4px 12px rgba(160,92,58,0.3), 0 1px 3px rgba(160,92,58,0.2);
}
.btn--primary:hover {
  background: var(--rust-light);
  box-shadow: 0 6px 20px rgba(160,92,58,0.4), 0 2px 6px rgba(160,92,58,0.25);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(245,240,232,0.4);
  color: var(--parchment);
  background: rgba(255,255,255,0.08);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

/* ========================================
   NAVIGATION
======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img { width: 36px; height: 36px; }

.nav__logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rust);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav__link:hover { color: var(--rust); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--parchment);
  padding: 5rem 1.5rem 1.5rem;
  z-index: 99;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu__link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--clay-light);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-menu__link:hover {
  color: var(--rust);
  padding-left: 0.5rem;
}

.mobile-menu__actions {
  padding-top: 1.5rem;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 50%, rgba(196,168,130,0.15) 100%);
  z-index: 0;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero__blob--2 {
  width: 350px;
  height: 350px;
  bottom: 50px;
  left: 40%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(3deg); }
  66% { transform: translate(-10px, 10px) rotate(-2deg); }
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(92,107,74,0.1);
  color: var(--moss);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  border: 1px solid rgba(92,107,74,0.2);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--moss);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero__heading-em {
  font-style: normal;
  color: var(--rust);
  position: relative;
  display: inline-block;
}

.hero__heading-em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--clay);
  border-radius: 2px;
  opacity: 0.5;
  transform: skewX(-5deg);
}

.hero__subtext {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

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

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--clay-dark);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--clay);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rust);
  animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero__image-wrap {
  position: relative;
  z-index: 2;
}

.hero__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(196,168,130,0.2);
}

.hero__image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--moss);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

/* ========================================
   SECTIONS
======================================== */
.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ========================================
   INTRO STRIP
======================================== */
.section--intro {
  padding: var(--space-lg) 0;
  background: var(--parchment);
  border-top: 1px solid var(--clay-light);
  border-bottom: 1px solid var(--clay-light);
}

.intro-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.intro-strip__item i {
  color: var(--rust);
  font-size: 1rem;
}

.intro-strip__divider {
  width: 1px;
  height: 24px;
  background: var(--clay-light);
}

/* ========================================
   WHAT SECTION
======================================== */
.what__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.what__text .section__heading { margin-bottom: 1.5rem; }

.what__visual {
  position: relative;
}

.what__card {
  background: var(--cream);
  border: 1px solid var(--clay-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.what__card--top {
  margin-bottom: 1rem;
  margin-right: 2rem;
}

.what__card--bottom {
  margin-left: 2rem;
}

.what__card-icon {
  width: 36px;
  height: 36px;
  background: rgba(92,107,74,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  flex-shrink: 0;
}

.what__card-icon--warn {
  background: rgba(160,92,58,0.1);
  color: var(--rust);
}

.what__card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.what__card p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.what__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-lg);
}

/* ========================================
   WORKFLOW SECTION
======================================== */
.workflow__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
}

.workflow__step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.workflow__step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245,240,232,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.workflow__step-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,168,130,0.15);
  border: 1px solid rgba(196,168,130,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  color: var(--clay-light);
  transition: all 0.3s ease;
}

.workflow__step:hover .workflow__step-icon {
  background: rgba(196,168,130,0.25);
  transform: translateY(-4px);
}

.workflow__step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.75rem;
}

.workflow__step p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245,240,232,0.6);
}

.workflow__connector {
  display: flex;
  align-items: center;
  color: rgba(196,168,130,0.3);
  font-size: 0.9rem;
  padding-top: 4.5rem;
  flex-shrink: 0;
}

/* ========================================
   REVIEWS GRID
======================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.card--review {
  padding: 2rem;
  border: 1px solid var(--clay-light);
  box-shadow: var(--shadow-sm);
}

.card--review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clay);
}

.card__icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(160,92,58,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.card--review h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card--review p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rust);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.card__link:hover { gap: 0.7rem; }

/* ========================================
   GALLERY
======================================== */
.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  height: 400px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
  cursor: pointer;
}

.gallery__item--wide { grid-row: span 1; }

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

.gallery__item:hover img { transform: scale(1.05); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,36,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

/* ========================================
   TEAM SECTION
======================================== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card--team {
  border: 1px solid var(--clay-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

.card--team__img-wrap {
  height: 220px;
  overflow: hidden;
}

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

.card--team:hover .card--team__img-wrap img { transform: scale(1.05); }

.card--team__body {
  padding: 1.25rem;
}

.card--team__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.card--team__role {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.card--team__body p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ========================================
   CTA BLOCK
======================================== */
.section--cta {
  background: var(--parchment);
}

.cta-block {
  text-align: center;
  padding: var(--space-xl) 0;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.cta-block__deco {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.cta-block .label-tag,
.cta-block__heading,
.cta-block__text,
.cta-block__actions {
  position: relative;
  z-index: 1;
}

.cta-block__heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.cta-block__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.cta-block__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--ink);
  color: var(--parchment);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--space-xl);
}

.footer__brand .nav__logo-text { color: var(--parchment); }

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.5);
}

.footer__address a {
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__address a:hover { color: var(--clay); }

.footer__nav-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.25rem;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__nav-group a {
  display: block;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.3s, padding-left 0.3s;
}

.footer__nav-group a:hover {
  color: var(--clay-light);
  padding-left: 0.4rem;
}

.footer__bottom {
  border-top: 1px solid rgba(196,168,130,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.3);
}

/* ========================================
   PAGE HERO (INNER PAGES)
======================================== */
.page-hero {
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero--short { padding: 8rem 2rem 4rem; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 60%, rgba(196,168,130,0.1) 100%);
  z-index: 0;
}

.page-hero__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ========================================
   OUR BACKGROUND PAGE
======================================== */
.story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story__text .section__heading { margin-bottom: 1.5rem; }

.story__quote {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  border-left: 3px solid var(--clay);
  box-shadow: var(--shadow-md);
}

.story__quote-mark {
  width: 40px;
  height: 28px;
  margin-bottom: 1rem;
}

.story__quote p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.story__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.principle-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,168,130,0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.principle-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.principle-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(196,168,130,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.principle-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.75rem;
}

.principle-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(245,240,232,0.6);
  margin: 0;
}

.team-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.team-detail__card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clay-light);
  transition: all 0.3s ease;
}

.team-detail__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.team-detail__card img {
  width: 140px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.team-detail__info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.team-detail__info span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.team-detail__info p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

/* ========================================
   ENGAGEMENTS PAGE
======================================== */
.engagement__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card--engagement {
  border: 1px solid var(--clay-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.card__engagement-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.card__engagement-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.card--engagement p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

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

.engagement__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.engagement__list li i {
  color: var(--moss);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.who__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.who__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.who__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,168,130,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.who__card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.who__card i {
  color: var(--clay);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.who__card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.35rem;
}

.who__card p {
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(245,240,232,0.55);
  margin: 0;
}

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

.boundary-item {
  padding: 2rem;
  background: var(--parchment);
  border-radius: var(--radius-md);
  border: 1px solid var(--clay-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.boundary-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(160,92,58,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  margin-bottom: 1rem;
}

.boundary-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.boundary-item p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ========================================
   TOOL REVIEWS PAGE
======================================== */
.section--filter {
  padding: 2rem 0;
  background: var(--parchment);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

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

.filter-tag {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid var(--clay-light);
  background: transparent;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
}

.filter-tag:hover {
  border-color: var(--clay);
  color: var(--ink);
}

.filter-tag--active {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
}

.reviews-list__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card--review-full {
  background: var(--cream);
  border: 1px solid var(--clay-light);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card--review-full:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay);
}

.card--review-full__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(160,92,58,0.1);
  color: var(--rust);
}

.review-updated {
  font-size: 0.78rem;
  color: var(--clay-dark);
}

.card--review-full h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card--review-full p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.review__tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.review-tag {
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--parchment);
  color: var(--ink-soft);
  border: 1px solid var(--clay-light);
}

.review__verdict { display: flex; }

.verdict {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.verdict--consider {
  background: rgba(92,107,74,0.1);
  color: var(--moss);
  border: 1px solid rgba(92,107,74,0.2);
}

.verdict--depends {
  background: rgba(196,168,130,0.15);
  color: var(--clay-dark);
  border: 1px solid rgba(196,168,130,0.3);
}

.verdict--caution {
  background: rgba(160,92,58,0.08);
  color: var(--rust);
  border: 1px solid rgba(160,92,58,0.2);
}

.methodology__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.methodology__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.method-check {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,168,130,0.1);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.method-check:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.method-check i {
  color: var(--moss-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.method-check span {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.75);
}

/* ========================================
   CONTACT PAGE
======================================== */
.facts-strip {
  background: var(--ink);
  padding: 1rem 0;
}

.facts-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
}

.fact-item i {
  color: var(--clay);
  font-size: 0.85rem;
}

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

.contact__form-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.contact__form-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}


.chat-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-bubble {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.chat-bubble--question {
  justify-content: flex-start;
}

.chat-bubble--reply {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.chat-bubble__avatar {
  width: 36px;
  height: 36px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.chat-bubble__text {
  background: var(--parchment);
  border: 1px solid var(--clay-light);
  border-radius: 16px 16px 16px 4px;
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink);
  max-width: 75%;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.chat-input {
  background: var(--cream);
  border: 1.5px solid var(--clay-light);
  border-radius: 16px 16px 4px 16px;
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink);
  max-width: 75%;
  width: 75%;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  box-shadow: var(--shadow-sm);
}

.chat-input:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196,168,130,0.15), var(--shadow-sm);
}

.chat-textarea {
  resize: vertical;
  min-height: 100px;
  border-radius: 16px 16px 4px 16px;
}

.chat-bubble--privacy {
  margin-top: 0.5rem;
}

.chat-privacy-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  background: var(--cream);
  border: 1.5px solid var(--clay-light);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  max-width: 75%;
  box-shadow: var(--shadow-sm);
}

.chat-privacy-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--rust);
}

.chat-privacy-label a { color: var(--rust); }

.chat-form__submit {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.contact-info-card {
  background: var(--parchment);
  border: 1px solid var(--clay-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.contact-info-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.contact-info-card--note {
  background: rgba(92,107,74,0.06);
  border-color: rgba(92,107,74,0.2);
}

.contact-info-card__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clay-light);
}

.contact-info-card__item:last-child { border-bottom: none; }

.contact-info-card__item i {
  color: var(--rust);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-info-card__item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clay-dark);
  margin-bottom: 0.2rem;
}

.contact-info-card__item a,
.contact-info-card__item address {
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-card__item a:hover { color: var(--rust); }

.section--map { padding-top: 0; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clay-light);
}

/* ========================================
   LEGAL PAGES
======================================== */
.legal-page {
  padding-top: 6rem;
}

.legal-page__header {
  background: var(--parchment);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--clay-light);
}

.legal-page__header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.legal-page__header > p:first-of-type {
  font-size: 0.85rem;
  color: var(--clay-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.legal-page__header p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.legal-page__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 5rem;
  padding-right: 2rem;
}

.legal-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-sidebar__nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.legal-sidebar__nav a:hover {
  color: var(--rust);
  border-left-color: var(--rust);
  background: rgba(160,92,58,0.04);
  padding-left: 1rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-content section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--clay-light);
}

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

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.25rem 0 0.6rem;
}

.legal-content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

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

.legal-content a {
  color: var(--rust);
  text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }


.cookie-table {
  border: 1px solid var(--clay-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 1rem 0;
}

.cookie-table__row {
  display: grid;
  grid-template-columns: 1.5fr 3fr 1fr;
  padding: 0.7rem 1rem;
  gap: 1rem;
  font-size: 0.83rem;
  border-bottom: 1px solid var(--clay-light);
}

.cookie-table__row:last-child { border-bottom: none; }

.cookie-table__row--header {
  background: var(--parchment);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-table__row:not(.cookie-table__row--header) {
  color: var(--ink-soft);
}

/* ========================================
   COOKIE CONSENT BANNER (TOP)
======================================== */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--parchment);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 20px rgba(44,36,22,0.2);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.8);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--clay);
  text-decoration: none;
}

.cookie-banner__text a:hover { text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid transparent;
  white-space: nowrap;
  min-height: 36px;
}

.cookie-btn--customize {
  background: transparent;
  border-color: rgba(196,168,130,0.4);
  color: var(--clay-light);
}

.cookie-btn--customize:hover {
  background: rgba(196,168,130,0.1);
}

.cookie-btn--decline {
  background: transparent;
  border-color: rgba(245,240,232,0.2);
  color: rgba(245,240,232,0.6);
}

.cookie-btn--decline:hover {
  border-color: rgba(245,240,232,0.4);
  color: var(--parchment);
}

.cookie-btn--accept {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
}

.cookie-btn--accept:hover {
  background: var(--rust-light);
}


.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.6);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.cookie-modal__box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal__box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.cookie-modal__box > p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.cookie-modal__category {
  padding: 1rem 0;
  border-top: 1px solid var(--clay-light);
}

.cookie-modal__category label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  margin-bottom: 0.35rem;
}

.cookie-modal__category label input {
  accent-color: var(--rust);
  width: 16px;
  height: 16px;
}

.cookie-modal__category p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
  padding-left: 1.5rem;
}

.cookie-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clay-light);
}

.cookie-modal__actions .cookie-btn--decline {
  border-color: var(--clay-light);
  color: var(--ink-soft);
  background: transparent;
}

.cookie-modal__actions .cookie-btn--decline:hover {
  background: var(--parchment);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
======================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .principles__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 8rem 2rem 4rem;
    text-align: center;
  }
  .hero__image-wrap { display: none; }
  .hero__actions { justify-content: center; }
  .hero__scroll-hint { justify-content: center; }
  .what__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .workflow__steps { flex-direction: column; align-items: stretch; }
  .workflow__connector { display: none; }
  .workflow__step { text-align: left; padding: 1rem; border-left: 2px solid rgba(196,168,130,0.15); }
  .story__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-detail__grid { grid-template-columns: 1fr; }
  .engagement__grid { grid-template-columns: 1fr; }
  .who__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .boundaries__grid { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; }
  .methodology__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery__grid { grid-template-columns: 1fr; height: auto; }
  .gallery__item { height: 240px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .legal-page__body { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
  .team-detail__card { grid-template-columns: 1fr; }
  .team-detail__card img { width: 100%; height: 200px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero__heading { font-size: clamp(2rem, 8vw, 3rem); }
  .section { padding: var(--space-xl) 0; }
  .section__container { padding: 0 1.25rem; }
  .reviews__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .principles__grid { grid-template-columns: 1fr; }
  .intro-strip { gap: 1rem; }
  .intro-strip__divider { display: none; }
  .workflow__steps { padding: 0; }
  .facts-strip__inner { gap: 1rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .cta-block__actions { flex-direction: column; align-items: center; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-table__row { grid-template-columns: 1fr; }
  .chat-input, .chat-privacy-label { max-width: 90%; width: 90%; }
  .chat-bubble__text { max-width: 85%; }
  .card--review-full { padding: 1.5rem; }
  .filter-bar { gap: 0.75rem; }
}

@media (max-width: 480px) {
  .team__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { justify-content: center; }
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: 0.75rem 1.25rem; }
  .cookie-banner__inner { padding: 0.75rem 1.25rem; }
}