@font-face {
  font-family: 'Syne';
  src: url('font/Syne-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream:      #F4EFE4;
  --cream-dark: #E9E2D3;
  --green:      #1E3328;
  --green-mid:  #2C4A39;
  --green-soft: #3D5E4B;
  --terra:      #C4572F;
  --terra-soft: #D87755;
  --ink:        #1A1714;
  --ink-muted:  #5C5549;
  --rule:       rgba(30, 51, 40, 0.18);
  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Syne', Helvetica, sans-serif;
  --ff-features: "ss04";
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  font-feature-settings: var(--ff-features);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-soft); border-radius: 3px; }

input, 
textarea, 
select, 
button {
  font-family: inherit;
  font-feature-settings: inherit;
}


.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(244, 239, 228, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
  box-shadow: 0 1px 24px rgba(30,51,40,0.05);
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.nav__logo-simply {
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  font-optical-sizing: auto;
}
.nav__logo-french {
  font-weight: 700;
  color: var(--terra);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--green);
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--terra); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--green);
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-link {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--terra-soft); }


.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 90vh;
  background: linear-gradient(
    135deg,
    rgba(196, 87, 47, 0.06) 0%,
    rgba(30, 51, 40, 0.04) 100%
  );
  border-radius: 2px;
  pointer-events: none;
}

.hero::after {
  content: 'SF';
  position: absolute;
  bottom: -4rem;
  right: 2rem;
  font-family: var(--ff-display);
  font-size: 28vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(30, 51, 40, 0.06);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero__accent-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--terra) 0%, transparent 100%);
  max-width: 200px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  margin-bottom: 3.5rem;
}

.hero__simply {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 14vw, 14rem);
  font-weight: 200;
  font-style: italic;
  color: var(--green);
  font-optical-sizing: auto;
  letter-spacing: -0.03em;
  display: block;
}

.hero__french {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 14vw, 14rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  display: block;
  margin-left: clamp(1rem, 6vw, 8rem);
  position: relative;
}

.hero__french::before {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: -0.15em;
  right: -0.05em;
  height: 0.08em;
  background: var(--terra);
  opacity: 0.25;
  z-index: -1;
}

.hero__bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: end;
}

.hero__tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink);
  max-width: 320px;
}
.hero__tagline em {
  font-style: italic;
  color: var(--terra);
  font-weight: 500;
}

.hero__meta {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.meta-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--ink-muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--terra);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.strip {
  background: var(--green);
  padding: 3.5rem 3rem;
  overflow: hidden;
}

.strip__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.strip__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: center;
  font-optical-sizing: auto;
}

.about {
  padding: 7rem 3rem;
  position: relative;
}

.about__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 6rem;
  align-items: start;
}

.about__initial {
  font-family: var(--ff-display);
  font-size: 14rem;
  font-weight: 800;
  line-height: 0.85;
  color: var(--cream-dark);
  user-select: none;
  margin-bottom: 2rem;
  position: relative;
}
.about__initial::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60px; height: 4px;
  background: var(--terra);
}

.flag-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 3rem;
}

.flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(30, 51, 40, 0.04);
  letter-spacing: 0.02em;
  width: fit-content;
}

.about__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}

.about__heading {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1.75rem;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  max-width: 560px;
}
.about__heading em {
  font-style: italic;
  color: var(--green);
}

.about__right p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about__right p strong { color: var(--ink); font-weight: 700; }

.btn-outline {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--green);
  color: var(--green);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}

.offer {
  background: var(--green);
  padding: 7rem 3rem;
  position: relative;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0; left: 3rem; right: 3rem;
  height: 1px;
  background: rgba(244, 239, 228, 0.1);
}

.offer__header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.offer__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-soft);
  margin-bottom: 1rem;
}

.offer__heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.offer__list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(244, 239, 228, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.offer__item {
  padding: 2.5rem 2.75rem;
  border-bottom: 1px solid rgba(244, 239, 228, 0.12);
  border-right: 1px solid rgba(244, 239, 228, 0.12);
  transition: background 0.3s;
  cursor: default;
}
.offer__item:hover { background: rgba(244, 239, 228, 0.04); }
.offer__item:nth-child(even) { border-right: none; }
.offer__item:nth-child(3),
.offer__item:nth-child(4) { border-bottom: none; }

.offer__item-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.offer__num {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terra-soft);
  letter-spacing: 0.05em;
}

.offer__item-head h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.offer__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-soft);
  border: 1px solid rgba(216, 119, 85, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.offer__item-body p {
  font-size: 0.92rem;
  color: rgba(244, 239, 228, 0.65);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.offer__detail-list li {
  font-size: 0.82rem;
  color: rgba(244, 239, 228, 0.5);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(244, 239, 228, 0.07);
  padding-left: 1rem;
  position: relative;
  letter-spacing: 0.01em;
}
.offer__detail-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terra-soft);
  font-size: 0.7rem;
}
.offer__detail-list li:last-child { border-bottom: none; }

