:root {
  --sb-background: oklch(0.985 0.002 90);
  --sb-secondary: oklch(0.96 0.01 90);
  --sb-muted: oklch(0.94 0.01 90);
  --sb-foreground: oklch(0.25 0.02 150);
  --sb-muted-foreground: oklch(0.5 0.02 150);
  --sb-border: oklch(0.88 0.02 90);
  --sb-green-0: #e8f4f1;
  --sb-green-1: #c8e4dd;
  --sb-green-3: #7fc2b3;
  --sb-green-5: #3a9a87;
  --sb-green-6: #2d7a6a;
  --sb-green-7: #2d5a4d;
  --sb-accent: oklch(0.55 0.08 230);
  --sb-chart-3: oklch(0.65 0.12 80);
  --sb-chart-4: oklch(0.6 0.1 30);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --container: 1184px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--sb-foreground);
  background: var(--sb-background);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.lightbox-open {
  overflow: hidden;
}

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

button {
  border: 0;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand-title,
.footer-brand-link span {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: oklch(0.985 0.002 90 / 0.86);
  border-bottom: 1px solid oklch(0.88 0.02 90 / 0.5);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link,
.footer-brand-link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.brand-icon {
  width: 28px;
  height: 28px;
  align-self: center;
  border-radius: 4px;
  object-fit: cover;
}

.brand-title {
  color: var(--sb-foreground);
  font-size: 22px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: auto;
}

.desktop-nav a,
.mobile-nav a,
.footer-column a {
  color: var(--sb-muted-foreground);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-column a:hover {
  color: var(--sb-foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--sb-foreground);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
  padding: 6px 16px 16px;
  border-top: 1px solid oklch(0.88 0.02 90 / 0.5);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
}

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

.hero-section {
  position: relative;
  min-height: max(420px, 70vh);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition:
    background-image 700ms ease,
    background-position 700ms ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(0 0 0 / 0.2) 0%,
    rgb(0 0 0 / 0.3) 50%,
    rgb(0 0 0 / 0.62) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.hero-card {
  width: min(448px, 100%);
  padding: 40px 32px;
  text-align: center;
  background: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.52);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(24px);
}

.hero-card h1 {
  margin: 8px 0 14px;
  font-size: 30px;
  line-height: 1.2;
}

.hero-card p:last-child,
.section-heading p,
.centered-heading p:last-child {
  color: var(--sb-muted-foreground);
}

.eyebrow {
  color: var(--sb-green-6);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.current-season {
  position: absolute;
  z-index: 2;
  color: white;
}

.current-season p {
  font-size: 14px;
  letter-spacing: 0;
  opacity: 0.72;
  text-transform: uppercase;
}

.current-season h2 {
  margin-top: 4px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
}

.desktop-current-season {
  left: 48px;
  bottom: 96px;
}

.mobile-current-season {
  display: none;
}

.season-selector {
  position: relative;
  z-index: 3;
  margin-top: -32px;
  padding-bottom: 48px;
}

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

.season-card {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  color: white;
  background: transparent;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition:
    box-shadow 500ms ease,
    opacity 300ms ease,
    transform 500ms ease;
}

.season-card:hover,
.season-card:focus-visible {
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-xl),
    0 25px 50px -12px rgb(0 0 0 / 0.25);
  outline: none;
}

.season-card.is-active {
  opacity: 0.76;
}

.season-card-background,
.season-card-overlay {
  position: absolute;
  inset: 0;
}

.season-card-background {
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 700ms ease;
}

.season-card:hover .season-card-background,
.season-card:focus-visible .season-card-background {
  transform: scale(1.1);
}

.season-card-overlay {
  background: rgb(0 0 0 / 0.42);
  transition: background-color 300ms ease;
}

.season-card:hover .season-card-overlay,
.season-card:focus-visible .season-card-overlay {
  background: rgb(0 0 0 / 0.3);
}

.season-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
}

.season-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.season-card-description {
  max-width: 18ch;
  color: rgb(255 255 255 / 0.82);
  font-size: 14px;
  opacity: 0;
  transition: opacity 300ms ease;
}

.season-card:hover .season-card-description,
.season-card:focus-visible .season-card-description,
.season-card.is-active .season-card-description {
  opacity: 1;
}

.content-section {
  padding: 80px 0;
}

.muted-section {
  background: color-mix(in srgb, var(--sb-secondary) 30%, transparent);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.map-frame {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--sb-border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-stack,
.amenities-stack {
  display: grid;
  gap: 32px;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.section-heading h2,
.centered-heading h2 {
  max-width: 780px;
  font-size: 48px;
  line-height: 1.12;
}

.section-heading.compact h2 {
  font-size: 32px;
}

.section-heading p,
.centered-heading p {
  font-size: 18px;
  line-height: 1.6;
}

.section-heading p + p {
  margin-top: 4px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--sb-secondary) 50%, transparent);
  border: 1px solid color-mix(in srgb, var(--sb-border) 50%, transparent);
  border-radius: 16px;
}

.feature-icon,
.activity-icon,
.amenity-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--sb-green-7);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--sb-green-0);
  border-radius: 10px;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-row h3,
.activity-card h3,
.amenity-card h3,
.future-card h3 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.feature-row p,
.note-card p,
.activity-card li,
.amenity-card p,
.future-card p,
.site-footer p {
  color: var(--sb-muted-foreground);
}

.note-card {
  padding: 24px;
  background: color-mix(in srgb, var(--sb-muted) 50%, transparent);
  border: 1px dashed var(--sb-border);
  border-radius: 16px;
}

.note-card p {
  font-size: 14px;
  font-style: italic;
}

.note-card strong {
  color: var(--sb-foreground);
  font-weight: 600;
}

.centered-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 48px;
  text-align: center;
}

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

