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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Karla', sans-serif;
  background: #f5efdc;
  color: #1e2a1c;
  overflow-x: hidden;
}

/* ── Tokens ── */
:root {
  --green-deep:   #102a16;
  --green-dark:   #0c2112;
  --green-black:  #081a0d;
  --gold:         #d9a62e;
  --gold-light:   #ecc45c;
  --gold-hover:   #e9bc4a;
  --bronze:       #9a7416;
  --gold-muted:   #8c7427;
  --cream:        #f5efdc;
  --cream-card:   #fcf8ec;
  --cream-alt:    #f0e8d2;
  --border-cream: #e0d5b4;
  --text-main:    #1e2a1c;
  --text-body:    #4d5343;
  --text-dark:    #e3dcbb;
  --text-muted:   #8f8254;
  --error:        #e8b96a;
}

/* ── Utilities ── */
.eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.eyebrow--light { color: var(--gold-light); }

.section-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

/* ── Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 32, 18, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  padding: 12px clamp(20px, 5vw, 64px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.nav__logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav__logo-img {
  height: 76px;
  border-radius: 8px;
  box-shadow: 0 rgba(0);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav__brand {
  font-family: 'Prata', serif;
  font-size: 21px;
  color: #f5efdc;
  line-height: 1;
}

.nav__tagline {
  font-family: 'Karla', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
}

.nav__links a {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  color: #e8e1c4;
  text-decoration: none;
  transition: color .2s;
}
.nav__links a:hover { color: var(--gold-light); }

.btn-nav {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.btn-nav:hover { background: var(--gold-hover); }

.nav__social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__social-link {
  display: flex;
  align-items: center;
  opacity: .85;
  transition: opacity .2s, transform .2s;
}
.nav__social-link:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ── Video vertical cuando el hero es de una sola columna (~753px) ── */
@media (max-width: 760px) {
  .hero__media {
    aspect-ratio: 16 / 9 !important;
  }
}

/* ── Etapa 1: desaparece el texto del logo ── */
@media (max-width: 860px) {
  .nav__logo-text { display: none; }
}

/* ── Etapa 2: desaparecen los iconos de redes ── */
@media (max-width: 700px) {
  .nav__social-icons { display: none; }
}

/* ── Mobile (≤640px) ── */
/* ── Hamburger button ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #e8e1c4;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ── Mobile dropdown ── */
.nav__mobile-menu {
  display: none;
  background: rgba(8, 26, 13, 0.98);
  border-top: 1px solid var(--gold-muted);
  padding: 8px clamp(20px, 5vw, 64px) 20px;
}
.nav__mobile-menu ul { list-style: none; }
.nav__mobile-menu a {
  display: block;
  padding: 14px 0;
  color: #e8e1c4;
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  border-bottom: 1px solid rgba(140, 116, 39, 0.25);
  transition: color .2s;
}
.nav__mobile-menu li:last-child a { border-bottom: none; }
.nav__mobile-menu a:hover { color: var(--gold-light); }

