:root {
  --bg: #f5f1eb;
  --surface: #ffffff;
  --surface-alt: #efe6d7;
  --ink: #1a1713;
  --muted: #625a50;
  --line: rgba(26, 23, 19, 0.12);
  --accent: #b8955f;
  --accent-deep: #876538;
  --shadow: 0 20px 60px rgba(26, 23, 19, 0.08);
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
  --ease: 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 149, 95, 0.18), transparent 32%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 100%);
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--surface);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.section {
  padding: 6.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 23, 19, 0.08);
}

.header-inner,
.footer-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.05rem;
  font-weight: 800;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--surface);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(26, 23, 19, 0.12);
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-deep);
}

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

h1,
h2 {
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.lead,
.section-head p,
.intro-strip p,
.contact-copy p,
.reserve-copy p,
.location-copy p,
.video-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 7rem;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(26, 23, 19, 0.48), rgba(26, 23, 19, 0.34)),
    url("../assets/renders/landing demo/2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid,
.video-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1fr;
  min-height: calc(100svh - 7rem);
}

.hero-copy {
  max-width: 620px;
  color: #fff7ed;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.language-switcher {
  display: inline-flex;
  padding: 0.35rem;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(26, 23, 19, 0.1);
}

.language-switcher__button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 44px;
  min-height: 38px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher__button.is-active {
  background: var(--ink);
  color: var(--surface);
}

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero .hero-trust li,
.hero .property-facts strong,
.hero .property-facts span {
  color: #ffffff;
}

.hero .eyebrow {
  color: #f0d6a8;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--ink);
}

.hero-actions,
.hero-trust,
.property-facts,
.location-points,
.bullet-list,
.amenities-grid,
.amenities-checklist,
.gallery-grid {
  margin: 0;
  padding: 0;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust li {
  padding-left: 1.15rem;
  position: relative;
  font-weight: 600;
}

.hero-trust li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-deep);
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.property-facts div,
.location-points div,
.amenity-card,
.comparison-card,
.contact-form,
.reserve-shell,
.intro-strip__inner {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(26, 23, 19, 0.08);
  box-shadow: var(--shadow);
}

.property-facts div {
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.hero .property-facts div {
  background: rgba(17, 17, 17, 0.28);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.property-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.video-frame,
.location-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-card__media img,
.gallery-item img,
.location-visual img,
.video-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.placeholder {
  border-radius: var(--radius);
  min-height: 280px;
  border: 1px dashed rgba(26, 23, 19, 0.24);
  background:
    linear-gradient(135deg, rgba(184, 149, 95, 0.16), rgba(184, 149, 95, 0.05)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.42) 16px,
      rgba(255, 255, 255, 0.18) 16px,
      rgba(255, 255, 255, 0.18) 32px
    );
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
}

.placeholder span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.placeholder strong {
  display: block;
  font-size: 1.3rem;
  margin-top: 0.4rem;
}

.placeholder--hero {
  min-height: 680px;
}

.placeholder--video,
.placeholder--map {
  min-height: 420px;
}

.placeholder--accent {
  background:
    linear-gradient(135deg, rgba(135, 101, 56, 0.24), rgba(184, 149, 95, 0.08)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.32),
      rgba(255, 255, 255, 0.32) 16px,
      rgba(255, 255, 255, 0.12) 16px,
      rgba(255, 255, 255, 0.12) 32px
    );
}

.intro-strip {
  padding-top: 0;
}

.intro-strip__inner {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
}

.comparison {
  background: linear-gradient(180deg, rgba(239, 230, 215, 0.65), transparent);
}

.location-showcase {
  padding-top: 3rem;
}

.location-showcase__head {
  max-width: 900px;
  margin-bottom: 2rem;
}

.location-showcase__figure {
  margin: 0;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 23, 19, 0.08);
  box-shadow: var(--shadow);
}

.location-showcase__figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.amenities-inline {
  padding: 3rem 0 1.8rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 149, 95, 0.22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(184, 149, 95, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(247, 242, 234, 0.96), rgba(244, 239, 231, 0.68));
}

