/* ============================================================
   Muskego Point Resort — Shared Stylesheet
   Fonts: Bitter (headings) · DM Sans (body) via Google Fonts
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --color-forest:   #2F4A3C;
  --color-pine:     #1E3328;
  --color-lake:     #3E6B7A;
  --color-amber:    #c8922a;
  --color-birch:    #C9B79C;
  --color-linen:    #F4F0E8;
  --color-ink:      #1A1A1A;
  --color-white:    #FFFFFF;

  --font-heading: 'Bitter', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;

  --shadow-card: 0 2px 8px rgba(30, 51, 40, 0.10), 0 1px 2px rgba(30, 51, 40, 0.06);
  --shadow-raised: 0 4px 20px rgba(30, 51, 40, 0.14), 0 2px 6px rgba(30, 51, 40, 0.08);

  --transition-fast: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-linen);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-pine);
}

p { max-width: 68ch; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast), transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.btn:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-amber);
  color: var(--color-white);
  border-color: var(--color-amber);
}
.btn-primary:hover {
  background: #b37d22;
  border-color: #b37d22;
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.35);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}

.btn-outline-forest {
  background: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}
.btn-outline-forest:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

/* ---------- Call Button ---------- */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  background: var(--color-amber);
  color: var(--color-white);
  border: 2px solid var(--color-amber);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.call-btn:hover {
  background: #b37d22;
  border-color: #b37d22;
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.35);
  transform: translateY(-1px);
}
.call-btn:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}
.call-btn:active { transform: translateY(0); }

@media (min-width: 768px) {
  .call-btn .mobile-label { display: none; }
  .call-btn .desktop-label { display: inline; }
}
@media (max-width: 767px) {
  .call-btn .desktop-label { display: none; }
  .call-btn .mobile-label { display: inline; }
}

/* ---------- Logo Wordmark ---------- */
.logo-wordmark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-white);
  text-decoration: none;
}

.logo-tree {
  width: 26px;
  height: 22px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.9);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.footer-wordmark {
  margin-bottom: 1rem;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-pine);
  transition: box-shadow var(--transition-base);
}

.site-nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.92;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover { opacity: 1; }
.nav-logo:focus-visible { outline: 2px solid var(--color-amber); outline-offset: 3px; }

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover { color: var(--color-white); background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--color-white); }
.nav-link:focus-visible { outline: 2px solid var(--color-amber); outline-offset: 2px; }

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-amber) !important;
  border: 1px solid rgba(200,146,42,0.5);
  padding: 0.35rem 0.9rem !important;
}
.nav-cta:hover { background: rgba(200,146,42,0.12) !important; border-color: var(--color-amber); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-hamburger:focus-visible { outline: 2px solid var(--color-amber); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--color-pine);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  border-radius: 0;
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 32, 24, 0.45) 0%,
    rgba(18, 32, 24, 0.38) 35%,
    rgba(18, 32, 24, 0.72) 72%,
    rgba(18, 32, 24, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem 4rem;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-birch);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s forwards;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 52ch;
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s forwards;
}

/* ---------- Sections ---------- */
.section {
  padding-block: 5rem;
}
.section-sm { padding-block: 3.5rem; }
.section-lg { padding-block: 6.5rem; }

.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.section-header p {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  color: #4a4a4a;
}

/* ---------- Value Props ---------- */
.value-props {
  background: var(--color-forest);
}

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

.prop-card {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition-base);
}
.prop-card:hover { background: rgba(255,255,255,0.07); }

.prop-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--color-amber);
}

.prop-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.prop-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  max-width: none;
}

/* ---------- Cabin Grid ---------- */
.cabins-section {
  background: var(--color-linen);
}

.cabin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .cabin-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .cabin-grid { grid-template-columns: 1fr; }
}

.cabin-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}
.cabin-card:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-3px);
}

.cabin-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-forest);
}
.cabin-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cabin-card:hover .cabin-card-img-wrap img { transform: scale(1.04); }

.cabin-card-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(18,32,24,0.78);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
}

.cabin-card-body {
  padding: 1.25rem 1.375rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cabin-card-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-pine);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.cabin-card-meta {
  font-size: 0.8125rem;
  color: #6b6b6b;
  margin-bottom: 0.875rem;
}

