/* ================================================
   MAIA · Seaforest Villa — Agent Landing Page
   Brand colors lifted from maiaresorthotram.com
================================================ */

:root {
  --teal:        #4FA89E;
  --teal-deep:   #3B8079;
  --teal-dark:   #1F5651;
  --gold:        #C9A24C;
  --gold-light:  #D9B770;
  --gold-soft:   #E8D6A8;
  --cream:       #F6F1E8;
  --cream-2:     #FBF7EE;
  --sand:        #EAE0CC;
  --ink:         #1F2D2C;
  --ink-soft:    #4A5C5A;
  --line:        #D9CFB8;
  --white:       #FFFFFF;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Cormorant Infant', cursive;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1240px;
  --max-narrow: 880px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(31,86,81,0.85), rgba(31,86,81,0));
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 2px 20px rgba(31,86,81,0.08);
  padding: 12px 0;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.nav-left, .nav-right {
  display: flex;
  gap: 32px;
  font-size: 14px;
  letter-spacing: .04em;
  font-weight: 400;
  color: var(--white);
}
.nav-right { justify-content: flex-end; }

.site-header.scrolled .nav-left,
.site-header.scrolled .nav-right { color: var(--ink); }

.nav-left a, .nav-right a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-left a::after, .nav-right a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-left a:hover::after, .nav-right a:hover::after { width: 100%; }
.nav-left a:hover, .nav-right a:hover { color: var(--gold-light); }
.site-header.scrolled .nav-left a:hover, .site-header.scrolled .nav-right a:hover { color: var(--teal-deep); }

.btn-outline {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 18px !important;
  color: var(--gold-light) !important;
}
.btn-outline:hover { background: var(--gold); color: var(--white) !important; }
.site-header.scrolled .btn-outline { color: var(--gold) !important; }

/* Brand mark center */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.brand-mark { width: 44px; height: 44px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: .35em;
  font-size: 15px;
  color: var(--teal);
  margin-top: 4px;
}
.brand-sub {
  font-family: var(--script);
  font-style: italic;
  font-size: 9px;
  color: var(--ink-soft);
  letter-spacing: .12em;
  margin-top: 2px;
}
.site-header:not(.scrolled) .brand-sub { color: rgba(255,255,255,.85); }
.brand-loc {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .35em;
  color: var(--teal);
  margin-top: 2px;
}
.site-header:not(.scrolled) .brand-name,
.site-header:not(.scrolled) .brand-loc { color: var(--white); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,86,81,.45) 0%, rgba(31,86,81,.15) 35%, rgba(31,86,81,.55) 100%),
    linear-gradient(90deg, rgba(31,86,81,.35) 0%, rgba(0,0,0,0) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-script {
  font-family: var(--script);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--gold-light);
  letter-spacing: .02em;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.hero-script em { font-style: italic; color: var(--white); font-weight: 400; }

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 8vw, 124px);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero-title .amp {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-sub {
  margin-top: 28px;
  max-width: 580px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold, .btn-ghost {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 999px;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,76,.4); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 22px; height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  display: block;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 2px; height: 8px;
  background: var(--white);
  transform: translateX(-50%);
  border-radius: 1px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0; top: 8px; }
  50% { opacity: 1; top: 18px; }
}