.amenities-inline__frame {
  position: relative;
  padding: clamp(1.4rem, 2.8vw, 2rem);
  border-radius: 34px;
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(184, 149, 95, 0.18);
  box-shadow: 0 28px 80px rgba(101, 78, 42, 0.08);
  overflow: hidden;
}

.amenities-inline__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 24%, rgba(214, 183, 133, 0.18), transparent 18%),
    radial-gradient(circle at 72% 64%, rgba(214, 183, 133, 0.12), transparent 22%);
  pointer-events: none;
}

.amenities-inline__layout,
.amenities-inline__points {
  position: relative;
  z-index: 1;
}

.amenities-inline__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 1.08fr) minmax(260px, 0.84fr);
  gap: 1.5rem;
  align-items: start;
}

.amenities-inline__intro {
  display: grid;
  align-content: start;
  padding: 0.4rem 0 0;
}

.amenities-inline__head {
  max-width: 34rem;
  margin-bottom: 0;
}

.amenities-inline__head .eyebrow {
  margin-bottom: 0.9rem;
}

.amenities-inline__rule {
  display: block;
  width: 4.3rem;
  height: 2px;
  margin-bottom: 1.8rem;
  background: linear-gradient(90deg, rgba(197, 149, 74, 0.92), rgba(222, 194, 138, 0.92));
}

.amenities-inline__rule--bottom {
  margin-top: 1.7rem;
  margin-bottom: 2rem;
}

.amenities-inline__head h2 {
  max-width: 9ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #394536;
}

.amenities-inline__head p {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(73, 64, 54, 0.84);
}

.amenities-inline__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-self: start;
  padding-top: 4rem;
}

.amenity-tile {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 128px;
  padding: 1rem 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 149, 95, 0.12);
  box-shadow: 0 16px 40px rgba(83, 69, 49, 0.08);
}

.amenity-tile > *:last-child {
  min-width: 0;
}

.amenity-tile__icon {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #44553b;
  color: #f7f2e8;
}

.amenity-tile__icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-tile h3 {
  margin: 0;
  flex: 1;
  max-width: 10ch;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  text-wrap: balance;
}

.amenities-inline__visual {
  position: relative;
  margin: 0;
  padding-top: 1rem;
}

.amenities-inline__visual::before,
.amenities-inline__visual::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(200, 158, 88, 0.8);
  pointer-events: none;
}

.amenities-inline__visual::before {
  top: 0;
  right: -1rem;
  width: 9rem;
  height: 7rem;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 2rem;
}

.amenities-inline__visual::after {
  right: -1rem;
  bottom: -1rem;
  width: 10rem;
  height: 12rem;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 2rem;
}

.amenities-inline__visual-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: min(100%, 360px);
  margin-left: auto;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 251, 245, 0.96);
  box-shadow: 0 28px 70px rgba(55, 43, 28, 0.16);
}

.amenities-inline__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.amenities-inline__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.8rem;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 149, 95, 0.12);
  box-shadow: 0 18px 52px rgba(83, 69, 49, 0.07);
}

.location-point-card {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  min-height: 172px;
  padding: 2rem 1.6rem;
  background: transparent;
}

.location-point-card > div {
  flex: 1;
  min-width: 0;
}

.location-point-card + .location-point-card {
  border-left: 1px solid rgba(184, 149, 95, 0.12);
}

.location-point-card__icon {
  flex: 0 0 auto;
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8eddb, #efe0c7);
  color: #4b5a41;
}

.location-point-card__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-point-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  line-height: 1;
  color: #394536;
  white-space: nowrap;
}

.location-point-card strong::after {
  content: "";
  display: block;
  width: 3.1rem;
  height: 2px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, rgba(197, 149, 74, 0.92), rgba(222, 194, 138, 0.92));
}

.location-point-card span:last-child {
  display: block;
  max-width: 100%;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.2rem;
}

.comparison-card {
  border-radius: var(--radius);
  padding: 1.1rem;
}

