:root {
  --bg: #f4f0ea;
  --panel: #fdfaf5;
  --white: #ffffff;
  --ink: #1f2a1d;
  --muted: #5a6056;
  --sage: #75886f;
  --sage-dark: #536552;
  --gold: #d8b77d;
  --sand: #e7dcc4;
  --stone: #d9d0bf;
  --shadow: rgba(26, 30, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}

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

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

h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 240, 234, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 42, 29, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: var(--white);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 2px;
  background: var(--sage-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--sage-dark);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(83, 101, 82, 0.18);
}

.button-ghost {
  background: transparent;
  border-color: rgba(31, 42, 29, 0.2);
  color: var(--ink);
}

.button-secondary {
  background: transparent;
  border-color: rgba(31, 42, 29, 0.2);
  color: var(--ink);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-dark);
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(3.3rem, 7vw, 6rem);
}

.lead {
  font-size: 1.08rem;
  max-width: 620px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.instagram-callout a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.instagram-callout img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero-visual {
  position: relative;
}

.hero-photo,
.destination-image,
.feature-photo,
.bio-photo {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 30px 60px var(--shadow);
}

.photo-one {
  min-height: 620px;
  background-image: linear-gradient(rgba(31, 42, 29, 0.2), rgba(31, 42, 29, 0.2)), url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.hero-card {
  position: absolute;
  left: -1.4rem;
  bottom: 2rem;
  width: min(260px, 70%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(31, 42, 29, 0.08);
  border-radius: 1.25rem;
  padding: 1rem 1.2rem;
  display: grid;
  gap: 0.2rem;
  box-shadow: 0 20px 40px rgba(31, 42, 29, 0.09);
}

.hero-card strong {
  font-size: 1rem;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.narrow h2,
.section-heading h2,
.split-layout h2,
.bio-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.destination-card,
.review-card,
.spec-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 42, 29, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(31, 42, 29, 0.05);
}

.info-card {
  padding: 1.6rem 1.4rem;
}

.card-icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-band {
  background: linear-gradient(180deg, rgba(232, 221, 196, 0.25), rgba(255, 255, 255, 0.2));
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink);
  display: grid;
  gap: 0.9rem;
  font-weight: 600;
}

.destination-card {
  overflow: hidden;
}

.destination-image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.image-keywest {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.image-orlando {
  background-image: url("https://images.unsplash.com/photo-1473448912268-2022ce9509d8?auto=format&fit=crop&w=900&q=80");
}

.image-poconos {
  background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=900&q=80");
}

.image-cape {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.destination-copy {
  padding: 1.3rem 1.2rem 1.5rem;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero-compact {
  padding-top: 3rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.bio-photo-wrap {
  max-width: 520px;
}

.bio-photo {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.airstream-hero .hero-grid {
  align-items: center;
}

.feature-photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.spec-card {
  padding: 1.7rem 1.4rem;
}

.spec-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.review-card {
  padding: 1.5rem;
}

.review-header {
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-dark);
}

.amenities-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  border-top: 1px solid rgba(31, 42, 29, 0.08);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-layout,
  .bio-layout,
  .three-up,
  .four-up,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 2rem;
  }

  .photo-one {
    min-height: 480px;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 560px) {
  .button,
  .button-ghost,
  .button-secondary {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .site-header {
    position: static;
  }
}
