:root{
  --ink:#222222;
  --muted:#717171;
  --line:#dddddd;
  --soft:#f7f7f7;
  --brand:#c9a84c;
  --brand-dark:#a57b2b;
  --shadow:0 6px 20px rgba(0,0,0,.13);
  --shadow-soft:0 2px 8px rgba(0,0,0,.08);
  --font:'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  font-size:14px;
  line-height:20px;
  color:var(--ink);
  background:#fff;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;object-fit:cover}
button,input,select{font:inherit}

/* ═══════════════════════════════════════
   HEADER — three-column, Airbnb-inspired
   ═══════════════════════════════════════ */
.site-header{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:stretch;
  height:80px;
  padding:0 5vw;
  background:#fff;
  border-bottom:2px solid transparent;
  transition:border-color .25s;
  position:sticky;
  top:0;
  z-index:40;
}

.site-header.is-scrolled{border-color:#e0e0e0}

.brand{display:flex;align-items:center;text-decoration:none}
.brand img{height:54px;width:auto}

/* ── Centered nav tabs — outline button style ── */
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.nav-tab{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 18px;
  border-radius:999px;
  border:1.5px solid #e2e2e2;
  font-size:13.5px;
  font-weight:500;
  color:var(--ink);
  text-decoration:none;
  transition:border-color .2s, background .18s, color .2s;
  white-space:nowrap;
}
.nav-tab i{font-size:17px;flex-shrink:0}
.nav-tab:hover{border-color:#aaaaaa;background:#fafafa}
.nav-tab.is-active{
  border-color:var(--brand);
  color:var(--brand-dark);
  font-weight:600;
  background:rgba(201,168,76,.07);
}

/* ── Right-side action group ── */
.header-actions{
  display:flex;
  align-items:center;
  gap:4px;
  justify-content:flex-end;
}
.header-link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:13.5px;
  font-weight:700;
  color:#fff;
  background:var(--brand);
  padding:9px 18px;
  border-radius:999px;
  white-space:nowrap;
  transition:background .18s, transform .15s;
  text-decoration:none;
}
.header-link i{font-size:16px}
.header-link:hover{background:var(--brand-dark);transform:translateY(-1px)}
/* Hamburger pill — menu button only */
.header-pill{
  display:flex;
  align-items:center;
  border:1px solid #dddddd;
  border-radius:999px;
  padding:5px 8px;
  box-shadow:0 1px 4px rgba(0,0,0,.08);
  margin-left:4px;
}
.menu-btn{
  width:34px;height:34px;
  border-radius:50%;
  border:0;
  background:transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  font-size:20px;
  transition:background .15s;
  padding:0;
}
.menu-btn:hover{background:#f0f0f0}

/* ── Hamburger dropdown (legal + mobile nav) ── */
.header-dropdown{
  position:absolute;
  top:calc(100% + 6px);
  right:5vw;
  width:248px;
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:18px;
  box-shadow:0 8px 32px rgba(0,0,0,.13);
  padding:8px;
  z-index:50;
}
.header-dropdown[hidden]{display:none}
.dropdown-section-label{
  padding:8px 14px 4px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}
.dropdown-link{
  display:flex;
  align-items:center;
  gap:12px;
  padding:11px 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:500;
  color:var(--ink);
  text-decoration:none;
  transition:background .15s;
}
.dropdown-link:hover{background:#f5f5f5}
.dropdown-link i{font-size:18px;color:var(--muted);flex-shrink:0;width:20px;text-align:center}
.dropdown-divider{border:0;border-top:1px solid #ebebeb;margin:6px 0}
/* Mobile-only nav section inside dropdown */
.dropdown-nav-section{display:none}
@media(max-width:820px){.dropdown-nav-section{display:block}}

/* ═══════════════════════════════════════
   HERO — full-width cinematic slider
   ═══════════════════════════════════════ */
.hero{
  position:relative;
  height:67vh;
  min-height:480px;
  overflow:hidden;
  margin:24px 5vw;
  border-radius:22px;
}
.hero-slider{
  position:absolute;
  inset:0;
  overflow:hidden;
}

/* ── Slide crossfade — slow and cinematic ── */
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.8s cubic-bezier(.25,0,.25,1);
}
.slide.is-active{opacity:1}

/* Ken Burns — very slow drift */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.06);
  transition:transform 14s ease-out;
}
.slide.is-active img{transform:scale(1)}

/* Gradient: strong bottom-left darkness for text, lighter top-right */
.slide-gradient{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(to top,  rgba(0,0,0,.92) 0%, rgba(0,0,0,.52) 38%, rgba(0,0,0,.08) 65%, transparent 100%),
    linear-gradient(to right, rgba(0,0,0,.32) 0%, transparent 55%);
}

/* ── Per-slide marketing content ── */
.slide-content{
  position:absolute;
  bottom:72px; /* sits above the dot nav */
  left:5vw;
  right:40%;
  z-index:3;
  /* EXIT: quick, no delay */
  opacity:0;
  transform:translateY(22px);
  transition:opacity .4s ease, transform .4s ease;
}
/* ENTER: slow reveal, waits for image to appear first */
.slide.is-active .slide-content{
  opacity:1;
  transform:translateY(0);
  transition:opacity 1.1s .9s cubic-bezier(.25,0,.25,1), transform 1.1s .9s cubic-bezier(.25,0,.25,1);
}

.slide-eye{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--brand);
  margin-bottom:12px;
}
.slide-headline{
  margin:0 0 14px;
  font-size:48px;
  line-height:52px;
  font-weight:700;
  color:#fff;
  letter-spacing:-.025em;
}
.slide-tagline{
  margin:0 0 28px;
  font-size:15px;
  line-height:24px;
  color:rgba(255,255,255,.82);
  max-width:460px;
}

/* ── Two CTA buttons ── */
.slide-ctas{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
/* Primary: solid black */
.cta-book{
  display:inline-flex;
  align-items:center;
  padding:14px 30px;
  border-radius:999px;
  background:#111;
  border:1.5px solid #fff;
  color:#fff;
  font-weight:700;
  font-size:14px;
  letter-spacing:.01em;
  white-space:nowrap;
  transition:background .2s, transform .15s;
}
.cta-book:hover{background:#333;transform:translateY(-2px)}
/* Ghost: gold outline */
.cta-explore{
  display:inline-flex;
  align-items:center;
  padding:13px 30px;
  border-radius:999px;
  background:transparent;
  color:#fff;
  font-weight:600;
  font-size:14px;
  letter-spacing:.01em;
  border:1.5px solid var(--brand);
  white-space:nowrap;
  transition:background .2s, border-color .2s, transform .15s;
}
.cta-explore:hover{background:rgba(201,168,76,.18);border-color:var(--brand);transform:translateY(-2px)}

/* ── Dots-only nav at bottom center ── */
.slider-nav{
  position:absolute;
  bottom:26px;
  left:50%;
  transform:translateX(-50%);
  z-index:10;
  background:rgba(0,0,0,.32);
  backdrop-filter:blur(10px);
  border-radius:999px;
  padding:8px 16px;
  border:1px solid rgba(255,255,255,.14);
}
.slider-dots{display:flex;align-items:center;gap:7px}
.dot{
  width:7px;height:7px;
  border-radius:3.5px;
  border:0;
  background:rgba(255,255,255,.42);
  cursor:pointer;
  padding:0;
  flex-shrink:0;
  transition:background .28s, width .34s cubic-bezier(.4,0,.2,1);
}
.dot.is-active{background:#fff;width:26px}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.eyebrow{
  margin:0 0 10px;
  font-size:11px;
  line-height:16px;
  letter-spacing:.09em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--brand);
}
.section{padding:52px 5vw}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:28px;
}
.section-head h2,.host-panel h2,.detail-content h2{
  margin:0;
  font-size:26px;
  line-height:30px;
  letter-spacing:-.02em;
  font-weight:700;
}
.section-subtitle{margin:6px 0 0;color:var(--muted);font-size:14px;line-height:20px}
.section-head a{font-size:13px;font-weight:600;color:var(--ink);text-decoration:none;white-space:nowrap}
.listing-head{margin-bottom:20px}

/* ── Property cards ── */
.property-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
.property-card{min-width:0}
.card-media{
  position:relative;
  display:block;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:16px;
  background:#f2f2f2;
}
.card-media img{width:100%;height:100%;transition:transform .5s cubic-bezier(.25,0,.25,1)}
.property-card:hover .card-media img{transform:scale(1.05)}
.pill{
  position:absolute;top:12px;left:12px;
  padding:5px 11px;border-radius:999px;
  background:rgba(255,255,255,.96);
  box-shadow:0 1px 6px rgba(0,0,0,.1);
  font-size:11px;line-height:16px;font-weight:700;
}
.card-media button{
  position:absolute;top:9px;right:9px;
  width:32px;height:32px;
  border:0;border-radius:50%;
  background:rgba(255,255,255,.2);
  color:#fff;font-size:18px;line-height:1;
  cursor:pointer;
  transition:background .18s,transform .15s;
}
.card-media button:hover{background:rgba(255,255,255,.42);transform:scale(1.1)}
.card-body{padding-top:12px}
.card-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.card-title-row h3{margin:0;font-size:14px;line-height:18px;font-weight:600}
.card-title-row span{white-space:nowrap;font-size:13px;line-height:18px;font-weight:500;color:#555}
.card-body p{margin:3px 0 0;color:var(--muted);font-size:13px;line-height:18px}
.card-price{margin-top:6px !important}
.card-price strong{color:#222;font-weight:600}

/* ── Also stays carousel ── */
.also-stays{padding:52px 5vw 64px;border-top:1px solid #ebebeb}
.also-stays-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:16px;margin-bottom:28px;
}
.also-stays-head h2{margin:0 0 5px;font-size:22px;font-weight:700;letter-spacing:-.02em}
.also-stays-head p{margin:0;color:var(--muted);font-size:13px}
.also-stays-head a{
  font-size:13px;font-weight:600;color:var(--ink);white-space:nowrap;
  text-decoration:none;
  transition:color .15s;flex-shrink:0;
}
.also-stays-head a:hover{color:var(--brand-dark)}
.also-stays-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}

/* ── Add-ons ── */
.muted{background:var(--soft)}
.addon-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.addon-grid article{
  background:#fff;border:1px solid #ebebeb;
  border-radius:18px;overflow:hidden;
  box-shadow:0 1px 6px rgba(0,0,0,.04);
  transition:box-shadow .22s, transform .22s;
}
.addon-grid article:hover{box-shadow:0 8px 26px rgba(0,0,0,.09);transform:translateY(-2px)}
.addon-grid img{width:100%;height:220px}
.addon-grid h3{margin:14px 16px 6px;font-size:16px;line-height:20px;font-weight:600;display:flex;align-items:center;gap:7px}
.addon-grid h3 i{color:var(--brand-dark);font-size:18px}
.addon-grid p{margin:0 16px 10px;color:var(--muted);font-size:13px;line-height:20px}
.addon-learn{display:inline-block;margin:0 16px 18px;font-size:13px;font-weight:600;color:var(--brand-dark);text-decoration:none;transition:color .15s}
.addon-learn:hover{color:var(--ink)}

/* ── Host / About panel ── */
.host-panel{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:32px;
  margin:0 5vw 56px;
  padding:48px;
  border-radius:24px;
  background:#222222;
  color:#fff;
}
.host-panel .eyebrow{color:var(--brand)}
.host-panel h2{color:#fff;font-size:36px;line-height:42px;font-weight:700;margin:0 0 14px;letter-spacing:-.02em}
.host-panel p:not(.eyebrow){margin:0;color:rgba(255,255,255,.7);font-size:15px;line-height:24px;max-width:800px}
.primary-btn{
  display:inline-flex;
  border:0;background:var(--brand);color:#fff;
  font-weight:700;font-family:var(--font);
  border-radius:999px;padding:14px 26px;margin:0;
  cursor:pointer;transition:background .18s;
  white-space:nowrap;text-decoration:none;
  font-size:14px;
}
.primary-btn:hover{background:var(--brand-dark)}

/* ── Footer ── */
footer{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:24px 5vw 40px;
  border-top:1px solid #ebebeb;
  color:var(--muted);font-size:13px;
}
footer strong{color:#222;font-weight:600}
.footer-links{display:flex;flex-wrap:wrap;gap:4px 20px;align-items:center}
.footer-links a{color:var(--muted);font-size:13px;font-weight:500;text-decoration:none;transition:color .15s}
.footer-links a:hover{color:var(--ink)}

/* ═══════════════════════════════════════
   PROPERTY DETAIL PAGE
   ═══════════════════════════════════════ */
.detail-page{padding:20px 5vw 56px}
.detail-title h1{margin:8px 0;font-size:26px;line-height:30px;font-weight:700;letter-spacing:-.01em}
.detail-title p{margin:0;color:#484848;font-size:14px;line-height:18px;font-weight:500}
.photo-gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:260px 260px;
  gap:8px;overflow:hidden;border-radius:18px;margin:20px 0 36px;
}
.photo-gallery img{width:100%;height:100%;cursor:pointer;transition:opacity .2s}
.photo-gallery img:hover{opacity:.84}
.gallery-main{grid-row:span 2}

/* ── Lightbox ── */
.lb-backdrop{
  position:fixed;inset:0;z-index:9000;
  background:rgba(0,0,0,.93);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .25s;
}
.lb-backdrop.is-open{opacity:1;pointer-events:all}
.lb-stage{
  max-width:calc(100vw - 140px);max-height:calc(100vh - 100px);
  display:flex;align-items:center;justify-content:center;
}
.lb-img{
  max-width:100%;max-height:calc(100vh - 100px);
  width:auto;object-fit:contain;border-radius:4px;
  transition:opacity .15s;
}
.lb-close{
  position:fixed;top:16px;right:18px;
  width:44px;height:44px;border-radius:50%;border:0;
  background:rgba(255,255,255,.12);color:#fff;font-size:22px;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:background .18s;z-index:1;
}
.lb-close:hover{background:rgba(255,255,255,.24)}
.lb-prev,.lb-next{
  position:fixed;top:50%;transform:translateY(-50%);
  width:48px;height:48px;border-radius:50%;border:0;
  background:rgba(255,255,255,.14);color:#fff;font-size:28px;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:background .18s;z-index:1;
}
.lb-prev{left:14px}
.lb-next{right:14px}
.lb-prev:hover,.lb-next:hover{background:rgba(255,255,255,.26)}
.lb-counter{
  position:fixed;bottom:20px;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,.75);font-size:13px;font-weight:500;
  background:rgba(0,0,0,.45);padding:4px 14px;border-radius:99px;
  pointer-events:none;
}
.detail-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:72px;align-items:start}
.summary-block,.feature-list,.about-stay,.amenities,.addons-detail,.house-rules{
  padding:0 0 28px;margin-bottom:28px;border-bottom:1px solid #ebebeb;
}
.summary-block h2{font-size:22px;line-height:26px}
.summary-block p,.about-stay p,.house-rules p{margin:8px 0 0;color:var(--muted);font-size:15px;line-height:24px}

/* Feature list */
.feature-list{display:grid;gap:22px}
.feature-list article{display:flex;gap:18px;align-items:flex-start}
.feature-icon{
  width:46px;height:46px;border-radius:12px;
  background:rgba(201,168,76,.1);border:1px solid rgba(201,168,76,.2);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:22px;color:var(--brand-dark);
}
.feature-list h3{margin:0 0 3px;font-size:15px;line-height:20px;font-weight:600}
.feature-list p{margin:0;color:var(--muted);font-size:14px;line-height:20px}

/* Amenity grid */
.amenity-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:16px}
.amenity-grid span{
  padding:12px 14px;border:1px solid #ebebeb;border-radius:10px;
  font-size:14px;line-height:20px;display:flex;align-items:center;gap:9px;
  transition:border-color .18s;
}
.amenity-grid span:hover{border-color:var(--brand)}
.amenity-grid i{font-size:18px;color:var(--brand-dark);flex-shrink:0}

/* Property sidebar — reviews + book */
.property-sidebar{
  position:sticky;top:96px;
  border:1px solid #dddddd;border-radius:20px;
  padding:18px;background:#fff;box-shadow:var(--shadow);
}

/* Rating summary */
.sidebar-rating{
  display:flex;align-items:center;gap:8px;
  margin-bottom:18px;
}
.sidebar-score{
  font-size:28px;font-weight:700;letter-spacing:-.02em;line-height:1;
}
.sidebar-stars{display:flex;gap:1px;color:var(--brand)}
.sidebar-stars i{font-size:16px}
.sidebar-count{font-size:13px;color:var(--muted);margin-left:2px}

/* Reviews */
.review-list{display:flex;flex-direction:column;gap:0}
.review-item{
  padding:16px 0;border-bottom:1px solid #f0f0f0;
}
.review-item:last-child{border-bottom:0}
.review-header{
  display:flex;align-items:center;gap:10px;margin-bottom:8px;
}
.reviewer-avatar{
  width:36px;height:36px;border-radius:50%;flex-shrink:0;
  background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;letter-spacing:.01em;
}
.reviewer-name{margin:0;font-size:13px;font-weight:600;line-height:17px}
.reviewer-meta{margin:0;font-size:11px;color:var(--muted);line-height:16px}
.review-stars{
  margin-left:auto;font-size:12px;
  color:var(--brand);letter-spacing:.5px;flex-shrink:0;
}
.review-body{
  margin:0;font-size:13px;line-height:20px;
  color:#444;font-style:italic;
}

.sidebar-rule{border:0;border-top:1px solid #ebebeb;margin:18px 0}

/* Book CTA */
.sidebar-book{margin-bottom:14px}
.sidebar-price{
  margin:0 0 12px;font-size:17px;line-height:22px;
}
.sidebar-price strong{font-size:22px;font-weight:700}
.sidebar-price span{color:var(--muted);font-size:14px}
.reserve-btn{
  width:100%;margin:0;padding:14px 22px;font-size:15px;
  border:0;background:#111;color:#fff;font-weight:700;
  border-radius:999px;cursor:pointer;transition:background .18s;
  font-family:var(--font);
}
.reserve-btn:hover{background:#333}
.note{text-align:center;color:var(--muted);margin:10px 0 0;font-size:12px}

/* Hotline */
.sidebar-hotline{
  display:flex;align-items:center;gap:12px;
  padding:14px 16px;border-radius:14px;
  border:1.5px solid #e2e2e2;
  text-decoration:none;color:var(--ink);
  transition:border-color .18s,background .18s;
  margin-top:12px;
}
.sidebar-hotline:hover{border-color:var(--brand);background:rgba(201,168,76,.05)}
.sidebar-hotline>i{
  font-size:22px;color:var(--brand-dark);flex-shrink:0;
  width:40px;height:40px;border-radius:50%;
  background:rgba(201,168,76,.1);
  display:flex;align-items:center;justify-content:center;
}
.hotline-label{
  display:block;font-size:11px;font-weight:600;
  text-transform:uppercase;letter-spacing:.06em;color:var(--muted);
  margin-bottom:2px;
}
.hotline-number{
  display:block;font-size:15px;font-weight:700;color:var(--ink);
  letter-spacing:.01em;
}

/* Service rows */
.service-row{
  display:grid;grid-template-columns:100px minmax(0,1fr) auto;
  align-items:center;gap:16px;padding:16px 0;border-bottom:1px solid #ebebeb;
}
.service-row:last-child{border-bottom:0}
.service-row img{width:100px;height:78px;border-radius:12px}
.service-row h3{margin:0 0 3px;font-size:15px;line-height:20px;font-weight:600;display:flex;align-items:center;gap:6px}
.service-row h3 i{font-size:17px;color:var(--brand-dark)}
.service-row p{margin:0;color:var(--muted);font-size:13px;line-height:19px}
.service-row button{
  border:1px solid #222;background:#fff;color:#222;
  border-radius:999px;padding:9px 18px;font-weight:600;cursor:pointer;
  transition:background .15s,color .15s;font-size:13px;font-family:var(--font);
}
.service-row button:hover:not(.selected){background:#f7f7f7}
.service-row button.selected{background:#222;color:#fff}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */

/* Story — two-column */
.about-story{
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:center;
  padding:56px 5vw;border-bottom:1px solid #ebebeb;
}
.about-story-text .eyebrow{margin-bottom:12px}
.about-story-text h2{
  margin:0 0 18px;font-size:32px;line-height:38px;
  font-weight:700;letter-spacing:-.02em;
}
.about-story-text p{
  margin:0 0 14px;color:var(--muted);
  font-size:15px;line-height:27px;
}
.about-story-text p:last-child{margin-bottom:0}
.about-story-img{
  border-radius:22px;overflow:hidden;
  aspect-ratio:4/3;
}
.about-story-img img{width:100%;height:100%;object-fit:cover}

/* Team page */
.team-page{padding:0 5vw 72px}
.team-intro{max-width:680px;padding:44px 0 36px;border-bottom:1px solid #ebebeb}
.team-intro h2{margin:0 0 10px;font-size:26px;font-weight:700;letter-spacing:-.02em}
.team-intro p{margin:0;color:var(--muted);font-size:15px;line-height:27px}

/* Cards — 3-per-row grid */
.staff-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  padding:36px 0 16px;
}

.staff-card{
  border:1.5px solid #ebebeb;border-radius:22px;
  overflow:hidden;background:#fff;
  display:flex;flex-direction:column;
  transition:border-color .22s,box-shadow .22s,transform .22s;
}
.staff-card:hover{
  border-color:rgba(201,168,76,.45);
  box-shadow:0 14px 44px rgba(201,168,76,.14);
  transform:translateY(-5px);
}
.staff-photo{
  height:260px;overflow:hidden;background:#f2f2f2;
  position:relative;flex-shrink:0;
}
.staff-photo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.28) 0%,transparent 55%);
  opacity:0;transition:opacity .3s;pointer-events:none;
}
.staff-card:hover .staff-photo::after{opacity:1}
.staff-photo img{
  width:100%;height:100%;object-fit:cover;object-position:top center;
  transition:transform .6s cubic-bezier(.25,0,.25,1);
}
.staff-card:hover .staff-photo img{transform:scale(1.07)}

.staff-info{padding:20px 20px 22px;flex:1;display:flex;flex-direction:column}
.staff-info h3{margin:0 0 12px;font-size:16px;font-weight:700;line-height:22px;color:var(--ink)}

.staff-badges{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:16px}
.badge{
  padding:3px 10px;border-radius:999px;
  font-size:10.5px;font-weight:700;
  letter-spacing:.04em;line-height:18px;white-space:nowrap;
}
.badge-role{background:rgba(201,168,76,.13);color:var(--brand-dark)}
.badge-prop{background:#f0f0f0;color:var(--muted)}

.staff-quote{
  position:relative;
  flex:1;
  margin:0 0 18px;
  padding:14px 14px 14px 44px;
  font-size:14px;line-height:23px;
  color:#555;
  font-family:Georgia,'Times New Roman',serif;
  font-style:italic;
  background:rgba(201,168,76,.05);
  border-radius:14px;
}
.staff-quote::before{
  content:'\201C';
  position:absolute;left:10px;top:4px;
  font-size:62px;line-height:1;
  color:var(--brand);opacity:.65;
  font-style:normal;
  font-family:Georgia,'Times New Roman',serif;
}
.staff-bio-btn{
  display:inline-flex;align-items:center;gap:6px;
  padding:9px 18px;border-radius:999px;
  border:1.5px solid #e2e2e2;background:#fff;
  cursor:pointer;font-size:12.5px;font-weight:600;
  color:var(--ink);font-family:var(--font);
  transition:border-color .18s,background .18s,color .18s;
  align-self:flex-start;
}
.staff-bio-btn:hover{border-color:var(--brand);background:var(--brand);color:#fff}

/* Modal — Bootstrap 5 inspired */
.modal-backdrop{
  position:fixed;inset:0;
  background:rgba(0,0,0,.5);
  z-index:200;
  display:flex;align-items:center;justify-content:center;
  padding:20px;
}
.modal-backdrop[hidden]{display:none}

.bio-modal{
  background:#fff;
  border-radius:12px;
  max-width:520px;width:100%;
  max-height:88vh;
  overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:0 8px 32px rgba(0,0,0,.18);
  animation:modalIn .18s ease-out;
}
@keyframes modalIn{from{opacity:0;transform:scale(.97) translateY(10px)}to{opacity:1;transform:none}}

/* Header bar */
.modal-hd{
  display:flex;align-items:center;gap:14px;
  padding:16px 20px;
  border-bottom:1px solid #dee2e6;
  flex-shrink:0;
}
.modal-photo{
  width:48px;height:48px;border-radius:50%;
  object-fit:cover;object-position:top center;
  flex-shrink:0;border:1px solid #dee2e6;
}
.modal-hd-info{flex:1;min-width:0}
.modal-hd-name{margin:0 0 2px;font-size:16px;font-weight:700;line-height:20px}
.modal-hd-role{
  margin:0 0 3px;font-size:11px;font-weight:600;
  text-transform:uppercase;letter-spacing:.05em;color:var(--muted);
}
.modal-hd-loc{
  margin:0;font-size:12px;font-weight:600;
  color:var(--brand-dark);display:flex;align-items:center;gap:4px;
}
.modal-hd-loc i{font-size:13px}

.modal-close{
  width:32px;height:32px;border-radius:6px;
  border:1px solid #dee2e6;background:#fff;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  font-size:18px;color:#6c757d;flex-shrink:0;
  transition:background .15s,color .15s;
  font-family:var(--font);
}
.modal-close:hover{background:#f8f9fa;color:#000}

/* Scrollable body */
.modal-body{overflow-y:auto;padding:20px;flex:1}

.modal-quote{
  background:#f8f9fa;
  border-left:3px solid var(--brand);
  border-radius:0 6px 6px 0;
  padding:12px 16px;
  font-size:14px;line-height:22px;
  font-style:italic;color:#444;
  margin:0 0 18px;
}
.modal-bio p{
  font-size:14px;line-height:23px;
  color:var(--muted);margin:0 0 12px;
}
.modal-bio p:last-child{margin-bottom:0}

.modal-extras{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;
  margin-top:18px;padding-top:18px;
  border-top:1px solid #dee2e6;
}
.modal-extra-item{
  background:#f8f9fa;border-radius:8px;padding:12px 14px;
}
.modal-extra-item h4{
  font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:.07em;
  color:var(--muted);margin:0 0 5px;
}
.modal-extra-item p{font-size:13px;line-height:18px;color:var(--ink);margin:0}

/* Footer */
.modal-ft{
  padding:12px 20px;border-top:1px solid #dee2e6;
  display:flex;justify-content:flex-end;flex-shrink:0;
}
.modal-ft-btn{
  padding:8px 20px;border-radius:6px;
  border:1px solid #dee2e6;background:#fff;
  cursor:pointer;font-size:14px;font-weight:500;
  font-family:var(--font);color:var(--ink);
  transition:background .15s;
}
.modal-ft-btn:hover{background:#f8f9fa}

/* Standards */
.standards-section{
  padding:52px 5vw;
  background:var(--soft);
  border-bottom:1px solid #ebebeb;
}
.standards-section h2{margin:0 0 6px;font-size:26px;font-weight:700;letter-spacing:-.02em}
.standards-section>.section-subtitle{margin:0 0 32px;color:var(--muted);font-size:14px}
.standards-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.standard-item{
  padding:22px 18px;border-radius:16px;
  background:#fff;border:1px solid #ebebeb;
  transition:border-color .2s,box-shadow .2s;
}
.standard-item:hover{border-color:var(--brand);box-shadow:0 4px 16px rgba(201,168,76,.08)}
.standard-icon{
  width:44px;height:44px;border-radius:12px;
  background:rgba(201,168,76,.1);border:1px solid rgba(201,168,76,.2);
  display:flex;align-items:center;justify-content:center;
  font-size:21px;color:var(--brand-dark);margin-bottom:14px;
}
.standard-item h3{margin:0 0 6px;font-size:14px;font-weight:700}
.standard-item p{margin:0;color:var(--muted);font-size:13px;line-height:19px}

/* Etiquette */
.etiquette-section{padding:52px 5vw;border-bottom:1px solid #ebebeb}
.etiquette-section h2{margin:0 0 6px;font-size:26px;font-weight:700;letter-spacing:-.02em}
.etiquette-section>.section-subtitle{margin:0 0 32px;color:var(--muted);font-size:14px}
.etiquette-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;
}
.etiquette-item{
  padding:22px 20px;border-radius:16px;
  border:1px solid #ebebeb;
}
.etiquette-item i{font-size:24px;color:var(--brand-dark);margin-bottom:12px;display:block}
.etiquette-item h3{margin:0 0 6px;font-size:15px;font-weight:700}
.etiquette-item p{margin:0;color:var(--muted);font-size:13px;line-height:20px}

/* What makes us different */
.standout-section{padding:52px 5vw 0}
.standout-section h2{margin:0 0 6px;font-size:26px;font-weight:700;letter-spacing:-.02em}
.standout-section>.section-subtitle{margin:0 0 32px;color:var(--muted);font-size:14px}
.standout-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;
  margin-bottom:56px;
}
.standout-card{
  padding:32px 28px;border-radius:20px;
  background:#111;color:#fff;
}
.standout-card i{
  font-size:30px;color:var(--brand);
  display:block;margin-bottom:18px;
}
.standout-card h3{margin:0 0 10px;font-size:18px;font-weight:700;line-height:24px}
.standout-card p{margin:0;color:rgba(255,255,255,.62);font-size:14px;line-height:22px}

/* About & team responsive */
@media(max-width:1120px){
  .standards-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:820px){
  .about-story{grid-template-columns:1fr;gap:28px;padding:32px 20px}
  .about-story-img{order:-1}
  .team-page,.standards-section,.etiquette-section,.standout-section{padding-left:20px;padding-right:20px}
  .etiquette-grid{grid-template-columns:1fr 1fr}
  .standout-grid{grid-template-columns:1fr}
  .modal-body{padding:0 20px 28px}
  .modal-extras{grid-template-columns:1fr}
}
@media(max-width:560px){
  .etiquette-grid{grid-template-columns:1fr}
  .standards-grid{grid-template-columns:1fr}
}

/* ═══════════════════════════════════════
   SERVICE DETAIL PAGES
   ═══════════════════════════════════════ */

/* Hero */
.service-hero{
  position:relative;
  height:64vh;min-height:420px;
  margin:20px 5vw;
  border-radius:32px;overflow:hidden;
}
.service-hero img{
  width:100%;height:100%;object-fit:cover;
  transform:scale(1.08);
  transition:transform 10s ease-out;
}
.service-hero:hover img{transform:scale(1)}
.service-hero-gradient{
  position:absolute;inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.96) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.1) 70%, transparent 100%),
    radial-gradient(ellipse at 0% 100%, rgba(201,168,76,.12) 0%, transparent 55%);
}
.service-hero-content{
  position:absolute;bottom:56px;left:56px;right:36%;z-index:2;color:#fff;
}
.service-hero-content .hero-eye{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--brand);margin-bottom:20px;
  background:rgba(201,168,76,.1);border:1px solid rgba(201,168,76,.25);
  padding:6px 14px;border-radius:999px;
}
.service-hero-content h1{
  margin:0 0 16px;font-size:58px;line-height:62px;
  font-weight:800;letter-spacing:-.035em;
}
.service-hero-content p{
  margin:0;font-size:16px;line-height:27px;
  color:rgba(255,255,255,.72);max-width:480px;
}

/* Page wrapper */
.service-page{padding:0 5vw 100px}

/* Intro */
.service-intro{
  padding:60px 0 52px 24px;
  border-bottom:1px solid #ebebeb;
  position:relative;
}
.service-intro::before{
  content:'';position:absolute;left:0;top:60px;
  width:4px;height:72px;border-radius:2px;
  background:linear-gradient(to bottom,var(--brand),var(--brand-dark));
}
.service-intro h2{
  margin:0 0 16px;font-size:34px;line-height:42px;
  font-weight:800;letter-spacing:-.025em;color:var(--ink);
}
.service-intro p{
  margin:0;color:#555;font-size:17px;line-height:30px;
}

/* Section shared */
.svc-section{padding:60px 0 52px;border-bottom:1px solid #ebebeb}
.svc-section:last-of-type{border-bottom:0}
.svc-section h2{
  margin:0 0 8px;font-size:28px;line-height:34px;
  font-weight:800;letter-spacing:-.02em;color:var(--ink);
}
.svc-section .svc-lead{
  margin:0 0 36px;color:var(--muted);font-size:15px;line-height:24px;
}

/* ── Offerings ── */
.offerings-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;
}
.offering-card{
  padding:32px 28px;background:#fff;
  border:1.5px solid #ebebeb;border-radius:24px;
  transition:border-color .22s,box-shadow .22s,transform .22s;
  position:relative;overflow:hidden;
}
.offering-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(to right,var(--brand),var(--brand-dark));
  opacity:0;transition:opacity .22s;
}
.offering-card:hover{
  border-color:rgba(201,168,76,.3);
  box-shadow:0 14px 44px rgba(0,0,0,.1);
  transform:translateY(-4px);
}
.offering-card:hover::before{opacity:1}
.offering-icon{
  width:56px;height:56px;border-radius:18px;
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand-dark) 100%);
  display:flex;align-items:center;justify-content:center;
  font-size:26px;color:#fff;margin-bottom:20px;
  box-shadow:0 6px 18px rgba(201,168,76,.38);
}
.offering-card h3{margin:0 0 8px;font-size:17px;font-weight:700;color:var(--ink)}
.offering-card>p{margin:0 0 16px;color:var(--muted);font-size:14px;line-height:22px}
.offering-card ul{margin:0;padding:0;list-style:none}
.offering-card li{
  font-size:13.5px;line-height:26px;color:#555;
  padding:2px 0 2px 22px;position:relative;
}
.offering-card li::before{
  content:'✓';position:absolute;left:0;top:2px;
  font-size:12px;font-weight:800;color:var(--brand);
}

