/* ==========================================================================
   Skyview Vacation Homes — blue & gold theme
   ========================================================================== */
:root {
  --navy: #0a2a43;
  --navy-deep: #071e30;
  --blue: #124e7c;
  --blue-mid: #1c6ca8;
  --sky: #4a97cf;
  --gold: #c8a24a;
  --gold-bright: #e0bd5f;
  --gold-deep: #a8842f;
  --cream: #f7f4ec;
  --paper: #ffffff;
  --ink: #16232d;
  --muted: #5c6b76;
  --line: #e5e1d6;
  --shadow: 0 10px 30px rgba(10, 42, 67, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 42, 67, 0.22);
  --radius: 14px;
  --wrap: 1180px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 700; letter-spacing: .02em; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--navy-deep); box-shadow: 0 8px 20px rgba(200,162,74,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(200,162,74,.45); color: var(--navy-deep); }
.linklike { background: none; border: none; color: var(--blue); font: inherit; cursor: pointer; text-decoration: underline; padding: 0; }

/* ------------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 30, 48, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }
.brand { display: flex; align-items: baseline; gap: 8px; color: #fff; }
.brand-mark { color: var(--gold-bright); font-size: 1.1rem; transform: translateY(-1px); }
.brand-text { font-size: 1.5rem; font-weight: 800; letter-spacing: .12em; color: #fff; }
.brand-gold { color: var(--gold-bright); }
.brand-sub { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--sky); align-self: flex-end; padding-bottom: 3px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a, .nav-drop-toggle {
  color: #e8eef4; font-weight: 600; font-size: .95rem; padding: 10px 14px; border-radius: 8px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.main-nav > a:hover, .nav-drop-toggle:hover { color: var(--gold-bright); background: rgba(255,255,255,.06); }
.main-nav > a.active, .nav-drop-toggle.active { color: var(--gold-bright); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-drop-menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 260px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  max-height: 70vh; overflow-y: auto;
}
.nav-dropdown:hover .nav-drop-menu, .nav-dropdown:focus-within .nav-drop-menu,
.nav-drop-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu a { display: block; padding: 9px 14px; border-radius: 8px; color: var(--ink); font-size: .92rem; font-weight: 500; }
.nav-drop-menu a:hover { background: var(--cream); color: var(--blue); }

.owner-login { border: 1.5px solid var(--gold); color: var(--gold-bright) !important; border-radius: 999px; padding: 8px 16px !important; margin-left: 8px; font-size: .88rem; }
.owner-login:hover { background: var(--gold); color: var(--navy-deep) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--gold-bright); border-radius: 2px; transition: .2s; }

/* --------------------------------------------------------------------- hero */
.hero {
  position: relative; min-height: 620px; display: flex; align-items: center;
  background: linear-gradient(rgba(7,30,48,.55), rgba(7,30,48,.65)),
    url("https://uc.orez.io/i/9e88a87256a3485aa9077a870069f007-Large") center/cover no-repeat;
}
.hero-content { position: relative; text-align: center; padding: 90px 24px; width: 100%; }
.hero-title { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; text-shadow: 0 3px 24px rgba(0,0,0,.4); margin-bottom: .2em; }
.hero-tagline { color: #eaf1f7; font-size: clamp(1rem, 2vw, 1.3rem); max-width: 640px; margin: 0 auto 40px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }

/* search bar */
.search-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end;
  background: rgba(255,255,255,.97); border-radius: 18px; padding: 18px;
  box-shadow: var(--shadow-lg); max-width: 960px; margin: 0 auto;
  border-top: 4px solid var(--gold);
}
.search-field { flex: 1 1 150px; text-align: left; min-width: 0; }
.search-field.narrow { flex: 1 1 90px; }
.search-field label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: 5px; }
.search-field input, .search-field select {
  width: 100%; padding: 12px 12px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .95rem; background: #fff; color: var(--ink); min-width: 0;
}
.search-field input:focus, .search-field select:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(74,151,207,.2); }
.search-btn {
  flex: 0 0 auto; padding: 13px 30px; border: none; border-radius: 10px; cursor: pointer;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: #fff;
  font-weight: 700; font-size: 1rem; letter-spacing: .02em; transition: transform .15s, box-shadow .15s;
  box-shadow: 0 8px 20px rgba(18,78,124,.4); align-self: stretch; margin-top: auto; height: 46px;
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(18,78,124,.5); }

