:root {
  --cream: #f7f1e6;
  --cream-warm: #efe6d3;
  --ink: #2b1a14;
  --burgundy: #7a1f24;
  --burgundy-dark: #5a1418;
  --shadow-soft: 0 24px 48px -24px rgba(40, 18, 14, 0.35);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

::selection {
  background: var(--burgundy);
  color: var(--cream);
}

a {
  color: var(--burgundy);
}

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

/* ---------- Header ---------- */
.site-header {
  background: var(--cream-warm);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 30;
}

.site-header--static {
  position: static;
}

.nav {
  max-width: 96rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  gap: 1rem;
}

@media (min-width: 640px) {
  .nav {
    padding: 1.25rem 2rem;
  }
}

.nav__logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .nav__logo img {
    height: 4rem;
  }
}

.nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav__links a {
  color: rgba(43, 26, 20, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--burgundy);
}

@media (min-width: 768px) {
  .nav {
    justify-content: center;
    gap: 3rem;
  }
  .nav__links {
    display: flex;
  }
}

.nav__cta {
  display: none;
  align-items: center;
  border-radius: 9999px;
  background: rgba(122, 31, 36, 0.95);
  color: var(--cream);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s;
}

.nav__cta:hover {
  background: var(--burgundy);
}

@media (min-width: 640px) {
  .nav__cta {
    display: inline-flex;
  }
}

/* ---------- Mobile nav ---------- */
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--burgundy);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}

.nav__toggle:hover {
  background: rgba(122, 31, 36, 0.1);
}

.nav__toggle .nav__toggle-icon--open {
  display: block;
}

.nav__toggle .nav__toggle-icon--close {
  display: none;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon--open {
  display: none;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon--close {
  display: block;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

.nav__mobile {
  border-top: 1px solid rgba(122, 31, 36, 0.15);
  background: #efe6d3;
  box-shadow: var(--shadow-soft);
}

.nav__mobile[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .nav__mobile {
    display: none;
  }
}

.nav__mobile ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav__mobile a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  color: rgba(43, 26, 20, 0.8);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav__mobile a:hover,
.nav__mobile a[aria-current="page"] {
  background: rgba(122, 31, 36, 0.1);
  color: var(--burgundy);
}

.nav__mobile-cta {
  margin-top: 0.5rem;
}

.nav__mobile-cta a {
  background: rgba(122, 31, 36, 0.95);
  color: var(--cream);
  text-align: center;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.nav__mobile-cta a:hover {
  background: var(--burgundy);
  color: var(--cream);
}

/* ---------- Blog index ---------- */
.blog-hero {
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.blog-hero .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--burgundy);
  margin: 0 0 1rem;
}

.blog-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--ink);
}

.blog-hero p {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: rgba(43, 26, 20, 0.78);
  margin: 0;
}

.post-grid {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -28px rgba(40, 18, 14, 0.45);
}

.post-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-warm);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-card__media img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__date {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  margin: 0 0 0.6rem;
}

.post-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0.6rem;
  color: var(--ink);
}

.post-card__excerpt {
  font-size: 0.95rem;
  color: rgba(43, 26, 20, 0.72);
  margin: 0 0 1.2rem;
}

.post-card__more {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--burgundy);
}

/* ---------- Single post ---------- */
.post-hero {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 1.5rem;
  text-align: center;
}

.post-hero .back {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.post-hero .meta {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(43, 26, 20, 0.6);
  margin: 0 0 1rem;
}

.post-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--ink);
}

.post-hero .lede {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: rgba(43, 26, 20, 0.78);
  margin: 0;
}

.post-cover {
  max-width: 60rem;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.post-cover img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.post-body {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
  font-size: 11pt;
  line-height: 1.8;
  color: rgba(43, 26, 20, 0.9);
}

.post-body p {
  margin: 0 0 1.4rem;
}

.post-body strong,
.post-body b {
  font-weight: 700;
}

.post-body h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 2.4rem 0 1rem;
  color: var(--ink);
}

.post-body a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.4rem;
  padding-left: 1.4rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body blockquote {
  margin: 1.8rem 0;
  padding: 0.6rem 0 0.6rem 1.4rem;
  border-left: 3px solid var(--burgundy);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(43, 26, 20, 0.85);
}

.post-figure {
  margin: 2rem 0;
}

.post-figure img {
  width: 100%;
  border-radius: 0.85rem;
  box-shadow: var(--shadow-soft);
}

