@charset "UTF-8";

:root {
  --cream: #f3efe5;
  --paper: #fbf8f0;
  --green: #183b32;
  --green-deep: #102a24;
  --sage: #789184;
  --ink: #1a2924;
  --muted: #66716a;
  --line: rgba(24, 59, 50, 0.18);
  --white-line: rgba(255, 255, 255, 0.28);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--sage);
  color: white;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #bdcfc5;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: white;
  color: var(--green);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.page-shell {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1320px);
  height: 104px;
  color: white;
  border-bottom: 1px solid var(--white-line);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  width: max-content;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-decoration: none;
}

.wordmark svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.desktop-nav {
  display: flex;
  gap: 42px;
  align-items: center;
}

.desktop-nav a,
.language-switch {
  position: relative;
  color: inherit;
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  justify-self: end;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, #4d7165, var(--green-deep) 68%);
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 55%;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(8, 24, 19, 0.48) 0%, rgba(8, 24, 19, 0.04) 40%, rgba(8, 24, 19, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 24, 19, 0.24), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 93px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.76);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 930px;
  margin-bottom: 66px;
  font-size: clamp(4.8rem, 10.1vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(3rem, 5.6vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.043em;
}

.hero-footer {
  display: grid;
  grid-template-columns: minmax(280px, 420px) auto;
  gap: 60px;
  align-items: end;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--white-line);
}

.hero-footer p {
  max-width: 390px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 58px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button-light {
  min-width: 270px;
  background: var(--cream);
  color: var(--green);
}

.button-light:hover {
  background: white;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 52px;
  display: flex;
  gap: 13px;
  align-items: center;
  margin: 0;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  opacity: 0.72;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue span {
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
}

.submitted-banner {
  margin-top: 24px;
  padding: 18px 24px;
  background: #dce8df;
  border-left: 3px solid var(--green);
}

.submitted-banner .eyebrow,
.submitted-banner p {
  margin-bottom: 4px;
}

.intro {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 48px;
  padding-top: 155px;
  padding-bottom: 165px;
}

.section-index,
.villa-number,
.features article > span {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.intro-heading h2 {
  max-width: 850px;
}

.intro-copy {
  align-self: end;
  padding-bottom: 7px;
}

.intro-copy > p:first-child {
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 1.02rem;
}

.signature-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection {
  padding: 135px 0 145px;
  background: var(--green);
  color: white;
}

.collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 85px;
}

.collection-heading h2 {
  max-width: 800px;
}

.collection-heading .eyebrow,
.villa-type {
  color: rgba(255, 255, 255, 0.58);
}

.collection-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.villa-list {
  padding: 0;
  border-top: 1px solid var(--white-line);
  list-style: none;
}

.villa-card {
  position: relative;
  display: grid;
  grid-template-columns: 75px minmax(240px, 0.8fr) minmax(300px, 1fr) 40px;
  gap: 35px;
  align-items: center;
  min-height: 148px;
  border-bottom: 1px solid var(--white-line);
  transition: background 180ms ease, padding 180ms ease;
}

.villa-card:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.villa-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1;
}

.villa-card p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.villa-card .villa-type {
  margin: 0 0 6px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.villa-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  font-size: 0.9rem;
}

.materiality {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.75fr);
  min-height: 780px;
  background: var(--paper);
}

