:root {
  --forest: #3C4833;
  --olive: #7C833C;
  --bark: #8B7159;
  --trunk: #9A7B5B;
  --branch: #A7835E;
  --tan: #B9A790;
  --sand: #DAC7A8;
  --cream: #E9D9C8;
  --pale: #F2E8DA;
  --pom: #962725;
  --white: #FFFFFF;
  --text-dark: #2A2A25;
  --text-mid: #4A4535;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Karla', system-ui, sans-serif;

  --max: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  --ease: cubic-bezier(.22, .68, 0, 1.2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  background: var(--pale);
  color: var(--text-dark);
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(139, 113, 89, .12);
  transition: background .4s ease, backdrop-filter .4s ease, border-radius .4s ease,
    box-shadow .4s ease, border-color .4s ease, margin .4s ease, top .4s ease;
}

.nav.scrolled {
  top: 10px;
  margin: 0 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.57);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.8px);
  -webkit-backdrop-filter: blur(5.8px);
  border: 1px solid rgba(255, 255, 255, 0.21);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav__logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  flex-shrink: 0;
}

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

.nav__brand {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--forest);
  line-height: 1.2;
}

.nav__brand small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--trunk);
}

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

.nav__links a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color .2s;
}

.nav__links a:hover {
  color: var(--forest);
}

.nav__cta {
  background: var(--pom);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 16px;
  letter-spacing: .08em;
  transition: background .2s, transform .15s var(--ease) !important;
}

.nav__cta:hover {
  background: #7a1f1d !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--forest);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

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

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  right: 1rem;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.2px);
  -webkit-backdrop-filter: blur(6.2px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 1.25rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 105;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.nav__mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav__mobile-menu a {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color .2s;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(139, 113, 89, .1);
}

.nav__mobile-menu a:last-child {
  border-bottom: none;
}

.nav__mobile-menu a:hover {
  color: var(--forest);
}

.nav__mobile-menu .nav__cta {
  display: inline-block;
  text-align: center;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(.9);
  transition: transform 8s ease;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--forest) 0%, transparent 60%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .7;
  margin-bottom: 1.5rem;
}

.hero__h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: var(--pale);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}

.hero__h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero__sub {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 2rem;
}

.hero__body {
  font-size: 1rem;
  color: rgba(232, 217, 200, .85);
  line-height: 1.8;
  max-width: 44ch;
  margin-bottom: 3rem;
}

.hero__body strong {
  color: var(--sand);
  font-weight: 600;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 16px;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
  cursor: pointer;
}

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

.btn--primary:hover {
  background: #7a1f1d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150, 39, 37, .3);
}

.btn--ghost {
  background: transparent;
  color: var(--sand);
  border: 1px solid rgba(185, 167, 144, .4);
}

.btn--ghost:hover {
  background: rgba(185, 167, 144, .1);
  transform: translateY(-2px);
}

.hero__arabic {
  margin-top: 4rem;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: rgba(185, 167, 144, .25);
  letter-spacing: .1em;
  direction: rtl;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .hero__image {
    height: 40vh;
  }

  .hero__image::after {
    background: linear-gradient(0deg, var(--forest) 0%, transparent 60%);
  }

  .hero__content {
    order: -1;
  }
}

.banner {
  background: #5C3D2E;
  border-top: 1px solid rgba(185, 167, 144, .15);
  border-bottom: 1px solid rgba(185, 167, 144, .15);
  padding: 2.5rem var(--gutter);
}

.banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.banner__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.banner__stat span {
  display: block;
}

.banner__stat .num {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--sand);
  line-height: 1;
}

.banner__stat .lbl {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: .7;
  margin-top: .25rem;
}

.banner__partners {
  text-align: center;
}

.banner__partners-label {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: .6;
  margin-bottom: .75rem;
}

.banner__partner-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.banner__partner-list li {
  font-family: var(--ff-display);
  font-size: .92rem;
  font-weight: 500;
  color: var(--sand);
  opacity: .8;
}

.banner__trust {
  text-align: right;
}

.banner__trust p {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: .6;
  line-height: 1.6;
}

.banner__trust strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--sand);
  line-height: 1;
  margin-bottom: .3rem;
}

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

  .banner__stats {
    justify-content: center;
  }

  .banner__trust {
    text-align: center;
  }
}

