:root {
  --charcoal: #171412;
  --espresso: #31251f;
  --cocoa: #6f5749;
  --camel: #b89478;
  --oat: #ede4d8;
  --linen: #fbf7f0;
  --cream: #fffaf3;
  --sage: #8b907b;
  --line: rgba(255, 250, 243, 0.2);
  --dark-line: rgba(49, 37, 31, 0.15);
  --container: min(100% - 44px, 1320px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--linen);
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--espresso);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.is-loading {
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, #fffaf3, #eadfD2);
  color: var(--espresso);
  transition: opacity 650ms ease, visibility 650ms ease;
}

body:not(.is-loading) .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  width: min(520px, 100%);
  text-align: center;
}

.loader h2 {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.94;
  font-weight: 600;
}

.loader-track {
  height: 2px;
  overflow: hidden;
  background: rgba(49, 37, 31, 0.14);
}

.loader-track span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--camel);
  transition: width 180ms ease;
}

.loader-status {
  margin: 16px 0 0;
  color: rgba(49, 37, 31, 0.58);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 0;
  right: 0;
  width: var(--container);
  min-height: 64px;
  margin: 0 auto;
  padding: 0 12px 0 18px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  border: 1px solid rgba(49, 37, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.66);
  color: var(--espresso);
  box-shadow: 0 18px 54px rgba(49, 37, 31, 0.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition:
    opacity 420ms ease,
    transform 520ms var(--ease),
    background 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-solid {
  background: rgba(255, 250, 243, 0.9);
  border-color: rgba(49, 37, 31, 0.14);
  box-shadow: 0 18px 60px rgba(49, 37, 31, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand span {
  display: inline-flex;
  line-height: 1;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

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

nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: rgba(49, 37, 31, 0.78);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(49, 37, 31, 0.18);
  transition: transform 220ms var(--ease), background 220ms ease, box-shadow 220ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--camel);
  box-shadow: 0 14px 32px rgba(49, 37, 31, 0.2);
}

.experience {
  position: relative;
  min-height: 820vh;
  background: linear-gradient(180deg, #fffaf3, #f2e7dc);
}

.visual-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background: var(--linen);
}

.scene-video,
.frame-canvas,
.video-poster,
.visual-shade,
.side-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-video {
  z-index: -5;
  object-fit: cover;
  object-position: center 48%;
  background: var(--linen);
  transform: scale(1.005);
}

.frame-canvas {
  z-index: -4;
  opacity: 0;
  background: var(--linen);
  image-rendering: auto;
  transition: opacity 420ms ease;
}

body.frames-ready .frame-canvas {
  opacity: 1;
}

body.frames-ready .scene-video {
  opacity: 0;
}

body.video-scrub .frame-canvas {
  opacity: 0 !important;
}

body.video-scrub .scene-video {
  opacity: 1 !important;
}

.video-poster {
  z-index: -7;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.86), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(237, 228, 216, 0.9), transparent 34%),
    linear-gradient(135deg, #fffaf3, #eadbcb);
}

.visual-shade {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.16), rgba(255, 250, 243, 0) 38%, rgba(255, 250, 243, 0.16)),
    radial-gradient(circle at 86% 18%, rgba(255, 250, 243, 0.28), transparent 30%);
  pointer-events: none;
}

.side-overlay {
  z-index: -2;
  top: 0;
  bottom: 0;
  width: min(50vw, 760px);
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 520ms ease, transform 720ms var(--ease), background 520ms ease;
}

.visual-stage.has-intro-copy .side-overlay,
.visual-stage.has-scene-copy .side-overlay {
  opacity: 1;
  transform: translateX(0);
}

.visual-stage[data-overlay-side="right"] .side-overlay {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, rgba(255, 250, 243, 0.54), rgba(255, 250, 243, 0.3) 42%, rgba(255, 250, 243, 0.08) 74%, transparent 100%);
}

.visual-stage[data-overlay-side="left"] .side-overlay {
  left: 0;
  right: auto;
  transform: translateX(-18px);
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.54), rgba(255, 250, 243, 0.3) 42%, rgba(255, 250, 243, 0.08) 74%, transparent 100%);
}

.visual-stage.has-intro-copy[data-overlay-side="left"] .side-overlay,
.visual-stage.has-scene-copy[data-overlay-side="left"] .side-overlay {
  transform: translateX(0);
}

.intro-copy {
  position: absolute;
  left: max(22px, calc((100vw - 1320px) / 2));
  right: auto;
  top: 108px;
  bottom: auto;
  width: min(440px, calc(100vw - 44px));
  color: var(--espresso);
  padding: 0;
  text-shadow: 0 2px 18px rgba(255, 250, 243, 0.72);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms var(--ease);
}

