/* ===================================================
   HAVEN HOMES — Editorial luxury styling
   =================================================== */

:root {
  --cream: #f5f1ea;
  --cream-deep: #ebe4d6;
  --paper: #faf8f4;
  --ink: #0e1e2b;
  --ink-soft: #2a3a48;
  --muted: #6b7280;
  --line: #e3dcce;
  --gold: #b08d57;
  --gold-deep: #8e6f3f;
  --sage: #7a8c6e;
  --shadow-soft: 0 24px 60px -20px rgba(14, 30, 43, 0.18);
  --shadow-lift: 0 40px 100px -30px rgba(14, 30, 43, 0.35);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.serif-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: var(--gold); }
.lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 38ch;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--pad);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}
.nav.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(227, 220, 206, 0.5);
  padding: 0.75rem var(--pad);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: var(--serif);
  transition: color 0.3s;
}
.nav.scrolled .nav__logo { color: var(--ink); }
.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.logo-word {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.nav__links {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--ink-soft); }
.nav__cta {
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.nav__cta:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.nav.scrolled .nav__cta {
  border-color: var(--ink);
  color: var(--ink);
}
.nav.scrolled .nav__cta:hover {
  background: var(--ink);
  color: #fff;
}
.nav__burger { display: none; width: 28px; height: 28px; flex-direction: column; gap: 6px; justify-content: center; }
.nav__burger span { display: block; height: 1px; background: #fff; transition: background 0.3s; }
.nav.scrolled .nav__burger span { background: var(--ink); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) clamp(2rem, 6vw, 4rem);
  color: #fff;
  overflow: hidden;
}
.hero__media,
.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__media img {
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,30,43,0.45) 0%, rgba(14,30,43,0.15) 35%, rgba(14,30,43,0.85) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.hero__sub {
  margin: 1.5rem 0 2.5rem;
  max-width: 56ch;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: rise 1s 0.4s cubic-bezier(.2,.8,.2,1) backwards;
}
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.hero__scroll span {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLine 2.4s cubic-bezier(.6,.05,.4,.95) infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}
.hero__scroll p {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ============ SEARCH BAR ============ */
.search {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(140px, 1fr) auto minmax(140px, 1fr) auto minmax(140px, 1fr) auto;
  align-items: center;
  gap: 0;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45);
  max-width: 980px;
  color: var(--ink);
  animation: rise 1s 0.4s cubic-bezier(.2,.8,.2,1) backwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.search__field {
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.search__field label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.search__field input,
.search__field select {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0;
}
.search__field input::-webkit-calendar-picker-indicator { opacity: 0.4; cursor: pointer; }
.search__divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}
.search__submit {
  background: var(--ink);
  color: #fff;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
  margin-left: 0.5rem;
  border-radius: 2px;
}
.search__submit:hover { background: var(--gold); }
.search__submit svg { stroke: currentColor; }

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem var(--pad);
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.trust__stat strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}
.trust__stat span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
}
.trust__rule {
  width: 1px;
  height: 40px;
  background: rgba(245, 241, 234, 0.18);
}

/* ============ INTRO ============ */
.intro {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--paper);
}
.intro__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.intro__copy .lede { margin-bottom: 2rem; max-width: 42ch; }
.intro__visual {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.intro__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1s ease;
}
.intro__visual:hover img { transform: scale(1.04); }
.intro__caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: rgba(250, 248, 244, 0.95);
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--lg { padding: 1.15rem 2.4rem; font-size: 0.82rem; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--gold); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); }
.btn--ghost { color: var(--ink); border-color: var(--ink); padding-left: 0; padding-right: 0; border-left: 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--ink); border-radius: 0; }
.btn--ghost:hover { color: var(--gold); border-bottom-color: var(--gold); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ============ COLLECTION ============ */
.collection {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--cream);
}
.section-head {
  max-width: var(--max);
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head--light { color: #fff; }
.section-head--light .eyebrow { color: var(--gold); }
.section-sub {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.properties {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}
.property {
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s;
  border: 1px solid transparent;
}
.property:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.property__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.property__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.property:hover .property__media img { transform: scale(1.08); }
.property__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  border-radius: 2px;
}
.property__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.property__location {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.property h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.property__desc {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}
.property__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.property__meta li {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.3rem 0.7rem;
  background: var(--cream-deep);
  border-radius: 2px;
}
.property__link {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.property__link:hover { color: var(--gold); border-bottom-color: var(--gold); gap: 0.5rem; }

/* Featured property — hero card */
.property--featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: var(--paper);
  align-items: stretch;
}
.property--featured .property__media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 480px;
}
.property--featured .property__body {
  padding: clamp(2rem, 4vw, 3.5rem);
  justify-content: center;
}
.property--featured h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.property--featured .property__desc { font-size: 1.05rem; }
.property--featured .btn { margin-top: 1rem; align-self: flex-start; }

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.collection__footer {
  text-align: center;
  margin-top: 4rem;
}

/* ============ EXPERIENCE / AMENITIES ============ */
.experience {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.experience__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(100%);
}
.experience__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem 3rem;
  margin-top: 2rem;
}
.amenity {
  padding: 2rem 0;
  border-top: 1px solid rgba(245, 241, 234, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.amenity__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
}
.amenity__icon svg { width: 100%; height: 100%; }
.amenity h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.amenity p {
  font-size: 0.95rem;
  color: rgba(245, 241, 234, 0.72);
  line-height: 1.65;
}

/* ============ DESTINATION ============ */
.destination {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--paper);
}
.destination__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.destination__copy .lede { margin: 0 0 2rem; }
.destination__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.destination__list li {
  font-size: 1rem;
  color: var(--ink-soft);
  padding-left: 1.5rem;
  position: relative;
}
.destination__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.destination__list strong {
  font-weight: 600;
  color: var(--ink);
  margin-right: 0.4rem;
}
.destination__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 540px;
}
.destination__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.destination__img--1 { grid-row: 1 / span 2; }
.destination__img--2 { transform: translateY(-2rem); }
.destination__img--3 { transform: translateY(2rem); }