/* ------------------------------------------------------------ section heads */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy); }
.section-head h2::after { content: ""; display: block; width: 60px; height: 3px; background: var(--gold); margin: 14px auto 0; border-radius: 2px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 14px 0 0; }

/* ------------------------------------------------------------- region cards */
.regions-section { padding: 80px 0; }
.region-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.region-card-overlay h3 { font-size: 1.25rem; }
.region-card {
  position: relative; min-height: 300px; border-radius: var(--radius); overflow: hidden;
  background-size: cover; background-position: center; display: flex; align-items: flex-end;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.region-card-overlay {
  width: 100%; padding: 22px; color: #fff;
  background: linear-gradient(rgba(7,30,48,0) 0%, rgba(7,30,48,.85) 90%);
}
.region-card-overlay h3 { font-size: 1.4rem; margin-bottom: 2px; }
.region-card-overlay p { margin: 0 0 8px; color: var(--gold-bright); font-weight: 600; font-size: .9rem; }
.region-card-link { font-weight: 700; color: #fff; font-size: .9rem; }

/* --------------------------------------------------------------- properties */
.properties-section { padding: 80px 0; }
.properties-section.related { padding-top: 30px; background: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.property-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; display: block; aspect-ratio: 3/2; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.property-card:hover .card-media img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep); font-weight: 700; font-size: .72rem; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-loc { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sky); font-weight: 700; }
.card-title { font-size: 1.25rem; margin: 4px 0 8px; }
.card-title a { color: var(--navy); }
.card-title a:hover { color: var(--blue); }
.card-specs { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.card-cta { margin-top: auto; font-weight: 700; color: var(--gold-deep); }
.card-cta:hover { color: var(--gold); }

.no-results { text-align: center; background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); padding: 40px; margin-bottom: 30px; color: var(--muted); font-size: 1.05rem; }

/* -------------------------------------------------------------- page heroes */
.page-hero, .prop-hero { position: relative; min-height: 380px; display: flex; align-items: center; background-size: cover; background-position: center; }
.page-hero-overlay, .prop-hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(7,30,48,.5), rgba(7,30,48,.75)); }
.page-hero-content, .prop-hero-content { position: relative; color: #fff; padding: 70px 0; width: 100%; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; color: var(--gold-bright); margin: 0 0 10px; }
.page-hero-content h1, .prop-hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); text-shadow: 0 3px 20px rgba(0,0,0,.4); }
.page-hero-blurb { max-width: 620px; font-size: 1.12rem; color: #eaf1f7; margin: 0 0 26px; }
.prop-hero-specs { font-size: 1.05rem; color: #eaf1f7; font-weight: 600; }
.back-link { color: #dfe8f0; font-weight: 600; display: inline-block; margin-bottom: 18px; }
.back-link:hover { color: var(--gold-bright); }

/* --------------------------------------------------------- property detail */
.prop-main { padding: 60px 0 80px; }
.prop-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.prop-content h2 { font-size: 1.6rem; color: var(--navy); margin-top: 34px; }
.prop-content h2:first-child { margin-top: 0; }
.prop-highlights { list-style: none; padding: 0; margin: 0 0 10px; }
.prop-highlights li { padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); position: relative; }
.prop-highlights li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 800; }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 10px 0 0; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.fact dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.fact dd { margin: 4px 0 0; font-size: 1.05rem; font-weight: 600; color: var(--navy); }

.prop-booking { position: sticky; top: 96px; }
.booking-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px; border-top: 4px solid var(--gold); }
.booking-title { font-size: 1.3rem; color: var(--navy); margin-bottom: 16px; }
.widget-placeholder { text-align: center; border: 2px dashed var(--line); border-radius: 12px; padding: 30px 20px; background: var(--cream); }
.widget-placeholder-icon { font-size: 2.4rem; }
.widget-placeholder h3 { color: var(--navy); font-size: 1.15rem; margin: 8px 0; }
.widget-placeholder p { color: var(--muted); font-size: .92rem; margin: 0 0 16px; }
.widget-hint { font-size: .78rem; color: var(--muted); margin-top: 14px; }