.post-cta {
  max-width: 44rem;
  margin: 0 auto 4rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.post-cta a {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s;
}

.post-cta a:hover {
  background: var(--burgundy-dark);
}

/* ---------- Rates & Availability ---------- */
.rates-banner {
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
  padding: 4rem 1.5rem;
}

.rates-banner .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(247, 241, 230, 0.75);
  margin: 0 0 1rem;
}

.rates-banner h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  margin: 0;
}

/* Contact page: cottage hero photo as a full-width cover banner. */
.rates-banner--cover {
  position: relative;
  background-color: var(--burgundy-dark);
  background-image:
    linear-gradient(to bottom, rgba(58, 16, 18, 0.55), rgba(58, 16, 18, 0.78)),
    url("/images/hero-cottage-exterior-1600.jpg");
  background-image:
    linear-gradient(to bottom, rgba(58, 16, 18, 0.55), rgba(58, 16, 18, 0.78)),
    image-set(
      url("/images/hero-cottage-exterior-1600.avif") type("image/avif"),
      url("/images/hero-cottage-exterior-1600.webp") type("image/webp"),
      url("/images/hero-cottage-exterior-1600.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center 60%;
  padding: 6rem 1.5rem;
}

.rates-banner--cover .eyebrow,
.rates-banner--cover h1 {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 18px rgba(20, 6, 7, 0.5);
}

/* Contact banner: looping video behind the heading, same height as before. */
.rates-banner--video {
  overflow: hidden;
}

.rates-banner--video .rates-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}

.rates-banner--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(58, 16, 18, 0.55),
    rgba(58, 16, 18, 0.78)
  );
}

.rates-section {
  max-width: 62rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 1rem;
}

.rates-book,
.rates-table-wrap {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.rates-section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}

.policy {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .policy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: stretch;
  }
}

.policy__media {
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .policy__media {
    margin: 0;
  }
}

.policy__frame {
  position: relative;
}

@media (min-width: 768px) {
  .policy__frame {
    height: 100%;
  }
}

.policy__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(0.75rem, 0.75rem);
  border: 1px solid rgba(122, 31, 36, 0.3);
  border-radius: 2px;
  pointer-events: none;
}

.policy__frame img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .policy__frame img {
    height: 100%;
    aspect-ratio: auto;
  }
}

.policy__lede {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(43, 26, 20, 0.78);
  margin: 0 0 1.6rem;
}

.policy__subhead {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--burgundy);
  margin: 1.6rem 0 0.5rem;
}

.policy__subhead:first-of-type {
  margin-top: 0;
}

.policy__text {
  font-size: 1.05rem;
  color: rgba(43, 26, 20, 0.88);
  margin: 0 0 0.5rem;
}

.policy__list {
  margin: 0;
  padding-left: 1.3rem;
}

.policy__list li {
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
  color: rgba(43, 26, 20, 0.88);
}

/* ---------- Cancellation feature section ---------- */
.cancellation {
  background: var(--burgundy);
  color: var(--cream);
  padding: 4rem 1.5rem;
  margin: 1rem 0;
}

.cancellation__inner {
  max-width: 62rem;
  margin: 0 auto;
}

.policy--cancellation {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .policy--cancellation {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}

.cancellation h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 2rem;
  color: var(--cream);
}

.cancellation .policy__subhead {
  color: var(--cream);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cancellation .policy__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #fff;
}

.cancellation .policy__subhead:first-of-type {
  margin-top: 0;
}

.cancellation .policy__text {
  color: rgba(247, 241, 230, 0.88);
}

.cancellation .policy__frame::before {
  border-color: rgba(247, 241, 230, 0.4);
}

.cancellation__cta {
  margin-top: 3rem;
}

.cancellation__cta > p {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin: 0 auto 1.4rem;
  max-width: 34rem;
}

.cancellation__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--cream);
  color: var(--burgundy-dark);
  padding: 0.95rem 2.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s;
}

.cancellation__btn:hover {
  background: var(--cream-warm);
}

.rates-book {
  background: var(--cream-warm);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 2.25rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.rates-book > p {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 1.4rem;
}

.rates-book__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.95rem 2.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s;
  scroll-margin-top: 220px;
}

.rates-book__btn:hover {
  background: var(--burgundy-dark);
}

@keyframes rates-book-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(122, 30, 45, 0.55);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 14px rgba(122, 30, 45, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(122, 30, 45, 0);
  }
}

.rates-book__btn.is-highlighted {
  animation: rates-book-pulse 1.1s ease-in-out 3;
}

@media (prefers-reduced-motion: reduce) {
  .rates-book__btn.is-highlighted {
    animation: none;
  }
}

.rates-book__sms {
  font-size: 0.95rem;
  color: rgba(43, 26, 20, 0.7);
  margin: 1rem 0 0;
}

