/* Luxury Bali Car Rental — main stylesheet (ported 1:1 from design mockup) */

:root {
  color-scheme: light dark;
  --black: #17130f;
  --black-soft: #251f18;
  --gold: #b6862f;
  --gold-light: #ddb463;
  --gold-dark: #8c661f;
  --cream: #faf6ee;
  --sand: #f1e8d6;
  --white: #ffffff;
  --ink: #211d17;
  --gray: #726b5e;
  --line: #e7dcc4;
  --radius: 18px;
  --shadow: 0 18px 44px -18px rgba(23,19,15,.25);
  --shadow-hover: 0 28px 60px -18px rgba(23,19,15,.32);
  --shadow-gold: 0 14px 34px -10px rgba(182,134,47,.45);
  --ease: cubic-bezier(.16,.84,.44,1);
  --font-head: 'Poppins', Arial, sans-serif;
  --font-body: 'Poppins', Arial, sans-serif;
  --heading: var(--black);
  --gold-text: var(--gold-dark);
  --gate: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 210'%3E%3Cg fill='%23ddb463'%3E%3Cg transform='translate(4,0)'%3E%3Cpolygon points='0,210 72,210 63,178 9,178'/%3E%3Cpolygon points='7,172 65,172 57,142 15,142'/%3E%3Cpolygon points='13,136 59,136 52,108 20,108'/%3E%3Cpolygon points='19,102 53,102 47,76 25,76'/%3E%3Cpolygon points='24,70 48,70 42,46 30,46'/%3E%3Cpolygon points='31,40 41,40 36,6'/%3E%3C/g%3E%3Cg transform='translate(256,0) scale(-1,1)'%3E%3Cpolygon points='0,210 72,210 63,178 9,178'/%3E%3Cpolygon points='7,172 65,172 57,142 15,142'/%3E%3Cpolygon points='13,136 59,136 52,108 20,108'/%3E%3Cpolygon points='19,102 53,102 47,76 25,76'/%3E%3Cpolygon points='24,70 48,70 42,46 30,46'/%3E%3Cpolygon points='31,40 41,40 36,6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  --wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='14' viewBox='0 0 60 14'%3E%3Cpath d='M0 7 Q15 0 30 7 T60 7' fill='none' stroke='%23b6862f' stroke-width='2'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-head); letter-spacing: -.01em; margin: 0; text-wrap: balance; }
