/* ─────────────────────────────────────────────────────────────
   Lot 108 Seaview Road — Editorial Luxury
   Palette: warm cream, deep forest green, antique brass
   Type:    Fraunces (display serif) + Manrope (body sans)
   ───────────────────────────────────────────────────────────── */

:root {
  --cream:        #f4efe4;
  --cream-deep:   #ebe4d2;
  --paper:        #faf6ec;
  --forest:       #1f2e22;
  --forest-soft:  #2e4133;
  --moss:         #5a6e54;
  --brass:        #8b7340;
  --brass-bright: #b39558;
  --ink:          #1a1a1a;
  --ink-soft:     #4a4a4a;
  --ink-faint:    #8a8580;
  --line:         #d8d0bd;

  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body:    "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --max:     1240px;
  --max-narrow: 760px;
}

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ───── Reusable: small caps label ───── */
.section-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.section-label--center {
  display: flex;
  justify-content: center;
}
.section-label--center::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

/* ───── Reveal animation ───── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.2rem 0;
  background: rgba(244, 239, 228, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__mark {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--forest);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.site-header__nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color 0.3s ease;
  position: relative;
}
.site-header__nav a:hover { color: var(--brass); }
.site-header__cta {
  background: var(--forest);
  padding: 0.7rem 1.4rem;
  border-radius: 0;
  transition: background 0.3s ease;
}
.site-header__cta:hover { background: var(--brass) !important; color: var(--paper) !important; }

@media (max-width: 720px) {
  .site-header__nav { gap: 1rem; }
  .site-header__nav a:not(.site-header__cta) { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
}
.hero__image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-color: #2a3a2e;
  transform: scale(1.02);
  animation: heroKenBurns 20s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31,46,34,0.2) 0%, rgba(31,46,34,0.1) 40%, rgba(31,46,34,0.85) 100%),
    linear-gradient(to right, rgba(31,46,34,0.35) 0%, transparent 50%);
}
.hero__content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
  color: var(--paper);
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s ease-out forwards;
}
.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  font-variation-settings: "opsz" 144;
}
.hero__title span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__title span:nth-child(1) { animation-delay: 0.5s; }
.hero__title span:nth-child(2) { animation-delay: 0.7s; }
.hero__title span:nth-child(3) { animation-delay: 0.9s; }
.hero__title em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__meta {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease-out forwards;
}
.hero__meta .dot { color: var(--brass-bright); }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(245, 240, 230, 0.4);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease-out forwards;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--brass-bright);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(-30px); }
  50%      { transform: translateY(60px); }
}

/* ─────────────────────────────────────────────────────────────
   OPENING
   ───────────────────────────────────────────────────────────── */
.opening {
  padding: 10rem 2rem 6rem;
  background: var(--cream);
}
.opening__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}
.opening__lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--forest);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72;
}
.opening__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ─────────────────────────────────────────────────────────────
   VIDEO TOUR
   ───────────────────────────────────────────────────────────── */
.tour {
  padding: 6rem 2rem;
  background: var(--forest);
  color: var(--paper);
}
.tour__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.tour .section-label { color: var(--brass-bright); }
.tour .section-label::before,
.tour .section-label--center::after { background: var(--brass-bright); }
.tour__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 3rem;
  font-variation-settings: "opsz" 144;
}
.tour__title em { font-style: italic; color: var(--brass-bright); }

.video-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─────────────────────────────────────────────────────────────
   THE LAND
   ───────────────────────────────────────────────────────────── */
.land {
  padding: 8rem 2rem;
  background: var(--cream);
}
.land__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.land__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.land__row--reverse .land__image { order: 2; }
.land__row--reverse .land__text  { order: 1; }
.land__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-deep);
}
.map__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--cream-deep);
}
.land__text h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0 0 1.2rem;
  font-variation-settings: "opsz" 96;
}
.land__text p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}

@media (max-width: 820px) {
  .land__inner { gap: 4.5rem; }
  .land__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .land__row--reverse .land__image { order: 0; }
  .land__row--reverse .land__text  { order: 1; }
  .land__image img { aspect-ratio: 4 / 3; }
}

/* ─────────────────────────────────────────────────────────────
   LOCATION
   ───────────────────────────────────────────────────────────── */
.location {
  padding: 8rem 2rem;
  background: var(--cream-deep);
  text-align: center;
}
.location__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.location__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 4rem;
  font-variation-settings: "opsz" 144;
}
.location__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.location__cell {
  padding: 3rem 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: background 0.4s ease;
}
.location__cell:hover { background: var(--paper); }
.location__num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--forest);
  margin-bottom: 0.4rem;
  font-variation-settings: "opsz" 144;
}
.location__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 14ch;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .location__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────────────────────
   GALLERY
   ───────────────────────────────────────────────────────────── */
.gallery {
  padding: 8rem 2rem;
  background: var(--cream);
}
.gallery__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__title {
  text-align: center;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 4rem;
  font-variation-settings: "opsz" 144;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.25rem;
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  background: var(--cream-deep);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

@media (max-width: 820px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery__item--wide { grid-column: span 1; }
}

/* ─────────────────────────────────────────────────────────────
   DETAILS
   ───────────────────────────────────────────────────────────── */
.details {
  padding: 8rem 2rem;
  background: var(--paper);
}
.details__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.details__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.details__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.details__list > div {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.details__list dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  padding-top: 0.15rem;
}
.details__list dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--forest);
  font-variation-settings: "opsz" 60;
}
@media (max-width: 820px) {
  .details__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .details__list > div { grid-template-columns: 1fr; gap: 0.3rem; padding: 1rem 0; }
}

/* ─────────────────────────────────────────────────────────────
   ENQUIRY FORM
   ───────────────────────────────────────────────────────────── */
.enquire {
  padding: 8rem 2rem;
  background: var(--forest);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.enquire::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 115, 64, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(90, 110, 84, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.enquire__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.enquire .section-label { color: var(--brass-bright); }
.enquire .section-label::before,
.enquire .section-label--center::after { background: var(--brass-bright); }
.enquire__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
  font-variation-settings: "opsz" 144;
}
.enquire__intro {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(244, 239, 228, 0.75);
  max-width: 50ch;
  margin: 0 auto 3rem;
}

.form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form__field {
  display: flex;
  flex-direction: column;
}
.form__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.form__optional {
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(244, 239, 228, 0.5);
  text-transform: none;
}
.form input,
.form select,
.form textarea {
  font: inherit;
  font-size: 1rem;
  font-family: var(--body);
  padding: 0.9rem 1rem;
  background: rgba(244, 239, 228, 0.04);
  border: 1px solid rgba(244, 239, 228, 0.2);
  color: var(--paper);
  border-radius: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--brass-bright);
  background: rgba(244, 239, 228, 0.08);
}
.form textarea { resize: vertical; min-height: 100px; font-family: var(--body); }
.form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b39558' stroke-width='1.5'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}
.form select option { background: var(--forest); color: var(--paper); }

/* Honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__submit {
  margin-top: 0.6rem;
  align-self: flex-start;
  padding: 1.1rem 2.4rem;
  background: var(--brass);
  color: var(--paper);
  border: 0;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}
.form__submit:hover:not(:disabled) {
  background: var(--brass-bright);
  transform: translateY(-1px);
}
.form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form__status {
  font-size: 0.95rem;
  min-height: 1.2rem;
  margin-top: 0.6rem;
  line-height: 1.5;
}
.form__status--success {
  color: var(--brass-bright);
}
.form__status--error {
  color: #d88a7a;
}

@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
  .form__submit { align-self: stretch; text-align: center; }
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 2rem;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.footer__mark {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.footer__note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}
