/* ============================================================
   SAGE & LINEN — styles.css
   Linen #F5F0E8 | Sage #5C7A5C | Zodiak serif + General Sans
   ============================================================ */

/* ---------- FONTS ---------- */
@import url('https://api.fontshare.com/v2/css?f[]=zodiak@400,700&f[]=general-sans@400,500,600&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --sage:        #5C7A5C;
  --sage-dark:   #3E5A3E;
  --sage-light:  #8AAD8A;
  --linen:       #F5F0E8;
  --linen-dark:  #EAE3D4;
  --linen-mid:   #DDD5C2;

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

  --transition:  0.28s ease;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.13);

  --font-serif:  'Zodiak', Georgia, serif;
  --font-sans:   'General Sans', system-ui, sans-serif;

  --sp-1: clamp(4px,  0.5vw,  8px);
  --sp-2: clamp(8px,  1vw,   12px);
  --sp-3: clamp(12px, 1.5vw, 16px);
  --sp-4: clamp(16px, 2vw,   24px);
  --sp-5: clamp(24px, 3vw,   36px);
  --sp-6: clamp(36px, 5vw,   56px);
  --sp-7: clamp(56px, 7vw,   88px);

  --container: 1200px;
}

/* ---- LIGHT THEME (default) ---- */
[data-theme="light"], :root {
  --bg-base:      #F5F0E8;
  --bg-alt:       #EAE3D4;
  --bg-card:      #FFFFFF;
  --bg-header:    rgba(245,240,232,0.92);
  --bg-footer:    #2C3D2C;
  --bg-input:     #FFFFFF;
  --bg-overlay:   rgba(245,240,232,0.55);
  --bg-badge:     #E8F0E8;

  --txt-primary:  #1E2A1E;
  --txt-second:   #4A5C4A;
  --txt-muted:    #7A8C7A;
  --txt-inverse:  #F5F0E8;
  --txt-footer:   #C8D8C0;
  --txt-link:     #5C7A5C;

  --border:       #D4CBBA;
  --border-focus: #5C7A5C;

  --btn-bg:       #5C7A5C;
  --btn-txt:      #FFFFFF;
  --btn-hover-bg: #3E5A3E;

  --btn-ghost-bg:    transparent;
  --btn-ghost-border:#5C7A5C;
  --btn-ghost-txt:   #5C7A5C;
  --btn-ghost-hover: #5C7A5C;
  --btn-ghost-htxt:  #FFFFFF;
}

/* ---- DARK THEME ---- */
[data-theme="dark"] {
  --bg-base:      #1A211A;
  --bg-alt:       #222B22;
  --bg-card:      #2A352A;
  --bg-header:    rgba(26,33,26,0.94);
  --bg-footer:    #111811;
  --bg-input:     #2A352A;
  --bg-overlay:   rgba(20,28,20,0.60);
  --bg-badge:     #2A3D2A;

  --txt-primary:  #EAE4D8;
  --txt-second:   #B4C4A8;
  --txt-muted:    #7A9070;
  --txt-inverse:  #1A211A;
  --txt-footer:   #8AAD8A;
  --txt-link:     #8AAD8A;

  --border:       #3A4A3A;
  --border-focus: #8AAD8A;

  --btn-bg:       #5C7A5C;
  --btn-txt:      #F5F0E8;
  --btn-hover-bg: #8AAD8A;

  --btn-ghost-bg:    transparent;
  --btn-ghost-border:#8AAD8A;
  --btn-ghost-txt:   #8AAD8A;
  --btn-ghost-hover: #8AAD8A;
  --btn-ghost-htxt:  #1A211A;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-base);
  color: var(--txt-primary);
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition), color var(--transition);
}

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

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

a:hover { color: var(--sage-dark); }
a:focus-visible { outline: 2px solid var(--border-focus); outline-offset: 3px; border-radius: 3px; }

ul, ol { list-style: none; }