.section {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
}

.section--cream {
  background: var(--cream);
}

.section--pale {
  background: var(--pale);
}

.section--sand {
  background: var(--sand);
}

.section--forest {
  background: var(--forest);
  color: var(--pale);
}

.section--white {
  background: var(--white);
}

.section__tag {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.25rem;
}

.section--forest .section__tag {
  color: var(--sand);
  opacity: .6;
}

.section__h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
}

.section__h2 em {
  font-style: italic;
}

.section__h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: .75rem;
}

.section__body {
  max-width: 65ch;
  color: var(--text-mid);
  line-height: 1.85;
}

.section--forest .section__body {
  color: rgba(232, 217, 200, .8);
}

.section__body p+p {
  margin-top: 1.2rem;
}

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

.indict__image {
  position: sticky;
  top: 120px;
  border-radius: 12px;
  overflow: hidden;
}

.indict__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: sepia(.15) saturate(.9);
}

.indict__text {}

.indict__pull {
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--forest);
  border-left: 3px solid var(--pom);
  padding-left: 1.5rem;
  margin-bottom: 1.75rem;
}

.indict__sub {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.indict__body p {
  line-height: 1.85;
  margin-bottom: 1.2rem;
  color: var(--text-mid);
}

.indict__body strong {
  color: var(--pom);
  font-weight: 600;
}

@media (max-width: 900px) {
  .indict {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .indict__image {
    position: static;
  }

  .indict__image img {
    aspect-ratio: 16/9;
  }
}

.usp__highlight {
  background: var(--forest);
  color: var(--pale);
  padding: calc(2.5rem + 15px) calc(3rem + 15px);
  border-radius: 12px;
  margin-bottom: 3.5rem;
  position: relative;
}

.usp__highlight::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: var(--ff-display);
  font-size: 6rem;
  color: var(--sand);
  opacity: .25;
  line-height: 1;
}

.usp__highlight p {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  font-style: italic;
  position: relative;
}

.usp__highlight strong {
  font-style: normal;
  color: var(--sand);
}

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

.usp__body p {
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.usp__how-title {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.5rem;
}

.usp__how-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(139, 113, 89, .15);
}

.usp__how-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.usp__how-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--tan);
  flex-shrink: 0;
  width: 2rem;
  line-height: 1.2;
}

.usp__how-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.usp__how-text strong {
  font-weight: 600;
  color: var(--forest);
}

@media (max-width: 768px) {
  .usp__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.programmes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(12, auto);
  column-gap: 3rem;
  row-gap: 0;
  margin-top: 4rem;
}

.prog-card {
  background: var(--white);
  border: 1px solid rgba(139, 113, 89, .15);
  border-radius: 12px;
  overflow: hidden;
  grid-row: 1 / span 12;
  display: grid;
  grid-template-rows: subgrid;
}

.prog-card__image {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.prog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.prog-card:hover .prog-card__image img {
  transform: scale(1.04);
}

.prog-card__tag {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  padding: 2.5rem 2.5rem 0.5rem;
  align-self: flex-start;
  text-align: left;
}

.prog-card__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  padding: 0 2.5rem 0.4rem;
  align-self: flex-start;
  text-align: left;
}

.prog-card__tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--trunk);
  padding: 0 2.5rem 1.5rem;
  align-self: flex-start;
  text-align: left;
}

.prog-card__section-label {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tan);
  padding: 1.5rem 2.5rem 0.4rem;
  align-self: end;
  text-align: right;
}

.prog-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding: 0 2.5rem 0.5rem;
  align-self: start;
}

.prog-card__why-list,
.prog-card__elig-list {
  padding: 0 2.5rem 0.5rem;
  align-self: start;
}

.prog-card__why-list li,
.prog-card__elig-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: .45rem;
  padding-left: 1.2em;
  position: relative;
}

.prog-card__why-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-size: .75em;
}

.prog-card__elig-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--pom);
  font-weight: 700;
}

.prog-card__numbers {
  background: var(--cream);
  border-radius: 8px;
  margin: 1.25rem 2.5rem;
  padding: 1.25rem 1.5rem;
  align-self: center;
}

