@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600&display=swap");

:root {
  --gold: #b89761;
  --gold-dark: #a88450;
  --ink: #072708;
  --muted: #666;
  --paper: #fbfaf8;
  --soft: #f7f3ed;
  --white: #fff;
  --page-pad: clamp(28px, 4.45vw, 64px);
  --wide-pad: clamp(28px, 2.6vw, 37.5px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Figtree", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.page {
  min-width: 320px;
  overflow: hidden;
}

.top-strip {
  align-items: center;
  background: var(--gold);
  color: var(--white);
  display: flex;
  font-size: 14px;
  font-weight: 300;
  gap: 20px;
  height: 32px;
  justify-content: center;
  letter-spacing: .28px;
  line-height: 1.4;
  white-space: nowrap;
}

.top-strip i {
  background: var(--white);
  border-radius: 50%;
  display: block;
  height: 3px;
  width: 3px;
}

.hero {
  background-image: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 62%, rgba(0,0,0,.05) 100%), linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0) 22%), url("../img/hero-bg.png");
  background-position: center 45%;
  background-size: cover;
  color: var(--white);
  min-height: 800px;
  position: relative;
}

.hero::after {
  background: rgba(164, 125, 91, .38);
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: absolute;
}

.nav,
.hero-inner {
  position: relative;
  z-index: 1;
}

.nav {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 80px;
  padding: 18px 40px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 3px;
  width: 36px;
}

.menu-toggle img {
  height: 24px;
  width: 24px;
}

.nav-group {
  align-items: center;
  display: flex;
  gap: 28px;
  transform: translateY(-6px);
  text-transform: uppercase;
}

.nav-group.right {
  gap: 20px;
  justify-content: flex-end;
  transform: translateY(-18px);
}

.nav-group-left {
  transform: translateY(-18px);
}

.nav a {
  font-size: 14px;
  font-weight: 400;
  line-height: 25.6px;
}

.brand {
  align-self: start;
  border-radius: 50%;
  height: 92px;
  margin-top: -2px;
  overflow: hidden;
  width: 92px;
}

.brand img {
  height: 102px;
  margin: -6px 0 0 -5px;
  max-width: none;
  width: 102px;
}

.cart,
.button.glass {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
}

.cart {
  align-items: center;
  border-radius: 100px;
  display: flex;
  gap: 10px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0 19px;
  text-transform: none;
}

.cart img {
  height: 16px;
  width: 13px;
}

.cart span {
  transform: translateY(1px);
}

