/* ===========================================================
   Rentify — Find Your Happy Place
   Brand: Navy #16244C  •  Orange #F26522
   =========================================================== */

:root {
  --navy:        #16244c;
  --navy-700:    #1e2f63;
  --navy-50:     #eef1f8;
  --orange:      #f26522;
  --orange-dark: #d9531a;
  --orange-50:   #fff1ea;
  --ink:         #1c2030;
  --muted:       #5d6577;
  --line:        #e6e9f0;
  --bg:          #ffffff;
  --bg-soft:     #f6f7fb;
  --white:       #ffffff;
  --green:       #1f9d6b;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 10px rgba(22, 36, 76, .06);
  --shadow-md:   0 12px 30px rgba(22, 36, 76, .10);
  --shadow-lg:   0 24px 60px rgba(22, 36, 76, .16);
  --container:   1200px;
  --ease:        cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;          /* contain decorative elements that sit just past the edge */
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 700;
}

/* ---------- Layout helpers ---------- */
.container { width: min(var(--container), 92%); margin-inline: auto; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 14px 0 12px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  --c: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(242, 101, 34, .32); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(242, 101, 34, .4); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 62px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 600; font-size: .96rem; color: var(--navy);
  padding: 9px 14px; border-radius: 999px; position: relative;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--navy-50); }
