/* ==========================================================================
   Base stylesheet: shared layout, typography, and components.
   Cabin-specific accent colors and page-only styling live in
   css/bearadise.css and css/rustic-retreat.css.
   ========================================================================== */

:root {
  /* shared warm neutral palette */
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --bark: #2e2018;
  --stone: #6b6259;
  --line: #ddd4c2;
  --forest: #37432c;
  --forest-light: #4c5c3e;
  --shadow: 0 10px 28px rgba(46, 32, 24, 0.12);
  --shadow-soft: 0 4px 14px rgba(46, 32, 24, 0.08);

  /* per-cabin accents, used sitewide on teasers/cards/links to that cabin */
  --bearadise-accent: #a9491f;
  --bearadise-accent-soft: #c9773f;
  --bearadise-accent-deep: #7a3416;
  --bearadise-gold: #b08a3e;

  --rustic-accent: #3f5c66;
  --rustic-accent-soft: #6c8891;
  --rustic-accent-deep: #2b3f47;

  --font-heading: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--bark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--forest);
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 2.25rem 0;
}

.eyebrow {
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--forest-light);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--paper);
  color: var(--bark);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  z-index: 1000;
  transition: top 0.15s ease;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: var(--paper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--forest-light);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
}

.btn-bearadise {
  background: var(--bearadise-accent);
  color: var(--paper);
}

.btn-bearadise:hover,
.btn-bearadise:focus-visible {
  background: var(--bearadise-accent-deep);
}

.btn-rustic {
  background: var(--rustic-accent);
  color: var(--paper);
}

.btn-rustic:hover,
.btn-rustic:focus-visible {
  background: var(--rustic-accent-deep);
}

/* ---------- header / nav ---------- */
.site-header {
  background: var(--forest);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.site-header.header-overlay {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.55) 0%, rgba(20, 14, 10, 0) 100%);
  box-shadow: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.header-overlay.is-solid {
  background: var(--forest);
  box-shadow: var(--shadow-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cream);
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-region {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #d8d2c0cc;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #d8d2c055;
  border-radius: 8px;
  color: var(--cream);
  padding: 0.5rem 0.7rem;
  font-size: 1.1rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--bearadise-gold);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.is-open {
    display: block;
  }

  .site-header .container {
    flex-wrap: wrap;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  .main-nav a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid #d8d2c022;
  }
}

/* ---------- hero carousel ---------- */
.hero {
  position: relative;
  background: var(--bark);
  overflow: hidden;
  padding: 0;
}

.carousel {
  position: relative;
  height: min(78vh, 620px);
  min-height: 380px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

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

.carousel-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  color: #fbf6ea;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(46, 32, 24, 0.72);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(46, 32, 24, 0.04) 0%, rgba(46, 32, 24, 0.14) 100%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fbf6ea;
  padding: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.hero-copy h1 {
  color: #fbf6ea;
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  margin-bottom: 0.4rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: var(--bearadise-gold);
  max-width: 560px;
  margin: 0 auto 0.9rem;
}

.hero-copy p {
  font-size: 1.05rem;
  color: #ebe4d3;
  max-width: 540px;
  margin: 0 auto 1.4rem;
}

.carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
  pointer-events: none;
}

.carousel-arrow {
  pointer-events: auto;
  background: rgba(255, 253, 248, 0.85);
  color: var(--bark);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--paper);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 253, 248, 0.5);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: #fbf6ea;
}

.carousel-dot:focus-visible,
.carousel-arrow:focus-visible {
  outline: 2px solid var(--bearadise-gold);
  outline-offset: 2px;
}

/* ---------- cabin cards (teasers/listing cards) ---------- */
.cabin-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.cabin-card {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.cabin-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.cabin-card img.is-full-photo {
  height: 230px;
  object-fit: cover;
  object-position: center 40%;
}

.cabin-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.cabin-card-body h3 {
  margin-bottom: 0.15rem;
}

.cabin-card-body .tagline {
  color: var(--stone);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- icon row (guests / bedrooms / bathrooms) ---------- */
.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  color: var(--stone);
}

.icon-row li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.icon-row .icon {
  font-size: 1.05rem;
}

/* ---------- review trust row ---------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.5rem;
  font-size: 0.7rem;
  text-decoration: none;
  color: var(--bark);
  font-weight: 600;
}

.trust-badge:hover,
.trust-badge:focus-visible {
  border-color: var(--stone);
}

.trust-badge .stars {
  color: var(--bearadise-gold);
}

.trust-badge .platform {
  color: var(--stone);
  font-weight: 500;
}

/* ---------- generic section helpers ---------- */
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section-cream {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-block {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

@media (max-width: 780px) {
  .benefit-block {
    grid-template-columns: 1fr;
  }
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}

.link-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid var(--line);
}

.link-list a:hover,
.link-list a:focus-visible {
  border-bottom-color: var(--forest);
}

.area-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: center;
}

.area-grid .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.attraction-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

@media (max-width: 700px) {
  .attraction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.attraction-grid figure {
  margin: 0;
}

.attraction-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.attraction-grid figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--stone);
  text-align: center;
}

