/* ============================================
   ALOHA — Luxury Property Management, Hawai'i
   Design system: "Golden Hour Editorial"
   ============================================ */

:root {
  --ink: #14201d;
  --ink-soft: #2c3a36;
  --cream: #f7f3ec;
  --paper: #fdfbf7;
  --sand: #e9e1d3;
  --sand-deep: #d8ccb6;
  --teal: #0e6e63;
  --teal-deep: #0a4f47;
  --gold: #c99a5b;
  --gold-soft: #e3c9a4;
  --coral: #d4694a;
  --white: #ffffff;
  --text-secondary: rgba(20, 32, 29, 0.62);
  --text-on-dark: rgba(247, 243, 236, 0.92);
  --text-on-dark-soft: rgba(247, 243, 236, 0.55);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease-lux: cubic-bezier(0.23, 1, 0.32, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-soft); color: var(--ink); }

.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.preloader-word {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300; letter-spacing: 0.35em;
  color: var(--cream); opacity: 0.4;
}
.preloader-word .lit { color: inherit; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  transition: background 0.5s var(--ease-lux), padding 0.5s var(--ease-lux),
              box-shadow 0.5s, color 0.4s;
  color: var(--cream);
}
.nav.scrolled {
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  color: var(--ink);
  padding: 14px clamp(20px, 4vw, 56px);
  box-shadow: 0 1px 0 rgba(20, 32, 29, 0.07);
}
.nav-logo {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.45rem; letter-spacing: 0.22em;
  display: inline-flex; flex-direction: column; line-height: 1;
}
.nav-logo em { color: inherit; font-style: normal; font-weight: 500; }
.logo-sub {
  font-family: var(--font-body); font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  opacity: 0.75; margin-top: 5px;
}
.footer-brand .logo-sub { font-size: 0.66rem; }
.nav-links { display: flex; gap: clamp(16px, 2.5vw, 36px); align-items: center; }
.nav-links a {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; position: relative; padding: 4px 0;
  opacity: 0.85; transition: opacity 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 12px 26px !important; border-radius: 999px;
  background: var(--gold); color: var(--ink) !important;
  opacity: 1 !important; font-weight: 600 !important;
  transition: transform 0.35s var(--ease-lux), background 0.3s, box-shadow 0.35s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); background: var(--gold-soft); box-shadow: 0 12px 28px -10px rgba(201,154,91,0.55); }
.nav-burger { display: none; }

.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; color: var(--cream);
}
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(20,32,29,0.5) 0%, rgba(20,32,29,0.2) 38%,
    rgba(20,32,29,0.38) 62%, rgba(20,32,29,0.85) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 clamp(20px, 4vw, 56px) clamp(36px, 5vh, 64px);
  width: 100%; max-width: 1480px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3rem, 8.4vw, 7.6rem);
  line-height: 0.98; letter-spacing: -0.015em;
  max-width: 12ch; margin-bottom: 30px;
  text-shadow: 0 2px 24px rgba(20, 32, 29, 0.45), 0 1px 3px rgba(20, 32, 29, 0.3);
}
.hero-title em { font-style: italic; color: var(--cream); font-weight: 300; }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 400;
  color: var(--text-on-dark); max-width: 52ch; margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(20, 32, 29, 0.4);
}
.hero-rating {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-on-dark);
  margin-top: 26px;
}
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; }
.hero-rating b { color: var(--cream); }

.search-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr auto;
  gap: 0; align-items: stretch;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px;
  max-width: 880px;
  box-shadow: 0 30px 80px -20px rgba(10, 20, 17, 0.55);
  color: var(--ink);
}
.search-field {
  padding: 10px 24px; border-right: 1px solid var(--sand);
  display: flex; flex-direction: column; justify-content: center; gap: 1px;
  cursor: pointer; border-radius: 999px 0 0 999px;
  transition: background 0.3s;
}
.search-field:hover { background: var(--cream); }
.search-field:last-of-type { border-right: none; }
.search-field label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); cursor: pointer;
}
.search-field span { font-size: 0.95rem; color: var(--text-secondary); white-space: nowrap; }
.search-btn {
  align-self: center;
  background: var(--ink); color: var(--cream);
  border: none; border-radius: 999px;
  padding: 18px 34px; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.3s, transform 0.35s var(--ease-lux), box-shadow 0.35s;
}
.search-btn:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(10,79,71,0.6); }

