:root {
  color-scheme: light;
  --ink: #18201f;
  --muted: #64706c;
  --paper: #f5f1ea;
  --surface: #ffffff;
  --line: #d9d2c6;
  --forest: #254f46;
  --copper: #b56b3d;
  --shadow: 0 24px 70px rgba(24, 32, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header,
.brand,
.site-nav,
.hero-actions,
.hero-specs,
.features,
.site-footer {
  display: flex;
  align-items: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand {
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--forest);
  background: #fff;
  border-radius: 8px;
  font-weight: 900;
}

.brand span:last-child {
  display: grid;
  line-height: 1.2;
}

.brand small,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.36) 42%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto 170px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c19f;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.32;
}

.hero-content > p {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.request-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary,
.request-form button {
  color: #fff;
  background: var(--forest);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-specs {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  left: clamp(20px, 5vw, 72px);
  justify-content: space-between;
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-specs div {
  flex: 1;
  min-width: 0;
  padding: 18px clamp(16px, 3vw, 28px);
  background: rgba(14, 24, 22, 0.46);
}

.hero-specs dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.hero-specs dd {
  margin: 2px 0 0;
  font-weight: 900;
}

.intro,
.features,
.gallery,
.plans,
.location,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(62px, 9vw, 112px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.intro > p,
.location p,
.contact p,
.features p {
  color: var(--muted);
}

.features {
  align-items: stretch;
  gap: 18px;
  padding-top: 0;
}

.features article,
.plan-card,
.request-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(24, 32, 31, 0.08);
}

.features article {
  flex: 1;
  padding: clamp(24px, 4vw, 36px);
}

.features span,
.plan-card > p,
.gallery figcaption span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.gallery figure {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  color: #fff;
  background: rgba(16, 25, 23, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.gallery figcaption strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.plans {
  border-top: 1px solid var(--line);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.plan-card {
  padding: clamp(24px, 4vw, 36px);
}

.plan-card dl {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.plan-card dl div,
.access-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.plan-card dt {
  color: var(--muted);
}

.plan-card dd {
  margin: 0;
  font-weight: 900;
}

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.access-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-list li {
  align-items: center;
  padding: 18px 0 0;
  color: var(--muted);
}

.access-list span {
  min-width: 78px;
  color: var(--forest);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.request-form input,
.request-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: #fff;
  background: #17201e;
}

@media (max-width: 880px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: absolute;
    padding-bottom: 54px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    margin-bottom: 220px;
  }

  .hero-specs,
  .intro,
  .features,
  .gallery,
  .plan-grid,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .features,
  .hero-specs {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-specs {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .hero-specs div {
    padding: 12px 16px;
  }

  .gallery figure {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    gap: 10px 16px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-bottom: 238px;
  }

  .hero-actions .button {
    width: 100%;
  }
}
