/* =====================================================================
   AMMOS DOMI — premium vacation rental site
   --------------------------------------------------------------------- */

:root {
  /* sand & taupe — drawn from the logo */
  --sand-50:  #FAF7F2;
  --sand-100: #F2EAD8;
  --sand-200: #E8DDC9;
  --sand-300: #D7C9AC;
  --sand-400: #C2B392;
  --taupe:    #A39D8E;
  --taupe-d:  #807A6B;

  /* ink */
  --ink:      #1F1A14;
  --ink-2:    #3D362D;
  --ink-3:    #6A6358;

  /* accents (from the property) */
  --emerald:   #1F4F40;
  --emerald-d: #163A30;
  --olive:     #5A5E45;

  /* misc */
  --white:     #ffffff;
  --cream:     #F8F2E5;

  /* typography */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(18px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 14px;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* page-level paper texture (super subtle) */
body::before {
  content:"";
  position: fixed; inset:0; pointer-events:none; z-index: 0;
  background-image:
    radial-gradient(rgba(122,113,98,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: .8;
}

/* ---------- typography helpers ---------- */
.display,
.display-sm {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
}
.display {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 .3em;
}
.display em {
  font-style: italic;
  color: var(--taupe-d);
  font-feature-settings: "ss01";
}
.display-sm {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 .35em;
}
.overline {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--taupe-d);
  margin: 0 0 1rem;
}
.lede {
  font-size: 1.06rem;
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: .6rem;
}
.muted { color: var(--ink-3); }

/* containers */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.container.narrow { max-width: 860px; }
.section {
  padding: clamp(72px, 9vw, 140px) 0;
}
.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { text-align: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.4em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .04em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-transform: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--cream);
}
.btn-lg { padding: 1.05em 1.6em; font-size: .98rem; }
.btn-block { width: 100%; }

/* ---------- announce bar (marquee) ---------- */
.announce {
  background: var(--ink);
  color: var(--sand-200);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.announce-track {
  display: inline-flex;
  gap: 2.4rem;
  padding: .65rem 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 100%;
}
.announce-track .dot { color: var(--taupe); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 32px;   /* below announce bar */
  left: 0; right: 0;
  z-index: 40;
  transition: top .25s var(--ease), background .25s var(--ease),
              backdrop-filter .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  top: 0;
  background: rgba(163, 157, 142, .94);   /* taupe — matches the logo background */
  backdrop-filter: saturate(1.1) blur(12px);
  border-bottom-color: rgba(31,26,20,.10);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ------ brand (logo extending the banner) ------ */
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--cream);
  transition: color .25s var(--ease);
  position: relative;
  isolation: isolate;
}
.brand-logo {
  display: block;
  height: 72px;     /* enlarged, was 46 */
  width: auto;
  object-fit: contain;
  /* No border-radius. The logo's own warm taupe background blends with the header bar. */
  filter: drop-shadow(0 2px 14px rgba(0,0,0,.22));
  transition: height .25s var(--ease), filter .25s var(--ease);
}
.site-header.scrolled .brand-logo {
  filter: none;     /* on the taupe banner, no shadow needed — fully blends in */
}
.brand-place {
  font-size: .70rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .82;
  line-height: 1.1;
  white-space: nowrap;
}
.site-header.scrolled .brand { color: var(--cream); }   /* keep cream on taupe */

.primary-nav {
  display: flex; gap: clamp(14px, 1.8vw, 28px);
  color: var(--cream);
  transition: color .25s var(--ease);
}
.site-header.scrolled .primary-nav { color: var(--cream); }
.primary-nav a {
  font-size: .9rem;
  letter-spacing: .02em;
  padding: 6px 4px;
  position: relative;
}
.primary-nav a::after {
  content:""; position:absolute; left:4px; right:4px; bottom: 2px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left center;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; gap: 12px; }
/* Reserve pill: cream over hero, ink over scrolled taupe — readable in both states. */
.header-cta .btn-primary {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.header-cta .btn-primary:hover {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
}
.site-header.scrolled .header-cta .btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.site-header.scrolled .header-cta .btn-primary:hover {
  background: var(--emerald-d);
  border-color: var(--emerald-d);
}

/* mobile nav */
.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  color: inherit;
}
.nav-toggle span {
  display: block;
  height: 2px; width: 22px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100vh; height: 100dvh;
  background: var(--sand-50);
  z-index: 60;             /* above header so it never "peeks through" while scrolling */
  display: flex; align-items: center; justify-content: center;
  /* default = fully invisible + non-interactive */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    transform .35s var(--ease),
    opacity   .25s var(--ease),
    visibility 0s linear .35s;
}
.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    transform .35s var(--ease),
    opacity   .25s var(--ease),
    visibility 0s linear 0s;
}
.mobile-drawer nav {
  display: flex; flex-direction: column; gap: 22px;
  text-align: center;
}
.mobile-drawer nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
}
.mobile-drawer nav a.btn { font-family: var(--sans); font-size: 1rem; min-width: 200px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
/* Each slide is a full-bleed background image. Slides cross-fade. */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 8s var(--ease);
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,26,20,.55) 0%, rgba(31,26,20,.15) 35%, rgba(31,26,20,.55) 100%),
    radial-gradient(120% 60% at 50% 110%, rgba(31,26,20,.5), transparent 60%);
  z-index: 1;
}