.rates-pricing {
  background: var(--burgundy);
  padding: 4rem 1.5rem;
  margin: 1rem 0;
}

.rates-pricing .rates-table-wrap {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.rates-pricing h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--cream);
}

.rates-pricing .rates-table__note {
  color: rgba(247, 241, 230, 0.8);
}

.rates-pricing .rates-table {
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
}

.rates-table-wrap {
  margin-bottom: 1rem;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.rates-table thead th {
  background: var(--cream-warm);
  color: var(--burgundy);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: left;
  padding: 0.9rem 1.25rem;
}

.rates-table tbody th {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  text-align: left;
  color: var(--ink);
  padding: 0.85rem 1.25rem;
}

.rates-table__sub {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(43, 26, 20, 0.65);
  margin-top: 0.25rem;
}

.rates-table tbody td {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
  color: var(--burgundy);
  padding: 0.85rem 1.25rem;
  white-space: nowrap;
}

.rates-table tbody tr:not(:last-child) th,
.rates-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(43, 26, 20, 0.1);
}

.rates-table tbody tr:nth-child(even) {
  background: rgba(239, 230, 211, 0.4);
}

.rates-table__note {
  font-size: 0.92rem;
  color: rgba(43, 26, 20, 0.65);
  margin: 1.1rem 0 0;
}

/* ---------- Availability calendar ---------- */
.availability {
  max-width: 48rem;
  margin: 3.5rem auto 0;
  text-align: center;
}

.availability h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}

.availability__intro {
  font-size: 1.05rem;
  color: rgba(43, 26, 20, 0.78);
  margin: 0 auto 2rem;
  max-width: 34rem;
}

.calendar {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.calendar__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.85rem 1rem;
}

.calendar__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  text-align: center;
  flex: 1;
}

.calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 9999px;
  background: rgba(247, 241, 230, 0.15);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.calendar__nav svg {
  width: 1.25rem;
  height: 1.25rem;
}

.calendar__nav:hover {
  background: rgba(247, 241, 230, 0.3);
}

.calendar__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.75rem 0.5rem 0.25rem;
  background: var(--cream-warm);
}

.calendar__weekdays span {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(43, 26, 20, 0.6);
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  padding: 0.5rem;
  background: var(--cream-warm);
}

.calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  background: #fff;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}

.calendar__day--empty {
  background: transparent;
}

.calendar__day--past {
  color: rgba(43, 26, 20, 0.3);
  background: rgba(255, 255, 255, 0.45);
}

.calendar__day--booked {
  background: rgba(122, 31, 36, 0.12);
  color: rgba(122, 31, 36, 0.55);
  text-decoration: line-through;
  cursor: not-allowed;
}

/* Half-day states: a diagonal split from bottom-left to top-right. The
   check-out fills the top-left (morning) triangle and the check-in fills the
   bottom-right (afternoon) triangle, so a turnover day's two halves combine
   into a seamless full block along the same diagonal. */
.calendar__day--checkin,
.calendar__day--checkout,
.calendar__day--turnover {
  color: rgba(122, 31, 36, 0.7);
  cursor: not-allowed;
}

.calendar__day--checkout {
  background:
    linear-gradient(
      to bottom right,
      rgba(122, 31, 36, 0.12) calc(50% - 0.5px),
      rgba(122, 31, 36, 0.35) calc(50% - 0.5px),
      rgba(122, 31, 36, 0.35) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    ),
    #fff;
}

.calendar__day--checkin {
  background:
    linear-gradient(
      to bottom right,
      transparent calc(50% - 0.5px),
      rgba(122, 31, 36, 0.35) calc(50% - 0.5px),
      rgba(122, 31, 36, 0.35) calc(50% + 0.5px),
      rgba(122, 31, 36, 0.12) calc(50% + 0.5px)
    ),
    #fff;
}

.calendar__day--turnover {
  background:
    linear-gradient(
      to bottom right,
      rgba(122, 31, 36, 0.12) calc(50% - 0.5px),
      rgba(122, 31, 36, 0.35) calc(50% - 0.5px),
      rgba(122, 31, 36, 0.35) calc(50% + 0.5px),
      rgba(122, 31, 36, 0.12) calc(50% + 0.5px)
    ),
    #fff;
}

.calendar__day--today {
  background: var(--burgundy);
  color: var(--cream);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.calendar__day--today.calendar__day--booked {
  text-decoration: none;
}

.calendar__legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.25rem 0 0;
  padding: 0;
}

.calendar__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(43, 26, 20, 0.7);
}

.calendar__swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 0.3rem;
  flex: 0 0 auto;
}