/* ── How it works steps ── */
.steps-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  border:1.5px solid #ebebeb;border-radius:24px;overflow:hidden;
}
.step{
  padding:40px 32px;
  border-right:1.5px solid #ebebeb;
  background:#fff;position:relative;overflow:hidden;
}
.step:last-child{border-right:0}
.step::after{
  content:attr(data-num);
  position:absolute;top:-8px;right:16px;
  font-size:100px;font-weight:900;line-height:1;
  color:rgba(201,168,76,.07);letter-spacing:-.04em;
  pointer-events:none;
}
.step-num{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand-dark) 100%);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;font-weight:800;margin-bottom:20px;
  box-shadow:0 6px 18px rgba(201,168,76,.38);
  position:relative;
}
.step h3{margin:0 0 10px;font-size:16px;font-weight:700;color:var(--ink)}
.step p{margin:0;color:var(--muted);font-size:14px;line-height:23px}

/* ── Pricing ── */
.pricing-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:16px;
  align-items:stretch;
}
.pricing-card{
  padding:28px 22px;border:1.5px solid #ebebeb;border-radius:22px;
  text-align:center;
  transition:border-color .2s,box-shadow .2s,transform .2s;
}
.pricing-card:hover{
  border-color:rgba(201,168,76,.5);
  box-shadow:0 8px 28px rgba(201,168,76,.1);
  transform:translateY(-3px);
}
.pricing-card.featured{
  border-color:var(--brand);
  background:#111;
  box-shadow:0 10px 40px rgba(0,0,0,.28);
}
.pricing-card h3{
  margin:0 0 14px;font-size:10.5px;font-weight:700;
  text-transform:uppercase;letter-spacing:.09em;color:var(--muted);
}
.pricing-card.featured h3{color:rgba(255,255,255,.4)}
.pc-amount{
  font-size:40px;font-weight:800;letter-spacing:-.03em;
  line-height:1;margin-bottom:14px;color:var(--ink);
}
.pricing-card.featured .pc-amount{color:var(--brand)}
.pc-amount small{font-size:14px;font-weight:500;color:var(--muted);letter-spacing:0}
.pricing-card.featured .pc-amount small{color:rgba(255,255,255,.35)}
.pricing-card p{margin:0;color:var(--muted);font-size:13px;line-height:20px}
.pricing-card.featured p{color:rgba(255,255,255,.45)}

