:root {
  --sand: #f7efe4;
  --sand-deep: #e8d9c6;
  --ink: #102a35;
  --coastal: #2f7b82;
  --coastal-soft: #8ec7c4;
  --pine: #4b7965;
  --sun: #e7853c;
  --bay-city: #2f7b82;
  --waveland-city: #4b7965;
  --gulf-city: #d96e2f;
  --white: #fffdf9;
  --shadow: 0 24px 80px rgba(16, 42, 53, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

main[id],
.section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(231, 133, 60, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(47, 123, 130, 0.16), transparent 32%),
    linear-gradient(180deg, #fcf5ed 0%, #f4ebdf 45%, #f9f5ef 100%);
}

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

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(255, 253, 249, 0.75);
  border: 1px solid rgba(16, 42, 53, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 20px;
  z-index: 10;
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.brand__mark {
  width: clamp(104px, 10vw, 120px);
  aspect-ratio: 1;
  height: auto;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--pine);
  background: #fbf4eb;
  box-shadow: 0 10px 24px rgba(16, 42, 53, 0.12);
}

.site-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(16, 42, 53, 0.8);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  margin-top: 28px;
  align-items: stretch;
}

.hero__content,
.hero-card,
.value-strip,
.section,
.contact-panel {
  border: 1px solid rgba(16, 42, 53, 0.08);
  box-shadow: var(--shadow);
}

.hero__content {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 240, 0.9)),
    linear-gradient(135deg, rgba(47, 123, 130, 0.12), rgba(231, 133, 60, 0.08));
}

.hero__content::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 123, 130, 0.22), transparent 68%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coastal);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section h2,
.value-strip h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 12ch;
}

.hero__lede,
.hero-card p,
.section__intro + *,
.contact-panel__text,
.stay-card p,
.amenity p,
.explore-panel p,
.explore-list p,
.value-strip p {
  font-size: 1rem;
  line-height: 1.7;
}

.hero__lede {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(16, 42, 53, 0.82);
}

.hero__actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__sign {
  display: grid;
  gap: 12px;
  width: min(100%, 340px);
  margin: 28px 0 0;
}

.hero__sign img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(16, 42, 53, 0.08);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 22px 42px rgba(16, 42, 53, 0.16);
}