/* slide indicators */
.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  gap: 10px;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.hero-dot:hover { background: rgba(255,255,255,.65); }
.hero-dot.is-active {
  background: var(--cream);
  transform: scaleY(2);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  text-align: center;
}
.hero-overline {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: .76rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sand-200); opacity: .95;
  margin-bottom: 24px;
}
.hero-overline .line {
  width: 48px; height: 1px; background: currentColor; display: inline-block;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7.2vw, 6.2rem);
  line-height: 1.0;
  letter-spacing: -.015em;
  margin: 0;
}
.hero-title span { display: block; }
.hero-title .italic { font-style: italic; font-weight: 400; color: var(--sand-200); }
.hero-sub {
  margin: 1.4rem auto 2.2rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 50ch;
  color: var(--sand-200);
}
.hero-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-trust {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap;
  color: var(--sand-200);
  font-size: .92rem;
}
.trust-rating { display: inline-flex; align-items: center; gap: 10px; }
.trust-rating .stars { color: #F5C95F; letter-spacing: .08em; }
.trust-rating strong { font-size: 1.05rem; }
.hero-quickfacts {
  list-style: none; padding: 0; margin: 0;
  display: inline-flex; gap: 22px;
}
.hero-quickfacts li {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; gap: .35em; align-items: baseline;
}
.hero-quickfacts li span { font-family: var(--serif); font-size: 1.1rem; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--sand-200);
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px; background: var(--sand-200);
  animation: scroll-line 2.4s var(--ease) infinite;
  transform-origin: top center;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); }
  40%  { transform: scaleY(1); transform-origin: top center; }
  41%  { transform-origin: bottom center; }
  100% { transform: scaleY(0); transform-origin: bottom center; }
}

/* ---------- STORY ---------- */
.story .display { margin-top: 6px; }
.story-grid {
  display: grid; grid-template-columns: 1.05fr .9fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; margin-top: 36px;
}
.story-copy p { margin: 0 0 1.1em; font-size: 1.06rem; color: var(--ink-2); }
.story-figure {
  margin: 0;
  position: relative;
}
.story-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(31,26,20,.35);
}
.story-figure figcaption {
  margin-top: 12px; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3);
}
.signature {
  margin-top: 1.5em !important;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--ink);
}
.signature .sig-role {
  font-style: normal; font-family: var(--sans);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- KEY STRIP ---------- */
.keystrip {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(28px, 4vw, 44px) 0;
}
.keystrip ul {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 8px;
}
.keystrip li {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  padding: 0 8px;
  position: relative;
}
.keystrip li:not(:last-child)::after {
  content:""; position:absolute; right:0; top: 15%; height: 70%;
  width: 1px; background: rgba(232,221,201,.18);
}
.keystrip .kicker {
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--sand-300);
}
.keystrip strong {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  letter-spacing: -.01em;
}
.keystrip .hint { font-size: .8rem; color: var(--sand-200); opacity: .8; }

/* ---------- SPACE (room by room) ---------- */
.space {
  background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%);
}
.space-row {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 4vw, 48px) 0;
}
.space-row.reverse { grid-template-columns: .95fr 1.05fr; }
.space-row.reverse .space-photo { order: 2; }
.space-row.reverse .space-copy  { order: 1; }
.space-photo { margin: 0; }
.space-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px -30px rgba(31,26,20,.4);
}
.space-tag {
  font-family: var(--sans);
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--taupe-d); display: inline-block; margin-bottom: 14px;
}
.space-copy h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  line-height: 1.15; letter-spacing: -.01em;
  margin: 0 0 .6em;
}
.space-copy p { color: var(--ink-2); margin: 0 0 1em; }
.micro-list {
  list-style: none; padding: 0; margin: 1em 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.micro-list li {
  font-size: .92rem;
  color: var(--ink-2);
  padding-left: 14px;
  position: relative;
}
.micro-list li::before {
  content:""; position:absolute; left:0; top:.65em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
}

/* ---------- GALLERY ---------- */
.gallery { background: var(--sand-50); }
.gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.g-tile {
  overflow: hidden;
  border-radius: 6px;
  background: var(--sand-200);
  position: relative;
  transition: transform .35s var(--ease);
}
.g-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .3s var(--ease);
}
.g-tile:hover img { transform: scale(1.06); filter: brightness(1.04); }
.g-tile::after {
  content:""; position:absolute; inset:0; background: rgba(31,26,20,0);
  transition: background .25s var(--ease); pointer-events: none;
}
.g-tile:hover::after { background: rgba(31,26,20,.06); }