p { overflow-wrap: break-word; word-break: break-word; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ---------- SECTION BASE ---------- */
.section {
  padding-block: var(--sp-7);
}
.section--alt {
  background-color: var(--bg-alt);
}
.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(0.6875rem, 0.8vw + 0.4rem, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--bg-badge);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 100px;
  margin-bottom: var(--sp-3);
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--txt-primary);
  line-height: 1.18;
  max-width: 680px;
}
.section__title--center {
  text-align: center;
  margin-inline: auto;
}
.section__subtitle {
  margin-top: var(--sp-3);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--txt-second);
  max-width: 600px;
  line-height: 1.75;
}
.section__subtitle--center {
  text-align: center;
  margin-inline: auto;
}
.section__head {
  margin-bottom: var(--sp-6);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 0.9vw + 0.4rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2.5vw, 32px);
  line-height: 1.3;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--btn-bg);
  color: var(--btn-txt);
  border-color: var(--btn-bg);
}
.btn--primary:hover {
  background: var(--btn-hover-bg);
  border-color: var(--btn-hover-bg);
  color: var(--btn-txt);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-txt);
  border-color: var(--btn-ghost-border);
}
.btn--ghost:hover {
  background: var(--btn-ghost-hover);
  color: var(--btn-ghost-htxt);
  box-shadow: var(--shadow-sm);
}
.btn--lg {
  padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 44px);
  font-size: clamp(0.9375rem, 1vw + 0.4rem, 1.0625rem);
}
.btn--sm {
  padding: clamp(7px, 0.8vw, 10px) clamp(14px, 1.5vw, 20px);
  font-size: clamp(0.8125rem, 0.8vw + 0.35rem, 0.9375rem);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  background: var(--bg-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.hdr-wrap {
  height: clamp(56px, 5vw + 44px, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-inline: clamp(16px, 4vw, 40px);
  max-width: var(--container);
  margin-inline: auto;
}

/* Logo */
.hdr-logo {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  text-decoration: none;
  flex-shrink: 0;
}
.hdr-logo__icon {
  width: clamp(28px, 3vw + 16px, 40px);
  height: clamp(28px, 3vw + 16px, 40px);
  flex-shrink: 0;
}
.hdr-logo__name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--txt-primary);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hdr-logo__name span {
  color: var(--sage);
}

/* Nav */
.hdr-nav {
  display: none;
}
.hdr-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 24px);
}
.hdr-nav__link {
  font-size: clamp(0.8125rem, 0.7vw + 0.4rem, 0.9375rem);
  font-weight: 500;
  color: var(--txt-second);
  padding-block: clamp(4px, 0.5vw, 8px);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}
.hdr-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width var(--transition);
}
.hdr-nav__link:hover,
.hdr-nav__link.active { color: var(--sage); }
.hdr-nav__link:hover::after,
.hdr-nav__link.active::after { width: 100%; }

/* Header right controls */
.hdr-controls {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  flex-shrink: 0;
}