@media (max-width: 640px) {
  .nav__logo-text  { display: none; }
  .nav__logo-wrap  { width: 80vw; transition: width .5s ease; }
  .nav__logo-img   { height: auto; width: 100%; max-width: 100%; }
  .nav__inner      { justify-content: center; }
  .nav__social-icons { display: none; }
  .footer__brand-text { display: none; }

  /* Al scrollear: logo pequeño + hamburger */
  .nav.scrolled .nav__logo-wrap { width: 120px; }
  .nav.scrolled nav             { display: none; }
  .nav.scrolled .nav__inner     { justify-content: space-between; }
  .nav.scrolled .nav__hamburger { display: flex; }

  /* Menú abierto */
  .nav.open .nav__mobile-menu { display: block; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding: clamp(34px, 5.6vw, 77px) clamp(20px, 5vw, 64px);
}

.hero__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__eyebrow {
  margin-bottom: 18px;
}

.hero__h1 {
  font-family: 'Prata', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.20;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 22px;
}

.hero__p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--text-body);
  max-width: 48ch;
  margin-bottom: 32px;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--green-deep);
  color: #f5efdc;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover { background: #1d3d22; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-main);
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid #c8b87e;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover {
  border-color: var(--bronze);
  background: #f0e8d2;
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 18px 50px rgba(16, 42, 22, .28);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 26, 13, .35) 0%, transparent 50%);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee {
  background: var(--green-deep);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-family: 'Prata', serif;
  font-size: 16px;
  color: var(--gold-light);
  letter-spacing: .08em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   BENEFICIOS
═══════════════════════════════════════ */
.beneficios {
  padding: clamp(22px, 3.15vw, 42px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 120px);
}

.beneficios__header {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.beneficios__h2 {
  font-family: 'Prata', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--text-main);
  margin-top: 12px;
}

.beneficios__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.benefit-card {
  background: var(--cream-card);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  padding: clamp(28px, 3vw, 40px);
}

.benefit-card__num {
  font-family: 'Prata', serif;
  font-size: 30px;
  color: #c8a93e;
  margin-bottom: 16px;
}

.benefit-card__h3 {
  font-family: 'Prata', serif;
  font-size: 22px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.benefit-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 200px;
}

.benefit-img picture {
  position: absolute;
  inset: 0;
}

.benefit-img__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .benefit-img {
    position: static;
    border-radius: 0;
    overflow: visible;
    min-height: 0;
    mix-blend-mode: multiply;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .benefit-img picture {
    position: static;
  }
  .benefit-img__photo {
    height: auto;
    object-fit: initial;
  }
}

.benefit-card__p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   GALERÍA / CARRUSEL
═══════════════════════════════════════ */
.galeria {
  position: relative;
  background: var(--green-deep);
  padding: clamp(22px, 3.15vw, 42px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 120px);
}

.galeria__header {
  max-width: 960px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.galeria__header-left .eyebrow { color: var(--gold-light); }

.galeria__h2 {
  font-family: 'Prata', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  color: #f5efdc;
  margin-top: 12px;
}

.galeria__arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--gold-muted);
  background: transparent;
  color: #f5efdc;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.arrow-btn:hover { background: #1a3d22; }

.galeria__viewport {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
}

.galeria__track {
  display: flex;
  transition: transform .6s cubic-bezier(.25, .8, .25, 1);
}

.galeria__slide {
  flex: 0 0 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  background: var(--green-dark);
}

.slide__img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.slide__ribbon {
  position: absolute;
  width: 220px;
  z-index: 20;
  pointer-events: none;
  transform: translate(50%, -50%);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.4));
  transition: opacity .25s ease;
}