.activity-card,
.amenity-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--sb-border) 80%, transparent);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 200ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

.activity-card:hover,
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.activity-card.winter {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--sb-accent) 10%, transparent),
    color-mix(in srgb, var(--sb-accent) 5%, transparent)
  );
}

.activity-card.spring {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--sb-green-6) 10%, transparent),
    color-mix(in srgb, var(--sb-green-6) 5%, transparent)
  );
}

.activity-card.summer {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--sb-chart-3) 10%, transparent),
    color-mix(in srgb, var(--sb-chart-3) 5%, transparent)
  );
}

.activity-card.fall {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--sb-chart-4) 10%, transparent),
    color-mix(in srgb, var(--sb-chart-4) 5%, transparent)
  );
}

.activity-icon {
  width: 48px;
  height: 48px;
  background: white;
  border: 1px solid color-mix(in srgb, var(--sb-border) 50%, transparent);
  border-radius: 12px;
}

.activity-icon svg {
  width: 24px;
  height: 24px;
}

.activity-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-card li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
}

.activity-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--sb-green-5);
  border-radius: 50%;
  opacity: 0.65;
}

.community-layout {
  align-items: start;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.amenity-card {
  background: white;
}

.amenity-card:hover {
  border-color: var(--sb-green-3);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  background: var(--sb-secondary);
  border-radius: 12px;
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
}

.future-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: color-mix(in srgb, var(--sb-green-6) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--sb-green-6) 20%, transparent);
  border-radius: 16px;
}

.future-card span {
  flex: 0 0 auto;
  padding: 4px 10px;
  color: white;
  background: var(--sb-green-6);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--sb-muted);
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item.row-span {
  grid-row: span 2;
}

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

.gallery-item span {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0);
  transition: background-color 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  background: rgb(0 0 0 / 0.2);
}

.gallery-item:focus-visible,
.lightbox button:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--sb-green-5);
  outline-offset: 3px;
}

.site-footer {
  margin-top: auto;
  padding: 64px 0 28px;
  color: white;
  background: var(--sb-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 340px;
}

.footer-brand-link {
  color: white;
}

.footer-brand-link img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
}

.footer-brand-link span {
  font-size: 22px;
}

.footer-brand p,
.footer-column a,
.footer-column p,
.footer-bottom p {
  color: rgb(255 255 255 / 0.7);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 0.2);
}

.footer-bottom p {
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 16px;
  padding: 64px 24px 32px;
  background: rgb(0 0 0 / 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0;
}

.lightbox img {
  max-height: calc(100vh - 150px);
  width: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

.lightbox figcaption {
  color: rgb(255 255 255 / 0.82);
  font-size: 14px;
  text-align: center;
}

.lightbox button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgb(255 255 255 / 0.1);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.lightbox button:hover {
  background: rgb(255 255 255 / 0.18);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
}

.lightbox svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1020px) {
  .season-grid,
  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column {
    gap: 48px;
  }

  .section-heading h2,
  .centered-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 760px) {
  .desktop-nav,
  .desktop-current-season {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-section {
    min-height: max(420px, 70vh);
  }

  .hero-content {
    place-items: center;
    align-content: center;
    gap: 28px;
  }

  .hero-card {
    padding: 34px 24px;
  }

  .hero-card h1 {
    font-size: 26px;
  }

  .mobile-current-season {
    position: static;
    display: block;
    width: min(448px, 100%);
    padding: 0 24px;
  }

  .mobile-current-season h2 {
    font-size: 40px;
  }

  .season-grid,
  .activity-grid,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .season-grid {
    gap: 16px;
  }

  .season-card {
    min-height: 176px;
  }

  .content-section {
    padding: 64px 0;
  }

  .section-heading h2,
  .centered-heading h2 {
    font-size: 32px;
  }

  .section-heading p,
  .centered-heading p {
    font-size: 16px;
  }

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

  .future-card {
    display: grid;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
    grid-template-columns: 1fr;
  }

  .gallery-item.row-span {
    grid-row: span 1;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 6px;
    padding: 72px 10px 24px;
  }

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

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-title {
    font-size: 20px;
  }

  .hero-card {
    padding: 30px 20px;
  }
}

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

  .season-card:hover,
  .season-card:focus-visible,
  .activity-card:hover,
  .amenity-card:hover {
    transform: none;
  }
}