/* Theme toggle */
.btn-theme {
  background: none;
  border: none;
  cursor: pointer;
  width: clamp(36px, 3vw + 22px, 44px);
  height: clamp(36px, 3vw + 22px, 44px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-second);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.btn-theme:hover {
  background: var(--bg-alt);
  color: var(--sage);
}
.btn-theme svg { width: clamp(18px, 2vw + 10px, 22px); height: clamp(18px, 2vw + 10px, 22px); }
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* CTA in header */
.site-header .hdr-cta {
  display: none;
}

/* Burger */
.btn-burger {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}
.btn-burger:hover { background: var(--bg-alt); }
.btn-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}
.btn-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.btn-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.hdr-drawer {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--sp-5) clamp(16px, 4vw, 40px) var(--sp-5);
  gap: var(--sp-2);
  max-height: calc(100vh - clamp(56px, 5vw + 44px, 72px));
  overflow-y: auto;
}
.hdr-drawer.is-open { display: flex; }
.hdr-drawer__link {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 500;
  color: var(--txt-primary);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.hdr-drawer__link:hover { color: var(--sage); padding-left: var(--sp-2); }
.hdr-drawer__cta {
  margin-top: var(--sp-4);
  align-self: flex-start;
}

/* Breakpoints for header */
@media (min-width: 768px) {
  .site-header .hdr-cta {
    display: inline-flex;
  }
  .btn-burger {
    display: none;
  }
}
@media (min-width: 1023px) {
  .hdr-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }
  .btn-burger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 920px);
  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;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-overlay);
  /* NEVER exceed 0.15 opacity for the dark layer */
  mix-blend-mode: multiply;
  opacity: 0.13;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-block: var(--sp-7);
  padding-inline: clamp(16px, 4vw, 48px);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(245,240,232,0.8);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 100px;
  margin-bottom: var(--sp-4);
  backdrop-filter: blur(4px);
}
[data-theme="dark"] .hero__eyebrow {
  background: rgba(42,53,42,0.85);
  color: var(--sage-light);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw + 0.75rem, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--txt-primary);
  max-width: 760px;
  margin-bottom: var(--sp-4);
}
.hero__title em {
  font-style: italic;
  color: var(--sage);
}
.hero__desc {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--txt-second);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  align-items: center;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: clamp(0.8125rem, 0.7vw + 0.4rem, 0.9375rem);
  color: var(--txt-second);
  font-weight: 500;
}
.hero__trust-item svg {
  width: 18px; height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}

/* ============================================================
   INTRO / VALUES STRIP
   ============================================================ */
.values-strip {
  background: var(--sage);
  padding-block: var(--sp-5);
}
.values-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .values-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.values-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
}
.values-strip__num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.values-strip__label {
  font-size: clamp(0.75rem, 0.7vw + 0.35rem, 0.875rem);
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 1024px) {
  .approach__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.approach__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.approach__img-main {
  grid-column: 1 / -1;
}
.approach__img-main img,
.approach__img-sub img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.approach__img-sub img {
  aspect-ratio: 1/1;
}
.approach__content {}
.approach__list {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.approach__item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.approach__item-icon {
  width: clamp(36px, 3.5vw + 20px, 48px);
  height: clamp(36px, 3.5vw + 20px, 48px);
  border-radius: var(--radius-md);
  background: var(--bg-badge);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}
.approach__item-icon svg { width: 20px; height: 20px; }
.approach__item-body {}
.approach__item-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1vw + 0.4rem, 1.125rem);
  font-weight: 700;
  color: var(--txt-primary);
  margin-bottom: var(--sp-1);
}
.approach__item-text {
  font-size: clamp(0.875rem, 0.8vw + 0.4rem, 0.9375rem);
  color: var(--txt-second);
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--sage-light);
}
.service-card__icon {
  width: clamp(44px, 4vw + 24px, 56px);
  height: clamp(44px, 4vw + 24px, 56px);
  border-radius: var(--radius-md);
  background: var(--bg-badge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}
.service-card__icon svg { width: clamp(22px, 2vw + 12px, 28px); height: clamp(22px, 2vw + 12px, 28px); }
.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.2vw + 0.4rem, 1.25rem);
  font-weight: 700;
  color: var(--txt-primary);
  line-height: 1.3;
}
.service-card__desc {
  font-size: clamp(0.875rem, 0.8vw + 0.38rem, 0.9375rem);
  color: var(--txt-second);
  line-height: 1.7;
  flex: 1;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.service-card__list li {
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.875rem);
  color: var(--txt-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-block: var(--sp-1);
  border-top: 1px solid var(--border);
}
.service-card__list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.service-card__tag {
  align-self: flex-start;
  font-size: clamp(0.6875rem, 0.5vw + 0.35rem, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--bg-badge);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  position: relative;
}
@media (min-width: 768px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process__steps { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); }
.process-step__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--linen-mid);
  line-height: 1;
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
}
[data-theme="dark"] .process-step__num { color: var(--border); }
.process-step__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-badge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}
.process-step__icon svg { width: 22px; height: 22px; }
.process-step__title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1vw + 0.4rem, 1.125rem);
  font-weight: 700;
  color: var(--txt-primary);
}
.process-step__text {
  font-size: clamp(0.875rem, 0.8vw + 0.38rem, 0.9375rem);
  color: var(--txt-second);
  line-height: 1.7;
}

