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

:root {
  --forest: #1a3c2a;
  --forest-deep: #0f2519;
  --forest-light: #2d5a3f;
  --forest-muted: #3d7a54;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --cream-dark: #e8e0d0;
  --bark: #5c4033;
  --bark-light: #8b6f4e;
  --charcoal: #1a1a1a;
  --stone: #3a3a3a;
  --stone-light: #6b6b6b;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  color: var(--cream);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 60, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--forest-deep) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 37, 25, 0.88) 0%,
    rgba(26, 60, 42, 0.72) 40%,
    rgba(26, 60, 42, 0.45) 70%,
    rgba(26, 60, 42, 0.3) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1.15rem 2rem;
  margin-top: 0.5rem;
}

.btn-arrow {
  transition: var(--transition);
}

.btn-submit:hover .btn-arrow {
  transform: translate(4px, 0);
}

.hero-image-col {
  position: relative;
  height: clamp(400px, 60vh, 650px);
}

.hero-img-main {
  width: 100%;
  height: 85%;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-img-main:hover img {
  transform: scale(1.03);
}

.hero-img-float {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 65%;
  border-radius: 2px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(15, 37, 25, 0.9));
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}

.hero-stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-muted);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--forest-muted);
  font-weight: 400;
}

/* ─── ABOUT ─── */
.about {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-main {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 7/9;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-content {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-dark);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
}

.feature-icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── CABIN ─── */
.cabin {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--forest-deep);
}

.cabin .section-eyebrow {
  color: var(--gold);
}

.cabin .section-title {
  color: var(--cream);
}

.cabin-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.cabin-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}

.cabin-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.cabin-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.cabin-card:hover img {
  transform: scale(1.05);
}

.cabin-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(15, 37, 25, 0.92));
  color: var(--cream);
}

.cabin-card-content h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cabin-card-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.7);
}

.cabin-card--wide {
  grid-column: span 8;
  aspect-ratio: 16/9;
}

.cabin-card:not(.cabin-card--wide) {
  aspect-ratio: 5/4;
}

.cabin-card--tall {
  grid-column: span 4;
  aspect-ratio: auto;
}

/* ─── GROUNDS ─── */
.grounds {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--cream-light);
}

.grounds-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.grounds-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.mosaic-item {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 37, 25, 0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.mosaic-overlay span {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.mosaic-item:hover .mosaic-overlay {
  background: rgba(15, 37, 25, 0.5);
}

.mosaic-item:hover .mosaic-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.mosaic-item--large {
  grid-column: span 7;
  aspect-ratio: 4/3;
}

.mosaic-item:not(.mosaic-item--large) {
  aspect-ratio: 4/3;
}

.mosaic-item--wide {
  grid-column: span 12;
  aspect-ratio: 21/9;
}

.grounds-activities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-dark);
}

.activity-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.mosaic-item:hover ~ .grounds-activities .activity-number,
.grounds:hover .activity:hover .activity-number {
  color: var(--gold);
}

.activity h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.activity p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--stone-light);
}

/* ─── EXPERIENCE ─── */
.experience {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--cream);
}

.experience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.experience-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.experience-quote {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--forest-deep);
  border-radius: 2px;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  color: var(--gold);
}

.experience-quote blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.experience-image-col {
  position: relative;
  height: clamp(400px, 55vh, 600px);
}

.experience-img-main {
  width: 80%;
  height: 85%;
  border-radius: 2px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}

.experience-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.experience-img-main:hover img {
  transform: scale(1.03);
}

.experience-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.experience-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── CONTACT ─── */
.contact {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--forest-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.contact .section-eyebrow {
  color: var(--gold);
}

.contact .section-title {
  color: var(--cream);
}

.contact-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.6;
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--cream);
}

.contact-form-wrap {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.form-group input,
.form-group textarea {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245, 240, 232, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.form-success.show {
  display: flex;
}

.success-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--cream);
  line-height: 1.5;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(245, 240, 232, 0.5);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.3);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-asymmetric {
    grid-template-columns: 1fr;
  }

  .hero-image-col {
    display: none;
  }

  .about-layout,
  .experience-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .experience-image-col {
    order: -1;
    height: clamp(300px, 40vh, 450px);
  }

  .cabin-card--wide {
    grid-column: span 12;
  }

  .cabin-card--tall {
    grid-column: span 6;
  }

  .mosaic-item--large {
    grid-column: span 12;
  }

  .mosaic-item:not(.mosaic-item--large):not(.mosaic-item--wide) {
    grid-column: span 6;
  }

  .grounds-activities {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(15, 37, 25, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
    align-self: center;
  }

  .cabin-card--tall {
    grid-column: span 12;
  }

  .mosaic-item:not(.mosaic-item--large):not(.mosaic-item--wide) {
    grid-column: span 12;
  }

  .grounds-activities {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}