a { color: inherit; }
img { max-width: 100%; display: block; }
section { scroll-margin-top: 100px; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- note banner ---- */
.note { background: var(--black); color: var(--cream); text-align: center; font-size: 12.5px; padding: 9px 16px; letter-spacing: .2px; }
.note strong { color: var(--gold-light); }
.note a { color: var(--gold-light); text-decoration: underline; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 32px; background: rgba(250,246,238,.86); backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent; transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled { background: rgba(255,255,255,.97); border-bottom-color: var(--line); box-shadow: 0 10px 30px -18px rgba(23,19,15,.28); padding: 9px 32px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 58px; width: auto; transition: height .35s var(--ease); }
.site-header.is-scrolled .brand img { height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--heading); letter-spacing: .2px; }
.brand__text strong span { color: var(--gold-text); }
.brand__text em { font-style: normal; font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
@media (max-width: 480px) { .brand__text strong { font-size: 17px; } .brand img { height: 46px; } }
.nav { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 14.5px; position: relative; padding-bottom: 3px; }
.nav a.is-current, .nav a:hover { color: var(--heading); }
.nav a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--gold); transition: width .3s var(--ease); }
.nav a:hover::after, .nav a.is-current::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(90deg,#1ebe5b,#25d366); color: #fff;
  padding: 10px 19px; border-radius: 999px; font-weight: 600; font-size: 13px; text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(37,211,102,.5); white-space: nowrap;
}
.wa-btn__icon { display: inline-flex; }
.wa-btn__icon svg { width: 15px; height: 15px; }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); position: relative; cursor: pointer; flex-shrink: 0; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:''; position:absolute; left:10px; width:18px; height:2px; background: var(--heading); transition: all .3s var(--ease); }
.nav-toggle span { top: 19px; } .nav-toggle span::before { top:-6px; } .nav-toggle span::after { top:6px; }
.site-header.is-open .nav-toggle span { background: transparent; }
.site-header.is-open .nav-toggle span::before { top:0; transform: rotate(45deg); background: var(--heading); }
.site-header.is-open .nav-toggle span::after { top:0; transform: rotate(-45deg); background: var(--heading); }
.mobile-backdrop { position: fixed; inset: 0; background: rgba(15,12,9,.55); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); z-index: 48; }
.mobile-backdrop.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(300px,84vw); background: var(--black); color: #fff;
  z-index: 49; padding: 96px 28px 40px; transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; gap: 26px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.mobile-drawer nav a { color: #fff; text-decoration: none; font-size: 18px; font-family: var(--font-head); }
.mobile-drawer nav a:hover { color: var(--gold-light); }
@media (max-width: 860px) { .nav { display: none; } .nav-toggle { display: inline-block; } .wa-btn span:not(.wa-btn__icon) { display: none; } }

/* ---- generic eyebrow / section heading ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-text); font-weight: 700; margin-bottom: 14px;
}
.eyebrow::before { content: '\2740'; color: var(--gold); font-size: 13px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(26px,3.6vw,38px); font-weight: 700; color: var(--heading); margin-bottom: 12px; }
.section-head p { color: var(--gray); font-size: 15.5px; line-height: 1.7; margin: 0; }
.section { padding: 84px 0; }
.section--sand { background: var(--cream); }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 14.5px; text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease); border: 2px solid transparent; cursor: pointer; }
.btn-gold { background: linear-gradient(90deg,var(--gold-dark),var(--gold) 55%,var(--gold-light)); color: var(--black); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -10px rgba(182,134,47,.6); }
.btn-outline { background: transparent; border-color: var(--heading); color: var(--heading); }
.btn-outline:hover { background: var(--black); color: #fff; transform: translateY(-3px); }
.btn-wa { background: linear-gradient(90deg,#1ebe5b,#25d366); color: #fff; }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -10px rgba(37,211,102,.5); }
.btn-block { width: 100%; }

/* ---- page hero (interior pages) ---- */
.page-hero { position: relative; background: var(--black); color: #fff; padding: 76px 24px 64px; text-align: center; overflow: hidden; }
.page-hero::before { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:300px; height:230px; background-image: var(--gate); background-repeat:no-repeat; background-size:contain; background-position:bottom center; opacity:.5; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-light); justify-content: center; }
.page-hero .eyebrow::before { color: var(--gold-light); }
.page-hero h1 { color: #fff; font-size: clamp(28px,4vw,42px); max-width: 700px; margin: 0 auto 12px; }
.page-hero p { color: #d8d3c8; max-width: 540px; margin: 0 auto; font-size: 15.5px; line-height: 1.7; }
.breadcrumb { position: relative; z-index: 1; font-size: 12.5px; color: #c8c1b2; margin-bottom: 14px; }
.breadcrumb a { color: #c8c1b2; text-decoration: none; } .breadcrumb a:hover { color: var(--gold-light); }

/* ---- home hero (full-bleed slideshow banner) ---- */
.home-hero { position: relative; background: var(--black); overflow: hidden; }
.hero-slides { position: relative; width: 100%; aspect-ratio: 1586 / 800; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: rgba(23,19,15,.35); color: #fff; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease); }
.hero-arrow:hover { background: rgba(23,19,15,.6); }
.hero-arrow--prev { left: 16px; } .hero-arrow--next { right: 16px; }
.hero-dots { position: absolute; left: 50%; bottom: 56px; transform: translateX(-50%); z-index: 3; display: flex; gap: 9px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.25); padding: 0; cursor: pointer; transition: all .3s var(--ease); }
.hero-dots button.is-active { background: var(--gold); border-color: var(--gold); width: 24px; border-radius: 5px; }

/* ---- trust strip ---- */
.trust { max-width: 1160px; margin: -40px auto 0; position: relative; z-index: 2; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 26px; display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.trust__item { display: flex; align-items: center; gap: 13px; }
.trust__icon { flex-shrink:0; width: 44px; height: 44px; border-radius: 50%; background: var(--sand); color: var(--gold-text); display:flex; align-items:center; justify-content:center; font-size: 19px; }
.trust__text strong { display:block; font-size: 14px; } .trust__text span { font-size: 12px; color: var(--gray); }
@media (max-width: 860px) { .trust { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .trust { grid-template-columns: 1fr; padding: 22px 20px; } }

/* ---- toolbar (armada) ---- */
.toolbar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 44px; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-btn { border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 13px; font-weight: 600; padding: 9px 17px; border-radius: 999px; cursor: pointer; transition: all .25s var(--ease); font-family: var(--font-body); }
.filter-btn:hover { border-color: var(--gold); color: var(--gold-text); }
.filter-btn.active { background: var(--black); border-color: transparent; color: #fff; }
.search-input { width: 220px; max-width: 100%; padding: 10px 16px 10px 38px; border-radius: 999px; border: 1px solid var(--line); font-family: var(--font-body); font-size: 13.5px; background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23726b5e' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") no-repeat 13px center; background-size: 15px; }
.search-input:focus { outline: none; border-color: var(--gold); }

/* ---- fleet grid / cards ---- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 28px; }
.fleet-empty { display: none; text-align: center; padding: 50px 20px; color: var(--gray); }
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column; text-decoration: none; color: var(--ink); transition: transform .35s var(--ease), box-shadow .35s var(--ease); opacity: 0; transform: translateY(24px); }
.card.in { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.08); }
.card__badge { position: absolute; top: 12px; left: 12px; background: var(--black); color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .4px; padding: 6px 13px; border-radius: 999px; }
.card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__name { font-size: 19px; font-weight: 700; margin: 0; }
.card__meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--gray); }
.card__price { font-size: 18px; font-weight: 700; color: var(--gold-text); margin-top: auto; }
.card__price small { display: block; font-size: 11.5px; font-weight: 400; color: var(--gray); }
.card__cta { margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--black); color: #fff; padding: 12px; border-radius: 999px; font-weight: 600; font-size: 13.5px; transition: background .3s ease; }
.card__cta::after { content: '\2192'; }
.card:hover .card__cta { background: linear-gradient(90deg,var(--gold-dark),var(--gold)); color: var(--black); }
.fleet-cta { text-align: center; margin-top: 46px; }

/* ---- icon-box row (kenapa pilih kami) ---- */
.icon-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.icon-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 22px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); opacity:0; transform: translateY(24px); }
.icon-box.in { opacity:1; transform: translateY(0); }
.icon-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.icon-box__icon { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: var(--cream); color: var(--gold-text); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.icon-box h3 { font-size: 18px; margin-bottom: 8px; color: var(--heading); }
.icon-box p { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .icon-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .icon-row { grid-template-columns: 1fr; } }

/* ---- destination / tour cards ---- */
.dest-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow); }
.dest-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.dest-card__label { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; padding: 20px; background: linear-gradient(to top, rgba(23,19,15,.88), rgba(23,19,15,.1) 60%); }
.dest-card__title { color: #fff; font-family: var(--font-head); font-size: 19px; font-weight: 600; }
.dest-card__meta { color: var(--gold-light); font-size: 12.5px; letter-spacing: .03em; }
.dest-card__actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.dest-card__detail-btn, .dest-card__wa { padding: 8px 16px; font-size: 12.5px; font-weight: 600; border-radius: 999px; text-decoration: none; cursor: pointer; border: 1px solid rgba(255,255,255,.6); background: transparent; color: #fff; }
.dest-card__wa { background: var(--gold); color: #17130f; border-color: var(--gold); }

/* ---- destination detail modal ---- */
.dest-modal { position: fixed; inset: 0; background: rgba(15,12,9,.92); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 200; }
.dest-modal.is-open { opacity: 1; pointer-events: auto; }
.dest-modal__panel { background: var(--white); border-radius: var(--radius); max-width: 520px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; }
.dest-modal__img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; border-radius: var(--radius) var(--radius) 0 0; }
.dest-modal__body { padding: 26px 28px 30px; }
.dest-modal__body h3 { font-family: var(--font-head); font-size: 24px; margin: 0 0 8px; }
.dest-modal__meta { color: var(--gold-text); font-size: 13.5px; font-weight: 600; margin: 0 0 14px; }
.dest-modal__desc { color: var(--gray); font-size: 14.5px; line-height: 1.75; margin: 0 0 16px; }
.dest-modal__list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.dest-modal__list li { font-size: 14px; padding-left: 22px; position: relative; }
.dest-modal__list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-text); font-weight: 700; }
.dest-modal__close { position: absolute; top: 14px; right: 16px; background: rgba(23,19,15,.55); color: #fff; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 20px; cursor: pointer; line-height: 1; }
@media (max-width: 900px) { .dest-row { grid-template-columns: 1fr 1fr; } }

/* ---- stats ---- */
.stats-row { background: var(--black); padding: 60px 24px; position: relative; overflow: hidden; }
.stats-row::before { content:''; position:absolute; inset:0; background-image: var(--gate); background-repeat:no-repeat; background-position: bottom center; background-size: 300px; opacity: .05; }
.stats-grid { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: 40px; color: var(--gold-light); font-weight: 700; }
.stat span { color: #cfc7b4; font-size: 13px; letter-spacing: .4px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ---- testimonials ---- */
.testi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 14.5px; line-height: 1.75; color: var(--ink); margin: 0 0 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--gold-text); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; }
.testi-who strong { display: block; font-size: 13.5px; } .testi-who span { font-size: 12px; color: var(--gray); }
@media (max-width: 900px) { .testi-row { grid-template-columns: 1fr; } }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--heading); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--gold-text); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 22px 20px; margin: 0; font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ---- CTA banner ---- */
.cta-banner { position: relative; max-width: 1160px; margin: 0 auto; background: linear-gradient(120deg,var(--black) 0%, #2c2013 100%); border: 1px solid var(--gold); border-radius: var(--radius); padding: 56px 40px; text-align: center; box-shadow: var(--shadow-gold); overflow: hidden; }
.cta-banner h2 { color: #fff; font-size: clamp(22px,3.2vw,30px); margin-bottom: 12px; }
.cta-banner p { color: #d8d3c8; max-width: 480px; margin: 0 auto 24px; font-size: 15px; line-height: 1.7; }

/* ---- two-col (about) ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.two-col h2 { font-size: clamp(24px,3.2vw,32px); color: var(--heading); margin-bottom: 16px; }
.two-col p { color: var(--gray); line-height: 1.85; font-size: 15px; margin: 0 0 14px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ---- contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-card { background: var(--cream); border-radius: var(--radius); padding: 40px; }
.contact-card h2 { font-size: 24px; color: var(--heading); margin-bottom: 16px; }
.contact-card ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 16px; }
.contact-card li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink); line-height: 1.6; }
.contact-card li b { display: block; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--gold-text); margin-bottom: 2px; }
.map-block { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: linear-gradient(135deg,var(--sand),var(--line)); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 13.5px; flex-direction: column; gap: 10px; }
.map-block span:first-child { font-size: 30px; }
.map-block iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- unit detail (single mobil) ---- */
.unit-detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/10; background: var(--sand); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs button { border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; padding: 0; background: none; aspect-ratio: 1/1; opacity: .7; }
.gallery-thumbs button.is-active { opacity: 1; border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.unit-content { margin-top: 36px; line-height: 1.85; color: var(--ink); }
.unit-content h2 { font-size: 22px; margin-bottom: 12px; color: var(--heading); }
.unit-card { position: sticky; top: 96px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.unit-card h1 { font-size: 27px; margin-bottom: 6px; color: var(--heading); }
.unit-price { font-size: 24px; font-weight: 700; color: var(--gold-text); margin-bottom: 20px; }
.unit-price small { display: block; font-size: 12.5px; font-weight: 400; color: var(--gray); }
.unit-specs { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; }
.unit-specs li { display: flex; justify-content: space-between; font-size: 13.5px; padding-bottom: 11px; border-bottom: 1px dashed var(--line); }
.unit-specs li span:first-child { color: var(--gray); }
.unit-specs li span:last-child { font-weight: 600; }
@media (max-width: 900px) { .unit-detail { grid-template-columns: 1fr; } .unit-card { position: static; } }

.lightbox { position: fixed; inset: 0; background: rgba(15,12,9,.92); display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 200; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 12px; }
.lightbox__close { position: absolute; top: 24px; right: 30px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; }

/* ---- footer ---- */
.footer { position: relative; background: var(--black); color: #cfc7b4; margin-top: 90px; overflow: hidden; }
.footer::after { content:''; position:absolute; bottom:-70px; right:-50px; width: 280px; height: 220px; background-image: var(--gate); background-repeat: no-repeat; background-size: contain; opacity: .07; }
.footer__top { position: relative; max-width: 1160px; margin: 0 auto; padding: 56px 24px 36px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__brand img { height: 62px; }
.footer__brand strong { display: block; font-family: var(--font-head); font-size: 21px; font-weight: 700; color: #fff; }
.footer__brand strong span { color: var(--gold-light); }
.footer__brand em { font-style: normal; display: block; font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: #a89f8a; margin-top: 2px; }
.footer p { color: #b8ae98; line-height: 1.7; font-size: 13.5px; max-width: 300px; margin: 0; }
.footer h4 { color: var(--gold-light); font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 16px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 9px; font-size: 13.5px; }
.footer ul a { color: #cfc7b4; text-decoration: none; } .footer ul a:hover { color: var(--gold-light); }
.footer__social { display: flex; gap: 9px; margin-top: 16px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .25s ease; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); transform: translateY(-3px); }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.ornament { height: 14px; background-image: var(--wave); background-repeat: repeat-x; background-size: 60px 14px; background-position: center; }
.footer__bottom { position: relative; padding: 20px 24px; text-align: center; font-size: 12.5px; color: #8a8271; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; padding: 40px 20px 28px; } }

/* ---- floating buttons ---- */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg,#25d366,#1ebe5b); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 14px 34px -10px rgba(37,211,102,.6); z-index: 40; }
.wa-float svg { width: 27px; height: 27px; }
.wa-float::before { content:''; position:absolute; inset:0; border-radius:50%; box-shadow: 0 0 0 0 rgba(37,211,102,.55); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.55);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
.back-top { position: fixed; right: 24px; bottom: 108px; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--black); border: 2px solid #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(14px) scale(.85); transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s ease, color .25s ease; z-index: 40; box-shadow: 0 10px 26px -8px rgba(23,19,15,.55); }
.back-top svg { width: 18px; height: 18px; stroke-width: 3; }
.back-top.is-visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--gold-dark); color: #fff; transform: translateY(-3px) scale(1); }

/* ---- gallery grid ---- */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }
.photo-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); cursor: zoom-in; background: var(--sand); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.photo-item:hover img { transform: scale(1.08); }
.photo-item__label { position: absolute; inset: auto 0 0 0; padding: 14px 16px; background: linear-gradient(to top, rgba(23,19,15,.85), rgba(23,19,15,0)); color: #fff; font-size: 13.5px; font-weight: 600; opacity: 0; transition: opacity .3s ease; }
.photo-item:hover .photo-item__label { opacity: 1; }

/* ---- blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column; text-decoration: none; color: var(--ink); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.08); }
.blog-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__date { font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--gold-text); font-weight: 700; }
.blog-card__title { font-size: 19px; font-weight: 700; margin: 0; color: var(--heading); }
.blog-card__excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0; flex: 1; }
.blog-card__more { margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13.5px; color: var(--gold-text); }
.blog-card__more::after { content: '\2192'; transition: transform .3s var(--ease); }
.blog-card:hover .blog-card__more::after { transform: translateX(4px); }

.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); text-decoration: none; color: var(--ink); font-size: 13.5px; font-weight: 600; }
.pagination a:hover { border-color: var(--gold); color: var(--gold-text); }
.pagination .current { background: var(--black); border-color: transparent; color: #fff; }

/* ---- single blog post ---- */
.single-post { max-width: 760px; margin: 0 auto; }
.single-post__meta { font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--gold-text); font-weight: 700; margin-bottom: 10px; }
.single-post__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin: 28px 0; aspect-ratio: 16/9; background: var(--sand); }
.single-post__media img { width: 100%; height: 100%; object-fit: cover; }
.single-post__content { line-height: 1.9; color: var(--ink); font-size: 15.5px; }
.single-post__content p { margin: 0 0 20px; }
.single-post__content h2 { font-size: 22px; color: var(--heading); margin: 32px 0 14px; }
.single-post__content h3 { font-size: 18px; color: var(--heading); margin: 26px 0 12px; }
.single-post__content img { border-radius: 12px; margin: 20px 0; }
.single-post__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-weight: 600; font-size: 13.5px; color: var(--gold-text); text-decoration: none; }
.single-post__back::before { content: '\2190'; }

/* ---- misc admin-bar spacing ---- */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

@media (max-width: 767px) {
  .icon-row, .dest-row, .testi-row { grid-template-columns: 1fr; }
  .stats-grid, .trust { grid-template-columns: 1fr 1fr; }
  .trust { padding: 20px 18px; gap: 18px; }
  .section { padding: 60px 0; }
  .hero-arrow { width: 32px; height: 32px; font-size: 12px; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .search-input { width: 100%; }
}

/* Dark-mode palette: swaps the light-surface tokens (card/page backgrounds, body text,
   borders) for dark equivalents. --black stays fixed — it's the brand's deep accent
   used for panels (footer, stats, note banner) that are already dark by design, so it
   must stay visibly darker than the new dark page background rather than track it.
   Kept last in the file so these overrides win the cascade against the unconditional
   rules above (same specificity, so source order decides). */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #251f18;
    --cream: #2d2519;
    --sand: #362c1c;
    --line: #4c3f28;
    --ink: #ece4d3;
    --gray: #b7ac95;
    --heading: #f7f1e3;
    --gold-text: var(--gold-light);
  }
  .site-header { background: rgba(37,31,24,.86); }
  .site-header.is-scrolled { background: rgba(37,31,24,.97); }
}