/* ============================================================
   TEAM
   ============================================================ */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .team__grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top center;
}
.team-card__body {
  padding: clamp(14px, 1.5vw, 20px);
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1vw + 0.3rem, 1.0625rem);
  font-weight: 700;
  color: var(--txt-primary);
  margin-bottom: 2px;
}
.team-card__role {
  font-size: clamp(0.75rem, 0.6vw + 0.35rem, 0.8125rem);
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.team-card__bio {
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.875rem);
  color: var(--txt-second);
  line-height: 1.65;
}

/* ============================================================
   CASES / GALLERY SECTION
   ============================================================ */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 768px) {
  .cases__grid { grid-template-columns: repeat(3, 1fr); }
}
.case-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.case-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   PRICING / PACKAGES
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card--featured {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(92,122,92,0.18);
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 3px rgba(92,122,92,0.28), var(--shadow-lg);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__plan {
  font-size: clamp(0.75rem, 0.7vw + 0.35rem, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.pricing-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.5vw + 0.4rem, 1.5rem);
  font-weight: 700;
  color: var(--txt-primary);
}
.pricing-card__desc {
  font-size: clamp(0.875rem, 0.8vw + 0.38rem, 0.9375rem);
  color: var(--txt-second);
  line-height: 1.65;
}
.pricing-card__price {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--txt-primary);
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
}
.pricing-card__price sub {
  font-family: var(--font-sans);
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.9375rem);
  font-weight: 500;
  color: var(--txt-muted);
}
.pricing-card__includes {
  font-size: clamp(0.75rem, 0.6vw + 0.35rem, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-top: var(--sp-2);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: clamp(0.875rem, 0.8vw + 0.38rem, 0.9375rem);
  color: var(--txt-second);
  line-height: 1.55;
}
.pricing-card__features li svg {
  width: 16px; height: 16px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-card__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.testimonial-card__quote {
  font-size: 2rem;
  color: var(--sage-light);
  line-height: 1;
  font-family: var(--font-serif);
}
.testimonial-card__text {
  font-size: clamp(0.9375rem, 0.9vw + 0.4rem, 1rem);
  color: var(--txt-second);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: clamp(36px, 3.5vw + 20px, 46px);
  height: clamp(36px, 3.5vw + 20px, 46px);
  border-radius: 50%;
  background: var(--bg-badge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(0.875rem, 0.9vw + 0.3rem, 1rem);
  color: var(--sage);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8vw + 0.38rem, 0.9375rem);
  color: var(--txt-primary);
}
.testimonial-card__meta {
  font-size: clamp(0.75rem, 0.6vw + 0.35rem, 0.8125rem);
  color: var(--txt-muted);
}
.testimonial-card__stars {
  color: #D4A84B;
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.9375rem);
  letter-spacing: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 860px;
  margin-inline: auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.is-open {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: clamp(14px, 1.5vw, 18px) clamp(16px, 2vw, 24px);
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 0.9vw + 0.4rem, 1rem);
  font-weight: 600;
  color: var(--txt-primary);
  transition: color var(--transition);
}
.faq-item__q:hover { color: var(--sage); }
.faq-item__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--sage);
  transition: transform var(--transition);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-inline: clamp(16px, 2vw, 24px);
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  padding-bottom: clamp(14px, 1.5vw, 20px);
}
.faq-item__a p {
  font-size: clamp(0.875rem, 0.8vw + 0.38rem, 0.9375rem);
  color: var(--txt-second);
  line-height: 1.75;
}
.faq-item__a ul {
  margin-top: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.faq-item__a ul li {
  font-size: clamp(0.875rem, 0.8vw + 0.38rem, 0.9375rem);
  color: var(--txt-second);
  padding-left: var(--sp-4);
  position: relative;
}
.faq-item__a ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ============================================================
   CONTACT
   ============================================================ */
/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  width: 100%;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

/* Info */
.contact-info {
  min-width: 0;
  width: 100%;
}
.contact-info__lead {
  font-size: clamp(0.9375rem, 1vw + 0.4rem, 1.0625rem);
  color: var(--txt-second);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  width: 100%;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  min-width: 0;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-badge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label {
  font-size: clamp(0.6875rem, 0.5vw + 0.35rem, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 3px;
}
.contact-info__value {
  font-size: clamp(0.9375rem, 0.9vw + 0.4rem, 1rem);
  color: var(--txt-primary);
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
  max-width: 100%;
}
.contact-info__value a {
  color: var(--txt-primary);
  transition: color var(--transition);
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-info__value a:hover { color: var(--sage); }

/* Map */
.contact-map {
  margin-top: var(--sp-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: 100%;
}
.contact-map img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

/* Form wrapper */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.contact-form__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.5vw + 0.4rem, 1.5rem);
  font-weight: 700;
  color: var(--txt-primary);
  margin-bottom: var(--sp-4);
}

/* Grid всередині форми */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  width: 100%;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-grid .form-group--full {
  grid-column: 1 / -1;
}

/* Кожна group — min-width: 0 щоб не виходила за grid */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  min-width: 0;
  width: 100%;
}
.form-group label {
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.875rem);
  font-weight: 600;
  color: var(--txt-second);
}
.form-group label .req {
  color: #C0392B;
  margin-left: 2px;
}
[data-theme="dark"] .form-group label .req { color: #E87070; }

/* Всі поля — строго 100% ширини батька */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: clamp(10px, 1.2vw, 13px) clamp(12px, 1.5vw, 16px);
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 0.9vw + 0.4rem, 1rem);
  color: var(--txt-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  overflow-wrap: break-word;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(92,122,92,0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #C0392B;
}
[data-theme="dark"] .form-group input.error,
[data-theme="dark"] .form-group select.error,
[data-theme="dark"] .form-group textarea.error {
  border-color: #E87070;
}
.form-group textarea {
  resize: vertical;
  min-height: clamp(100px, 12vw, 140px);
}

/* Select стрілка */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C7A5C' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right clamp(10px, 1.5vw, 14px) center;
  padding-right: clamp(36px, 4vw, 44px);
  cursor: pointer;
}

.form-error {
  font-size: clamp(0.75rem, 0.6vw + 0.35rem, 0.8125rem);
  color: #C0392B;
  display: none;
  margin-top: 2px;
  overflow-wrap: break-word;
  word-break: break-word;
}
[data-theme="dark"] .form-error { color: #E87070; }
.form-error.visible { display: block; }

.form-consent {
  /* display: flex; */
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.875rem);
  color: var(--txt-second);
  margin-top: var(--sp-1);
  cursor: pointer;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--sage);
  cursor: pointer;
}