.marquee-band {
  background: var(--ink); color: var(--text-on-dark-soft);
  padding: 26px 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(247,243,236,0.08);
}
.marquee-track { display: inline-flex; gap: 72px; animation: marquee 36s linear infinite; padding-right: 72px; }
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1.05rem; letter-spacing: 0.12em; display: inline-flex; align-items: center; gap: 72px;
}
.marquee-track span::after { content: "✦"; font-style: normal; color: var(--gold); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px); }
.section-inner { max-width: 1480px; margin: 0 auto; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(38px, 5vw, 70px); flex-wrap: wrap; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px; font-weight: 600;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
.h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 4rem); line-height: 1.05; letter-spacing: -0.01em;
  max-width: 18ch;
}
.h2 em { font-style: italic; color: var(--teal); }
.section-link {
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; color: var(--ink);
  border-bottom: 1.5px solid var(--gold); padding-bottom: 6px;
  transition: gap 0.35s var(--ease-lux), color 0.3s;
}
.section-link:hover { gap: 18px; color: var(--teal); }

/* GSAP drives all reveals */
.line-mask { display: block; overflow: hidden; }
.line-mask .line { display: block; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dest-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3 / 4.1; cursor: pointer; color: var(--cream);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,29,0) 45%, rgba(20,32,29,0.72) 100%);
}
.dest-card-body { position: relative; z-index: 2; padding: 26px; }
.dest-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; margin-bottom: 4px; }
.dest-card p { font-size: 0.85rem; color: var(--text-on-dark); opacity: 0.85; }
.dest-card .arrow {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(247,243,236,0.16); backdrop-filter: blur(8px);
  display: grid; place-items: center; font-size: 1.05rem;
  transform: rotate(-45deg); transition: background 0.35s, transform 0.5s var(--ease-lux);
}
.dest-card:hover .arrow { background: var(--gold); color: var(--ink); transform: rotate(0deg); }

.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prop-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  box-shadow: 0 6px 30px -14px rgba(20,32,29,0.16);
  transition: transform 0.55s var(--ease-lux), box-shadow 0.55s var(--ease-lux);
  display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-10px); box-shadow: 0 34px 70px -24px rgba(20,32,29,0.3); }
.prop-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; }
.prop-badge {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  background: rgba(253,251,247,0.92); backdrop-filter: blur(6px);
  color: var(--ink); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.prop-badge.gold { background: var(--gold); }
.prop-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prop-loc { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.prop-name { font-family: var(--font-display); font-weight: 400; font-size: 1.55rem; line-height: 1.15; }
.prop-specs { display: flex; gap: 18px; font-size: 0.88rem; color: var(--text-secondary); }
.prop-foot {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--sand);
  display: flex; align-items: baseline; justify-content: space-between;
}
.prop-price { font-family: var(--font-display); font-size: 1.5rem; }
.prop-price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-secondary); }
.prop-rate { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

.dark-section { background: var(--ink); color: var(--cream); border-radius: clamp(28px, 4vw, 56px); margin: 0 clamp(10px, 1.6vw, 24px); }
.dark-section .eyebrow { color: var(--gold); }
.dark-section .h2 em { color: var(--gold-soft); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(247,243,236,0.12); border-radius: var(--radius-md); overflow: hidden; }
.pillar {
  background: var(--ink); padding: 40px 32px 46px;
  transition: background 0.45s;
  position: relative;
}
.pillar:hover { background: var(--ink-soft); }
.pillar-num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1rem; color: var(--gold); margin-bottom: 60px; display: block;
}
.pillar h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; margin-bottom: 14px; line-height: 1.2; }
.pillar p { font-size: 0.92rem; color: var(--text-on-dark-soft); line-height: 1.7; }