.material-image-wrap {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: linear-gradient(135deg, #b7b09f, #718277);
}

.material-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-image-wrap > span {
  position: absolute;
  right: 25px;
  bottom: 30px;
  color: white;
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.material-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(48px, 7vw, 128px);
}

.material-copy h2 {
  max-width: 560px;
  margin-bottom: 48px;
}

.material-copy > p:last-child {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 130px;
  padding-bottom: 150px;
  border-left: 1px solid var(--line);
}

.features article {
  min-height: 310px;
  padding: 0 50px 20px;
  border-right: 1px solid var(--line);
}

.features article > span {
  display: block;
  margin-bottom: 90px;
}

.features h3 {
  margin-bottom: 25px;
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  line-height: 1.08;
}

.features p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact {
  padding: 145px 0;
  background: var(--green-deep);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: clamp(70px, 11vw, 170px);
}

.contact-copy {
  position: relative;
}

.contact-copy h2 {
  max-width: 720px;
  margin-bottom: 45px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-monogram {
  position: absolute;
  right: 0;
  bottom: -80px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 24rem;
  line-height: 0.7;
  pointer-events: none;
}

.form-panel {
  position: relative;
  z-index: 1;
  padding: 43px;
  background: var(--paper);
  color: var(--ink);
}

.field {
  margin-bottom: 28px;
}

.field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field label span {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline-offset: 4px;
}

.field input {
  min-height: 48px;
}

.field textarea {
  min-height: 78px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #92988f;
}

.field-error input,
.field-error textarea {
  border-color: #9f463b;
}

.field-hint,
.error-message,
.privacy-note {
  margin: 7px 0 0;
  font-size: 0.68rem;
}

.field-hint,
.privacy-note {
  color: var(--muted);
}

.error-message {
  color: #94382e;
}

.form-alert {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 2px solid #94382e;
  background: #f3dfd9;
  color: #72281f;
  font-size: 0.78rem;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 13px;
  align-items: start;
  margin: 34px 0 8px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.consent-row label {
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.5;
}

.consent-error {
  margin: 0 0 18px 31px;
}

.button-dark {
  width: 100%;
  margin-top: 19px;
  background: var(--green);
  color: white;
}

.button-dark:hover {
  background: #255244;
}

.privacy-note {
  margin-top: 12px;
  text-align: center;
}

.lead-success {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 48px;
  background: var(--green);
  border-radius: 50%;
  color: white;
}

.lead-success .eyebrow {
  margin-bottom: 14px;
}

.lead-success h3 {
  max-width: 430px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  line-height: 0.97;
}

.lead-success > p:not(.eyebrow) {
  color: var(--muted);
}

.lead-success a {
  margin-top: 35px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 55px 0;
  background: #0b201b;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  font-size: 0.59rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-wordmark {
  color: white;
}

.fiction-notice {
  max-width: 390px;
  justify-self: end;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 1080px) {
  .page-shell,
  .site-header {
    width: min(100% - 64px, 1320px);
  }

  .scroll-cue {
    display: none;
  }

  .intro {
    grid-template-columns: 50px 1.3fr 0.7fr;
    gap: 30px;
  }

  .villa-card {
    grid-template-columns: 45px minmax(220px, 0.8fr) minmax(260px, 1fr) 40px;
    gap: 24px;
  }

  .materiality {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .material-copy {
    padding-inline: 48px;
  }

  .features article {
    padding-inline: 30px;
  }
}

@media (max-width: 760px) {
  .page-shell,
  .site-header {
    width: calc(100% - 32px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 77px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .hero-image {
    object-position: 58% center;
  }

  h1 {
    max-width: 390px;
    margin-bottom: 34px;
    font-size: clamp(4rem, 20vw, 6rem);
    line-height: 0.85;
  }

  html[lang="en"] h1 {
    font-size: clamp(3.4rem, 14.5vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .hero-footer {
    display: block;
    padding-top: 18px;
  }

  .hero-footer p {
    margin-bottom: 27px;
    font-size: 0.94rem;
  }

  .button-light {
    width: 100%;
  }

  .intro {
    display: block;
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .section-index {
    display: none;
  }

  .intro-heading h2 {
    margin-bottom: 42px;
  }

  .intro-copy > p:first-child {
    margin-bottom: 32px;
  }

  .collection {
    padding: 88px 0 95px;
  }

  .collection-heading {
    display: block;
    margin-bottom: 55px;
  }

  .collection-heading h2 {
    margin-bottom: 34px;
  }

  .villa-card {
    grid-template-columns: 34px 1fr 32px;
    gap: 14px;
    min-height: 126px;
  }

  .villa-card > p {
    display: none;
  }

  .villa-card h3 {
    font-size: 2.3rem;
  }

  .villa-card:hover {
    padding-inline: 0;
    background: transparent;
  }

  .villa-mark {
    width: 32px;
    height: 32px;
  }

  .materiality {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .material-image-wrap {
    min-height: 74svh;
  }

  .material-copy {
    padding: 88px 24px 96px;
  }

  .material-copy h2 {
    margin-bottom: 34px;
  }

  .features {
    display: block;
    padding-top: 75px;
    padding-bottom: 75px;
    border-left: 0;
  }

  .features article {
    min-height: 0;
    padding: 35px 0 45px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .features article:first-child {
    border-top: 1px solid var(--line);
  }

  .features article > span {
    margin-bottom: 40px;
  }

  .contact {
    padding: 88px 0 0;
  }

  .contact-grid {
    display: block;
    width: 100%;
  }

  .contact-copy {
    width: calc(100% - 32px);
    margin-inline: auto;
    padding-bottom: 75px;
  }

  .contact-copy h2 {
    margin-bottom: 33px;
  }

  .contact-monogram {
    display: none;
  }

  .form-panel {
    padding: 39px 24px 45px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }

  .fiction-notice {
    justify-self: auto;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