.intro-copy.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.eyebrow,
.scene-count {
  margin: 0 0 14px;
  color: var(--camel);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sage);
}

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

h1 {
  max-width: 390px;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0;
}

.intro-copy p:last-child {
  max-width: 360px;
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  font-size: 16px;
}

.scene-copy {
  position: absolute;
  top: 112px;
  right: max(22px, calc((100vw - 1320px) / 2));
  width: min(400px, calc(100vw - 44px));
  color: var(--espresso);
  padding: 0;
  text-shadow: none;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity 520ms ease, transform 620ms var(--ease);
}

.scene-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scene-copy h2 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: 0;
}

.scene-copy p:not(.scene-count) {
  margin-bottom: 22px;
  color: rgba(49, 37, 31, 0.72);
  font-size: 16px;
}

.scene-copy[data-copy="0"] {
  top: 112px;
  left: max(42px, calc((100vw - 1320px) / 2 + 24px));
  right: auto;
}

.scene-copy[data-copy="1"] {
  top: 32%;
  left: auto;
  right: max(42px, calc((100vw - 1320px) / 2 + 24px));
}

.scene-copy[data-copy="2"] {
  top: auto;
  left: max(42px, calc((100vw - 1320px) / 2 + 24px));
  right: auto;
  bottom: 96px;
}

.scene-copy[data-copy="3"] {
  top: 24%;
  left: auto;
  right: max(42px, calc((100vw - 1320px) / 2 + 24px));
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 148, 120, 0.35);
  border-radius: 999px;
  padding: 0 22px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--camel);
  color: var(--cream);
}

.button.light {
  background: var(--cream);
  color: var(--espresso);
}

.progress {
  position: absolute;
  left: max(22px, calc((100vw - 1320px) / 2));
  right: max(22px, calc((100vw - 1320px) / 2));
  bottom: 28px;
  height: 2px;
  overflow: hidden;
  background: rgba(49, 37, 31, 0.16);
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--camel);
}

.scene-steps {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-step {
  height: 190vh;
}

.redesign-html-frame {
  position: relative;
  min-height: 0;
  background: #fafaf8;
}

.redesign-html-frame iframe {
  display: block;
  width: 100%;
  min-height: 0;
  border: 0;
  background: #fafaf8;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 250, 243, 0.5), transparent 30%),
    rgba(23, 20, 18, 0.38);
  backdrop-filter: blur(14px);
}

.quote-dialog {
  position: relative;
  width: min(1060px, 100%);
  max-height: min(92svh, 860px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(24px, 4.4vw, 58px);
  border: 1px solid rgba(49, 37, 31, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(238, 226, 212, 0.92)),
    var(--cream);
  box-shadow: 0 34px 120px rgba(23, 20, 18, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 360ms var(--ease);
}

.quote-modal.is-open .quote-dialog {
  transform: translateY(0) scale(1);
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(49, 37, 31, 0.15);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  color: rgba(49, 37, 31, 0.76);
  font: inherit;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-intro {
  padding-top: 28px;
}

.quote-intro h2 {
  max-width: 390px;
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.92;
  font-weight: 600;
}

.quote-intro p:last-child {
  max-width: 390px;
  color: rgba(49, 37, 31, 0.68);
  font-size: 16px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-fields {
  display: grid;
  gap: 14px;
}

.quote-fields-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field span {
  color: rgba(49, 37, 31, 0.66);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(49, 37, 31, 0.15);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.74);
  color: var(--espresso);
  padding: 13px 15px;
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(184, 148, 120, 0.68);
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 0 0 4px rgba(184, 148, 120, 0.14);
}

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

.quote-submit {
  min-height: 52px;
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--espresso);
  color: var(--cream);
  font: inherit;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.quote-submit:hover {
  transform: translateY(-2px);
  background: var(--camel);
}

.quote-note {
  margin: 0;
  color: rgba(49, 37, 31, 0.56);
  font-size: 13px;
}

body.quote-open {
  overflow: hidden;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(86px, 11vw, 150px) 0;
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section h2,
.visit h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.collection-grid article {
  min-height: 280px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  background: #f3eadf;
}

.collection-grid span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-grid h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1;
}

.collection-grid p {
  margin: 0;
  color: rgba(49, 37, 31, 0.68);
}

.visit {
  min-height: 86svh;
  padding: clamp(92px, 12vw, 160px) max(22px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 820px) auto;
  align-items: end;
  gap: 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 250, 243, 0.18), transparent 28%),
    linear-gradient(135deg, #2d241f, #171412);
  color: var(--cream);
}

.visit p:last-child {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 250, 243, 0.74);
  font-size: 18px;
}

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

  nav {
    display: none;
  }

  .visual-shade {
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.2), rgba(255, 250, 243, 0.02) 36%, rgba(255, 250, 243, 0.36));
  }

  .intro-copy {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 108px;
    width: auto;
  }

  .scene-copy {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 74px;
    width: auto;
  }

  .scene-copy[data-copy] {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 74px;
  }

  .collection-grid,
  .visit {
    grid-template-columns: 1fr;
  }

  .quote-dialog {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    padding-top: 22px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1320px);
  }

  .site-header {
    min-height: 58px;
    padding-left: 14px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
  }

  .visual-stage {
    min-height: 700px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .scene-copy h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .scene-copy p:not(.scene-count),
  .intro-copy p:last-child,
  .visit p:last-child {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .quote-fields-two {
    grid-template-columns: 1fr;
  }

  .quote-dialog {
    border-radius: 22px;
  }

  .quote-submit {
    width: 100%;
  }

  .collection-grid article {
    min-height: 220px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

.section {
  width: 100%;
  margin: 0;
  padding: clamp(92px, 11vw, 158px) 0;
  background: var(--linen);
}

.section-inner,
.footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.estate-intro {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 250, 243, 0.86), transparent 32%),
    linear-gradient(180deg, #fffaf3, #eee2d5);
}

.intro-grid,
.split-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--camel);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  max-width: 860px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--dark-line);
}

.feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--dark-line);
}

.feature strong {
  color: var(--camel);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.feature p,
.copy-stack p,
.lede {
  margin: 0;
  color: rgba(49, 37, 31, 0.68);
  font-size: clamp(16px, 1.4vw, 19px);
}

.details-band {
  background:
    linear-gradient(135deg, rgba(49, 37, 31, 0.96), rgba(23, 20, 18, 0.98)),
    radial-gradient(circle at 16% 18%, rgba(184, 148, 120, 0.2), transparent 28%);
  color: var(--cream);
}

.details-band .section-kicker,
.details-band .feature strong {
  color: #d4a982;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.16);
  background: rgba(255, 250, 243, 0.16);
}

.detail-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  background: rgba(255, 250, 243, 0.06);
}

.detail-card span {
  color: rgba(255, 250, 243, 0.66);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.9;
  font-weight: 600;
}

.image-frame {
  min-height: clamp(420px, 58vw, 720px);
  background:
    linear-gradient(180deg, rgba(23, 20, 18, 0.04), rgba(23, 20, 18, 0.2)),
    radial-gradient(circle at 24% 24%, rgba(255, 250, 243, 0.72), transparent 28%),
    linear-gradient(135deg, #d7c2ad, #8d7a68 52%, #2f2925);
}

.copy-stack {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: clamp(420px, 58vw, 720px);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.amenity {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 250, 243, 0.56);
  color: rgba(49, 37, 31, 0.78);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amenity svg {
  width: 18px;
  height: 18px;
  color: var(--camel);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.9fr;
  gap: 14px;
}

.gallery-tile {
  min-height: clamp(260px, 34vw, 460px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44)),
    linear-gradient(135deg, #d8c7b5, #75675c);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 250, 243, 0.62), transparent 26%),
    linear-gradient(135deg, transparent, rgba(23, 20, 18, 0.42));
}

.tile-2 {
  transform: translateY(28px);
}

.tile-3 {
  transform: translateY(-18px);
}

.gallery-tile span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 250, 243, 0.78), transparent 28%),
    linear-gradient(135deg, #efe3d5, #d8c7b5);
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 250, 243, 0.64);
  border: 1px solid rgba(49, 37, 31, 0.12);
  box-shadow: 0 28px 80px rgba(49, 37, 31, 0.12);
  backdrop-filter: blur(18px);
}

.contact-panel h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(49, 37, 31, 0.68);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(49, 37, 31, 0.16);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.7);
  color: var(--espresso);
  padding: 13px 14px;
  outline: none;
  font: inherit;
}

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

.site-footer {
  padding: 30px 0;
  background: var(--charcoal);
  color: rgba(255, 250, 243, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-link {
  color: var(--cream);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .intro-grid,
  .split-section,
  .contact-layout,
  .details-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .tile-2,
  .tile-3 {
    transform: none;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 78px 0;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-card {
    min-height: 150px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