.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat h3 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 1; color: var(--ink);
}
.stat h3 .accent { color: var(--gold); font-style: italic; }
.stat p { margin-top: 10px; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-secondary); font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.split-media .float-card {
  position: absolute; bottom: 24px; left: 24px; z-index: 3;
  background: rgba(253,251,247,0.94); backdrop-filter: blur(10px);
  border-radius: var(--radius-md); padding: 18px 24px;
  display: flex; gap: 16px; align-items: center;
  box-shadow: 0 20px 50px -18px rgba(20,32,29,0.4);
}
.float-card .dot { width: 10px; height: 10px; border-radius: 50%; background: #3aa981; box-shadow: 0 0 0 4px rgba(58,169,129,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(58,169,129,0.05); } }
.float-card b { font-size: 0.95rem; display: block; }
.float-card span { font-size: 0.8rem; color: var(--text-secondary); }
.feature-list { display: flex; flex-direction: column; gap: 8px; margin-top: 34px; }
.feature-item {
  display: flex; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid var(--sand);
  transition: padding-left 0.4s var(--ease-lux);
}
.feature-item:hover { padding-left: 10px; }
.feature-item .fi-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--sand-deep);
  display: grid; place-items: center; font-size: 1.1rem; color: var(--teal);
}
.feature-item h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; color: var(--text-secondary); }

.testi-wrap { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.testi-quote-mark { font-family: var(--font-display); font-size: 6rem; line-height: 0.4; color: var(--gold); display: block; margin-bottom: 40px; }
.testi-slide { display: none; }
.testi-slide.active { display: block; }
.testi-text {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.45; margin-bottom: 36px;
}
.testi-author b { display: block; font-size: 1rem; letter-spacing: 0.04em; }
.testi-author span { font-size: 0.85rem; color: var(--text-secondary); }
.testi-nav { display: flex; gap: 12px; justify-content: center; margin-top: 44px; }
.testi-dot {
  width: 34px; height: 4px; border-radius: 2px; border: none;
  background: var(--sand-deep); cursor: pointer; transition: background 0.3s, width 0.4s var(--ease-lux);
}
.testi-dot.active { background: var(--gold); width: 56px; }

.owner-cta { position: relative; overflow: hidden; border-radius: clamp(28px, 4vw, 56px); margin: 0 clamp(10px, 1.6vw, 24px); color: var(--cream); }
.owner-cta-bg { position: absolute; inset: 0; }
.owner-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.owner-cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,32,29,0.9) 20%, rgba(20,32,29,0.45) 70%, rgba(20,32,29,0.2)); }
.owner-cta-inner { position: relative; z-index: 2; padding: clamp(70px, 9vw, 130px) clamp(28px, 5vw, 80px); max-width: 640px; }
.owner-cta .eyebrow { color: var(--gold); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 38px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--ink);
  padding: 18px 36px; border-radius: 999px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s, background 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(201,154,91,0.6); background: var(--gold-soft); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; color: var(--cream);
  padding: 18px 36px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(247,243,236,0.4);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease-lux);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,154,91,0.12); transform: translateY(-3px); }
.btn-ghost.on-light { color: var(--ink); border-color: var(--sand-deep); }
.btn-ghost.on-light:hover { border-color: var(--gold); background: rgba(201,154,91,0.08); }

.footer { background: var(--ink); color: var(--text-on-dark); padding: clamp(70px, 8vw, 110px) clamp(20px, 4vw, 56px) 40px; margin-top: clamp(80px, 10vw, 140px); overflow: hidden; }
.footer-inner { max-width: 1480px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(247,243,236,0.12); }
.footer-brand .nav-logo { font-size: 1.8rem; }
.footer-brand p { margin-top: 18px; font-size: 0.92rem; color: var(--text-on-dark-soft); max-width: 34ch; }
.footer-col h5 { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 600; }
.footer-col a { display: block; font-size: 0.92rem; color: var(--text-on-dark-soft); padding: 6px 0; transition: color 0.3s, padding-left 0.35s var(--ease-lux); }
.footer-col a:hover { color: var(--cream); padding-left: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 34px; font-size: 0.8rem; color: var(--text-on-dark-soft); flex-wrap: wrap; gap: 14px; }
.footer-giant {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(4rem, 14vw, 15rem); line-height: 1; letter-spacing: 0.06em;
  color: rgba(247,243,236,0.06); text-align: center;
  padding: 50px 0 10px; user-select: none;
}