.mobile-menu {
  background: var(--white);
  color: #000;
  display: none;
  height: 100vh;
  inset: 0;
  min-height: 100vh;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 20;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-bar {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 176px;
  padding: 32px 42px 0;
}

.menu-close {
  background: transparent;
  border: 0;
  color: rgba(0,0,0,.3);
  font-family: inherit;
  font-size: 54px;
  font-weight: 300;
  justify-self: start;
  line-height: 1;
  padding: 0;
}

.mobile-menu-brand {
  border-radius: 50%;
  display: block;
  height: 100px;
  overflow: hidden;
  width: 100px;
}

.mobile-menu-brand img {
  height: 110px;
  margin: -5px 0 0 -5px;
  max-width: none;
  width: 110px;
}

.mobile-menu-cart {
  align-items: center;
  border: 2px solid #dedede;
  border-radius: 999px;
  display: flex;
  gap: 4px;
  height: 74px;
  justify-content: center;
  justify-self: end;
  position: relative;
  width: 122px;
}

.mobile-menu-cart img {
  filter: brightness(0);
  height: 28px;
  width: 23px;
}

.mobile-menu-cart span {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 20px;
  font-weight: 600;
  height: 31px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 27px;
  top: 21px;
  width: 31px;
}

.mobile-menu-links {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: 50px 24px 0;
}

.mobile-menu-links a {
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.mobile-menu-contact {
  border-top: 2px solid #dedede;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
  left: 0;
  padding: 46px 40px 54px;
  position: absolute;
  width: 100%;
}

.mobile-menu-contact a {
  align-items: center;
  color: #000;
  display: flex;
  font-size: 34px;
  gap: 32px;
  justify-content: center;
  line-height: 1.2;
  text-transform: none;
}

.mobile-menu-contact span {
  color: var(--gold);
  font-size: 32px;
  min-width: 38px;
}

.hero-inner {
  align-items: flex-end;
  display: grid;
  gap: clamp(24px, 4vw, 58px);
  grid-template-columns: minmax(440px, 515px) minmax(560px, 624px);
  justify-content: space-between;
  min-height: 688px;
  padding: 52px var(--page-pad);
}

.hero-copy {
  border-radius: 40px;
  justify-self: start;
  max-width: 515px;
  padding: 38px 38px 38px 20px;
  width: 100%;
}

.hero-copy h1 {
  font-size: clamp(56px, 4.45vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 20px;
}

.hero-copy h1 span {
  font-weight: 300;
}

.hero-copy p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 100px;
  display: inline-flex;
  font-size: 16px;
  height: 54px;
  justify-content: center;
  line-height: 24px;
  padding: 0 32px;
  white-space: nowrap;
}

.button.primary {
  background: var(--gold);
  color: var(--white);
}

.button.glass {
  color: var(--white);
}

.button.small {
  font-size: 14px;
  height: 36px;
  padding: 0 24px;
}

.button.outline {
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  height: 42px;
  padding: 0 22px;
}

.hero-products {
  display: flex;
  gap: 12px;
  justify-self: end;
  padding-bottom: 40px;
  width: 100%;
}

.mini-card {
  background: var(--white);
  border-radius: 20px;
  color: black;
  flex: 1 1 0;
  overflow: hidden;
  min-width: 0;
}

.mini-card img {
  aspect-ratio: 360 / 440;
  height: auto;
  object-fit: cover;
  object-position: center 45%;
  width: 100%;
}

.mini-card h2,
.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.mini-card p,
.product-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  margin: 4px 0 0;
}

.mini-card h2,
.mini-card p {
  padding-left: 16px;
  padding-right: 16px;
}

.mini-card h2 {
  padding-top: 12px;
}

.mini-card p {
  padding-bottom: 12px;
}

.intro {
  background: var(--white);
  min-height: 369px;
  padding: 100px var(--wide-pad) 40px;
}

.intro > p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.43;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.values {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: grid;
  column-gap: clamp(26px, 3.6vw, 52px);
  grid-template-columns: minmax(280px, max-content) 4px minmax(420px, max-content) 4px minmax(360px, max-content);
  justify-content: center;
  margin: 30px auto 0;
  max-width: none;
  min-height: 122px;
  padding: 36px 74px;
}

.values article {
  align-items: center;
  display: flex;
  gap: 24px;
}

.wave-separator {
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='50' viewBox='0 0 4 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 0 C0.7 4.2 0.7 8.4 2 12.5 C3.3 16.6 3.3 20.8 2 25 C0.7 29.2 0.7 33.4 2 37.5 C3.3 41.6 3.3 45.8 2 50' stroke='%23E0CFB8' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 4px 50px;
  display: block;
  height: 50px;
  width: 4px;
}

.value-icon {
  flex: 0 0 50px;
  height: 50px;
  object-fit: contain;
  width: 50px;
}

.values h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.38;
  margin: 0;
}

.categories {
  background: var(--white);
  padding: 80px var(--page-pad) 90px;
  text-align: center;
}

.categories h2,
.featured h2,
.faq h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.categories h2 {
  font-size: 38px;
}

.category-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px auto 34px;
  max-width: none;
}