/* ── Info grid (coverage / good-to-know) ── */
.info-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;
}
.info-item{
  display:flex;align-items:flex-start;gap:18px;
  padding:22px 20px;background:#fff;
  border:1.5px solid #ebebeb;border-radius:20px;
  transition:border-color .2s,box-shadow .2s,transform .2s;
}
.info-item:hover{
  border-color:rgba(201,168,76,.35);
  box-shadow:0 6px 22px rgba(0,0,0,.07);
  transform:translateY(-2px);
}
.info-item>i{
  font-size:20px;color:#fff;flex-shrink:0;
  width:44px;height:44px;border-radius:14px;
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand-dark) 100%);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(201,168,76,.28);
}
.info-item>div{flex:1}
.info-item h4{margin:0 0 5px;font-size:14px;font-weight:700;color:var(--ink)}
.info-item p{margin:0;color:var(--muted);font-size:13px;line-height:21px}

/* ── FAQ accordion ── */
.faq-item{
  border:1.5px solid #e8e8e8;border-radius:18px;
  margin-bottom:10px;overflow:hidden;
  transition:box-shadow .2s,border-color .2s;
}
.faq-item:last-child{margin-bottom:0}
.faq-item[open]{
  border-color:rgba(201,168,76,.4);
  box-shadow:0 8px 28px rgba(0,0,0,.07);
}
.faq-item summary{
  list-style:none;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:22px 26px;font-size:15px;font-weight:600;color:var(--ink);
  cursor:pointer;user-select:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item[open] summary{border-bottom:1px solid #ebebeb;background:rgba(201,168,76,.03)}
.faq-item summary i{
  font-size:20px;color:var(--brand);flex-shrink:0;
  transition:transform .25s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary i{transform:rotate(45deg)}
.faq-item p{
  margin:0;padding:20px 26px 24px;
  color:var(--muted);font-size:14px;line-height:25px;
}

/* ── CTA strip ── */
.service-cta{
  margin:64px 0 0;padding:60px 64px;border-radius:32px;
  background:linear-gradient(135deg,#0f0d09 0%,#1f1608 55%,#0f0d09 100%);
  color:#fff;display:grid;grid-template-columns:1fr auto;
  align-items:center;gap:48px;position:relative;overflow:hidden;
}
.service-cta::before{
  content:'';position:absolute;top:-80px;right:-80px;
  width:360px;height:360px;border-radius:50%;
  background:radial-gradient(circle,rgba(201,168,76,.22) 0%,transparent 65%);
  pointer-events:none;
}
.service-cta::after{
  content:'';position:absolute;bottom:-100px;left:-60px;
  width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle,rgba(201,168,76,.1) 0%,transparent 65%);
  pointer-events:none;
}
.service-cta h2{
  margin:0 0 12px;font-size:32px;line-height:40px;
  font-weight:800;letter-spacing:-.025em;position:relative;z-index:1;
}
.service-cta p{
  margin:0;color:rgba(255,255,255,.52);
  font-size:15px;line-height:26px;position:relative;z-index:1;
}
.svc-cta-btn{
  display:inline-flex;align-items:center;gap:9px;
  padding:16px 32px;border-radius:999px;
  background:var(--brand);color:#111;
  font-weight:700;font-size:15px;letter-spacing:.01em;
  white-space:nowrap;text-decoration:none;flex-shrink:0;
  box-shadow:0 8px 24px rgba(201,168,76,.45);
  transition:background .18s,transform .15s,box-shadow .18s;
  position:relative;z-index:1;
}
.svc-cta-btn:hover{
  background:#d9b84e;transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(201,168,76,.55);
}
.cta-note{
  display:block;margin-top:14px;
  font-size:12px;color:rgba(255,255,255,.3);
  position:relative;z-index:1;letter-spacing:.02em;
}

/* ── Property page: Add-ons section "Book Now" ── */
.svc-row-book{
  display:inline-flex;align-items:center;gap:7px;
  font-size:13px;font-weight:700;
  color:var(--ink);background:transparent;
  border:1.5px solid var(--brand);
  padding:9px 20px;border-radius:999px;
  white-space:nowrap;text-decoration:none;
  cursor:pointer;align-self:center;
  transition:background .18s,color .18s,border-color .18s;
}
.svc-row-book:hover{background:var(--brand);color:#fff;border-color:var(--brand)}

/* Service page responsive */
@media(max-width:820px){
  .service-hero{height:52vh;min-height:320px;margin:14px 20px;border-radius:24px}
  .service-hero-content{left:28px;right:28px;bottom:40px}
  .service-hero-content h1{font-size:36px;line-height:42px}
  .service-page{padding:0 20px 64px}
  .service-intro{padding-left:20px}
  .service-intro::before{top:60px;height:60px}
  .service-intro h2{font-size:26px;line-height:32px}
  .svc-section h2{font-size:23px;line-height:30px}
  .steps-grid{grid-template-columns:1fr;border-radius:20px}
  .step{border-right:0;border-bottom:1.5px solid #ebebeb}
  .step:last-child{border-bottom:0}
  .offerings-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .info-grid{grid-template-columns:1fr}
  .service-cta{grid-template-columns:1fr;padding:40px 32px;gap:28px}
  .service-cta h2{font-size:26px;line-height:34px}
  .staff-row{grid-template-columns:repeat(2,1fr);gap:16px}
  .staff-photo{height:220px}
}
@media(max-width:560px){
  .pricing-grid{grid-template-columns:1fr}
  .service-hero-content h1{font-size:30px;line-height:36px}
  .service-hero-content{left:24px;right:24px;bottom:32px}
  .staff-row{grid-template-columns:1fr}
  .staff-photo{height:260px}
}

/* ═══════════════════════════════════════
   INFORMATION / LEGAL PAGES
   ═══════════════════════════════════════ */
.info-page{
  padding:40px 5vw 72px;
}
.info-page-hero{
  padding:40px 5vw 32px;
  background:var(--soft);
  border-bottom:1px solid var(--line);
  margin-bottom:0;
}
.info-page-hero .hero-eye{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--brand-dark);
  margin-bottom:10px;
}
.info-page-hero h1{
  margin:0 0 10px;
  font-size:32px;
  line-height:38px;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--ink);
}
.info-page-hero p{
  margin:0;
  font-size:15px;
  line-height:24px;
  color:var(--muted);
  max-width:620px;
}
.info-section{
  padding:36px 0;
  border-bottom:1px solid #ebebeb;
}
.info-section:last-of-type{border-bottom:0}
.info-section h2{
  font-size:19px;
  font-weight:700;
  line-height:24px;
  margin:0 0 14px;
  letter-spacing:-.01em;
  color:var(--ink);
}
.info-section h3{
  font-size:15px;
  font-weight:700;
  margin:22px 0 8px;
  color:var(--ink);
}
.info-section p,.info-section li{
  font-size:15px;
  line-height:26px;
  color:#444;
  margin:0 0 12px;
}
.info-section ul,.info-section ol{
  padding-left:22px;
  margin:8px 0 12px;
}
.info-section li{margin-bottom:6px}
.info-section a{color:var(--brand-dark);text-decoration:none}
.info-meta{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:var(--muted);
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:6px;
  padding:4px 10px;
  margin-bottom:28px;
}
.support-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:24px;
}
.support-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px 20px;
  text-align:center;
  transition:box-shadow .2s;
}
.support-card:hover{box-shadow:var(--shadow-soft)}
.support-card i{font-size:28px;color:var(--brand);display:block;margin-bottom:12px}
.support-card h3{font-size:15px;font-weight:700;margin:0 0 8px;color:var(--ink)}
.support-card p{font-size:14px;line-height:22px;color:var(--muted);margin:0 0 14px}
.support-card a.support-cta{
  display:inline-flex;align-items:center;gap:6px;
  font-size:13px;font-weight:700;
  color:var(--brand-dark);
  text-decoration:none;
  border:1.5px solid var(--brand);
  border-radius:999px;
  padding:7px 16px;
  transition:background .18s,color .18s;
}
.support-card a.support-cta:hover{background:var(--brand);color:#fff}
.support-card a.support-cta i{font-size:14px;display:inline;vertical-align:middle;margin:0;color:inherit}
@media(max-width:820px){
  .info-page{padding:32px 20px 56px}
  .info-page-hero{padding:32px 20px 28px}
  .info-page-hero h1{font-size:26px;line-height:32px}
  .support-grid{grid-template-columns:1fr}
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width:1120px){
  .hero{height:58vh;min-height:380px}
  .slide-headline{font-size:40px;line-height:44px}
  .slide-content{right:30%}
  .property-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .addon-grid{grid-template-columns:1fr 1fr}
  .detail-layout{grid-template-columns:1fr;gap:36px}
  .booking-card{position:static}
}
@media (max-width:820px){
  /* Header collapses — show only logo + pill */
  .site-header{grid-template-columns:auto auto;justify-content:space-between;align-items:center;height:64px;padding:0 20px}
  .nav{display:none}
  .header-link{display:none}
  .header-actions{gap:0}
  .hero{height:52vh;min-height:320px;margin:0;border-radius:0}
  .slide-headline{font-size:34px;line-height:38px}
  .slide-content{left:20px;right:20px;bottom:62px}
  .slide-tagline{font-size:14px}
  .cta-book,.cta-explore{padding:12px 22px;font-size:13px}
  .slide-gradient{
    background:
      linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.15) 72%, transparent 100%);
  }
  .section,.detail-page{padding-left:20px;padding-right:20px}
  .host-panel{margin:0 20px 40px;padding:32px 24px;grid-template-columns:1fr}
  .section-head{flex-direction:column;align-items:flex-start}
  .property-grid,.addon-grid{grid-template-columns:1fr}
  .also-stays-grid{
    display:flex;overflow-x:auto;gap:16px;
    scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
    scrollbar-width:none;padding-bottom:8px;
    margin:0 -20px;padding-left:20px;padding-right:20px;
  }
  .also-stays-grid::-webkit-scrollbar{display:none}
  .also-stays-grid .property-card{flex:0 0 78%;scroll-snap-align:start}
  .photo-gallery{grid-template-columns:1fr;grid-template-rows:auto}
  .gallery-main{grid-row:auto}
  .photo-gallery img{height:220px}
  .amenity-grid{grid-template-columns:1fr}
  .service-row{grid-template-columns:1fr}
  .service-row img{width:100%;height:200px}
  .service-row button{justify-self:start}
  footer{flex-direction:column;gap:16px;align-items:flex-start}
  .footer-links{gap:6px 14px}
  .section-head h2,.host-panel h2{font-size:24px;line-height:28px}
  .host-panel h2{font-size:28px;line-height:34px}
}
@media (max-width:560px){
  .brand img{height:44px}
  .hero{height:48vh;min-height:280px}
  .slide-headline{font-size:28px;line-height:32px}
  .slide-tagline{display:none}
  .slider-nav{bottom:18px}
  .section-head h2{font-size:22px;line-height:26px}
  .card-title-row{flex-direction:column;gap:1px}
}