.calendar__swatch--open {
  background: #fff;
  border: 1px solid rgba(43, 26, 20, 0.18);
}

.calendar__swatch--booked {
  background: rgba(122, 31, 36, 0.12);
  border: 1px solid rgba(122, 31, 36, 0.3);
}

.calendar__swatch--halfday {
  background:
    linear-gradient(
      to bottom right,
      transparent calc(50% - 0.5px),
      rgba(122, 31, 36, 0.35) calc(50% - 0.5px),
      rgba(122, 31, 36, 0.35) calc(50% + 0.5px),
      rgba(122, 31, 36, 0.12) calc(50% + 0.5px)
    ),
    #fff;
  border: 1px solid rgba(122, 31, 36, 0.3);
}

.calendar__swatch--today {
  background: var(--burgundy);
}

/* ---------- Reserve CTA ---------- */
.reserve-cta {
  background: var(--burgundy-dark);
  color: var(--cream);
  padding: 5rem 1.5rem;
  margin-top: 4rem;
}

.reserve-cta__inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.reserve-cta__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(247, 241, 230, 0.7);
  margin: 0;
}

.reserve-cta__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 0.75rem 0 0;
}

.reserve-cta__text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(247, 241, 230, 0.9);
  margin: 1.5rem auto 0;
  max-width: 34rem;
}

.reserve-cta__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .reserve-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.reserve-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--cream);
  color: var(--burgundy-dark);
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s;
}

.reserve-cta__btn:hover {
  background: var(--cream-warm);
}

.reserve-cta__btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 241, 230, 0.7);
  box-shadow: none;
}

.reserve-cta__btn--outline:hover {
  background: rgba(247, 241, 230, 0.1);
}

/* ---------- Testimonial carousel ---------- */
.testimonial-section {
  background: var(--cream-warm);
  padding: 4rem 1.5rem;
}

.testimonial-carousel {
  max-width: 60rem;
  margin: 0 auto;
}

.testimonial-carousel__heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  text-align: center;
  color: var(--ink);
  margin: 0 0 2.5rem;
}

.testimonial-carousel__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .testimonial-carousel__row {
    gap: 1.25rem;
  }
}

.testimonial-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
}

.testimonial-slide figure {
  margin: 0;
  padding: 0 0.5rem;
  text-align: center;
}

.testimonial-quote-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 auto 1.5rem;
  color: rgba(122, 31, 36, 0.6);
}

.testimonial-slide blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.3;
  color: var(--ink);
}

.testimonial-slide figcaption {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--burgundy);
}

.testimonial-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 2px solid var(--burgundy);
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.testimonial-arrow:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.testimonial-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(122, 31, 36, 0.3);
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dot[aria-current="true"] {
  background: var(--burgundy);
}

/* ---------- Honeymoon feature (Lisa Smith essay) ---------- */
.honeymoon-feature {
  background: var(--burgundy-dark);
  color: var(--cream);
  padding: 4rem 1.5rem 4.5rem;
}

.honeymoon-feature__inner {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 11pt;
  line-height: 1.8;
  color: rgba(247, 241, 230, 0.92);
}

.honeymoon-feature h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 0.6rem;
  color: var(--cream);
}

.honeymoon-feature p {
  margin: 0 0 1.4rem;
}

.honeymoon-feature strong,
.honeymoon-feature b {
  font-weight: 700;
}

.honeymoon-feature__byline {
  margin: 0 0 0.2rem;
  color: rgba(247, 241, 230, 0.75);
}

.honeymoon-feature__subtitle {
  margin: 0 0 1.8rem;
  font-size: 1.3rem;
  color: rgba(247, 241, 230, 0.85);
}

.honeymoon-feature__sign {
  margin-top: 2rem;
  color: var(--cream);
}

/* ---------- Contact CTA ---------- */
.contact-cta {
  background: var(--burgundy-dark);
  color: var(--cream);
  padding: 5rem 1.5rem;
  text-align: center;
}

.contact-cta__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-cta__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(247, 241, 230, 0.7);
}

.contact-cta h2 {
  margin: 0.75rem 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--cream);
}

.contact-cta__lead {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(247, 241, 230, 0.9);
}

.contact-cta__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.contact-cta__btn--solid {
  background: var(--cream);
  color: var(--burgundy-dark);
  box-shadow: var(--shadow-soft);
}

.contact-cta__btn--solid:hover {
  background: var(--cream-warm);
}

.contact-cta__btn--outline {
  border: 1px solid rgba(247, 241, 230, 0.7);
  color: var(--cream);
}