.nav-links a.active { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; transition: .3s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(242,101,34,.28), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(30,47,99,.9), transparent 60%);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center; padding: 84px 0 96px;
}
.hero-copy { color: #fff; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 14px 7px 9px; border-radius: 999px; color: #fff; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #46d39a; box-shadow: 0 0 0 4px rgba(70,211,154,.25); }
.hero-copy h1 { color: #fff; font-size: clamp(2.5rem, 5.4vw, 4rem); line-height: 1.04; }
.hero-copy h1 .accent { color: var(--orange); }
.hero-copy p.lead { color: rgba(255,255,255,.82); font-size: 1.16rem; margin: 22px 0 30px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-family: "Sora", sans-serif; font-size: 1.9rem; color: #fff; line-height: 1; }
.hero-stats .stat span { color: rgba(255,255,255,.65); font-size: .9rem; }

/* Hero media collage */
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 5px solid rgba(255,255,255,.9);
}
.hero-media .frame img { width: 100%; height: 460px; object-fit: cover; }
.hero-media .float-card {
  position: absolute; bottom: -26px; left: -26px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.hero-media .float-card .ic {
  width: 42px; height: 42px; border-radius: 12px; background: var(--orange-50);
  display: grid; place-items: center; color: var(--orange);
}
.hero-media .float-card small { color: var(--muted); font-size: .76rem; display: block; }
.hero-media .float-card strong { color: var(--navy); font-size: 1rem; font-family: "Sora", sans-serif; }
.hero-media .pill-top {
  position: absolute; top: 18px; right: -14px; background: #fff; color: var(--navy);
  font-weight: 700; font-size: .85rem; padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-md);
}
.hero-media .pill-top b { color: var(--orange); }

/* ---------- Search bar ---------- */
.search-wrap { position: relative; margin-top: -40px; z-index: 5; }
.search-bar {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 4px; padding: 12px;
  border: 1px solid var(--line);
}
.search-field {
  display: flex; align-items: center; gap: 12px; padding: 10px 16px;
  border-radius: var(--radius-sm); transition: background .2s;
}
.search-field:hover { background: var(--bg-soft); }
.search-field + .search-field { border-left: 1px solid var(--line); }
.search-field .ic { color: var(--orange); flex-shrink: 0; }
.search-field .field-body { flex: 1; min-width: 0; }
.search-field label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: 1px; }
.search-field select, .search-field input {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  border: none; outline: none; font-family: inherit; font-size: 1rem; font-weight: 600;
  color: var(--navy); background: transparent; width: 100%; cursor: pointer;
  padding: 0; line-height: 1.4;
}
.search-field select {
  padding-right: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23f26522' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right center; background-size: 11px;
}
.search-field select::-ms-expand { display: none; }
.search-field select option { color: var(--navy); font-weight: 500; }
.search-bar .btn { height: 100%; padding-inline: 30px; align-self: stretch; }

/* ---------- Feature strip ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  display: flex; gap: 14px; align-items: flex-start; padding: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; flex-shrink: 0; }
.feature h4 { font-size: 1.02rem; margin-bottom: 3px; }
.feature p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Property cards ---------- */
.cards-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.cards-head .link {
  font-weight: 600; color: var(--orange); display: inline-flex; gap: 8px; align-items: center;
}
.cards-head .link:hover { gap: 12px; }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: .75rem; font-weight: 700; padding: 6px 13px; border-radius: 999px;
  background: var(--navy); color: #fff; letter-spacing: .02em;
}
.badge.available { background: var(--orange); }
.badge.occupied  { background: rgba(28,32,48,.78); backdrop-filter: blur(4px); }
.badge.soon      { background: #fff; color: var(--navy); }
.card-media .price-tag {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  color: var(--navy); font-family: "Sora", sans-serif; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; font-size: 1rem; box-shadow: var(--shadow-sm);
}
.card-media .price-tag span { font-size: .78rem; color: var(--muted); font-weight: 600; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.22rem; margin-bottom: 6px; }
.card-loc { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.card-loc svg { color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; }
.card-specs {
  display: flex; gap: 16px; flex-wrap: wrap; padding-top: 16px; margin-top: auto;
  border-top: 1px solid var(--line); color: var(--navy); font-size: .88rem; font-weight: 600;
}
.card-specs .spec { display: flex; align-items: center; gap: 7px; }
.card-specs .spec svg { width: 18px; height: 18px; color: var(--muted); }
.card-foot { margin-top: 16px; }
.card.is-occupied { opacity: .96; }
.card.is-occupied .card-media img { filter: grayscale(.35); }

/* ---------- Amenities chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--navy);
  background: #fff; border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px;
}
.chip svg { width: 17px; height: 17px; color: var(--orange); }

/* ---------- Why / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  position: relative; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .num {
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.05rem; color: #fff;
  width: 44px; height: 44px; border-radius: 12px; background: var(--navy); display: grid; place-items: center; margin-bottom: 18px;
}
.step:nth-child(2) .num { background: var(--orange); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; background: var(--navy); padding: 60px; color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 360px at 88% 120%, rgba(242,101,34,.4), transparent 60%);
}
.cta-band .inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 10px; max-width: 520px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand img { height: 40px; filter: brightness(0) invert(1); }
.footer-about p { margin: 18px 0; font-size: .94rem; max-width: 320px; }
.footer-col h5 { color: #fff; font-family: "Sora", sans-serif; font-size: 1rem; margin-bottom: 18px; }
.footer-col a, .footer-col li { display: block; padding: 5px 0; font-size: .94rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }

/* ===========================================================
   Property detail page
   =========================================================== */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 34px 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--line); }
.ph-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.ph-head h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.ph-head .loc { display: flex; align-items: center; gap: 7px; color: var(--muted); margin-top: 8px; }
.ph-head .loc svg { color: var(--orange); width: 18px; height: 18px; }
.ph-price { text-align: right; }
.ph-price .amt { font-family: "Sora", sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1; }
.ph-price .amt span { font-size: 1rem; color: var(--muted); font-weight: 600; }
.ph-price .tag { display: inline-block; margin-top: 8px; background: var(--orange-50); color: var(--orange-dark); font-weight: 700; font-size: .82rem; padding: 5px 14px; border-radius: 999px; }

/* Gallery */
.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 12px; height: 520px; margin: 32px 0 0;
}
.gallery a { overflow: hidden; border-radius: 14px; position: relative; cursor: pointer; }
.gallery a:first-child { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }
.gallery .more {
  position: absolute; inset: 0; background: rgba(22,36,76,.55); color: #fff;
  display: grid; place-items: center; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.2rem;
}