/* ------------------------------------------------------------------- footer */
.site-footer { background: var(--navy-deep); color: #c3d2de; padding: 56px 0 24px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 28px; }
.footer-brand .brand-text { font-size: 1.5rem; font-weight: 800; letter-spacing: .12em; }
.footer-brand p { color: #8ea6b8; max-width: 300px; margin-top: 10px; }
.footer-col h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col a { display: block; color: #a9bccb; padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; }
.footer-bottom p { font-size: .85rem; color: #7c93a4; margin: 0; }

/* ---------------------------------------------------------------- logo/img */
.brand-logo { height: 54px; width: auto; display: block; }
.footer-logo { height: 66px; width: auto; display: block; margin-bottom: 12px; }

/* --------------------------------------------------- widget (avail/reviews) */
.widget-section { padding: 70px 0 24px; }
.widget-card { max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold); padding: 24px; }
.widget-card.wide { max-width: 840px; }
.availability-widget { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold); padding: 22px; }
.search-bar.inline { max-width: 100%; margin: 0 auto 34px; }

/* ------------------------------------------------------------------ the map */
.map-hero { min-height: 300px; background: linear-gradient(135deg, var(--blue), var(--navy-deep)); }
.map-wrap { width: 100%; background: #dfe6ea; }
#map { width: 100%; height: 72vh; min-height: 460px; z-index: 1; }
.map-popup { width: 224px; }
.map-popup > a img { width: 224px; height: 132px; object-fit: cover; display: block; border-radius: 8px; }
.map-popup-body { padding: 10px 2px 2px; }
.map-popup-body strong { display: block; color: var(--navy); font-size: 1.05rem; line-height: 1.2; }
.map-popup-loc { display: block; color: var(--sky); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin: 4px 0 2px; }
.map-popup-specs { display: block; color: var(--muted); font-size: .85rem; margin-bottom: 8px; }
.map-popup-link { font-weight: 700; color: var(--gold-deep); }
.map-popup-link:hover { color: var(--gold); }
.leaflet-popup-content { margin: 12px 12px 12px 12px; }

/* --------------------------------------------------------------- reviews */
.reviews-section { padding: 70px 0 90px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 18px; font-size: 1.02rem; color: var(--ink); line-height: 1.6; font-style: italic; }
.review-card figcaption { margin-top: auto; }
.review-name { display: block; font-weight: 700; color: var(--navy); }
.review-meta { display: block; font-size: .85rem; color: var(--muted); margin-top: 3px; }
.reviews-section code { background: #eee4cf; color: var(--gold-deep); padding: 1px 6px; border-radius: 5px; font-size: .9em; }

/* ------------------------------------------------------------ photo gallery */
.gallery-section { padding: 26px 0 8px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 10px; }
.g-thumb { display: block; overflow: hidden; border-radius: 10px; }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.g-thumb:hover img { transform: scale(1.06); }
.g-thumb.g-main { grid-column: span 2; grid-row: span 2; }
.gallery-all { margin-top: 14px; }

.lightbox { position: fixed; inset: 0; background: rgba(7,20,31,.96); z-index: 200; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 60px rgba(0,0,0,.6); }
.lightbox button { position: absolute; background: rgba(255,255,255,.08); color: #fff; border: none; cursor: pointer; border-radius: 999px; width: 52px; height: 52px; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.lightbox button:hover { background: rgba(224,189,95,.35); }
.lb-close { top: 20px; right: 20px; font-size: 2rem !important; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: #cfe0ee; font-size: .9rem; letter-spacing: .05em; }

/* ------------------------------------------------- chips, amenities, rules */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.chip { background: #fff; border: 1.5px solid var(--gold); color: var(--gold-deep); border-radius: 999px; padding: 6px 14px; font-size: .85rem; font-weight: 700; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.amenity-group { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; }
.amenity-group h3 { font-size: .95rem; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; border-bottom: 2px solid var(--gold); padding-bottom: 8px; margin-bottom: 10px; }
.amenity-group ul { list-style: none; margin: 0; padding: 0; columns: 1; }
.amenity-group li { padding: 3px 0 3px 18px; position: relative; font-size: .93rem; color: var(--ink); }
.amenity-group li::before { content: "•"; position: absolute; left: 4px; color: var(--gold); font-weight: 800; }
.prop-highlights.rules li::before { content: "—"; }

/* -------------------------------------------- OwnerRez widgets + prop extras */
.ownerrez-widget { width: 100%; }
.ownerrez-widget iframe { width: 100% !important; border: 0; }
.prop-extra { padding: 46px 0; }
.prop-extra.alt { background: #fff; }
.prop-extra-title { font-size: 1.6rem; color: var(--navy); margin-bottom: 6px; }
.prop-extra-sub { color: var(--muted); margin: 0 0 22px; }
.review-picker-bar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 22px; margin-bottom: 28px; }
.review-picker-bar label { font-weight: 700; color: var(--navy); font-size: .95rem; white-space: nowrap; }
.review-picker-bar select { flex: 1 1 280px; max-width: 460px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: .95rem; background: #fff; color: var(--ink); }
.review-picker-bar select:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(74,151,207,.2); }
.review-showing { color: var(--muted); font-size: .85rem; margin-left: auto; white-space: nowrap; }

.review-blocks { display: grid; gap: 26px; }
.review-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 24px; }
.review-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.review-block-head h3 { font-size: 1.25rem; margin: 0; }
.review-block-head h3 a { color: var(--navy); }
.review-block-head h3 a:hover { color: var(--blue); }
.review-block-loc { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--sky); font-weight: 700; }

/* ------------------------------------------------- owner pages (about/faq) */
.content-section { padding: 60px 0 80px; }
.content-narrow { max-width: 820px; }
.content-narrow h2 { color: var(--navy); font-size: 1.7rem; margin-top: 10px; }
.btn-line { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-line:hover { background: var(--blue); color: #fff; }

.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.founder-grid.single { grid-template-columns: 1fr; }
.founder-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.founder-card h3 { color: var(--navy); margin-bottom: 2px; }
.founder-role { color: var(--gold-deep); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 10px; }

.cta-band { background: var(--navy); color: #dfe8f0; border-radius: var(--radius); padding: 28px 30px; margin-top: 36px; }
.cta-band p { margin: 0 0 16px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-line { border-color: var(--gold-bright); color: var(--gold-bright); }
.cta-band .btn-line:hover { background: var(--gold-bright); color: var(--navy-deep); }

.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 16px 20px; font-weight: 700; color: var(--navy); list-style: none; position: relative; padding-right: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.4rem; font-weight: 800; transition: transform .2s; }
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item p { padding: 14px 20px 18px; margin: 0; color: var(--ink); }

.step-card { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin: 16px 0; box-shadow: var(--shadow); }
.step-num { flex: 0 0 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--navy-deep); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.step-card h3 { color: var(--navy); margin-bottom: 6px; }
.step-card p { margin: 0 0 8px; }
.tech-list { columns: 2; margin: 10px 0 0; padding: 0 0 0 18px; }
.tech-list li { padding: 3px 0; break-inside: avoid; }

/* --------------------------------------------------------------- responsive */
@media (max-width: 1080px) {
  .region-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-layout { grid-template-columns: 1fr; }
  .prop-booking { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--navy-deep); padding: 0 10px; gap: 2px; max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease; border-bottom: none;
  }
  .main-nav.open { max-height: 76vh; overflow-y: auto; padding: 10px; border-bottom: 2px solid var(--gold); }
  .main-nav > a, .nav-drop-toggle { padding: 14px; }
  .owner-login { margin: 8px 0 6px; text-align: center; padding: 12px 16px !important; }
  .nav-dropdown { width: 100%; }
  .nav-drop-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(255,255,255,.06); margin: 4px 0; padding: 4px; max-height: 260px;
  }
  .nav-drop-menu a { color: #cddae6; }
  .nav-drop-menu a:hover { background: rgba(255,255,255,.08); color: var(--gold-bright); }
  .search-btn { width: 100%; flex: 1 1 100%; }
  .hero { min-height: 560px; }
}
@media (max-width: 560px) {
  .region-grid, .card-grid, .fact-grid, .reviews-grid, .amenities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #map { height: 60vh; min-height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
}