.g-3x2 { grid-column: span 2; grid-row: span 2; }
.g-1x2 { grid-row: span 2; }
.g-2x1 { grid-column: span 2; }

/* ---------- AMENITIES ---------- */
.amenities { background: var(--sand-100); }
.amenity-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 56px;
  margin-top: 24px;
}
.amenity-block h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.1rem; letter-spacing: .01em;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand-300);
  color: var(--ink);
}
.amenity-block ul {
  list-style: none; padding: 0; margin: 0;
}
.amenity-block li {
  font-size: .94rem;
  color: var(--ink-2);
  padding: 6px 0 6px 22px;
  position: relative;
}
.amenity-block li::before {
  content:"✓";
  position: absolute; left: 0; top: 7px;
  font-size: .78rem;
  color: var(--emerald);
  font-weight: 600;
}

/* ---------- LOCATION ---------- */
.location { background: var(--sand-50); }
.location-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px, 4vw, 56px);
  margin-top: 16px;
}
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand-200);
  position: relative;
  box-shadow: 0 28px 60px -30px rgba(31,26,20,.35);
}
.map-card iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
}
.map-link {
  position: absolute; right: 14px; bottom: 14px;
  background: var(--ink); color: var(--cream);
  font-size: .8rem; letter-spacing: .04em;
  padding: 8px 12px; border-radius: 999px;
}
.location-points h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.15rem;
  margin: 28px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sand-300);
}
.location-points h4:first-child { margin-top: 0; }
.poi { list-style: none; margin: 0; padding: 0; }
.poi li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: baseline;
  gap: 8px 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(122,113,98,.25);
}
.poi li:last-child { border-bottom: none; }
.poi span { font-size: 1.05rem; line-height: 1; }
.poi strong { font-weight: 500; color: var(--ink); }
.poi em { font-style: normal; font-size: .82rem; color: var(--ink-3); letter-spacing: .04em; }

/* ---------- REVIEWS ---------- */
.reviews { background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-50) 100%); }
.big-rating { display: inline-flex; align-items: center; gap: 14px; }
.big-rating .stars {
  color: #D9A93C;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: .1em;
}
.display-sub {
  display: block;
  font-family: var(--serif); font-style: italic;
  color: var(--taupe-d);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 300;
  margin-top: 4px;
}
.ratings-bars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 32px;
  margin: 0 auto 44px;
  max-width: 760px;
}
.ratings-bars > div {
  display: grid; grid-template-columns: 110px 1fr 36px;
  align-items: center; gap: 12px;
  font-size: .9rem; color: var(--ink-2);
}
.ratings-bars .bar {
  height: 4px; border-radius: 999px;
  background: var(--sand-200);
  position: relative; overflow: hidden;
}
.ratings-bars .bar i {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--emerald);
  border-radius: inherit;
}
.ratings-bars strong { font-family: var(--serif); font-weight: 500; text-align: right; }

.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -20px rgba(31,26,20,.18);
}
.review-card .stars { color: #D9A93C; letter-spacing: .08em; }
.review-card blockquote {
  margin: 0;
  font-family: var(--serif); font-size: 1.06rem;
  line-height: 1.5;
  color: var(--ink);
}
.review-card footer {
  margin-top: auto;
  font-size: .85rem;
  color: var(--ink-3);
}
.review-card footer strong { color: var(--ink); margin-right: .3em; }
.review-note {
  margin-top: 28px;
  text-align: center;
  font-size: .8rem; color: var(--ink-3);
}

/* ---------- HOST ---------- */
.host {
  background: var(--ink);
  color: var(--sand-100);
}
.host .overline { color: var(--sand-300); }
.host .display-sm { color: var(--cream); }
.host-card {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.host-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--taupe), var(--sand-300));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.host-photo::after {
  content:""; position:absolute; inset:-12px; border-radius:50%;
  border: 1px solid rgba(232,221,201,.25);
}
.host-initials {
  font-family: var(--serif);
  font-size: 5.4rem;
  color: var(--cream);
  font-weight: 300;
}
.host-copy p { color: var(--sand-200); }
.host-copy .signature .sig-name { color: var(--cream); }
.host-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 1.2em; }
.pill {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(232,221,201,.18);
  color: var(--sand-200);
  font-size: .78rem; letter-spacing: .06em;
}

