/* ====================== CSS RESET & BASE ====================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; line-height: 1.15; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fffdfa;
  color: #222;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: #70594c; text-decoration: none; transition: color .18s; }
a:hover, a:focus, .footer-nav a:hover, .footer-nav a:focus {
  color: #225034;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #225034;
  margin-bottom: 12px;
}

h1 { font-size: 2.5rem; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; }
strong { color: #476652; font-weight: 600; }
em { color: #70594c; }

p { margin-bottom: 16px; }

blockquote {
  background: #f2efe8;
  border-left: 5px solid #d9bfa3;
  padding: 14px 20px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-style: italic;
  border-radius: 6px;
  color: #225034;
}

/* ===== Scrollbar for modern browsers */
::-webkit-scrollbar { width: 8px; background: #f2efe8; }
::-webkit-scrollbar-thumb { background: #d9bfa3; border-radius: 8px; }

/* ====================== LAYOUT CONTAINERS ====================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

/* ====================== NAVIGATION ====================== */
header {
  background: #fffdfa;
  border-bottom: 2px solid #d9bfa3;
  padding: 0;
  z-index: 1002;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.main-nav .logo-link img {
  height: 45px;
  width: auto;
  display: block;
  aspect-ratio: 1/1.1;
}
.nav-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 1.1rem;
}
.nav-menu li a {
  padding: 8px 0;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-menu li a:hover, .nav-menu li a:focus, .nav-menu .current {
  color: #70594c;
  border-color: #70594c;
}
.cta-header {
  padding: 9px 22px;
  border-radius: 28px 12px 28px 12px;
  background: #225034;
  color: #fffdfa;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 3.5px 16px 0 #d9bfa3b0;
  margin-left: 20px;
  transition: background .25s, color .22s, transform .17s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.cta-header:hover, .cta-header:focus {
  background: #476652;
  color: #fffdfa;
  transform: translateY(-3px) scale(1.06) rotate(-2deg);
  box-shadow: 0 6px 20px 0 #22503455;
}

/* ============== Mobile Navigation (Burger menu & sliding menu) ============== */
.mobile-menu-toggle {
  display: none;
  background: #476652;
  color: #fff;
  font-size: 2.5rem;
  border: none;
  border-radius: 10px;
  padding: 6px 16px;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1004;
  transition: background .2s, transform .2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #d9bfa3;
  color: #70594c;
  transform: rotate(-5deg) scale(1.09);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fffdfa;
  box-shadow: 3px 0 20px 0 #70594c52;
  z-index: 1500;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.24,1.6,.36,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #70594c;
  border: none;
  font-size: 2rem;
  margin: 18px 22px 10px 0;
  cursor: pointer;
  transition: color .18s, transform .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #225034;
  transform: scale(1.09) rotate(3deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Merriweather', serif;
  color: #225034;
  padding: 12px 0 12px 4px;
  border-radius: 24px 8px 24px 8px;
  background: transparent;
  transition: background .17s, color .19s;
  min-width: 120px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #d9bfa3;
  color: #70594c;
}

/* ====================== HERO + FEATURE LAYOUTS ====================== */
/* Reusable Flexbox layouts per specification */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffdfa;
  border-radius: 18px 44px 22px 15px;
  box-shadow: 0 7px 32px #e5dacb30;
  padding: 20px 24px;
  transition: box-shadow .21s, transform .18s;
}
.card:hover {
  box-shadow: 0 10px 48px #d9bfa3a0;
  transform: translateY(-4px) scale(1.015) rotate(-2deg);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #ffeeed;
  border-radius: 25px 16px 27px 23px;
  box-shadow: 0 2px 14px #70594c18;
  margin-bottom: 24px;
  font-size: 1.08rem;
  color: #222;
  border: 2.5px dashed #d9bfa3;
}
.testimonial-card strong {
  color: #476652;
}
.stars {
  font-size: 1.3rem;
  color: #e7b82a;
  letter-spacing: 2px;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features Grid: Home page specific */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.feature-grid li {
  background: #fffdfa;
  border-radius: 23px 12px 26px 13px;
  box-shadow: 0 5px 18px #d9bfa355;
  padding: 20px 20px 18px 20px;
  min-width: 205px;
  max-width: 225px;
  flex: 1 1 205px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .18s;
  margin-bottom: 20px;
  border: 2px solid #d9bfa3;
}
.feature-grid img {
  width: 39px; height: 39px; margin-bottom: 10px; border-radius: 12px;
}
.feature-grid li:hover {
  box-shadow: 0 12px 30px #d9bfa3be;
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
}

/* About icons */
.about-icons, .about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 22px;
  margin-top: 8px;
}
.about-icons li, .about-values li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #476652;
  background: #f7eed7;
  border-radius: 22px;
  padding: 5px 16px 5px 7px;
  gap: 11px;
  font-weight: 600;
  border: 2px solid #d9bfa3;
  box-shadow: 0 2.5px 13px #e2d1b639;
  transition: background .19s, box-shadow .18s;
}
.about-icons img, .about-values img {
  width: 28px; height: 28px; display: block;
}
.about-icons li:hover, .about-values li:hover {
  background: #fffdfa;
  box-shadow: 0 6px 16px #d9bfa3b0;
}

/* Catalog cards */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.product-cards li {
  background: #fffdfa;
  border-radius: 21px 9px 18px 23px;
  padding: 24px 19px 20px 19px;
  box-shadow: 0 3px 13px #d9bfa368;
  transition: box-shadow .19s, transform .17s;
  min-width: 220px;
  flex: 1 1 220px;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid #d9bfa3;
}
.product-cards li:hover {
  box-shadow: 0 11px 26px #d9bfa3b2;
  transform: scale(1.028) rotate(-1deg);
  z-index: 2;
}
.product-tags {
  font-size: .92rem;
  color: #70594c;
  background: #e3d3be;
  border-radius: 11px;
  padding: 2px 10px;
  margin: 9px 0 8px 0;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Category List (Home Catalogo preview) */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 14px;
}
.category-list li {
  background: #e3d3be;
  border-radius: 13px 4px 11px 8px;
  padding: 6px 18px;
  color: #70594c;
  font-weight: 600;
  font-family: 'Merriweather', serif;
  font-size: 0.98rem;
  box-shadow: 0 1.5px 5px #d9bfa329;
  transition: background .16s, color .17s;
}
.category-list li:hover {
  background: #ffe7be;
  color: #225034;
}

/* Highlights: Home Catalogo preview */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.highlights .text-section {
  background: #f7e8ce;
  border-radius: 13px 24px 17px 10px;
  box-shadow: 0 2px 10px #e2d1b642;
  padding: 16px 19px;
  min-width: 205px;
  flex: 1 1 200px;
}
.highlights .text-section h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: #70594c;
}

/* Artisan + Service Card Styles */
.artisan-card, .service-card {
  background: #fffdfa;
  border-radius: 26px 15px 23px 21px;
  box-shadow: 0 4px 18px #70594c23;
  padding: 22px 18px 17px 18px;
  margin-bottom: 22px;
  border: 2px solid #d9bfa3;
  min-width: 240px;
  max-width: 370px;
  transition: box-shadow .18s, transform .16s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.artisan-card h3, .service-card h2 {
  color: #476652;
  font-family: 'Merriweather', serif;
  letter-spacing: -0.5px;
}
.artisan-card a, .service-card a {
  color: #476652;
  background: #f7eed7;
  border-radius: 9px 17px 11px 13px;
  padding: 5px 10px;
  font-size: 1.04rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 8px;
  transition: background .16s, color .16s;
}
.artisan-card a:hover, .service-card a:hover {
  background: #d9bfa3;
  color: #225034;
}

/* ====================== BUTTONS: CTAs ====================== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #476652;
  color: #fffdfa;
  font-size: 1.2rem;
  font-family: 'Merriweather', serif;
  border-radius: 36px 14px 36px 14px;
  box-shadow: 0 5px 24px #d9bfa3b0;
  border: none;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: background .24s, color .22s, transform .16s, box-shadow .18s;
  min-width: 160px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #70594c;
  color: #fffdfa;
  transform: translateY(-4px) scale(1.04) rotate(1deg);
  box-shadow: 0 10px 38px #47665233;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  background: #f7eed7;
  color: #70594c;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 33px 10px 33px 10px;
  box-shadow: 0 3px 10px #d9bfa350;
  border: none;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background .15s, color .15s, transform .1s;
  cursor: pointer;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #70594c;
  color: #fffdfa;
  transform: scale(1.04);
}

/* ============== THANK YOU NAV (special from thank you page) ============== */
.thank-you-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: flex-start;
  margin-top: 8px;
}
.thank-you-nav li {
  list-style: none;
}
.thank-you-nav a {
  padding: 7px 17px;
  background: #f7eed7;
  border-radius: 13px;
  color: #70594c;
  box-shadow: 0 1.5px 7px #d9bfa350;
  font-weight: 500;
  font-size: 1.06rem;
  transition: background .18s, color .17s;
}
.thank-you-nav a.cta-primary {
  background: #225034;
  color: #fffdfa;
  box-shadow: 0 4px 19px #22503450;
}
.thank-you-nav a:hover { background: #70594c; color: #fffdfa; }

/* ============== CONTACT-DETAILS & FOOTER ============== */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0;
}
.footer-nav a {
  color: #70594c;
  font-size: .99rem;
  font-family: 'Merriweather', serif;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color .17s, border-color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #476652;
  border-color: #476652;
}
.footer-contact {
  font-size: .97rem;
  color: #476652;
  margin-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer {
  background: #f7eed7;
  border-top: 2px solid #d9bfa3;
  padding: 28px 0 14px 0;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
footer a img {
  width: 52px; height: auto; border-radius: 15px;
}

/* ============== COOKIE CONSENT BANNER & MODAL ============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #70594c;
  color: #fffdfa;
  z-index: 1900;
  width: 100%;
  box-shadow: 0 -4px 24px #70594c80;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.03rem;
  animation: slideUp .48s cubic-bezier(.23,1.3,.54,.98);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner button {
  margin-left: 12px;
  border-radius: 26px 12px 26px 12px;
  border: none;
  padding: 10px 23px;
  background: #d9bfa3;
  color: #225034;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 10px #fffdfa55;
  cursor: pointer;
  transition: background .14s, color .14s, transform .13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #476652;
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner .cookie-settings {
  background: #476652;
  color: #fffdfa;
  font-weight: 500;
}
.cookie-preferences-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(34, 30, 26, 0.45);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeInModal .24s cubic-bezier(.29,1.2,.24,.93);
}
.cookie-preferences-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffdfa;
  color: #225034;
  border-radius: 24px 11px 30px 18px;
  box-shadow: 0 9px 36px #70594c80;
  min-width: 320px;
  max-width: 95vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: bounceModal .29s cubic-bezier(.27,1.41,.44,.85);
  position: relative;
}
@keyframes bounceModal {
  from { transform: translateY(60px) scale(.95); opacity: 0.1; }
  75% { transform: translateY(-8px) scale(1.04); opacity: 1; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.2rem;
  color: #70594c;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #70594c;
  cursor: pointer;
  padding: 0;
  transition: color .17s;
  z-index: 10;
}
.cookie-modal-close:hover { color: #225034; }
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cookie-modal-category input[type=checkbox] {
  accent-color: #476652;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.cookie-modal-category .category-label {
  color: #225034;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  background: #d9bfa3;
  color: #476652;
  border-radius: 19px 7px 19px 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 22px;
  font-size: 1rem;
  box-shadow: 0 2px 8px #d9bfa355;
  transition: background .15s, color .14s, transform .13s;
  cursor: pointer;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #476652;
  color: #fffdfa;
  transform: scale(1.06);
}

/* ============== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 12px; }
  .footer-nav, .footer-contact { gap: 12px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
  .main-nav { flex-direction: row; gap: 6px; }
  .nav-menu {
    display: none;
  }
  .cta-header { margin-left: 0; }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 24px;
  }
  .feature-grid, .product-cards, .highlights, .about-icons, .about-values, .category-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-contact {
    font-size: .98rem;
    gap: 5px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0; max-width: 100vw;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .thank-you-nav ul { flex-direction: column; gap: 13px; }
}

@media (max-width: 540px) {
  .section { padding: 26px 0; }
  .container { padding: 0 6px; }
  .card, .feature-grid li, .product-cards li, .artisan-card, .service-card, .highlights .text-section { padding: 12px 9px; min-width: 0; }
  .cookie-modal-content { min-width: 0; padding: 18px 13px; }
  .category-list li { padding: 5px 10px; }
  .content-wrapper { gap: 14px; }
}

/* =================== HELPFUL ANIMATIONS & EFFECTS =================== */
.card, .feature-grid li, .product-cards li, .artisan-card, .service-card, .testimonial-card, .highlights .text-section, .about-icons li, .about-values li {
  transition: box-shadow .18s, transform .18s;
}
.card:active, .feature-grid li:active, .product-cards li:active, .artisan-card:active, .service-card:active {
  transform: scale(.98) rotate(-1deg);
  box-shadow: 0 2px 8px #d9bfa370;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(.96);
}

/* ========== UTILITIES ========== */
.text-center { text-align: center !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; }

/* =========== ARMONIA LOCALE BRAND FONTS =========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Merriweather:wght@700&display=swap');

/* ==================== PLAYFUL DYNAMIC FUN FONTS/FEEL ============== */
body {
  background: linear-gradient(110deg, #fcfaf7 60%, #fff8ed 100%);
  min-height: 100vh;
}
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  letter-spacing: 0.1px;
  color: #225034;
}
.testimonial-card blockquote {
  color: #70594c;
}
nav.main-nav, .footer-nav { font-family: 'Montserrat', Arial, sans-serif; }

/* =============== SPACING/SECTIONS FOR LAYOUTS FROM PROMPT =============== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===================== Z-INDEX LAYERING ===================== */
header, .main-nav, .mobile-menu, .cookie-banner, .cookie-preferences-modal { z-index: 1000; }

/* ======= OVERRIDES FOR EASY THEME CUSTOMIZATION ======= */
:root {
  --brand-primary: #70594c;
  --brand-secondary: #d9bfa3;
  --brand-accent: #225034;
  --brand-highlight: #f7eed7;
  --brand-light: #fffdfa;
  --brand-dark: #2a1404;
}

/* =========== END =========== */
