:root {
  color-scheme: dark;
  --ash: #0d1110;
  --slate: #151a19;
  --slate-2: #202825;
  --stone: #303a36;
  --line: rgba(218, 202, 172, 0.18);
  --text: #f2eadb;
  --muted: #b7aa95;
  --dim: #847866;
  --walnut: #3b2417;
  --copper: #c07a3e;
  --bronze: #d29a56;
  --amber: #e0b568;
  --water: #9fbfc0;
  --fern: #6f8f5d;
  --moss: #9a9b57;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --script:
    "Snell Roundhand", "Apple Chancery", "Brush Script MT", "Segoe Script",
    cursive;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 8%, rgba(192, 122, 62, 0.14), transparent 25rem),
    linear-gradient(180deg, #0a0d0c 0%, var(--ash) 42%, #11100e 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(105deg, transparent 0 18%, rgba(255, 255, 255, 0.05) 18.4% 18.7%, transparent 19%),
    linear-gradient(15deg, transparent 0 29%, rgba(255, 255, 255, 0.04) 29.2% 29.5%, transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 280px 190px, 360px 240px, 92px 92px;
}

body::after {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(980px, 72vw);
  height: min(670px, 56vw);
  content: "";
  pointer-events: none;
  background: url("./assets/blank-slate-otter-bronze.png") center / contain no-repeat;
  opacity: 0.12;
  filter: blur(0.2px) drop-shadow(0 28px 62px rgba(0, 0, 0, 0.28));
  transform: translate(-50%, -50%);
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 54px;
  height: 38px;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-name {
  color: var(--bronze);
  font-family: var(--script);
  font-size: 1.72rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a,
.nav-cta {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--line);
  color: var(--text);
  outline: none;
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  border-color: rgba(224, 181, 104, 0.34);
  color: var(--text);
  background: rgba(192, 122, 62, 0.16);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 36px 0 48px;
}

.hero::before {
  position: absolute;
  top: 6px;
  left: -28px;
  width: 210px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--bronze), rgba(159, 191, 192, 0.24), transparent);
  opacity: 0.72;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 11ch;
  color: var(--text);
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  color: var(--bronze);
  font-family: var(--script);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 0.95;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.75;
}

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

.button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.button.primary,
.inquiry-form button {
  border-color: rgba(210, 154, 86, 0.72);
  background: linear-gradient(180deg, rgba(210, 154, 86, 0.95), rgba(91, 50, 27, 0.96));
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
}

.hero-feature {
  position: relative;
  z-index: 2;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #101413;
}

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

.hero-feature::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 38%, rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.68));
}

.hero-feature::after {
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 2;
  width: 92px;
  height: 92px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 90%, rgba(154, 155, 87, 0.86) 0 7px, transparent 8px),
    radial-gradient(ellipse at 50% 100%, rgba(111, 143, 93, 0.95) 0 34%, transparent 36%);
  filter: blur(0.1px);
  opacity: 0.8;
}

.water-wall {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 28%;
  height: 100%;
  border-left: 1px solid rgba(159, 191, 192, 0.24);
  background:
    linear-gradient(180deg, rgba(159, 191, 192, 0.2), rgba(159, 191, 192, 0.03)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(159, 191, 192, 0.18), rgba(255, 255, 255, 0.04));
}

.water-wall span {
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(217, 244, 242, 0.72), transparent);
  animation: waterFall 2.8s linear infinite;
}

.water-wall span:nth-child(1) {
  left: 24%;
}

.water-wall span:nth-child(2) {
  left: 52%;
  animation-delay: -0.8s;
}

.water-wall span:nth-child(3) {
  left: 76%;
  animation-delay: -1.4s;
}

@keyframes waterFall {
  from {
    transform: translateY(-18%);
  }
  to {
    transform: translateY(18%);
  }
}

.material-panel {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(9, 12, 11, 0.76);
  backdrop-filter: blur(14px);
}

.material-panel p {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

dt {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.section > p,
.location-band > p,
.feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.intro {
  align-items: start;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 34px 0 94px;
}

.image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.62) contrast(1.2);
}

.image-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-copy {
  max-width: 620px;
}

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

.texture-list li {
  border-left: 2px solid var(--bronze);
  padding-left: 14px;
  color: var(--text);
  font-weight: 750;
}

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

.room-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--slate);
}

.room-grid span {
  color: var(--water);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.room-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  margin: 10px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(159, 191, 192, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(51, 34, 22, 0.84), rgba(18, 24, 22, 0.94));
}

.contact {
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.inquiry-form label:nth-child(3),
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(12, 17, 16, 0.92);
  font: inherit;
}

.inquiry-form select {
  color-scheme: dark;
  accent-color: var(--bronze);
}

.inquiry-form input:focus,
.inquiry-form select:focus {
  border-color: rgba(210, 154, 86, 0.72);
  outline: none;
  box-shadow: 0 0 0 3px rgba(210, 154, 86, 0.16);
}

.inquiry-form select option {
  color: var(--text);
  background: #151a19;
}

.inquiry-form select option:checked {
  color: #0d1110;
  background: var(--bronze);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 44px;
  color: var(--dim);
}

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

  .nav {
    justify-content: space-between;
  }

  .nav-cta {
    justify-self: start;
  }

  .brand-mark {
    width: 48px;
    height: 34px;
  }

  .hero,
  .section,
  .split-feature,
  .location-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-feature {
    min-height: 430px;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.65rem;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .button {
    flex: 1;
    padding-inline: 12px;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta {
    display: none;
  }

  .hero-feature {
    min-height: 200px;
  }

  body::after {
    top: 50%;
    left: 50%;
    width: 560px;
    height: 430px;
    opacity: 0.075;
  }

  .material-panel {
    display: none;
  }

  dl,
  .inquiry-form {
    grid-template-columns: 1fr;
  }
}