/* ---------- cabin detail page shared layout ---------- */
.cabin-hero {
  position: relative;
}

.cabin-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.cabin-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.cabin-hero-overlay .container {
  padding: 0;
}

.cabin-hero-overlay h1 {
  color: #fbf6ea;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.cabin-hero-overlay .facts {
  color: #ebe4d3;
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.15s ease;
}

.gallery-grid img:hover,
.gallery-grid img:focus-visible {
  transform: scale(1.02);
  outline: 3px solid var(--bearadise-gold);
  outline-offset: 2px;
}

/* ---------- photo lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 14, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}

.lightbox-overlay[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #fbf6ea;
  font-size: 0.95rem;
  margin-top: 0.9rem;
  max-width: 70ch;
  text-align: center;
}

.lightbox-counter {
  color: #d8d2c099;
  font-size: 0.8rem;
  margin: 0.35rem 0 0;
  letter-spacing: 0.06em;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fbf6ea;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.6rem;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 253, 248, 0.15);
  border: none;
  color: #fbf6ea;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255, 253, 248, 0.3);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@media (max-width: 640px) {
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

.amenities-grid {
  display: grid;
  gap: 0.6rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenities-grid li {
  display: flex;
  gap: 0.6rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--line);
}

.rules-grid {
  display: grid;
  gap: 0 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.rules-grid li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}

.room-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.room-grid .info-card {
  padding: 0.9rem 1.1rem;
}

.room-grid .info-card h3 {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.room-grid .info-card ul {
  margin: 0;
  padding-left: 1.05rem;
  font-size: 0.88rem;
  line-height: 1.4;
}

.room-grid .info-card li {
  margin-bottom: 0.15rem;
}

/* ---- room list: text left, photo right, per room ---- */
.room-list {
  display: flex;
  flex-direction: column;
}

.room-item {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.room-list > .room-item:first-child {
  border-top: none;
  padding-top: 0;
}

.room-item.no-photo {
  grid-template-columns: 1fr;
}

.room-item .room-photo {
  position: relative;
  order: 2;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.room-item .room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.room-item .room-photo img:not(:first-of-type) {
  display: none;
}

.room-item .room-photo .photo-count-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 1;
  background: rgba(46, 32, 24, 0.75);
  color: #fbf6ea;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.room-item .room-photo .photo-count-badge::before {
  content: "\1F5BC";
  font-size: 0.8rem;
}

.room-item .room-text {
  order: 1;
}

.room-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.room-item .level-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  margin-bottom: 0.5rem;
}

.page-bearadise .room-item .level-tag {
  color: var(--bearadise-accent-deep);
}

.page-rustic .room-item .level-tag {
  color: var(--rustic-accent-deep);
}

.room-item ul {
  margin: 0;
  padding-left: 1.05rem;
  font-size: 0.88rem;
  line-height: 1.4;
}

.room-item li {
  margin-bottom: 0.15rem;
}

@media (max-width: 560px) {
  .room-item {
    grid-template-columns: 1fr;
  }

  .room-item .room-photo {
    order: 2;
    aspect-ratio: 16 / 9;
  }

  .room-item .room-text {
    order: 1;
  }
}

.widget-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.detail-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-top-grid .widget-panel {
  position: sticky;
  top: 90px;
}

@media (max-width: 780px) {
  .detail-top-grid {
    grid-template-columns: 1fr;
  }

  .detail-top-grid .widget-panel {
    position: static;
  }
}

.widget-placeholder {
  background: var(--cream);
  border-radius: 10px;
  padding: 2.5rem 1rem;
  color: var(--stone);
  font-size: 0.95rem;
}

.widget-embed {
  max-height: 480px;
  overflow-y: auto;
}

/* ---------- location map ---------- */
.map-panel {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.map-panel .leaflet-container {
  height: 320px;
  width: 100%;
  font-family: var(--font-body);
  background: var(--cream);
}

.map-note {
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 0.75rem;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--forest);
  margin-top: 1rem;
  font-weight: 600;
}

.policy-note {
  font-size: 0.9rem;
  color: var(--stone);
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.9rem;
  padding: 0.2rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--forest);
  padding: 1rem 0;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  font-size: 1.2rem;
  color: var(--stone);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding-bottom: 1.1rem;
  color: var(--bark);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest);
  color: #ebe4d3;
  padding: 1.5rem 0 1rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 0.9rem;
}

.footer-grid h4 {
  color: #fbf6ea;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-grid a {
  color: #d8d2c0cc;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fbf6ea;
}

.footer-bottom {
  border-top: 1px solid #d8d2c022;
  padding-top: 0.75rem;
  color: #d8d2c099;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

.footer-bottom a {
  color: #d8d2c099;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fbf6ea;
}