/* ============ SECTIONS ============ */
.section {
  padding: 110px 0;
  position: relative;
}
.section-cream  { background: var(--cream); }
.section-light  { background: var(--cream-2); }
.section-teal   {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  color: var(--white);
}
.section-dark   { background: var(--ink); color: var(--white); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head.light { color: var(--white); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.eyebrow.gold { color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: .005em;
}
.section-head.light .section-title { color: var(--white); }
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-head.light .section-title em { color: var(--gold-light); }
.section-title.light { color: var(--white); }

.rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}
.section-lede {
  margin-top: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ============ TỔNG QUAN ============ */
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.prose p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.prose strong { color: var(--ink); font-weight: 600; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--cream);
  padding: 36px 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  color: var(--teal-deep);
  line-height: 1;
  letter-spacing: -.01em;
}
.stat-num small {
  font-size: 22px;
  color: var(--gold);
  margin-left: 2px;
}
.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ============ VỊ TRÍ ============ */
.locality {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.locality-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 36px 28px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  transition: all .3s ease;
}
.locality-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.loc-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.locality-card h4 {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.locality-card p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

/* ============ TIỆN ÍCH ============ */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.amen {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 28px;
  background: var(--cream-2);
  transition: background .25s ease;
}
.amen:hover { background: var(--white); }
.amen-icon {
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.amen h5 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.amen p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ SẢN PHẨM ============ */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
.product-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(31,86,81,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(31,86,81,.14);
}
.product-img {
  aspect-ratio: 16/11;
  background: var(--cream);
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--cream);
  padding: 16px;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.03); }
.product-body { padding: 32px; }
.product-tag {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.product-body h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  margin: 8px 0 20px;
  line-height: 1.2;
}
.product-body h3 .size {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 300;
}

.spec {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}
.spec li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.spec li span { color: var(--ink-soft); }
.spec li strong { color: var(--ink); font-weight: 600; }

.btn-text {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--teal-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  display: inline-block;
  transition: all .2s ease;
}
.btn-text:hover { color: var(--gold); transform: translateX(4px); }

.masterplan-block { text-align: center; }
.mp-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
}
.masterplan-frame {
  display: block;
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px;
  border-radius: 4px;
  overflow: hidden;
}
.masterplan-frame img {
  width: 100%;
  transition: transform .5s ease;
}
.masterplan-frame:hover img { transform: scale(1.02); }
.zoom-hint {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(31,86,81,.9);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .1em;
}

/* ============ CHÍNH SÁCH ============ */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.policy-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: 4px;
  transition: all .25s ease;
}
.policy-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.policy-card.highlight {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  border: none;
}
.policy-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.policy-card.highlight .policy-eyebrow { color: var(--gold-light); }
.policy-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  margin: 12px 0 14px;
  color: var(--teal-deep);
}
.policy-card.highlight .policy-num { color: var(--white); }
.policy-num small { font-size: 28px; color: var(--gold); margin-left: 2px; }
.policy-card.highlight .policy-num small { color: var(--gold-light); }
.policy-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.policy-card.highlight .policy-desc { color: rgba(255,255,255,.88); }

.bonus-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
}
.bonus h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.bonus p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.bonus strong { color: var(--teal-deep); }

/* ============ LỊCH THANH TOÁN ============ */
.table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow-x: auto;
  box-shadow: 0 4px 24px rgba(31,86,81,.06);
}
.payment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.payment-table th {
  background: var(--teal-deep);
  color: var(--white);
  font-weight: 500;
  padding: 16px 14px;
  text-align: center;
  letter-spacing: .04em;
  font-size: 13px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.payment-table th:last-child { border-right: none; }
.payment-table th .ck {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold-light);
  margin-top: 2px;
  letter-spacing: .1em;
}
.payment-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.payment-table td:nth-child(1),
.payment-table td:nth-child(2) {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}
.payment-table td:nth-child(2) { color: var(--ink-soft); font-weight: 400; }
.payment-table tr:hover td { background: var(--cream-2); }
.payment-table .row-deposit td {
  background: var(--cream);
  font-weight: 600;
  color: var(--teal-deep);
}
.payment-table .row-total td {
  background: var(--sand);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.table-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============ CHO THUÊ ============ */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.rental-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  padding: 32px 28px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}
.rental-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold-light);
}
.rental-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--gold-light);
}
.rental-num small {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  margin-left: 4px;
  font-family: var(--sans);
  letter-spacing: .04em;
}
.rental-card h4 {
  margin: 14px 0 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.rental-card p {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}
.rental-card em { color: var(--gold-light); font-style: italic; }

/* ============ PHÍ ============ */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fee-card {
  background: var(--white);
  padding: 30px 26px;
  border-radius: 4px;
  border-top: 3px solid var(--teal);
}
.fee-label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.fee-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  color: var(--teal-deep);
  margin: 10px 0 12px;
  line-height: 1.1;
}
.fee-num small {
  display: block;
  font-size: 13px;
  color: var(--gold);
  font-family: var(--sans);
  letter-spacing: .06em;
  margin-top: 4px;
  font-weight: 500;
}
.fee-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.fee-desc strong { color: var(--teal-deep); }