.category-card {
  aspect-ratio: 312.25 / 211;
  border-radius: 16px;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.category-card::before {
  background: linear-gradient(
    180deg,
    rgba(25, 18, 10, 0) 0%,
    rgba(25, 18, 10, 0) 42%,
    rgba(73, 52, 27, .16) 58%,
    rgba(129, 95, 52, .38) 76%,
    rgba(174, 135, 78, .72) 100%
  );
  bottom: 0;
  content: "";
  inset: 0;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.category-card::after {
  align-items: center;
  bottom: 13px;
  color: var(--white);
  content: "›";
  display: flex;
  font-size: 18px;
  height: 22px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  width: 22px;
  z-index: 2;
}

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

.category-card span {
  bottom: 17px;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  left: 20px;
  position: absolute;
  z-index: 2;
}

.featured {
  background: linear-gradient(110deg, #f7f3ed 0%, #fbfaf8 45%, #fff 100%);
  padding: 100px var(--page-pad) 80px;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 48px;
  max-width: none;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 300;
  max-width: 430px;
}

.section-heading .button.outline {
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 45px rgba(7, 39, 8, .06);
  color: var(--ink);
  font-size: 14px;
  height: 50px;
  padding: 0 30px;
}

.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .16s ease, transform .16s ease;
}

.product-grid.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.product-card[hidden] {
  display: none;
}

.product-image {
  aspect-ratio: 309.25 / 378;
  background: #f3f3f3;
  overflow: hidden;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

.product-info {
  padding: 16px;
}

.product-buyline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.price {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.cart-mark {
  align-items: center;
  background: #f7f3ed;
  border-radius: 50%;
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.product-info .add-cart {
  align-items: center;
  background: var(--gold);
  border-radius: 100px;
  color: var(--white);
  gap: 8px;
  display: flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}

.product-slider-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 28px auto 0;
  max-width: none;
}

.slider-page {
  color: var(--gold);
  font-size: 15px;
  font-weight: 400;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  align-items: center;
  background: #d1b077;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 24px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.story {
  align-items: center;
  display: flex;
  min-height: 640px;
  padding: 80px var(--page-pad) 80px clamp(34px, 5.4vw, 78px);
  overflow: hidden;
  position: relative;
}

.story::before {
  background-image: url("../img/story.png");
  background-position: center 48%;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(-1);
}

.story-panel {
  background: var(--white);
  border-radius: 20px;
  margin-left: 0;
  max-width: 560px;
  padding: 50px 46px 42px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.story-panel h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 24px;
  max-width: 430px;
}

.story-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.52;
  margin: 0 0 32px;
  max-width: 455px;
}

.story-panel .button {
  height: 46px;
  min-width: 180px;
  padding: 0 26px;
}

.button.primary.story-button {
  background: #d4b679;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.faq {
  background: var(--white);
  min-height: 1017px;
  padding: 100px 20px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px auto;
  max-width: 656px;
}

.faq-item {
  background: var(--soft);
  border: 0;
  border-radius: 20px;
  color: var(--ink);
  overflow: hidden;
  text-align: left;
  width: 100%;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: inherit;
  justify-content: space-between;
  min-height: 76px;
  padding: 20px 30px;
  text-align: left;
  width: 100%;
}

.faq-question h3 {
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}

.faq-question span {
  color: rgba(7,39,8,.38);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .3s ease, opacity .25s ease;
}

.faq-answer p {
  color: #353f30;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0 30px;
}

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

.faq-item.is-open .faq-question {
  min-height: 64px;
  padding-bottom: 6px;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 26px;
}

.faq-more {
  gap: 10px;
  padding: 0 18px 0 24px;
}

.faq-more span {
  font-size: 16px;
  line-height: 1;
}

.bottom-cta {
  align-items: flex-start;
  background-image: linear-gradient(rgba(0,0,0,.22), rgba(0,0,0,.22)), url("../img/cta-bg.png");
  background-position: center bottom;
  background-size: cover;
  display: flex;
  justify-content: center;
  min-height: 571px;
  padding-top: 160px;
}

.cta-card {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 80px;
  text-align: center;
}

.cta-card h2 {
  color: black;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 32px;
}

.footer {
  background: var(--gold);
  color: var(--white);
  min-height: 336px;
  padding: 54px var(--page-pad) 26px;
  text-transform: uppercase;
}

.footer-top,
.footer-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: none;
}

.footer-top {
  padding-bottom: 72px;
}

.footer-contact {
  align-items: center;
  display: flex;
  gap: 46px;
}

.footer-contact img {
  border-radius: 50%;
  height: 149px;
  width: 149px;
}

.footer-contact p {
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 12px;
}

.footer-contact a {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
  text-transform: none;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  text-align: left;
}

.footer-nav div {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
}

.footer-nav a,
.footer-nav span,
.footer-bottom {
  font-size: 12px;
  line-height: 1.4;
}

.footer-nav span {
  color: rgba(255,255,255,.55);
}

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

.social a {
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  height: 24px;
  justify-content: center;
  text-transform: none;
  width: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1100px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav {
    grid-template-columns: 1fr auto 1fr;
    height: 142px;
    padding: 28px 42px 0;
  }

  .menu-toggle {
    align-self: start;
    display: flex;
    justify-self: start;
  }

  .nav-group-left {
    display: none;
  }

  .nav-group.right {
    display: contents;
  }

  .nav-group.right > a:not(.cart) {
    display: none;
  }

  .brand {
    height: 108px;
    margin-top: 0;
    width: 108px;
  }

  .brand img {
    height: 120px;
    margin: -6px 0 0 -6px;
    width: 120px;
  }

  .cart {
    border: 2px solid rgba(255,255,255,.22);
    height: 74px;
    justify-self: end;
    padding: 0;
    position: relative;
    width: 122px;
  }

  .cart img {
    height: 28px;
    width: 23px;
  }

  .cart span {
    align-items: center;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    font-size: 0;
    height: 31px;
    justify-content: center;
    position: absolute;
    right: 27px;
    top: 21px;
    transform: none;
    width: 31px;
  }

  .cart span::after {
    color: var(--white);
    content: "2";
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
  }

  .mobile-menu {
    display: block;
  }

  .hero-inner,
  .section-heading,
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .hero-inner {
    align-items: start;
    gap: 34px;
    grid-template-columns: 1fr;
    justify-content: start;
    min-height: auto;
    padding: 72px 42px 64px;
  }

  .hero-copy {
    max-width: 690px;
    padding: 0;
  }

  .hero-products {
    justify-self: stretch;
    padding-bottom: 0;
    width: 100%;
  }

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

  .values {
    border-radius: 28px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding: 30px;
  }

  .wave-separator {
    display: none;
  }
}

@media (max-width: 760px) {
  .top-strip {
    font-size: 12px;
    gap: 10px;
  }

  .hero {
    min-height: 900px;
  }

  .nav {
    grid-template-columns: 1fr auto 1fr;
    height: 118px;
    justify-items: stretch;
    padding: 20px 28px 0;
  }

  .menu-toggle span {
    height: 3px;
    width: 32px;
  }

  .brand {
    height: 90px;
    width: 90px;
  }

  .brand img {
    height: 100px;
    margin: -5px 0 0 -5px;
    width: 100px;
  }

  .cart {
    height: 58px;
    width: 100px;
  }

  .cart img {
    height: 23px;
    width: 19px;
  }

  .cart span {
    height: 25px;
    right: 22px;
    top: 16px;
    width: 25px;
  }

  .cart span::after {
    font-size: 16px;
  }

  .mobile-menu-bar {
    height: 128px;
    padding: 24px 28px 0;
  }

  .menu-close {
    font-size: 42px;
  }

  .mobile-menu-brand {
    height: 86px;
    width: 86px;
  }

  .mobile-menu-brand img {
    height: 96px;
    width: 96px;
  }

  .mobile-menu-cart {
    height: 58px;
    width: 100px;
  }

  .mobile-menu-cart img {
    height: 23px;
    width: 19px;
  }

  .mobile-menu-cart span {
    font-size: 16px;
    height: 25px;
    right: 22px;
    top: 16px;
    width: 25px;
  }

  .mobile-menu-links {
    gap: 24px;
    padding-top: 30px;
  }

  .mobile-menu-links a {
    font-size: 31px;
  }

  .mobile-menu-contact {
    gap: 22px;
    padding: 26px 24px 30px;
  }

  .mobile-menu-contact a {
    font-size: 22px;
    gap: 22px;
  }

  .hero-copy {
    border-radius: 28px;
    padding: 0;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-products {
    gap: 10px;
    overflow-x: hidden;
    padding-bottom: 8px;
    width: 100%;
  }

  .mini-card {
    border-radius: 18px;
    flex: 0 0 calc((100% - 20px) / 3);
  }

  .intro,
  .categories,
  .featured,
  .faq,
  .story,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro > p {
    font-size: 22px;
  }

  .intro > p br {
    display: none;
  }

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

  .story {
    align-items: flex-end;
    min-height: 560px;
  }

  .cta-card {
    margin: 0 20px;
    padding: 42px 28px;
  }

  .cta-card h2 {
    font-size: 34px;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}