.form-submit {
  margin-top: var(--sp-3);
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.form-success {
  display: none;
  padding: var(--sp-4);
  background: var(--bg-badge);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: clamp(0.9375rem, 0.9vw + 0.4rem, 1rem);
  color: var(--sage);
  font-weight: 600;
  border: 1px solid var(--sage-light);
  margin-top: var(--sp-3);
  overflow-wrap: break-word;
}
.form-success.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-footer);
  color: var(--txt-footer);
  padding-top: var(--sp-7);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.footer-brand__name {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.3vw + 0.4rem, 1.375rem);
  font-weight: 700;
  color: var(--linen);
}
.footer-brand__name span { color: var(--sage-light); }
.footer-brand__desc {
  font-size: clamp(0.875rem, 0.8vw + 0.38rem, 0.9375rem);
  line-height: 1.75;
  color: var(--txt-footer);
  max-width: 320px;
  margin-bottom: var(--sp-4);
}
.footer-brand__contact {}
.footer-brand__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.875rem);
  color: var(--txt-footer);
  margin-bottom: var(--sp-2);
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer-brand__contact-item svg {
  width: 16px; height: 16px;
  color: var(--sage-light);
  flex-shrink: 0;
}
.footer-brand__contact-item a {
  color: var(--txt-footer);
  transition: color var(--transition);
}
.footer-brand__contact-item a:hover { color: var(--sage-light); }