.cabin-card-rate {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: auto;
  padding-bottom: 1rem;
}

.cabin-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-forest);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 0.875rem;
  margin-top: auto;
  transition: color var(--transition-fast), gap var(--transition-fast);
}
.cabin-card-link:hover { color: var(--color-amber); gap: 0.6rem; }
.cabin-card-link:focus-visible { outline: 2px solid var(--color-amber); outline-offset: 2px; }
.cabin-card-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- Fishing Callout ---------- */
.fishing-callout {
  background: var(--color-lake);
  color: var(--color-white);
}

.fishing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .fishing-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.fishing-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
}
.fishing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fishing-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,51,40,0.15);
  border-radius: var(--radius-lg);
}

.fishing-text .section-label { color: rgba(255,255,255,0.7); }
.fishing-text h2 {
  color: var(--color-white);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}
.fishing-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fishing-species {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.species-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
}

.fishing-text .btn-outline-light {
  border-color: rgba(255,255,255,0.5);
}
.fishing-text .btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

/* ---------- History Teaser ---------- */
.history-teaser {
  background: var(--color-pine);
  color: var(--color-white);
  text-align: center;
}

.history-quote {
  max-width: 640px;
  margin-inline: auto;
}

.history-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-linen);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.history-quote blockquote::before { content: '\201C'; }
.history-quote blockquote::after  { content: '\201D'; }

.history-attr {
  font-size: 0.8125rem;
  color: var(--color-birch);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ---------- Gallery Strip — horizontal scroll ---------- */
.gallery-strip {
  background: var(--color-ink);
  overflow: hidden;
}

.gallery-scroll-track {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.gallery-scroll-track::-webkit-scrollbar {
  height: 4px;
}
.gallery-scroll-track::-webkit-scrollbar-track {
  background: transparent;
}
.gallery-scroll-track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
}
.gallery-scroll-track.grabbing { cursor: grabbing; }

.gallery-scroll-inner {
  display: flex;
  gap: 3px;
  height: 320px;
  width: max-content;
}

.gallery-item {
  flex-shrink: 0;
  width: 420px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .gallery-scroll-inner { height: 220px; }
  .gallery-item { width: 280px; }
}
@media (max-width: 499px) {
  .gallery-scroll-inner { height: 180px; }
  .gallery-item { width: 240px; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s;
  opacity: 0.88;
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.05); opacity: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-pine);
  color: rgba(255,255,255,0.7);
  padding-block: 3.5rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 28ch;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

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

.footer-nav a, .footer-contact a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--color-white); }

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

.footer-phone {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.footer-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  font-style: normal;
  max-width: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  max-width: none;
}

/* ---------- Page Header (interior pages) ---------- */
.page-header {
  background: var(--color-pine);
  padding: 7rem 1.25rem 3.5rem;
  text-align: center;
  color: var(--color-white);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  letter-spacing: -0.025em;
  margin-bottom: 0.625rem;
}
.page-header .page-header-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* ---------- Map Teaser ---------- */
.map-teaser {
  background: var(--color-linen);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-block: 1.75rem;
}
.map-teaser-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 900px;
}
.map-teaser-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(47,74,60,0.18);
}
.map-teaser-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.map-teaser p {
  font-size: 0.9375rem;
  color: #4a4a4a;
  max-width: none;
}
.map-teaser a {
  font-weight: 600;
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.map-teaser a:hover { color: var(--color-amber); }

/* ---------- Cabin Size Groups ---------- */
.cabin-group {
  padding-block: 3.5rem;
}
.cabin-group:first-child { padding-top: 0; }
.cabin-group + .cabin-group {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.cabin-group-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cabin-group-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-amber);
}
.cabin-group-title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--color-pine);
  letter-spacing: -0.02em;
}

/* ---------- Cabin Detail Cards (overview page) ---------- */
.cabin-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cabin-detail-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.cabin-detail-card:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .cabin-detail-card { grid-template-columns: 1fr; }
}

.cabin-detail-img {
  position: relative;
  overflow: hidden;
}
.cabin-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cabin-detail-card:hover .cabin-detail-img img { transform: scale(1.04); }

