:root {
  --ink: #17211d;
  --muted: #66706a;
  --mist: #f4f5f1;
  --ivory: #fbfaf5;
  --pine: #153a2e;
  --pine-soft: #29483c;
  --stone: #d8d6cc;
  --brass: #b08a46;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 24px 80px rgba(17, 27, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px;
  transform: translateX(-50%);
  color: var(--ink);
  background: rgba(251, 250, 245, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 52px rgba(16, 24, 21, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ivory);
  background: var(--pine);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #33423b;
  font-size: 14px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 700;
}

.header-cta,
.button.primary {
  color: var(--ivory);
  background: var(--pine);
}

.button.secondary {
  color: var(--ivory);
  border-color: rgba(251, 250, 245, 0.62);
  background: rgba(251, 250, 245, 0.08);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(13, 22, 19, 0.66), rgba(13, 22, 19, 0.08) 62%),
    url("assets/airbnb-11.jpg") center / cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(13, 22, 19, 0.16), rgba(13, 22, 19, 0.42)),
    radial-gradient(circle at 18% 48%, rgba(176, 138, 70, 0.15), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 144px 0 152px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 710px;
  font-size: clamp(50px, 8vw, 104px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

p {
  line-height: 1.7;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(251, 250, 245, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.booking-card {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(620px, calc(100% - 48px));
  overflow: hidden;
  color: var(--ink);
  background: rgba(251, 250, 245, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.booking-card div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.booking-card div:last-child {
  border-right: 0;
}

.booking-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.booking-card strong {
  font-size: 17px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 34px max(24px, calc((100vw - 1120px) / 2));
  background: var(--mist);
}

.trust-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 28px;
}

.trust-strip strong {
  display: block;
  font-size: 18px;
}

.trust-strip p {
  max-width: 320px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 0 14px 22px;
  border-top: 1px solid var(--line);
  position: relative;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--brass);
  content: "•";
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.photo-stack img,
.gallery-grid img {
  height: 100%;
  object-fit: cover;
}

.photo-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.photo-stack img:last-child {
  aspect-ratio: 3 / 4;
  margin-bottom: 44px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

figure {
  margin: 0;
  background: var(--mist);
}

figure img {
  aspect-ratio: 4 / 3;
}

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

.gallery-large img {
  aspect-ratio: 4 / 5;
}

figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.reviews {
  width: 100%;
  padding-right: max(16px, calc((100vw - 1120px) / 2));
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  background: var(--pine);
  color: var(--ivory);
}

.reviews .section-heading p {
  color: rgba(251, 250, 245, 0.72);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(251, 250, 245, 0.18);
  background: rgba(251, 250, 245, 0.06);
}

.review-grid span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-grid p {
  margin: 44px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.22;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.amenity-grid div {
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 245, 241, 0.58);
  font-weight: 700;
}

.location {
  width: 100%;
  padding-right: max(16px, calc((100vw - 1120px) / 2));
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(rgba(23, 33, 29, 0.72), rgba(23, 33, 29, 0.72)),
    url("assets/airbnb-13.jpg") center / cover;
  color: var(--ivory);
}

.location-panel {
  max-width: 680px;
  padding: 72px 0;
}

.location-panel p {
  color: rgba(251, 250, 245, 0.78);
  font-size: 17px;
}

.nearby-list {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.nearby-list span {
  padding: 10px 14px;
  border: 1px solid rgba(251, 250, 245, 0.28);
  background: rgba(251, 250, 245, 0.08);
}

.final-cta {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 30px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(16px, calc((100vw - 1120px) / 2));
  color: rgba(251, 250, 245, 0.76);
  background: #101713;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--ivory);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 250px;
  }

  .booking-card,
  .trust-strip,
  .split,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    right: 16px;
    bottom: 20px;
    left: 16px;
    width: auto;
  }

  .booking-card div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-card div:last-child {
    border-bottom: 0;
  }

  .trust-strip div {
    padding: 26px 16px;
  }

  .section {
    padding: 72px 0;
  }

  .split {
    gap: 38px;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-cta {
    min-height: 40px;
    max-width: 132px;
    padding: 0 12px;
    font-size: 12px;
    text-align: center;
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .photo-stack,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack img:last-child {
    margin-bottom: 0;
  }

  .gallery-large {
    grid-row: auto;
  }

  .review-grid p {
    margin-top: 28px;
    font-size: 24px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