/* ---------- BOOKING ---------- */
.book {
  background:
    radial-gradient(60% 80% at 12% 12%, rgba(232,221,201,.6), transparent 60%),
    radial-gradient(50% 80% at 90% 90%, rgba(215,201,172,.6), transparent 65%),
    var(--sand-50);
}
.book-wrap {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}
.book-copy { padding: clamp(0px, 1vw, 24px) 0; }
.benefit-list { list-style: none; padding: 0; margin: 1.4em 0 0; }
.benefit-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0;
  font-size: 1rem; color: var(--ink-2);
}
.benefit-list li span {
  color: var(--emerald); font-weight: 600;
}
.book-form {
  background: var(--white);
  border: 1px solid var(--sand-200);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  display: grid; gap: 14px;
  box-shadow: 0 30px 60px -30px rgba(31,26,20,.25);
}
.book-form h3 {
  margin: 0 0 6px;
  font-family: var(--serif); font-weight: 500;
  font-size: 1.4rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book-form label {
  display: block;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3);
}
.book-form label.full { display: block; }
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--sand-300);
  background: var(--sand-50);
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31,79,64,.08);
}
.form-note {
  margin: 6px 0 0; text-align: center;
  font-size: .8rem; color: var(--ink-3);
}
.form-success {
  background: var(--sand-100);
  border-left: 3px solid var(--emerald);
  padding: 12px 14px;
  font-size: .9rem;
  border-radius: 6px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--sand-100); }
.faq-list {
  display: grid; gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  overflow: hidden;
}
.faq-list details {
  border-bottom: 1px solid var(--sand-200);
}
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transition: background .2s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--sans); font-weight: 300;
  font-size: 1.4rem;
  color: var(--taupe-d);
  transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { background: var(--sand-50); }
.faq-list details p {
  margin: 0;
  padding: 0 28px 22px;
  color: var(--ink-2);
  font-size: .98rem;
  max-width: 70ch;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--sand-200);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232,221,201,.12);
}
.foot-brand .foot-mark {
  width: auto; height: 96px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}
.foot-tag {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--cream);
}
.site-footer h5 {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--sand-300);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a {
  color: var(--sand-200);
  font-size: .94rem;
  transition: color .2s var(--ease);
}
.site-footer a:hover { color: var(--cream); }
.foot-bar {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
  font-size: .8rem; color: var(--sand-300);
}
.foot-bar a { color: var(--sand-300); }
.foot-bar a:hover { color: var(--cream); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,12,9,.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lb-figure {
  max-width: 1280px; max-height: 90vh; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lb-figure img {
  max-width: 100%; max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,.6);
}
.lb-figure figcaption {
  color: var(--sand-200);
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
}
.lb-btn {
  position: absolute; top: 50%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--cream);
  font-size: 1.4rem;
  transition: background .2s var(--ease);
  transform: translateY(-50%);
}
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close { top: 24px; right: 24px; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; color: var(--cream); }
  .brand-logo { height: 60px; }
  .brand-place { display: none; }
  .hero-dots { bottom: 70px; }

  .keystrip ul { grid-template-columns: repeat(3, 1fr); gap: 22px 8px; }
  .keystrip li:nth-child(3n)::after { display: none; }

  .story-grid { grid-template-columns: 1fr; }
  .story-figure { order: -1; max-width: 540px; margin-inline: auto; }

  .space-row,
  .space-row.reverse { grid-template-columns: 1fr; gap: 18px; }
  .space-row.reverse .space-photo { order: 0; }
  .space-row.reverse .space-copy  { order: 0; }
  .space-photo img { aspect-ratio: 4 / 3; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .g-3x2 { grid-column: span 2; grid-row: span 2; }
  .g-1x2 { grid-column: span 1; grid-row: span 2; }
  .g-2x1 { grid-column: span 2; grid-row: span 1; }

  .amenity-cols { grid-template-columns: 1fr 1fr; gap: 28px 32px; }

  .location-grid { grid-template-columns: 1fr; }
  .map-card iframe { aspect-ratio: 16 / 11; }

  .ratings-bars { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }

  .host-card { grid-template-columns: 1fr; text-align: center; }
  .host-photo { margin: 0 auto; width: 180px; height: 180px; }
  .host-photo .host-initials { font-size: 4.6rem; }
  .host-badges { justify-content: center; }

  .book-wrap { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero-quickfacts { gap: 14px; }
  .hero-trust { gap: 16px; flex-direction: column; }
  .micro-list { grid-template-columns: 1fr; }
  .amenity-cols { grid-template-columns: 1fr; }
  .ratings-bars { grid-template-columns: 1fr; }
  .ratings-bars > div { grid-template-columns: 96px 1fr 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .keystrip ul { grid-template-columns: repeat(2, 1fr); }
  .keystrip li:nth-child(2n)::after,
  .keystrip li:nth-child(3n)::after { display: none; }
  .keystrip li:nth-child(2n+1)::after { display: block; }
  .field-row { grid-template-columns: 1fr; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ---------- subtle reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- print-ish polish ---------- */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation: none !important; transition: none !important; }
}