.hero__sign figcaption {
  margin: 0;
  color: rgba(16, 42, 53, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, #226d74, #2f7b82);
  box-shadow: 0 18px 30px rgba(47, 123, 130, 0.28);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 42, 53, 0.12);
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero__highlights li {
  padding: 18px 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 42, 53, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__highlight {
  position: relative;
}

.hero__highlight--interactive {
  padding: 0;
  overflow: visible;
}

.hero__highlight--interactive a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 18px 18px 20px;
  border-radius: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hero__highlight--interactive a:hover,
.hero__highlight--interactive a:focus-visible {
  background: rgba(47, 123, 130, 0.1);
  box-shadow: 0 18px 34px rgba(47, 123, 130, 0.16);
  transform: translateY(-2px);
}

.hero__highlight--interactive a::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 18px;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(16, 42, 53, 0.94);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero__highlight--interactive a:hover::after,
.hero__highlight--interactive a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.hero__highlight-action {
  color: var(--coastal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(42, 109, 118, 0.98), rgba(21, 57, 70, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  color: var(--white);
}

.hero-card__logo {
  width: min(100%, 320px);
  align-self: center;
  border-radius: 24px;
}

.hero-card__body + .hero-card__body {
  margin-top: 24px;
}

.hero-card__label {
  margin-bottom: 8px;
  color: var(--sand-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-card__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid rgba(255, 253, 249, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.12);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-card__directions:hover,
.hero-card__directions:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 253, 249, 0.18);
  border-color: rgba(255, 253, 249, 0.34);
}

.hero-card__rates {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-card__rate {
  display: grid;
  gap: 6px;
}

.hero-card__rate-name,
.hero-card__rate-price,
.hero-card__rate-note {
  margin: 0;
}

.hero-card__rate-name {
  color: rgba(255, 253, 249, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card__rate-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 0.95;
}

.hero-card__rate-note {
  color: rgba(255, 253, 249, 0.82);
  line-height: 1.6;
}

.hero-card__fineprint {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 253, 249, 0.82);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
}

.value-strip article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 243, 234, 0.9));
}

.value-strip h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section {
  margin-top: 24px;
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
}

.section__intro {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section__copy,
.calendar-shell__copy,
.calendar-note,
.attraction-feature p,
.restaurant-card p,
.calendar-feed-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.hero h1,
.section h2,
.contact-panel h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  max-width: 12ch;
}

.stay-grid,
.amenities-grid {
  display: grid;
  gap: 18px;
}

.stay-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stay-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(245, 236, 224, 0.82), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(16, 42, 53, 0.08);
}

.stay-card--featured {
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(47, 123, 130, 0.98), rgba(27, 68, 74, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.stay-card__tag,
.explore-list__label {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.stay-card__price {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
}

.stay-card__price span {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.amenities-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amenity,
.explore-panel,
.explore-list article {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 42, 53, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 238, 228, 0.92));
}

.amenity h3,
.stay-card h3,
.explore-panel h3,
.explore-list h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.explore-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.explore__intro {
  margin-bottom: 0;
}

.explore-layout {
  display: block;
}

.explore-panel {
  background:
    linear-gradient(160deg, rgba(231, 133, 60, 0.92), rgba(197, 98, 44, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  color: var(--white);
}

.explore-panel__button {
  margin-top: 20px;
  background: rgba(255, 253, 249, 0.16);
  border-color: rgba(255, 253, 249, 0.22);
}

.explore-list {
  display: grid;
  gap: 18px;
}

.explore-list article {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.explore-card__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 20px;
  align-items: center;
}

.explore-card__body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.explore-card__action {
  color: var(--coastal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.explore-card__link:hover .explore-card__action,
.explore-card__link:focus-visible .explore-card__action {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.explore-media {
  margin: 0;
}

.explore-media img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(16, 42, 53, 0.16);
}

.explore-media__credit {
  margin: 10px 0 0;
  color: rgba(16, 42, 53, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

.explore-card__caption {
  margin: 0;
  color: rgba(16, 42, 53, 0.78);
}

.explore-media__credit a,
.explore-media a {
  color: var(--coastal);
  font-weight: 700;
}

.attractions {
  overflow: hidden;
}

.attractions__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.attractions__intro-copy {
  display: grid;
  gap: 12px;
}

.attractions__intro h2 {
  max-width: 14ch;
}

.attractions__intro-media {
  margin: 0;
  min-width: 0;
}

.attractions__intro-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  box-shadow: 0 20px 40px rgba(16, 42, 53, 0.16);
}

.attractions-hero,
.restaurant-grid,
.calendar-feed {
  display: grid;
  gap: 18px;
}

.attractions-hero {
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

.attraction-feature,
.restaurant-card,
.calendar-shell,
.calendar-grid__day,
.calendar-feed-card {
  border: 1px solid rgba(16, 42, 53, 0.08);
  border-radius: var(--radius-md);
}

.attraction-feature,
.restaurant-card,
.calendar-shell,
.calendar-feed-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 238, 228, 0.92));
}

.attraction-feature {
  padding: 24px;
}

.attraction-feature--walking {
  background:
    linear-gradient(160deg, rgba(47, 123, 130, 0.98), rgba(28, 77, 85, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  color: var(--white);
}

.attraction-feature--walking .stay-card__tag {
  color: rgba(255, 253, 249, 0.82);
}

.attraction-feature--map {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.attraction-feature h3,
.calendar-shell h3,
.calendar-feed__header h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.attraction-feature__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.restaurant-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.restaurant-card {
  padding: 22px;
}

.restaurant-card h3,
.calendar-feed-card h4 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.attraction-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--coastal);
  font-weight: 800;
}

.calendar-shell {
  padding: 24px;
}

.calendar-shell__header,
.calendar-feed__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.calendar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.calendar-jump {
  display: grid;
  gap: 6px;
  margin-left: auto;
}

.calendar-jump__label {
  color: rgba(16, 42, 53, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calendar-date-picker {
  min-height: 44px;
  min-width: 200px;
  padding: 0 14px;
  border: 1px solid rgba(16, 42, 53, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.calendar-nav,
.calendar-filter {
  border: 1px solid rgba(16, 42, 53, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.calendar-nav {
  min-height: 44px;
  padding: 0 16px;
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.calendar-filter {
  min-height: 42px;
  padding: 0 18px;
}

.calendar-nav:hover,
.calendar-nav:focus-visible,
.calendar-filter:hover,
.calendar-filter:focus-visible,
.attraction-link:hover,
.attraction-link:focus-visible {
  transform: translateY(-2px);
}

.calendar-filter.is-active {
  background: linear-gradient(135deg, #226d74, #2f7b82);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(47, 123, 130, 0.24);
}

.calendar-month-label {
  min-width: 180px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.calendar-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 18px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  min-width: 840px;
}

.calendar-grid-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
}

.calendar-agenda {
  display: none;
}

.calendar-grid__day,
.calendar-grid__label,
.calendar-grid__blank {
  min-height: 120px;
}

.calendar-grid__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: rgba(16, 42, 53, 0.6);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calendar-grid__blank {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.36);
  border: 1px dashed rgba(16, 42, 53, 0.08);
}

.calendar-grid__day {
  appearance: none;
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(16, 42, 53, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: default;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.calendar-grid__day:disabled {
  opacity: 1;
}

.calendar-grid__day.is-clickable {
  cursor: pointer;
}

.calendar-grid__day.is-clickable:hover,
.calendar-grid__day.is-clickable:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(16, 42, 53, 0.12);
}

.calendar-grid__day.is-selected {
  border-color: rgba(231, 133, 60, 0.56);
  box-shadow: 0 16px 30px rgba(231, 133, 60, 0.18);
}

.calendar-grid__day.is-today {
  border-color: rgba(47, 123, 130, 0.36);
  box-shadow: 0 12px 24px rgba(47, 123, 130, 0.12);
}

.calendar-grid__day.has-items {
  background: linear-gradient(180deg, rgba(236, 248, 247, 0.98), rgba(255, 255, 255, 0.9));
}

.calendar-grid__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(16, 42, 53, 0.06);
  font-weight: 800;
}

.calendar-grid__items {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-top: 12px;
}

.calendar-grid__pill {
  display: inline-block;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(47, 123, 130, 0.12);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.calendar-grid__pill[data-city="bay-st-louis"] {
  background: rgba(47, 123, 130, 0.14);
}

.calendar-grid__pill[data-city="waveland"] {
  background: rgba(75, 121, 101, 0.16);
}

.calendar-grid__pill[data-city="gulfport-biloxi"] {
  background: rgba(231, 133, 60, 0.18);
}

.calendar-grid__more {
  color: rgba(16, 42, 53, 0.65);
  font-size: 0.8rem;
  font-weight: 700;
}

.calendar-agenda__day {
  appearance: none;
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(16, 42, 53, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.calendar-agenda__day:hover,
.calendar-agenda__day:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(16, 42, 53, 0.12);
}

.calendar-agenda__day.is-selected {
  border-color: rgba(231, 133, 60, 0.56);
  box-shadow: 0 16px 30px rgba(231, 133, 60, 0.18);
}

.calendar-agenda__day.is-today {
  border-color: rgba(47, 123, 130, 0.36);
}

.calendar-agenda__day.is-empty {
  background: rgba(255, 255, 255, 0.64);
}

.calendar-agenda__day.is-outside-month {
  opacity: 0.72;
}

.calendar-agenda__day-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calendar-agenda__date {
  font-weight: 800;
  line-height: 1.4;
}

.calendar-agenda__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 42, 53, 0.06);
  color: rgba(16, 42, 53, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.calendar-agenda__items {
  display: grid;
  gap: 8px;
}

.calendar-zoom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 42, 53, 0.08);
}

.calendar-results {
  display: grid;
  gap: 0;
}

.calendar-zoom-bar__copy {
  margin: 0;
  color: rgba(16, 42, 53, 0.78);
  font-weight: 700;
}

.calendar-clear {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(16, 42, 53, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.calendar-clear:hover,
.calendar-clear:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(16, 42, 53, 0.12);
}

.calendar-feed__header {
  margin: 24px 0 14px;
}

.calendar-feed {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.calendar-feed-card {
  padding: 20px;
}

.calendar-feed-card[data-city="bay-st-louis"] {
  border-top: 4px solid var(--bay-city);
}

.calendar-feed-card[data-city="waveland"] {
  border-top: 4px solid var(--waveland-city);
}

.calendar-feed-card[data-city="gulfport-biloxi"] {
  border-top: 4px solid var(--gulf-city);
}

.calendar-feed-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}

.calendar-feed-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(16, 42, 53, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
}

.calendar-feed-card__meta span[data-city="bay-st-louis"] {
  background: rgba(47, 123, 130, 0.14);
}

.calendar-feed-card__meta span[data-city="waveland"] {
  background: rgba(75, 121, 101, 0.16);
}

.calendar-feed-card__meta span[data-city="gulfport-biloxi"] {
  background: rgba(231, 133, 60, 0.18);
}

.calendar-feed-card__description {
  margin: 0;
}

.calendar-feed-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.calendar-feed-empty {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(16, 42, 53, 0.14);
  background: rgba(255, 255, 255, 0.62);
}

.calendar-note {
  margin: 18px 0 0;
  color: rgba(16, 42, 53, 0.72);
}

.calendar-refresh-note.is-stale {
  color: rgba(180, 93, 27, 0.98);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 42px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(142, 199, 196, 0.25), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(248, 240, 230, 0.94));
}

.contact-panel__text {
  max-width: 56ch;
  margin-top: 16px;
}

.mobile-quick-nav {
  display: none;
}

@media (max-width: 1080px) {
  .hero,
  .attractions-hero,
  .contact-panel,
  .stay-grid,
  .restaurant-grid,
  .amenities-grid,
  .value-strip {
    grid-template-columns: 1fr;
  }

  .explore-head,
  .explore-card__link {
    grid-template-columns: 1fr;
  }

  .attractions__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .attractions__intro h2 {
    max-width: none;
  }

  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }

  main[id],
  .section[id] {
    scroll-margin-top: 24px;
  }

  .page-shell {
    width: min(100% - 24px, 1200px);
    padding-top: 16px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .site-header {
    border-radius: var(--radius-lg);
    padding: 18px;
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    align-self: center;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 0;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 8px;
    border-radius: 16px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .brand__mark {
    width: min(100%, 116px);
  }

  .hero h1,
  .section h2,
  .contact-panel h2 {
    max-width: none;
    font-size: clamp(2.1rem, 11vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .button {
    width: 100%;
  }

  .hero__sign {
    width: 100%;
  }

  .attraction-feature__actions .button {
    width: auto;
  }

  .explore-panel__button {
    width: auto;
  }

  .calendar-shell {
    padding: 18px;
  }

  .attractions__intro-media img {
    aspect-ratio: 16 / 9;
  }

  .calendar-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .calendar-month-label {
    grid-column: 1 / -1;
    min-width: 0;
    font-size: 1.75rem;
  }

  .calendar-nav {
    width: 100%;
  }

  .calendar-jump {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .calendar-date-picker {
    width: 100%;
    min-width: 0;
  }

  .calendar-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-filter {
    justify-content: center;
    padding: 0 12px;
  }

  .calendar-grid-wrap {
    display: none;
  }

  .calendar-agenda {
    display: grid;
    gap: 12px;
  }

  .calendar-grid__label {
    min-height: 34px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .calendar-agenda__day-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .calendar-zoom-bar {
    align-items: stretch;
  }

  .calendar-clear {
    width: 100%;
  }

  .mobile-quick-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(16, 42, 53, 0.12);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(16, 42, 53, 0.18);
    z-index: 30;
  }

  .mobile-quick-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 8px;
    border-radius: 16px;
    color: rgba(16, 42, 53, 0.78);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .mobile-quick-nav a:hover,
  .mobile-quick-nav a:focus-visible {
    background: rgba(47, 123, 130, 0.12);
    color: var(--coastal);
  }
}