/* ============ DESTINATION REVERSE LAYOUT ============ */
.destination--alt { background: var(--cream); }
.destination__grid--reverse .destination__copy { order: 2; }
.destination__grid--reverse .destination__media { order: 1; }
@media (max-width: 980px) {
  .destination__grid--reverse .destination__copy { order: 1; }
  .destination__grid--reverse .destination__media { order: 2; }
}

/* ============ BOOK / EMBEDDED ENGINE ============ */
.book {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--paper);
}
.book__frame {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}
.book__toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.book__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.book__dot:nth-child(1) { background: #ff6056; }
.book__dot:nth-child(2) { background: #ffbd2e; }
.book__dot:nth-child(3) { background: #27c93f; }
.book__url {
  margin-left: 0.75rem;
  color: var(--muted);
  font-family: 'Inter', monospace;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.7);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  flex: 1;
  max-width: 340px;
}
.book__open {
  margin-left: auto;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.book__open:hover { background: var(--ink); color: #fff; }
.book__frame iframe {
  width: 100%;
  height: 880px;
  border: 0;
  display: block;
  background: #fff;
}
@media (max-width: 768px) {
  .book__frame iframe { height: 720px; }
  .book__url { display: none; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--cream);
}
.testimonials__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.testimonials .eyebrow { text-align: center; margin-bottom: 3rem; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.quote {
  padding: 2.5rem;
  background: var(--paper);
  border-left: 2px solid var(--gold);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.quote figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ============ JOURNAL ============ */
.journal {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--paper);
}
.journal__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.journal__card {
  cursor: pointer;
  transition: transform 0.4s;
}
.journal__card:hover { transform: translateY(-4px); }
.journal__media {
  aspect-ratio: 5/4;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.journal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.journal__card:hover .journal__media img { transform: scale(1.06); }
.journal__meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.journal__card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background:
    linear-gradient(rgba(14,30,43,0.78), rgba(14,30,43,0.78)),
    url('https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=2000&q=85') center/cover;
  color: #fff;
  text-align: center;
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta .serif-h { color: #fff; margin-bottom: 1.25rem; }
.cta__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.7);
  padding: 5rem var(--pad) 2rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 234, 0.12);
}
.footer__brand p {
  margin-top: 1rem;
  font-size: 0.92rem;
  max-width: 32ch;
  line-height: 1.6;
}
.nav__logo--footer { color: #fff; margin-bottom: 0.5rem; }
.footer h5 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer a {
  font-size: 0.92rem;
  transition: color 0.3s;
}
.footer a:hover { color: #fff; }
.footer__base {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(245, 241, 234, 0.45);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .search {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .search__divider { display: none; }
  .search__field { border-bottom: 1px solid var(--line); }
  .search__field:nth-child(odd) { border-right: 1px solid var(--line); }
  .search__submit {
    grid-column: 1 / -1;
    margin: 0.75rem 0 0;
    padding: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  .intro__grid,
  .destination__grid {
    grid-template-columns: 1fr;
  }
  .destination__media { height: 420px; }
  .property--featured { grid-template-columns: 1fr; }
  .property--featured .property__media { min-height: 320px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust__rule { display: none; }
  .trust__inner { gap: 1.75rem; }
  .trust__stat strong { font-size: 1.85rem; }
  .quote { padding: 1.75rem; }
  .quote blockquote { font-size: 1.15rem; }
  .destination__media {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: auto;
  }
  .destination__img { aspect-ratio: 4/3; }
  .destination__img--2,
  .destination__img--3 { transform: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta__actions { flex-direction: column; align-items: stretch; }
  .hero__scroll { display: none; }
}
