:root {
  --ink: #1f2524;
  --muted: #5f6864;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --line: #ded8cc;
  --stone: #d8d2c6;
  --sage: #596d5d;
  --forest: #223a2b;
  --taupe: #b9aa99;
  --shadow: 0 18px 50px rgba(31, 37, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.language-switch {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(31, 37, 36, 0.48);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.language-switch a:hover {
  background: rgba(255, 255, 255, 0.16);
}

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

.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(31, 37, 36, 0.84), rgba(31, 37, 36, 0.42)),
    url("assets/02-exterior-twilight.png") center / cover no-repeat;
  color: #fff;
  min-height: 74svh;
  display: flex;
  align-items: end;
  padding: clamp(28px, 5vw, 72px);
}

.hero__inner {
  max-width: 980px;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 10px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dce9d6;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.subtitle {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.facts span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 9px 12px;
  font-size: 0.92rem;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(44px, 8vw, 96px) 0 clamp(28px, 5vw, 52px);
  border-bottom: 1px solid var(--line);
}

.intro h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p:last-child {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.gallery {
  padding: clamp(28px, 6vw, 72px) 0;
}

.feature {
  margin-bottom: clamp(34px, 7vw, 86px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--stone);
}

.caption {
  padding: clamp(22px, 4vw, 44px);
}

.caption h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.caption p:last-child {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.notice {
  margin-bottom: clamp(42px, 8vw, 90px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #eee9df;
}

.notice h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.notice p {
  max-width: 940px;
  color: var(--muted);
}

.notice p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .feature {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
    align-items: stretch;
  }

  .feature:nth-child(even) {
    grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1.38fr);
  }

  .feature:nth-child(even) img {
    grid-column: 2;
  }

  .feature:nth-child(even) .caption {
    grid-column: 1;
    grid-row: 1;
  }

  .feature img {
    height: 100%;
    min-height: 520px;
  }

  .caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .language-switch {
    top: 14px;
    right: 14px;
  }

  .language-switch a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 68svh;
    padding: 24px 18px;
  }

  .facts {
    gap: 8px;
  }

  .facts span {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  main {
    width: min(100% - 24px, 1180px);
  }

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

  .feature {
    margin-bottom: 28px;
  }

  .feature img {
    aspect-ratio: 4 / 3;
  }

  .caption {
    padding: 20px;
  }
}