/* Detail layout */
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; padding-top: 56px; }
.detail-main h2 { font-size: 1.5rem; margin-bottom: 14px; }
.detail-block { padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
.detail-block:last-child { border-bottom: none; }
.detail-block p { color: var(--muted); }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 6px; }
.spec-box { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; text-align: center; }
.spec-box svg { width: 26px; height: 26px; color: var(--orange); margin-bottom: 8px; }
.spec-box strong { display: block; font-family: "Sora", sans-serif; color: var(--navy); font-size: 1.15rem; }
.spec-box span { font-size: .82rem; color: var(--muted); }
.amenity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.amenity-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.amenity-list .tick { width: 26px; height: 26px; border-radius: 8px; background: var(--orange-50); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.amenity-list .tick svg { width: 15px; height: 15px; }

/* Sticky booking card */
.book-card {
  position: sticky; top: 96px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 26px; overflow: hidden;
}
.book-card .bc-price { display: flex; align-items: baseline; gap: 6px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.book-card .bc-price strong { font-family: "Sora", sans-serif; font-size: 2rem; color: var(--navy); }
.book-card .bc-price span { color: var(--muted); }
.book-card .field { margin-bottom: 14px; }
.book-card label { display: block; font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.book-card input, .book-card textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .94rem; color: var(--ink); background: var(--bg-soft); outline: none; transition: border .2s, background .2s;
}
.book-card input:focus, .book-card textarea:focus { border-color: var(--orange); background: #fff; }
.book-card textarea { resize: vertical; min-height: 84px; }
.book-card .note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 12px; }
.bc-contact { display: flex; gap: 10px; margin-top: 14px; }
.bc-contact a { flex: 1; }

/* Map embed */
.map-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 320px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; background: rgba(13,18,38,.94);
  display: none; align-items: center; justify-content: center; padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 54px; height: 54px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; display: grid; place-items: center;
  transition: background .2s; backdrop-filter: blur(4px);
}
.lb-btn:hover { background: var(--orange); }
.lb-prev { left: 3vw; } .lb-next { right: 3vw; } .lb-close { top: 3vh; right: 3vw; width: 48px; height: 48px; }
.lb-count { position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 600; }

/* ---------- Forms (contact) ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.info-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--orange-50); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.info-card h4 { margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--muted); font-size: .96rem; }
.info-card a:hover { color: var(--orange); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .96rem; background: var(--bg-soft); outline: none; transition: border .2s, background .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--orange); background: #fff; }
.form-field textarea { resize: vertical; min-height: 130px; }

/* form toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 12px; box-shadow: var(--shadow-lg);
  display: flex; gap: 10px; align-items: center; z-index: 1100; transition: transform .4s var(--ease); font-weight: 600;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { color: #46d39a; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mini banner (page header for sub-pages) ---------- */
.mini-hero { background: var(--navy); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.mini-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 85% -20%, rgba(242,101,34,.3), transparent 60%); }
.mini-hero .container { position: relative; }
.mini-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.mini-hero p { color: rgba(255,255,255,.8); margin-top: 12px; max-width: 560px; font-size: 1.08rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 540px; }
  .detail-grid { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .property-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav { gap: 12px; }
  .brand img { height: 46px; }
  .nav-cta .btn { padding: 11px 16px; font-size: .9rem; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 16px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { width: 100%; padding: 13px 16px; }
  .search-bar { grid-template-columns: 1fr; }
  .search-field + .search-field { border-left: none; border-top: 1px solid var(--line); }
  .section { padding: 64px 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 150px; height: auto; }
  .gallery a:first-child { grid-row: span 2; grid-column: span 2; height: auto; }
  .cta-band { padding: 40px 28px; }
}
@media (max-width: 560px) {
  .property-grid, .steps, .feature-strip, .amenity-list, .form-row { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-media .float-card { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .ph-price { text-align: left; }
}