.cabin-detail-sleeps {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: var(--color-pine);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.cabin-detail-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cabin-detail-name {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-pine);
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.cabin-detail-rate {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 1rem;
}

.cabin-detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.cabin-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #4a4a4a;
}
.cabin-spec-item svg {
  width: 15px; height: 15px;
  color: var(--color-forest);
  flex-shrink: 0;
}

.cabin-detail-beds {
  font-size: 0.875rem;
  color: #5a5a5a;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.cabin-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
}

/* ---------- Rental Policies ---------- */
.policies-section {
  background: var(--color-forest);
  color: var(--color-white);
}
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.policy-item {}
.policy-item h3 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-birch);
  margin-bottom: 0.5rem;
}
.policy-item p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: none;
}

/* ---------- Individual Cabin Page ---------- */
.cabin-page-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  max-height: 680px;
  overflow: hidden;
}
.cabin-page-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.cabin-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,32,24,0.08) 0%,
    rgba(18,32,24,0.08) 50%,
    rgba(18,32,24,0.55) 100%
  );
}
.cabin-page-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 599px) {
  .cabin-page-hero-content { flex-direction: column; align-items: flex-start; }
}
.cabin-page-hero-text { flex: 1; }
.cabin-page-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.375rem;
}
.cabin-page-name {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0;
}

/* Cabin page content layout */
.cabin-page-content {
  background: var(--color-linen);
}
.cabin-page-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  padding-block: 3rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .cabin-page-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Photo gallery */
.cabin-gallery {}
.cabin-gallery-hero {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 0.625rem;
  cursor: pointer;
}
.cabin-gallery-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cabin-gallery-hero:hover img { transform: scale(1.03); }

.cabin-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
@media (max-width: 599px) {
  .cabin-gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
}
.cabin-gallery-thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast), opacity var(--transition-fast);
}
.cabin-gallery-thumb.active { border-color: var(--color-amber); }
.cabin-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-fast);
}
.cabin-gallery-thumb:hover img { opacity: 0.85; }

/* Cabin specs sidebar */
.cabin-sidebar {
  position: sticky;
  top: 84px;
}

.cabin-sidebar-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-raised);
  margin-bottom: 1.25rem;
}

.cabin-sidebar-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-pine);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.cabin-sidebar-rate {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 1.25rem;
}
.cabin-sidebar-rate span {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: #7a7a7a;
}
.cabin-rate-label {
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: #7a7a7a;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.cabin-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.cabin-specs-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.4;
}
.cabin-specs-item svg {
  width: 16px; height: 16px;
  color: var(--color-forest);
  flex-shrink: 0;
  margin-top: 1px;
}
.cabin-specs-item strong {
  color: var(--color-ink);
  font-weight: 600;
}

.cabin-call-block { text-align: center; }
.cabin-call-block .call-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  margin-bottom: 0.625rem;
}
.cabin-call-note {
  font-size: 0.8125rem;
  color: #7a7a7a;
  max-width: none;
}

/* Amenities */
.cabin-amenities {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
}
.cabin-amenities h3 {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: 1rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #3a3a3a;
}
.amenity-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
  flex-shrink: 0;
}

/* Back link */
.cabin-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
  position: absolute;
  top: 84px;
  left: 1.25rem;
  z-index: 10;
}
.cabin-back-link:hover { color: var(--color-white); }
.cabin-back-link svg { width: 14px; height: 14px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img-wrap {
  position: relative;
  max-width: calc(100vw - 128px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 599px) {
  .lightbox-img-wrap { max-width: calc(100vw - 24px); }
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: opacity 160ms ease;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
}
.lightbox-img.swapping { opacity: 0; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition-fast);
  z-index: 201;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible { outline: 2px solid var(--color-amber); outline-offset: 3px; }

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
}
.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }
@media (max-width: 599px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

.lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
}

.lightbox[data-single] .lightbox-prev,
.lightbox[data-single] .lightbox-next,
.lightbox[data-single] .lightbox-counter { display: none; }

/* Zoom cursor cues on gallery */
.cabin-gallery-hero { cursor: zoom-in; }
.cabin-gallery-thumb { cursor: zoom-in; }

/* ---------- Animations ---------- */
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