.comparison-card__media {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.comparison-card__media img {
  min-height: 380px;
}

.comparison-card--copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-card--copy h3 {
  font-size: 1.55rem;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.bullet-list li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--muted);
}

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

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

.gallery-item {
  min-height: 260px;
  grid-column: span 4;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item--wide {
  min-height: 340px;
  grid-column: span 8;
}

.video {
  background: #171411;
  color: #f4ede3;
}

.video .eyebrow,
.video h2 {
  color: #f4ede3;
}

.video .video-copy p,
.video .bullet-list li {
  color: rgba(244, 237, 227, 0.74);
}

.video-frame {
  background: #000;
  position: relative;
}

.video-player {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-poster {
  aspect-ratio: 16 / 9;
}

.video-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(23, 20, 17, 0.82);
  color: #f4ede3;
  font-weight: 700;
  border: 1px solid rgba(244, 237, 227, 0.18);
}

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

.amenity-card {
  padding: 1.4rem;
  border-radius: var(--radius-sm);
}

.amenity-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.amenity-card p {
  color: var(--muted);
}

.location-points:not(.amenities-inline__points) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.location-points:not(.amenities-inline__points) div {
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.location-points:not(.amenities-inline__points) strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.location-visual img {
  min-height: 420px;
}

.contact-grid {
  align-items: start;
}

.contact-form,
.reserve-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form {
  border-radius: var(--radius);
  padding: 1.4rem;
}

.reserve-shell {
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
}

.contact-details {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.4rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

label span {
  font-size: 0.95rem;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 23, 19, 0.12);
  border-radius: 12px;
  padding: 0.95rem 1rem;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus,
select:focus,
textarea:focus,
.language-switcher__button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-footer {
  border-top: 1px solid rgba(26, 23, 19, 0.08);
  padding: 1.25rem 0;
}

.site-footer p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-cluster {
    width: 100%;
    justify-content: space-between;
    order: 3;
  }

  .site-nav {
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .hero-grid,
  .video-grid,
  .location-grid,
  .contact-grid,
  .comparison-grid,
  .reserve-shell,
  .amenities-inline__layout {
    grid-template-columns: 1fr;
  }

  .amenities-inline__frame {
    padding: 1.5rem;
  }

  .amenities-inline__grid {
    padding-top: 0;
  }

  .amenities-inline__visual {
    max-width: 32rem;
  }

  .amenities-inline__visual-frame {
    width: min(100%, 360px);
    margin-left: 0;
  }

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

  .location-point-card + .location-point-card {
    border-left: 0;
    border-top: 1px solid rgba(184, 149, 95, 0.12);
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 6;
  }

  .amenities-grid,
  .amenities-inline__grid,
  .property-facts,
  .location-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section {
    padding: 5rem 0;
  }

  .location-showcase {
    padding-top: 2rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .header-inner,
  .footer-inner {
    min-height: 72px;
    flex-wrap: wrap;
  }

  .nav-cluster {
    gap: 0.85rem;
  }

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

  .language-switcher {
    margin-inline: auto;
  }

  .hero-actions,
  .contact-form,
  .reserve-form {
    grid-template-columns: 1fr;
  }

  .amenities-grid,
  .amenities-inline__grid,
  .property-facts,
  .location-points,
  .gallery-grid,
  .comparison-card__media {
    grid-template-columns: 1fr;
  }

  .amenities-inline {
    padding: 2.25rem 0 1.2rem;
  }

  .amenities-inline__frame {
    padding: 1rem;
    border-radius: 24px;
  }

  .amenities-inline__head h2 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .amenity-tile {
    min-height: auto;
    padding: 1rem;
  }

  .amenity-tile__icon {
    width: 3.4rem;
    height: 3.4rem;
  }

  .amenities-inline__visual::before,
  .amenities-inline__visual::after {
    display: none;
  }

  .amenities-inline__visual-frame {
    width: min(100%, 320px);
    border-radius: 24px;
  }

  .location-point-card {
    min-height: auto;
    padding: 1.35rem 1.1rem;
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 1;
    min-height: 220px;
  }

  .placeholder--hero {
    min-height: 420px;
  }

}