.prog-card__numbers p {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.5;
}

.prog-card__cta {
  padding: 1.5rem 2.5rem 2.5rem;
  align-self: end;
}

@media (max-width: 768px) {
  .programmes__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 2.5rem;
  }

  .prog-card {
    grid-row: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-radius: 12px;
    overflow: hidden;
  }

    .prog-card__tag,
  .prog-card__title,
  .prog-card__tagline,
  .prog-card__section-label,
  .prog-card__text,
  .prog-card__why-list,
  .prog-card__elig-list,
  .prog-card__cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: left;
    align-self: stretch;
  }

  .prog-card__tag {
    padding-top: 1.5rem;
    padding-bottom: 0.4rem;
  }

  .prog-card__title {
    padding-top: 0;
    padding-bottom: 0.3rem;
  }

  .prog-card__tagline {
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .prog-card__section-label {
    padding-top: 1.25rem;
    padding-bottom: 0.3rem;
  }

  .prog-card__text {
    padding-top: 0;
    padding-bottom: 0.4rem;
  }

  .prog-card__why-list,
  .prog-card__elig-list {
    padding-top: 0;
    padding-bottom: 0.5rem;
  }

  .prog-card__numbers {
    margin: 1rem 1.5rem;
  }

  .prog-card__cta {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }
}

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

.testimonial {
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(185, 167, 144, .25);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--tan);
  opacity: .5;
  line-height: .8;
  display: block;
  margin-bottom: .5rem;
}

.testimonial__quote {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.testimonial__attr {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bark);
}

.testimonials__numbers {
  background: var(--forest);
  color: var(--pale);
  padding: 2rem 3rem;
  border-radius: 12px;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.testimonials__num-item {}

.testimonials__num-item .big {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--sand);
  display: block;
  line-height: 1;
}

.testimonials__num-item .sm {
  font-size: 0.7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: .7;
}

.testimonials__transparency {
  font-size: 0.82rem;
  color: var(--bark);
  font-style: italic;
  border-left: 2px solid var(--tan);
  padding-left: 1rem;
}

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

.distribution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.distribution__image {
  border-radius: 12px;
  overflow: hidden;
}

.distribution__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(.1) saturate(.85);
}

.distribution__text {}

.distribution__body p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .distribution__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .distribution__image img {
    aspect-ratio: 16/9;
  }
}

.final-cta {
  background: var(--forest);
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  font-family: var(--ff-display);
  font-size: 28vw;
  color: rgba(185, 167, 144, .04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
  direction: rtl;
  letter-spacing: .1em;
}

.final-cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta__tag {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .55;
  margin-bottom: 1.5rem;
}

.final-cta__h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--pale);
  margin-bottom: 1.25rem;
}

.final-cta__h2 em {
  font-style: italic;
  color: var(--sand);
}

.final-cta__sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--tan);
  opacity: .8;
  margin-bottom: 3rem;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.final-cta__secondary {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.final-cta__secondary a {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: .7;
  transition: opacity .2s;
}

.final-cta__secondary a:hover {
  opacity: 1;
}

footer {
  background: #221e1a;
  color: var(--tan);
  padding: 3rem var(--gutter) 2rem;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(185, 167, 144, .1);
  margin-bottom: 1.5rem;
}

.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sand);
  margin-bottom: .5rem;
}

.footer__brand-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--tan);
  opacity: .7;
  max-width: 38ch;
  margin-bottom: 1rem;
}

.footer__reg {
  font-size: 0.68rem;
  letter-spacing: .08em;
  color: var(--tan);
  opacity: .45;
}

.footer__col-title {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: .5;
  margin-bottom: 1rem;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.82rem;
  color: var(--tan);
  opacity: .7;
  margin-bottom: .5rem;
  transition: opacity .2s;
  line-height: 1.6;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--tan);
  opacity: .4;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal:nth-child(2) {
  transition-delay: .1s;
}

.reveal:nth-child(3) {
  transition-delay: .2s;
}

.reveal:nth-child(4) {
  transition-delay: .3s;
}

.img-placeholder {
  background: linear-gradient(135deg, var(--sand) 0%, var(--tan) 50%, var(--bark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .3);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  min-height: 360px;
}