.approach {
  padding: 7rem 3rem;
  position: relative;
}

.approach__intro {
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.approach__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.approach__heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.approach__steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.approach__step {
  padding: 2.75rem;
  background: rgba(30, 51, 40, 0.03);
  border: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.approach__step:hover {
  background: rgba(196, 87, 47, 0.04);
  border-color: rgba(196, 87, 47, 0.2);
}

.step__line {
  position: absolute;
  top: 2.75rem; right: 2.75rem;
  width: 40px; height: 1px;
  background: var(--terra);
  opacity: 0.4;
}

.step__content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step__letter {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--cream-dark);
  line-height: 0.85;
  flex-shrink: 0;
  user-select: none;
  transition: color 0.3s;
}
.approach__step:hover .step__letter { color: rgba(196, 87, 47, 0.15); }

.step__text h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.step__text p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.approach__note {
  max-width: 1200px;
  margin: 3rem auto 0;
}

.approach__note-inner {
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--terra);
  background: rgba(196, 87, 47, 0.05);
}
.approach__note-inner p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.approach__note-inner p strong { color: var(--ink); }

.voices {
  background: var(--cream-dark);
  padding: 6rem 3rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.voices__inner { max-width: 1200px; margin: 0 auto; }

.voices__header { margin-bottom: 3rem; }

.voices__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}

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

.voice__card {
  padding: 2rem 2.25rem;
  background: var(--cream);
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.voice__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,51,40,0.08);
}
.voice__card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--terra);
  opacity: 0.2;
  line-height: 1;
}

.voice__text {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-optical-sizing: auto;
  position: relative;
  z-index: 1;
}

.voice__author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}

.contact {
  padding: 7rem 3rem;
}

.contact__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}

.contact__heading {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.contact__left > p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.contact__detail:last-child { border-bottom: none; }

.detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__detail a,
.contact__detail span {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.contact__detail a:hover { color: var(--terra); }

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form__field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--cream-dark);
  border: 1.5px solid transparent;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--ink-muted); opacity: 0.6; }

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--green);
  background: #fff;
}

.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C5549' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__field textarea { resize: vertical; min-height: 100px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--green);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, gap 0.2s;
  align-self: flex-start;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  gap: 1.25rem;
}
.btn-arrow { font-size: 1.1rem; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.form__success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(30, 51, 40, 0.08);
  border-left: 3px solid var(--green);
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
}
.form__success.visible { display: block; }

.footer {
  background: var(--ink);
  padding: 3rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}

.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.footer__logo .nav__logo-simply { color: var(--cream); opacity: 0.7; }
.footer__logo .nav__logo-french { color: var(--terra-soft); }

.footer__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.82rem;
  color: rgba(244, 239, 228, 0.45);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--cream); }

.footer__copy {
  font-size: 0.75rem;
  color: rgba(244, 239, 228, 0.3);
  letter-spacing: 0.03em;
  text-align: right;
}

.reveal, .reveal-fade, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal        { transform: translateY(30px); }
.reveal-fade   { transform: none; }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }

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

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.25s !important; }
.delay-3 { transition-delay: 0.4s !important; }
.delay-4 { transition-delay: 0.55s !important; }


@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__initial { font-size: 9rem; }
  .offer__list { grid-template-columns: 1fr; }
  .offer__item { border-right: none !important; }
  .offer__item:nth-child(3) { border-bottom: 1px solid rgba(244,239,228,0.12) !important; }
  .offer__item:last-child { border-bottom: none !important; }
  .approach__steps { grid-template-columns: 1fr; gap: 3px; }
  .voices__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .footer__copy { text-align: center; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero__bottom { grid-template-columns: 1fr; gap: 2rem; }
  .hero__meta { justify-content: flex-start; }
  .strip { padding: 2.5rem 1.5rem; }
  .about { padding: 5rem 1.5rem; }
  .offer { padding: 5rem 1.5rem; }
  .approach { padding: 5rem 1.5rem; }
  .voices { padding: 5rem 1.5rem; }
  .contact { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .form__row { grid-template-columns: 1fr; }
  .about__initial { display: none; }
  .flag-stack { flex-direction: row; flex-wrap: wrap; }
  .step__letter { font-size: 3.5rem; }
  .offer__item { padding: 2rem; }
  .approach__step { padding: 2rem; }
  .hero::after { font-size: 40vw; bottom: -2rem; right: 0; }
}