.footer-col__title {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 0.9vw + 0.4rem, 1rem);
  font-weight: 700;
  color: var(--linen);
  margin-bottom: var(--sp-4);
}
.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-col__list li a {
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.875rem);
  color: var(--txt-footer);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col__list li a:hover {
  color: var(--sage-light);
  padding-left: var(--sp-2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-block: var(--sp-4);
}
.footer-bottom__copy {
  font-size: clamp(0.75rem, 0.6vw + 0.35rem, 0.8125rem);
  color: rgba(200,216,192,0.55);
}
.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom__links a {
  font-size: clamp(0.75rem, 0.6vw + 0.35rem, 0.8125rem);
  color: rgba(200,216,192,0.55);
  transition: color var(--transition);
}
.footer-bottom__links a:hover { color: var(--sage-light); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: clamp(12px, 2vw, 24px);
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(16px, 2vw, 24px) clamp(20px, 3vw, 32px);
  max-width: clamp(280px, 90vw, 560px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1vw + 0.4rem, 1.125rem);
  font-weight: 700;
  color: var(--txt-primary);
}
.cookie-banner__text {
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.875rem);
  color: var(--txt-second);
  line-height: 1.65;
}
.cookie-banner__text a {
  color: var(--txt-link);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: flex-end;
}

/* ============================================================
   PRIVACY / COOKIES PAGES
   ============================================================ */
.legal-page {
  padding-block: var(--sp-7);
  max-width: 780px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--txt-primary);
  margin-bottom: var(--sp-3);
}
.legal-page .legal-date {
  font-size: clamp(0.8125rem, 0.7vw + 0.35rem, 0.875rem);
  color: var(--txt-muted);
  margin-bottom: var(--sp-6);
}
.legal-page h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.3vw + 0.4rem, 1.375rem);
  font-weight: 700;
  color: var(--txt-primary);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.legal-page p {
  font-size: clamp(0.9375rem, 0.9vw + 0.4rem, 1rem);
  color: var(--txt-second);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
  overflow-wrap: break-word;
  word-break: break-word;
}
.legal-page ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.legal-page ul li {
  font-size: clamp(0.9375rem, 0.9vw + 0.4rem, 1rem);
  color: var(--txt-second);
  line-height: 1.75;
  padding-left: clamp(20px, 2.5vw, 28px);
  position: relative;
  overflow-wrap: break-word;
  word-break: break-word;
}
.legal-page ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--sage);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: clamp(16px, 2.5vw, 28px);
  right: clamp(16px, 2.5vw, 28px);
  z-index: 800;
  width: clamp(40px, 4vw + 24px, 52px);
  height: clamp(40px, 4vw + 24px, 52px);
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--sage-dark); }
.scroll-top svg { width: 20px; height: 20px; }

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal--delay-1 { transition-delay: 0.1s; }
  .reveal--delay-2 { transition-delay: 0.2s; }
  .reveal--delay-3 { transition-delay: 0.3s; }
  .reveal--delay-4 { transition-delay: 0.4s; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}