/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; }
body { font-family: 'Jost', sans-serif; font-weight: 400; background: #faf7f2; color: #2e1e0e; line-height: 1.6; }

:root {
  --brand:  #4a3018; --brand2: #3d2818;
  --accent: #c8a882; --acc2:   #7a5838;
  --sand:   #faf7f2; --sand2:  #f5ede0; --sand3: #e8d8c0;
  --muted:  #6a5030; --border: #e0d0bc;
  --white:  #ffffff; --green:  #25a560;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

/* ═══ NAV ═══ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--sand); border-bottom: 1px solid var(--border);
  height: 80px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--serif); font-size: 2.04rem; font-weight: 600; color: var(--brand); text-decoration: none; line-height: 1.1; flex-shrink: 0; }
.logo small { display: block; font-family: var(--sans); font-size: 0.55rem; font-weight: 400; letter-spacing: 4px; color: var(--muted); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 1rem; color: var(--muted); text-decoration: none; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-sep { width: 1px; height: 1.1rem; background: var(--border); }
.nav-hi { font-weight: 500; color: var(--brand) !important; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta { background: var(--brand); color: #fdf6ee; font-family: var(--sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 0.7rem 1.5rem; border: none; border-radius: 3px; cursor: pointer; transition: background .15s; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--brand2); }

/* ═══ BURGER ═══ */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: transparent; border: none; cursor: pointer; flex-shrink: 0;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ MOBILE MENU ═══ */
.mob-menu {
  display: none; position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--sand); z-index: 190;
  padding: 0.5rem 32px 2rem;
  flex-direction: column;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-link { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--brand); text-decoration: none; padding: 0.95rem 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; transition: color .15s; }
.mob-link:last-of-type { border-bottom: none; }
.mob-link:hover { color: var(--acc2); }
.mob-link .arr { font-family: var(--sans); font-size: 1rem; color: var(--accent); transition: transform .15s; }
.mob-link:hover .arr { transform: translateX(4px); }
.mob-cta { margin-top: 1.4rem; display: block; text-align: center; background: var(--brand); color: #fdf6ee; padding: 1rem; border-radius: 4px; font-size: 0.82rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: background .15s; }
.mob-cta:hover { background: var(--brand2); }
.mob-wa { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.mob-wa a { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; font-weight: 500; color: var(--green); text-decoration: none; }

/* ═══ OWNER BANNER ═══ */
.owner { background: var(--white); border-bottom: 1px solid var(--border); padding: 1.1rem 48px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ow-left { display: flex; align-items: center; gap: 1rem; }
.avs { display: flex; }
.av { width: 56px; height: 56px; border-radius: 50%; border: 3px solid var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: #fdf6ee; }
.av-a { background: linear-gradient(135deg,#c8a882,#8a6040); margin-right: -14px; }
.av-b { background: linear-gradient(135deg,#a07858,#6a4828); }
.ow-name { font-size: 1rem; font-weight: 500; color: var(--brand); margin-bottom: 0.15rem; }
.ow-desc { font-size: 0.85rem; color: var(--muted); }
.ow-right { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--muted); background: var(--sand2); padding: 0.4rem 0.9rem; border-radius: 99px; border: 1px solid var(--border); white-space: nowrap; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #5cb85c; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.wa { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; font-weight: 500; color: #fff; background: var(--green); padding: 0.5rem 1.2rem; border-radius: 4px; text-decoration: none; white-space: nowrap; transition: opacity .15s; }
.wa:hover { opacity: .85; }
.wa.b2 { background: #1d8a4e; }
.wa svg { width: 18px; height: 18px; }

/* ═══ PAGE HERO ═══ */
.page-hero { background: var(--brand2); padding: 2.5rem 48px; }
.breadcrumb { font-size: 0.7rem; color: rgba(253,246,238,.4); margin-bottom: 0.7rem; }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { color: #fdf6ee; }
.breadcrumb span { margin: 0 0.4rem; opacity: .5; }
.page-title { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; color: #fdf6ee; line-height: 1.15; margin-bottom: 0.6rem; }
.page-sub { font-size: 0.95rem; color: rgba(253,246,238,.55); max-width: 560px; line-height: 1.65; }

/* ═══ SECTION ═══ */
.sec { padding: 2.5rem 48px; }
.sec-alt { background: var(--sand2); }
.sec-lbl { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.sec-title { font-family: var(--serif); font-size: 1.85rem; font-weight: 500; color: var(--brand); margin-bottom: 0.4rem; }
.sec-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; max-width: 620px; }
.sec-h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--brand); margin-bottom: 0.7rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); margin-top: 1.8rem; }

/* ═══ PROPERTY CARDS ═══ */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 1.5rem; }
.prop-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: box-shadow .15s, border-color .15s; }
.prop-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(74,48,24,.1); }
.prop-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(253,246,238,.65); }
.ci-g  { background: linear-gradient(145deg,#c8b89a,#8a6840); }
.ci-p  { background: linear-gradient(145deg,#8aa8c0,#4a6a88); }
.ci-pe { background: linear-gradient(145deg,#98b080,#506840); }
.prop-card-body { padding: 1rem 1.1rem; }
.prop-card-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--brand); margin-bottom: 0.2rem; }
.prop-card-loc { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.6rem; }
.prop-card-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.tag { font-size: 0.65rem; padding: 0.15rem 0.55rem; border-radius: 99px; background: var(--sand2); color: var(--acc2); border: 1px solid var(--sand3); }
.prop-card-btn { display: inline-block; font-size: 0.75rem; font-weight: 500; padding: 0.4rem 0.9rem; border: 1px solid var(--accent); border-radius: 3px; color: var(--brand); background: transparent; text-decoration: none; transition: all .12s; }
.prop-card-btn:hover { background: var(--brand); color: #fdf6ee; border-color: var(--brand); }

/* ═══ BOOKING WIDGET ═══ */
.bw { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; position: sticky; top: 96px; }
.bw-head { background: var(--brand); padding: 1.1rem 1.3rem; }
.bw-price { font-family: var(--serif); font-size: 1.7rem; color: #fdf6ee; line-height: 1; margin-bottom: 0.15rem; }
.bw-price-sub { font-size: 0.7rem; color: rgba(253,246,238,.55); }
.bw-direct { font-size: 0.65rem; color: var(--accent); margin-top: 0.3rem; }
.bw-body { padding: 1.1rem 1.3rem; }
.bw-dates { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 0.7rem; }
.bw-f { padding: 0.65rem 0.9rem; cursor: pointer; }
.bw-f:first-child { border-right: 1px solid var(--border); }
.bw-f:hover { background: var(--sand2); }
.bw-f-lbl { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.12rem; }
.bw-f-val { font-size: 0.9rem; color: var(--brand); }
.bw-f-val.ph { color: #c0906a; font-style: italic; font-size: 0.82rem; }
.bw-guests { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--border); border-radius: 4px; padding: 0.65rem 0.9rem; margin-bottom: 1rem; cursor: pointer; }
.bw-guests:hover { background: var(--sand2); }
.bw-btn { display: block; width: 100%; background: var(--brand); color: #fdf6ee; font-family: var(--serif); font-size: 1rem; font-weight: 500; padding: 0.8rem; border: none; border-radius: 4px; cursor: pointer; margin-bottom: 0.6rem; transition: background .15s; }
.bw-btn:hover { background: var(--brand2); }
.bw-or { text-align: center; font-size: 0.72rem; color: var(--muted); margin-bottom: 0.6rem; }
.bw-wa { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: transparent; border: 1px solid var(--green); color: var(--green); font-size: 0.82rem; font-weight: 500; padding: 0.65rem; border-radius: 4px; cursor: pointer; text-decoration: none; transition: all .15s; margin-bottom: 1rem; }
.bw-wa:hover { background: var(--green); color: #fff; }
.bw-wa svg { width: 15px; height: 15px; fill: currentColor; }
.bw-perks { border-top: 1px solid var(--border); padding-top: 0.8rem; }
.bw-perks-lbl { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.45rem; }
.bw-perk { font-size: 0.76rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.3rem; }
.bw-perk::before { content: '✓'; color: var(--accent); }

/* ═══ HOST CARD ═══ */
.host-card { background: var(--sand2); border: 1px solid var(--border); border-radius: 6px; padding: 0.9rem 1rem; margin-top: 0.8rem; }
.host-lbl { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.host-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.host-name { font-size: 0.88rem; font-weight: 500; color: var(--brand); }
.host-since { font-size: 0.73rem; color: var(--muted); }
.host-online { display: flex; align-items: center; gap: 0.35rem; font-size: 0.73rem; color: var(--muted); }

/* ═══ CTA BLOCK ═══ */
.cta-block { background: var(--brand); padding: 2.5rem 48px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: #fdf6ee; margin-bottom: 0.3rem; }
.cta-desc { font-size: 0.85rem; color: rgba(253,246,238,.55); }
.cta-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; flex-shrink: 0; }
.btn-light { font-family: var(--serif); font-size: 0.95rem; font-weight: 500; padding: 0.75rem 1.8rem; background: #fdf6ee; color: var(--brand); border: none; border-radius: 3px; cursor: pointer; text-decoration: none; display: inline-block; transition: opacity .15s; }
.btn-light:hover { opacity: .88; }
.btn-wa { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; padding: 0.75rem 1.4rem; background: var(--green); color: #fff; border: none; border-radius: 3px; cursor: pointer; text-decoration: none; transition: opacity .15s; }
.btn-wa:hover { opacity: .88; }
.btn-outline { font-size: 0.72rem; font-weight: 500; padding: 0.7rem 1.4rem; background: transparent; color: var(--accent); border: 1px solid rgba(200,168,130,.45); border-radius: 3px; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; transition: all .15s; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: rgba(200,168,130,.1); border-color: var(--accent); }

/* ═══ GOOGLE MAP ═══ */
.gmap { width: 100%; border: none; display: block; filter: sepia(15%) saturate(90%); }

/* ═══ FOOTER ═══ */
.footer { background: var(--brand2); padding: 2.8rem 48px 1.6rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.2rem; }
.ft-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: #fdf6ee; margin-bottom: 0.6rem; }
.ft-tag { font-size: 0.78rem; color: rgba(253,246,238,.42); line-height: 1.7; margin-bottom: 1rem; }
.ft-wa { display: flex; flex-direction: column; gap: 0.45rem; }
.ft-wa a { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--accent); text-decoration: none; transition: color .12s; }
.ft-wa a:hover { color: #fdf6ee; }
.ft-col-title { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem; }
.ft-links { display: flex; flex-direction: column; gap: 0.5rem; }
.ft-links a { font-size: 0.88rem; color: rgba(253,246,238,.5); text-decoration: none; transition: color .12s; }
.ft-links a:hover { color: rgba(253,246,238,.9); }
.ft-bottom { background: var(--brand2); border-top: 1px solid rgba(255,255,255,.07); padding: 1rem 48px; display: flex; justify-content: space-between; }
.ft-copy { font-size: 0.68rem; color: rgba(253,246,238,.25); }

/* ═══ FADE IN ═══ */
.fi { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.fi.vis { opacity: 1; transform: none; }

/* ═══ RESPONSIVE — TABLET ═══ */
@media (max-width: 1024px) {
  html { font-size: 18px; }
  .nav, .owner, .page-hero, .sec, .cta-block, .footer, .ft-bottom { padding-left: 24px; padding-right: 24px; }
  .burger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .footer { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .bw { position: static; }
}

/* ═══ RESPONSIVE — MOBILE ═══ */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .nav { height: 64px; padding: 0 16px; }
  .logo { font-size: 1.6rem; }
  .mob-menu { top: 64px; padding: 0.5rem 20px 2rem; }
  .owner, .page-hero, .sec, .cta-block, .footer, .ft-bottom { padding-left: 16px; padding-right: 16px; }
  .owner { flex-direction: column; align-items: flex-start; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
  .cta-block { flex-direction: column; }
  .page-title { font-size: 2rem; }
  .ft-bottom { flex-direction: column; gap: 0.3rem; }
}
@media (max-width: 480px) { html { font-size: 15px; } }