/* ============ TÀI LIỆU ============ */
.doc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.doc-tab {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .06em;
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.doc-tab:hover { border-color: var(--gold); color: var(--gold); }
.doc-tab.active {
  background: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.doc-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 22px;
  border-radius: 4px;
  transition: all .25s ease;
}
.doc-card:hover {
  border-color: var(--gold);
  transform: translateX(2px);
  box-shadow: 0 6px 24px rgba(201,162,76,.12);
}
.doc-card.hidden { display: none; }
.doc-icon {
  font-size: 28px;
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.doc-cat {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.doc-body h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.doc-meta {
  font-size: 12px;
  color: var(--ink-soft);
}
.doc-action {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  white-space: nowrap;
}
.doc-card:hover .doc-action { color: var(--gold); }

/* ============ FAQ + SEARCH ============ */
.faq-search {
  position: relative;
  max-width: 640px;
  margin: 0 auto 24px;
}
.faq-search input {
  width: 100%;
  padding: 18px 56px 18px 56px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  transition: all .2s ease;
  box-shadow: 0 2px 14px rgba(31,86,81,.05);
}
.faq-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,162,76,.18);
}
.faq-search input::placeholder { color: #9AA8A6; }
.faq-search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--teal-deep);
  pointer-events: none;
}
#faqClear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 18px;
  cursor: pointer;
  display: none;
  line-height: 1;
  transition: all .2s ease;
}
#faqClear:hover { background: var(--gold); color: var(--white); }

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.faq-filter {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
  padding: 8px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.faq-filter:hover { border-color: var(--gold); color: var(--gold); }
.faq-filter.active {
  background: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
}

.faq-list { }
.faq {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--serif);
  font-weight: 300;
  color: var(--gold);
  font-size: 28px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq[open] summary { color: var(--teal-deep); }
.faq-answer {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.faq-answer p { margin-bottom: 10px; }
.faq-answer ul {
  margin: 8px 0 8px 20px;
  padding: 0;
}
.faq-answer ul li {
  margin-bottom: 4px;
  list-style: disc;
}
.faq-answer strong { color: var(--teal-deep); font-weight: 600; }
.faq-answer em { color: var(--gold); font-style: italic; }
.faq-answer mark, .faq summary mark {
  background: linear-gradient(transparent 60%, rgba(201,162,76,.4) 60%);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: inherit;
}
.faq-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
.faq-table th, .faq-table td {
  border: 1px solid var(--line);
  padding: 8px 12px;
  text-align: left;
}
.faq-table th {
  background: var(--cream);
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
}
.faq-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============ BOOKING FORM ============ */
.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(31,86,81,.06);
}
.bf-fieldset {
  border: none;
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--line);
}
.bf-fieldset:last-of-type { border-bottom: none; }
.bf-fieldset legend {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 18px;
  padding: 0;
}
.bf-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
}
.bf-grid-2 { grid-template-columns: 1fr 1fr; }
.bf-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

.booking-form label {
  display: block;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 14px;
}
.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"],
.booking-form input[type="date"],
.booking-form input[type="number"] {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream-2);
  transition: all .2s ease;
}
.booking-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,76,.15);
}
.booking-form input:invalid:not(:placeholder-shown) {
  border-color: #C9544C;
}

.bf-radio-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: var(--cream-2);
  border-radius: 6px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all .2s ease;
  margin: 0;
}
.bf-radio-card:hover { border-color: var(--gold); }
.bf-radio-card input { position: absolute; opacity: 0; }
.bf-radio-card input:checked + .bf-radio-body { color: var(--teal-deep); }
.bf-radio-card:has(input:checked) {
  border-color: var(--teal-deep);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(31,86,81,.1);
}
.bf-radio-body {
  display: block;
}
.bf-radio-body strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.bf-radio-body em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 13px;
  color: var(--gold);
}
.bf-radio-card:has(input:checked) .bf-radio-body strong { color: var(--teal-deep); }

.bf-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  cursor: pointer;
  margin-bottom: 0 !important;
  font-size: 14px !important;
  color: var(--ink) !important;
  transition: border-color .2s ease;
}
.bf-checkbox:hover { border-color: var(--gold); }
.bf-checkbox input { width: 16px; height: 16px; accent-color: var(--teal-deep); margin: 0; }