.page-hero {
  position: relative; min-height: 72svh; display: flex; align-items: flex-end;
  overflow: hidden; color: var(--cream);
}
.page-hero .hero-inner { padding-top: 150px; padding-bottom: clamp(48px, 7vh, 90px); }

.compare { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--sand); }
.compare table { width: 100%; border-collapse: collapse; background: var(--white); }
.compare th, .compare td { padding: 20px 26px; text-align: left; font-size: 0.94rem; border-bottom: 1px solid var(--sand); }
.compare th { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; background: var(--cream); }
.compare th.hl { background: var(--ink); color: var(--cream); }
.compare td.hl { background: rgba(14,110,99,0.05); font-weight: 600; color: var(--teal-deep); }
.compare tr:last-child td { border-bottom: none; }
.check { color: var(--teal); font-weight: 700; }
.cross { color: var(--sand-deep); }

.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 28px 4px; text-align: left;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--ink);
}
.faq-q .faq-plus { font-size: 1.5rem; color: var(--gold); transition: transform 0.45s var(--ease-lux); flex-shrink: 0; font-family: var(--font-body); font-weight: 300; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; }
.faq-a p { padding: 0 4px 28px; color: var(--text-secondary); font-size: 0.97rem; max-width: 70ch; }

.estimate-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 50px);
  box-shadow: 0 30px 80px -30px rgba(20,32,29,0.25);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 15px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--sand-deep); background: var(--paper);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,154,91,0.15); }

/* Founder / owner credibility split */
.founder-section { background: var(--sand); }
.founder-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}
.founder-photo-wrap { position: relative; padding-bottom: 28px; }
.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 90px rgba(14, 32, 29, 0.22);
}
.founder-tag {
  position: absolute;
  bottom: 0;
  right: -24px;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 26px;
  border-radius: var(--radius-md);
  line-height: 1.3;
  box-shadow: 0 12px 40px rgba(14,32,29,0.3);
}
.founder-tag span:first-child { display: block; font-weight: 700; font-size: 1rem; }
.founder-tag span:last-child {
  display: block; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-top: 5px;
}
.founder-copy p { color: var(--text-secondary); max-width: 52ch; font-size: 1.05rem; line-height: 1.75; }
.founder-quote {
  margin-top: 30px; padding-left: 22px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display); font-size: 1.15rem;
  font-style: italic; color: var(--ink); line-height: 1.55;
}

@media (max-width: 1080px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .search-bar { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); gap: 4px; }
  .search-field { border-right: none; border-radius: var(--radius-sm); }
  .search-btn { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 720px) {
  .founder-split { grid-template-columns: 1fr; }
  .founder-tag { right: 0; }
  .nav-links { display: none; }
  .nav-burger {
    display: grid; place-items: center; width: 46px; height: 46px;
    border-radius: 50%; border: 1px solid currentColor; background: none;
    color: inherit; cursor: pointer; font-size: 1.1rem;
  }
  .dest-grid, .prop-grid, .stats-band { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr !important; }
  .split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-band { gap: 44px; }
  .compare { overflow-x: auto; }
  .form-grid { grid-template-columns: 1fr; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 950; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; padding: 40px;
  gap: 8px; transform: translateY(-100%); transition: transform 0.7s var(--ease-lux);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 300;
  font-size: 2.4rem; color: var(--cream); padding: 10px 0;
  border-bottom: 1px solid rgba(247,243,236,0.1);
}
.mobile-menu a:hover { color: var(--gold); font-style: italic; }
.mobile-close {
  position: absolute; top: 26px; right: 26px;
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(247,243,236,0.3); background: none; color: var(--cream);
  font-size: 1.3rem; cursor: pointer;
}