.slide__caption {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.slide__tag {
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.slide__h3 {
  font-family: 'Prata', serif;
  font-size: clamp(24px, 2.6vw, 34px);
  color: #f5efdc;
}

.slide__desc {
  font-size: 16px;
  color: #e3dcbb;
  line-height: 1.65;
}

.galeria__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.dot {
  height: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: width .3s, background .3s;
  background: #44603a;
  width: 10px;
  padding: 0;
}
.dot.active {
  width: 28px;
  background: var(--gold-light);
}

/* ═══════════════════════════════════════
   HISTORIA
═══════════════════════════════════════ */
.historia {
  padding: clamp(22px, 3.15vw, 42px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 120px);
}

.historia__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.historia__img-wrap {
  aspect-ratio: 4 / 4.4;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 16px 44px rgba(16, 42, 22, .22);
}

.historia__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.historia__h2 {
  font-family: 'Prata', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--text-main);
  margin-top: 12px;
  margin-bottom: 22px;
}

.historia__p {
  font-size: 16.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.historia__firma {
  font-family: 'Prata', serif;
  font-size: 18px;
  color: var(--bronze);
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════ */
.testimonios {
  background: var(--cream-alt);
  border-top: 1px solid var(--border-cream);
  border-bottom: 1px solid var(--border-cream);
  padding: clamp(22px, 3.15vw, 42px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 120px);
}

.testimonios__header {
  max-width: 560px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.testimonios__h2 {
  font-family: 'Prata', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--text-main);
  margin-top: 12px;
}

.testimonios__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.testi-card {
  background: var(--cream-card);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  padding: clamp(28px, 3vw, 36px);
}

.testi-card__quote {
  font-family: 'Prata', serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 20px;
}

.testi-card__footer {
  font-size: 14px;
  color: var(--text-muted);
}

.testi-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 200px;
}

.testi-img picture {
  position: absolute;
  inset: 0;
}

.testi-img__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .testi-img {
    position: static;
    border-radius: 0;
    overflow: visible;
    min-height: 0;
    mix-blend-mode: multiply;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .testi-img picture {
    position: static;
  }
  .testi-img__photo {
    height: auto;
    object-fit: initial;
  }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq {
  padding: clamp(22px, 3.15vw, 42px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 120px);
}

.faq__inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.faq__h2 {
  font-family: 'Prata', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--text-main);
  margin-top: 12px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--cream-card);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  overflow: hidden;
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question {
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.faq__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid #d0c194;
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: transform .3s;
  line-height: 1;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq__item.open .faq__body {
  max-height: 320px;
}

.faq__answer {
  padding: 0 24px 22px;
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   CONTACTO
═══════════════════════════════════════ */
.contacto {
  background: var(--green-deep);
  padding: clamp(22px, 3.15vw, 42px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 120px);
}

.contacto__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 88px);
}

.contacto__eyebrow { color: var(--gold-light); }

.contacto__h2 {
  font-family: 'Prata', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  color: #f5efdc;
  margin-top: 12px;
  margin-bottom: 16px;
}

.contacto__p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 32px;
}

.newsletter {
  border-top: 1px solid var(--gold-muted);
  padding-top: 28px;
}

.newsletter__title {
  font-family: 'Prata', serif;
  font-size: 20px;
  color: #f5efdc;
  margin-bottom: 16px;
}

.newsletter__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter__input {
  flex: 1;
  min-width: 180px;
  background: var(--green-dark);
  border: 1px solid var(--gold-muted);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  color: #f5efdc;
  outline: none;
  transition: border-color .2s;
}
.newsletter__input::placeholder { color: #6a8060; }
.newsletter__input:focus { border-color: var(--gold-light); }

.btn-gold {
  display: inline-block;
  background: var(--gold-light);
  color: var(--text-main);
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.btn-gold:hover { background: #f3d97e; }

.newsletter__success {
  font-size: 15px;
  color: var(--gold-light);
  margin-top: 10px;
  display: none;
}
.newsletter__success.visible { display: block; }

.newsletter-florete {
  padding-top: 24px;
  text-align: center;
}
.newsletter-florete__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.form-card {
  background: var(--green-dark);
  border: 1px solid var(--gold-muted);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--green-deep);
  border: 1px solid var(--gold-muted);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  color: #f5efdc;
  outline: none;
  transition: border-color .2s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #6a8060; }
.form-input:focus,
.form-textarea:focus { border-color: var(--gold-light); }

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 14px;
  color: var(--error);
  margin-top: 6px;
  min-height: 20px;
}

.form-success {
  text-align: center;
  padding: 32px 0;
  display: none;
}
.form-success.visible { display: block; }
.form-success__icon {
  font-size: 42px;
  margin-bottom: 12px;
}
.form-success__text {
  font-family: 'Prata', serif;
  font-size: 22px;
  color: var(--gold-light);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--green-black);
  padding: 28px clamp(20px, 5vw, 64px);
}

.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__logo {
  height: 58px;
  border-radius: 8px;
}

.footer__brand-text {
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links a {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: var(--gold-light);
  text-decoration: none;
  transition: color .2s;
}
.footer__links a:hover { color: #f5efdc; }

.footer__copy {
  font-size: 13px;
  color: #a09a6c;
  width: 100%;
  margin-top: 8px;
}