.bf-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.btn-dark {
  background: transparent !important;
  color: var(--teal-deep) !important;
  border: 1px solid var(--teal-deep) !important;
}
.btn-dark:hover {
  background: var(--teal-deep) !important;
  color: var(--white) !important;
}
.bf-link {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  letter-spacing: .04em;
  margin-left: auto;
}
.bf-link:hover { color: var(--gold); }

.bf-demo {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .08em;
  padding: 14px 22px;
  background: linear-gradient(135deg, #FBEFD3 0%, #F5DEA8 100%);
  color: var(--teal-dark);
  border: 1px dashed var(--gold);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all .25s ease;
}
.bf-demo:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  border-style: solid;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,162,76,.35);
}
.bf-demo:active { transform: translateY(0); }
@keyframes flashHL {
  0%   { background: var(--cream-2); }
  50%  { background: rgba(201,162,76,.25); }
  100% { background: var(--white); }
}
.booking-form input.flash { animation: flashHL .9s ease; }

.bf-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  background: var(--cream);
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.bf-note strong { color: var(--teal-deep); }
.bf-note a { color: var(--teal-deep); border-bottom: 1px solid var(--gold); }

@media (max-width: 720px) {
  .booking-form { padding: 22px; }
  .bf-grid-2, .bf-grid-3 { grid-template-columns: 1fr; }
}

/* ============ MODAL VIEWER ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal.open { opacity: 1; pointer-events: auto; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 26, 0.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-shell {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(1140px, 94vw);
  height: min(880px, 92vh);
  background: var(--white);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.modal.open .modal-shell { transform: translate(-50%, -50%) scale(1); }

.modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--white);
  flex-shrink: 0;
  gap: 16px;
}
.modal-meta { min-width: 0; flex: 1; }
.modal-cat {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 2px;
}
.modal-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.modal-btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
  padding: 9px 16px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  font-weight: 500;
}
.modal-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.modal-close {
  width: 36px;
  padding: 9px 0;
  font-size: 14px;
}

.modal-body {
  flex: 1;
  background: #2A3838;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.modal-pdf {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--white);
}
.modal-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}
.modal-office {
  text-align: center;
  color: var(--white);
  padding: 60px 30px;
  max-width: 420px;
}
.modal-office .office-icon { font-size: 64px; margin-bottom: 18px; }
.modal-office h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
}
.modal-office p {
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
  line-height: 1.6;
}
.modal-office .btn-gold { display: inline-block; }

@media (max-width: 720px) {
  .modal-shell { width: 100vw; height: 100vh; border-radius: 0; }
  .modal-bar { flex-wrap: wrap; padding: 12px 14px; gap: 8px; }
  .modal-title { font-size: 16px; }
  .modal-actions .modal-btn { padding: 8px 12px; font-size: 11px; }
}

/* ============ CONTACT ============ */
.contact-head {
  text-align: center;
  margin-bottom: 56px;
}
.contact-head .section-title.light { color: var(--white); }
.contact-head p {
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  border: 1px solid rgba(255,255,255,.14);
  padding: 28px 24px;
  border-radius: 4px;
  background: rgba(255,255,255,.04);
}
.contact-card h4 {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-card p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  line-height: 1.5;
}
.contact-card a:hover { color: var(--gold-light); }

/* ============ FOOTER ============ */
.site-footer {
  background: #0F1A1A;
  color: rgba(255,255,255,.55);
  padding: 36px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .25em;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-fine { font-size: 12px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .locality, .amen-grid, .doc-grid, .policy-grid, .rental-grid, .fee-grid, .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid { grid-template-columns: 1fr; }
  .bonus-row { grid-template-columns: 1fr; }
  .nav-left, .nav-right { gap: 18px; font-size: 13px; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .header-inner { padding: 0 18px; gap: 12px; }
  .nav-left, .nav-right { display: none; }
  .header-inner { grid-template-columns: 1fr; justify-items: center; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 56px; }
  .container { padding: 0 18px; }
  .locality, .amen-grid, .doc-grid, .policy-grid, .rental-grid, .fee-grid, .contact-grid, .stat-grid {
    grid-template-columns: 1fr;
  }
  .doc-card { grid-template-columns: 48px 1fr; }
  .doc-action { grid-column: 1 / -1; text-align: right; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
