:root {
  color-scheme: light;
  --bg: #F8F6F2;
  --bg-soft: #EFE8DD;
  --bg-raised: #FFFFFF;
  --text: #202322;
  --muted: #626B65;
  --line: rgba(23, 61, 46, 0.14);
  --line-strong: rgba(23, 61, 46, 0.28);
  --primary: #173D2E;
  --primary-strong: #10271D;
  --forest: #245842;
  --pine: #4F7A63;
  --river: #6EB8C5;
  --river-soft: #A7D9DD;
  --cream: #EFE8DD;
  --gold: #C79A3A;
  --gold-strong: #D8AE55;
  --gold-text: #FFFFFF;
  --wood: #7A5330;
  --copper: #A86F38;
  --teal: #4F7A63;
  --teal-soft: rgba(167, 217, 221, 0.55);
  --sage: #4F7A63;
  --danger: #B0413E;
  --success: #245842;
  --shadow: 0 10px 40px rgba(23, 61, 46, 0.08);
  --radius: 20px;
  --button-radius: 16px;
  --input-radius: 14px;
  --modal-radius: 28px;
  --max: 1180px;
  --header: 72px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button[disabled] {
  cursor: not-allowed;
}

.honeypot {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--river);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: var(--button-radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(23, 61, 46, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
}

.brand-copy,
.brand-copy strong,
.brand-copy small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: var(--primary);
  font-size: 17px;
  line-height: 20px;
}

.brand small {
  color: var(--pine);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-nav a {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: var(--button-radius);
  color: var(--forest);
  font-weight: 700;
}

.top-nav a:hover,
.top-nav a.active {
  background: var(--cream);
  color: var(--primary);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--bg-raised);
  color: var(--primary);
}

.icon-button svg,
.button svg,
.service-grid svg,
.check-list svg,
.mobile-nav svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 246, 242, 0.94) 0%, rgba(248, 246, 242, 0.78) 44%, rgba(248, 246, 242, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(248, 246, 242, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 148px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  color: var(--primary-strong);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 72px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 750;
  line-height: 16px;
}

.hero-actions,
.contact-actions,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-weight: 750;
  text-align: center;
}

.button.primary {
  background: var(--primary);
  color: #FFFFFF;
}

.button.primary:hover {
  background: var(--forest);
}

.button.secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.button.secondary:hover,
.button.ghost:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

.button.ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--forest);
}

.quick-booking {
  position: relative;
  z-index: 5;
  width: min(var(--max), calc(100% - 40px));
  margin: -74px auto 0;
}

.booking-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 150px auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--input-radius);
  background: var(--bg-raised);
  color: var(--text);
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--river);
  box-shadow: 0 0 0 4px rgba(110, 184, 197, 0.18);
  outline: none;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section[id] {
  scroll-margin-top: calc(var(--header) + 20px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section h2 {
  margin: 0;
  color: var(--primary-strong);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.booking-layout > div > p,
.contact-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.intro-band,
.services-band,
.faq-band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--bg-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  box-shadow: var(--shadow);
}

.trust-grid strong {
  display: block;
  color: var(--primary);
  font-size: 40px;
  line-height: 48px;
}

.trust-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.segmented {
  display: flex;
  gap: 6px;
  max-width: 100%;
  padding: 5px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--bg-raised);
}

.segmented button {
  min-height: 38px;
  white-space: nowrap;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--forest);
  padding: 8px 12px;
  font-weight: 750;
}

.segmented button.active {
  background: var(--primary);
  color: #FFFFFF;
}

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

.room-card,
.tour-card,
.service-grid article,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  box-shadow: var(--shadow);
}

.room-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.room-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 61, 46, 0.28);
  box-shadow: var(--soft-shadow);
}

.room-card:focus-visible {
  outline: 3px solid rgba(110, 184, 197, 0.55);
  outline-offset: 3px;
}

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

.room-card-media {
  position: relative;
  overflow: hidden;
  background: var(--card);
}

.room-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
}

.photo-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 39, 29, 0.82);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.room-card-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.room-card h3 {
  margin: 0;
  font-size: 20px;
}

.room-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 8px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 750;
}

.meta-row svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  color: var(--gold);
  font-weight: 850;
}

.small-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--primary);
  border-radius: var(--button-radius);
  background: transparent;
  color: var(--primary);
  font-weight: 750;
}

.small-action:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

.small-action:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  padding: 24px;
}

.service-grid svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-grid h3 {
  margin: 18px 0 8px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.tours-section {
  scroll-margin-top: var(--header);
}

.list-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.list-toolbar .segmented {
  justify-self: end;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tour-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 276px;
  padding: 20px;
}

.tour-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tour-tag,
.tour-code {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.tour-tag {
  background: var(--teal-soft);
  color: var(--primary);
}

.tour-code {
  background: var(--cream);
  color: var(--forest);
}

.tour-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}

.tour-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.tour-meta span {
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.empty-state {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-raised);
  color: var(--muted);
}

.empty-state strong {
  color: var(--text);
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--cream);
  padding: 0;
}