.contact-cta__btn--outline:hover {
  background: rgba(247, 241, 230, 0.1);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 880px) {
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
  }
}

.contact-info h2,
.contact-form h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}

.contact-info__lede {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(43, 26, 20, 0.78);
  margin: 0 0 1.75rem;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-details svg {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.15rem;
  color: var(--burgundy);
}

.contact-details__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(43, 26, 20, 0.6);
  margin-bottom: 0.2rem;
}

.contact-details__value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}

a.contact-details__value:hover {
  color: var(--burgundy);
}

.contact-form {
  background: var(--cream-warm);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 2.25rem 1.75rem;
}

.contact-form__field {
  margin-bottom: 1.4rem;
}

.contact-form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(43, 26, 20, 0.7);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(122, 31, 36, 0.25);
  border-radius: 0.6rem;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122, 31, 36, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.95rem 2.4rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s;
}

.contact-form__btn:hover {
  background: var(--burgundy-dark);
}

.contact-form__note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgba(43, 26, 20, 0.65);
  text-align: center;
}

.contact-form__grid {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

@media (min-width: 480px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__grid .contact-form__field {
  margin-bottom: 0;
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 1.4rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(43, 26, 20, 0.75);
}

.contact-form__check input {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-form__check a {
  color: var(--burgundy);
}

.contact-form__btn[disabled] {
  opacity: 0.7;
  cursor: default;
}

.contact-form__status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: center;
}

.contact-form__status--ok {
  background: rgba(45, 120, 60, 0.12);
  color: #256b32;
}

.contact-form__status--err {
  background: rgba(122, 31, 36, 0.1);
  color: var(--burgundy-dark);
}

.contact-map {
  max-width: 62rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 3.5rem;
}

.contact-map__frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(122, 31, 36, 0.2);
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-warm);
  color: #000;
  padding: 2.5rem 1.5rem;
}

.site-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1.3fr 2fr;
    gap: 3rem;
    text-align: left;
    align-items: center;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .site-footer__brand {
    align-items: flex-start;
  }
}

.site-footer__name {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 0.5rem;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@media (min-width: 640px) {
  .site-footer__col {
    align-items: flex-start;
  }
}

.site-footer__col a {
  font-family: var(--serif);
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__col a:hover {
  color: var(--burgundy);
}

.site-footer img {
  height: 4rem;
  width: auto;
  object-fit: contain;
}

.site-footer address {
  font-family: var(--serif);
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer address a {
  color: #000;
  text-decoration: none;
}

.site-footer address a:hover {
  color: var(--burgundy);
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__name a:hover {
  color: var(--burgundy);
}

/* ---------- Reviews page: live Google reviews ---------- */
.reviews-google {
  background: var(--cream);
  padding: 4rem 1.5rem 1rem;
}

.reviews-google__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.reviews-google__head {
  text-align: center;
  margin-bottom: 0;
}

.reviews-google__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

.reviews-summary {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.reviews-summary__rating {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}

.reviews-summary .reviews-stars {
  color: #e0a000;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.reviews-summary__count {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(43, 26, 20, 0.65);
}

.reviews-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.reviews-grid:empty {
  display: none;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #fff;
  border: 1px solid rgba(122, 31, 36, 0.12);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  object-fit: cover;
  flex: 0 0 auto;
  background: var(--cream-warm);
}

.review-card__avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
}

.review-card__meta {
  min-width: 0;
}

.review-card__author {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.review-card__time {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  color: rgba(43, 26, 20, 0.55);
}

.review-card__stars {
  margin: 0;
  color: #e0a000;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.review-card__text {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(43, 26, 20, 0.9);
}

.reviews-google__status {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(43, 26, 20, 0.6);
  margin: -0.75rem 0 0;
}

.reviews-google__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews-google__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s;
}

.reviews-google__btn:hover {
  background: var(--burgundy-dark);
}

/* Allow the reserve CTA to hold two buttons side by side with breathing room. */
.reserve-cta__actions {
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Reviews page: written testimonials (page layout) ---------- */
.written-reviews {
  background: var(--cream);
  padding: 1rem 1.5rem 4rem;
}

.written-reviews__inner {
  max-width: 70rem;
  margin: 0 auto;
}

.written-reviews__heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  text-align: center;
  color: var(--ink);
  margin: 0 0 2.5rem;
}

.written-reviews__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .written-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.written-review {
  display: flex;
}

.written-review figure {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(122, 31, 36, 0.12);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.written-review__quote {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 0 1.25rem;
  color: rgba(122, 31, 36, 0.6);
}

.written-review blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink);
}

.written-review figcaption {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--burgundy);
}