.gallery-item:nth-child(8n + 1),
.gallery-item:nth-child(8n + 6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  inset: auto 8px 8px 8px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(16, 39, 29, 0.78);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 750;
}

.booking-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(167, 217, 221, 0.45), rgba(239, 232, 221, 0.72)),
    var(--bg);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.check-list svg {
  color: var(--success);
  flex: 0 0 auto;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-result {
  display: block;
  min-height: 52px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: center;
  gap: 28px;
}

.contact-section > div:first-child {
  max-width: 720px;
}

.contact-actions {
  grid-column: 1;
  margin-top: 4px;
}

.contact-map {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 30px 20px 110px;
  background: var(--primary);
  color: #F8F6F2;
  font-size: 14px;
}

.site-footer a {
  color: var(--river-soft);
}

.mobile-nav {
  display: none;
}

dialog {
  border: 1px solid var(--line);
  border-radius: var(--modal-radius);
  background: var(--bg-raised);
  color: var(--text);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(16, 39, 29, 0.28);
  backdrop-filter: blur(6px);
}

.photo-dialog {
  position: relative;
  width: min(980px, calc(100vw - 28px));
  padding: 0;
  overflow: hidden;
}

.photo-dialog img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--bg);
}

.photo-dialog p {
  margin: 0;
  padding: 12px 16px 16px;
  color: var(--muted);
}

.photo-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: rgba(248, 246, 242, 0.92);
  box-shadow: var(--soft-shadow);
  transform: translateY(-50%);
}

.photo-prev {
  left: 14px;
  transform: translateY(-50%) rotate(180deg);
}

.photo-next {
  right: 14px;
}

.request-dialog {
  width: min(620px, calc(100vw - 28px));
  padding: 24px;
}

.request-dialog h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 40px;
}

.request-dialog p {
  margin: 0 0 16px;
  color: var(--muted);
}

.request-dialog textarea {
  min-height: 190px;
}

.dialog-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
  }

  .hero-content h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .booking-strip,
  .booking-layout {
    grid-template-columns: 1fr 1fr;
  }

  .booking-strip .button {
    grid-column: 1 / -1;
  }

  .room-grid,
  .tour-grid,
  .service-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .list-toolbar .segmented {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-head.split,
  .contact-section {
    align-items: start;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-actions,
  .contact-map {
    grid-column: 1;
  }

  .contact-map {
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 64px;
  }

  body {
    padding-bottom: 72px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .menu-toggle {
    display: grid;
  }

  .top-nav {
    position: fixed;
    inset: var(--header) 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .top-nav.open {
    display: flex;
  }

  .top-nav a {
    min-height: 46px;
  }

  .hero {
    min-height: 680px;
  }

  .hero img {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(248, 246, 242, 0.86) 58%, rgba(248, 246, 242, 0.24) 100%),
      linear-gradient(90deg, rgba(248, 246, 242, 0.72), rgba(248, 246, 242, 0.18));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 118px 0 130px;
  }

  .hero-content h1,
  .section h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-content p:not(.eyebrow),
  .section-head p:not(.eyebrow),
  .booking-layout > div > p,
  .contact-section p {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions,
  .dialog-actions {
    display: grid;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 260px;
  }

  .quick-booking {
    width: calc(100% - 24px);
    margin-top: -62px;
  }

  .booking-strip,
  .booking-layout,
  .trust-grid,
  .room-grid,
  .tour-grid,
  .list-toolbar,
  .service-grid,
  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section,
  .intro-band,
  .services-band,
  .faq-band,
  .booking-section {
    width: 100%;
    padding: 72px 16px;
  }

  .segmented {
    width: 100%;
  }

  .room-card {
    display: flex;
    flex-direction: column;
  }

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

  .room-card-media img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .room-card-body {
    padding: 18px;
  }

  .room-card h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .room-card p {
    font-size: 15px;
    line-height: 24px;
  }

  .price-row {
    align-items: start;
    flex-direction: column;
  }

  .photo-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-item,
  .gallery-item:nth-child(8n + 1),
  .gallery-item:nth-child(8n + 6) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 156px;
  }

  .mobile-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a {
    display: grid;
    place-items: center;
    gap: 2px;
    min-height: 48px;
    border-radius: 14px;
    color: var(--forest);
    font-size: 10px;
    font-weight: 750;
  }

  .mobile-nav a.active {
    background: var(--primary);
    color: #FFFFFF;
  }

  .site-footer {
    display: block;
    padding-bottom: 96px;
    text-align: center;
  }

  .site-footer p {
    margin: 0 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
