/* ============================================================
   SoLeá Homes — Main Stylesheet
   Greek island palette: Aegean blue · Santorini teal · Aegean sand
   Fonts: Cormorant Garamond (serif) · Jost (sans-serif)
   ============================================================ */

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

:root {
  /* ── Colour palette ── */
  --blue:     #1A5276;   /* deep Aegean */
  --blue2:    #0D3349;
  --blue-lt:  #D4E6F1;
  --blue-mid: #2E86C1;
  --cyan:     #17A589;   /* Santorini dome teal */
  --cyan2:    #0E7D68;
  --cyan-lt:  #D1F2EB;
  --sky:      #5DADE2;   /* bright midday sky */
  --sky-lt:   #EBF5FB;
  --sand:     #F5ECD7;   /* warm Aegean sand */
  --sand2:    #E8D5B0;
  --sand3:    #DBBE87;
  --white:    #FFFFFF;
  --cream:    #FDFAF3;
  --ink:      #1B2631;
  --ink2:     #2E4053;
  --ink3:     #566573;

  /* ── Typography ── */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;

  /* ── Misc ── */
  --radius:  18px;
  --shadow:  0 12px 48px rgba(13,51,73,0.14);
  --shadow2: 0 4px 16px rgba(13,51,73,0.09);
}

html  { scroll-behavior: smooth }
body  { font-family: var(--sans); background: var(--white); color: var(--ink); overflow-x: hidden; line-height: 1.6 }
img   { display: block; max-width: 100% }
a     { text-decoration: none; color: inherit }
button { font-family: var(--sans); cursor: pointer; border: none; outline: none }


/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 74px;
  background: rgba(253,250,243,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,82,118,0.12);
  transition: box-shadow 0.3s; gap: 16px;
}
nav.scrolled { box-shadow: 0 4px 28px rgba(13,51,73,0.12) }

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0 }
.nav-logo img { height: 42px; width: auto; object-fit: contain }
.nav-logo-text { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--blue); letter-spacing: -0.01em; line-height: 1 }
.nav-logo-tag  { font-size: 0.65rem; color: var(--ink3); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 2px }

.nav-center { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center }
.nav-center a {
  display: inline-block; padding: 8px 16px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 500; color: var(--ink2);
  transition: all 0.2s;
}
.nav-center a:hover  { background: var(--blue-lt); color: var(--blue) }
.nav-center a.active { background: var(--blue); color: white }

.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0 }
.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: white; padding: 9px 22px; border-radius: 30px;
  font-size: 0.86rem; font-weight: 600;
  box-shadow: 0 3px 14px rgba(23,165,137,0.38);
  transition: all 0.2s; display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(23,165,137,0.48) }


/* ── Language switcher ── */
.lang-sw { position: relative }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--sand); border: 1.5px solid var(--sand2);
  border-radius: 30px; padding: 8px 14px;
  font-size: 0.84rem; font-weight: 500; color: var(--ink2);
  transition: all 0.2s; cursor: pointer;
}
.lang-btn:hover { border-color: var(--blue); color: var(--blue) }
.lang-arrow { font-size: 0.65rem; opacity: 0.6; transition: transform 0.2s }
.lang-sw.open .lang-arrow { transform: rotate(180deg) }
.lang-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1.5px solid var(--sand2);
  border-radius: 14px; box-shadow: var(--shadow);
  min-width: 175px; overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all 0.2s; z-index: 300;
}
.lang-sw.open .lang-drop { opacity: 1; pointer-events: all; transform: translateY(0) }
.lang-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 0.87rem; font-weight: 500;
  color: var(--ink2); cursor: pointer; transition: background 0.15s;
}
.lang-opt:hover      { background: var(--blue-lt); color: var(--blue) }
.lang-opt.active     { background: var(--blue); color: white }
.lang-opt-name { flex: 1 }
.lang-opt-code { font-size: 0.72rem; opacity: 0.55 }


/* ══════════════════════════════════════════
   HERO  (index.html only)
   ══════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(13,51,73,0.82) 0%, rgba(26,82,118,0.55) 45%, rgba(23,165,137,0.50) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 220px; background: linear-gradient(to top, var(--cream), transparent);
}
.hero-dots {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-content { position: relative; text-align: center; color: white; padding: 0 32px; max-width: 820px }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.28); border-radius: 30px;
  padding: 8px 22px; font-size: 0.77rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
  animation: fadeUp 0.9s 0.1s both;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 1.05; font-weight: 700; margin-bottom: 22px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.2); animation: fadeUp 0.9s 0.25s both;
}
.hero-title em { color: #A8DDD3; font-style: italic; font-weight: 400 }
.hero-subtitle {
  font-size: 1.05rem; font-weight: 300; opacity: 0.88; line-height: 1.75;
  margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto;
  animation: fadeUp 0.9s 0.35s both;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.9s 0.45s both }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: white; padding: 15px 36px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(23,165,137,0.48); transition: all 0.25s;
  border: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(23,165,137,0.58) }

.btn-outline {
  background: rgba(255,255,255,0.14); color: white;
  border: 1.5px solid rgba(255,255,255,0.48); padding: 15px 36px;
  border-radius: 50px; font-size: 0.95rem; font-weight: 400;
  backdrop-filter: blur(8px); transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px) }

.hero-scroll {
  position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: floatDown 2.5s 2s ease infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.38) }

.hero-stats {
  position: absolute; bottom: 52px; right: 56px;
  display: flex; flex-direction: column; gap: 12px;
  animation: fadeUp 1s 0.8s both;
}
.hstat {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 14px;
  padding: 10px 18px; text-align: center; min-width: 84px;
}
.hstat-num   { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: white; line-height: 1 }
.hstat-label { font-size: 0.65rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px }


/* ── Wave divider ── */
.wave { line-height: 0 }
.wave svg { display: block; width: 100% }


/* ══════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
   ══════════════════════════════════════════ */
.sec-label { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px }
.sec-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 14px }
.sec-title em { color: var(--blue); font-style: italic; font-weight: 400 }
.sec-sub   { font-size: 0.97rem; color: var(--ink3); line-height: 1.75; max-width: 540px; margin-bottom: 52px }


/* ── Pills ── */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 52px }
.pill  {
  display: flex; align-items: center; gap: 8px;
  background: var(--sky-lt); border: 1.5px solid var(--blue-lt);
  border-radius: 40px; padding: 9px 18px;
  font-size: 0.85rem; font-weight: 500; color: var(--blue); transition: all 0.2s;
}
.pill:hover { background: var(--blue-lt); border-color: var(--blue); transform: translateY(-1px) }


/* ── Feature cards (home page) ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.feat-card {
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow) }
.feat-card:nth-child(1) { background: var(--sand) }
.feat-card:nth-child(2) { background: var(--blue); color: white }
.feat-card:nth-child(3) { background: var(--cyan-lt) }
.fc-icon { font-size: 2.2rem; margin-bottom: 20px }
.fc-tag  { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px }
.feat-card:nth-child(1) .fc-tag { color: var(--cyan) }
.feat-card:nth-child(2) .fc-tag { color: #A8DDD3 }
.feat-card:nth-child(3) .fc-tag { color: var(--cyan2) }
.fc-h { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; line-height: 1.25; margin-bottom: 10px }
.feat-card:nth-child(1) .fc-h { color: var(--blue) }
.feat-card:nth-child(2) .fc-h { color: white }
.feat-card:nth-child(3) .fc-h { color: var(--cyan2) }
.fc-p { font-size: 0.87rem; line-height: 1.7; opacity: 0.82 }
.feat-card:nth-child(2) .fc-p { color: rgba(255,255,255,0.84) }
.fc-orb { position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.07) }


/* ── Testimonial ── */
.testi {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color: white; padding: 96px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.testi::before {
  content: '\201C'; position: absolute; top: -20px; left: 50%;
  transform: translateX(-50%); font-family: var(--serif); font-size: 18rem;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
}
.testi-stars  { font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 20px; color: #A8DDD3 }
.testi-quote  { font-family: var(--serif); font-size: clamp(1.3rem, 2.8vw, 2rem); font-style: italic; font-weight: 400; line-height: 1.6; max-width: 740px; margin: 0 auto 22px; opacity: 0.97 }
.testi-author { font-size: 0.82rem; opacity: 0.5; letter-spacing: 0.08em; text-transform: uppercase }


/* ── CTA section ── */
.cta-sec { padding: 96px 56px; text-align: center; background: var(--sand) }


/* ── WhatsApp button ── */
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white; padding: 13px 28px;
  border-radius: 50px; font-size: 0.92rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.25s;
  border: none; cursor: pointer; text-decoration: none;
}
.wa-btn:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5) }


/* ══════════════════════════════════════════
   APARTMENT PAGE
   ══════════════════════════════════════════ */
.apt-top       { padding-top: 74px; background: linear-gradient(180deg, var(--sky-lt) 0%, var(--cream) 100%) }
.apt-top-inner { max-width: 1200px; margin: 0 auto; padding: 72px 56px 48px }

/* Tab navigation */
.tab-nav { display: flex; gap: 8px; border-bottom: 2px solid var(--sand2); padding-bottom: 0; margin-bottom: 40px; flex-wrap: wrap }
.tab-btn {
  padding: 11px 24px; border-radius: 10px 10px 0 0;
  font-size: 0.88rem; font-weight: 500; color: var(--ink3);
  background: none; border: none; cursor: pointer; transition: all 0.2s;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.tab-btn:hover  { color: var(--blue); background: var(--blue-lt) }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600 }
.tab-panel { display: none }
.tab-panel.active { display: block }

/* Gallery */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 5px }
.gi { position: relative; overflow: hidden; cursor: zoom-in }
.gi:first-child { grid-row: 1 / 3 }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease }
.gi:hover img { transform: scale(1.05) }
.gi-over { position: absolute; inset: 0; background: rgba(26,82,118,0); transition: background 0.3s }
.gi:hover .gi-over { background: rgba(26,82,118,0.12) }
.gi-count {
  position: absolute; inset: 0; background: rgba(13,51,73,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; gap: 8px; font-weight: 500; font-size: 0.9rem; backdrop-filter: blur(2px);
}
.gi-count-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 600 }

/* 3D Tour placeholder */
.tour-box {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky-lt), var(--cyan-lt));
  border: 2px dashed rgba(23,165,137,0.3); height: 480px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.tb-icon  { font-size: 4rem; opacity: 0.38 }
.tb-title { font-family: var(--serif); font-size: 1.5rem; color: var(--blue); opacity: 0.7 }
.tb-sub   { font-size: 0.83rem; color: var(--ink3); opacity: 0.65; text-align: center; max-width: 340px; line-height: 1.6 }

/* Amenities grid */
.amen-section    { background: var(--cream); padding: 0 56px 64px }
.amen-cat        { margin-bottom: 40px }
.amen-cat-title  {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--blue);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1.5px solid var(--blue-lt);
}
.amen-cat-icon { font-size: 1.4rem }
.amen-grid     { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 12px }
.amen-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--sand2); border-radius: 12px;
  padding: 12px 16px; font-size: 0.87rem; font-weight: 500; color: var(--ink2);
  transition: all 0.2s;
}
.amen-item:hover { border-color: var(--cyan); background: var(--cyan-lt); color: var(--cyan2); transform: translateY(-1px); box-shadow: var(--shadow2) }
.amen-ico { font-size: 1.2rem; flex-shrink: 0 }

/* Details table */
.details { background: var(--sand); padding: 64px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1200px; margin: 0 auto }
.dl { list-style: none }
.dl li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--sand2); font-size: 0.91rem }
.dl li:last-child { border: none }
.dl-ico { font-size: 1.15rem; width: 30px; text-align: center }
.dl-k   { font-weight: 500; color: var(--ink); flex: 1 }
.dl-v   { color: var(--cyan2); font-weight: 500 }


/* ══════════════════════════════════════════
   LOCAL GUIDE PAGE
   ══════════════════════════════════════════ */
.guide-hero {
  padding-top: 74px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color: white; padding-bottom: 0;
}
.guide-hero-inner { max-width: 1100px; margin: 0 auto; padding: 72px 56px 0 }
.guide-tab-bar {
  display: flex; gap: 0; border-bottom: none; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.guide-tab-bar::-webkit-scrollbar { display: none }
.guide-tab {
  padding: 14px 24px; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.6); background: none; border: none; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.guide-tab:hover           { color: white !important }
.guide-tab.active          { color: #A8DDD3 !important; border-bottom-color: #A8DDD3 !important; font-weight: 600 !important }
.guide-panel               { display: none; background: var(--cream) }
.guide-panel.active        { display: block }
.guide-section             { max-width: 1100px; margin: 0 auto; padding: 52px 56px }
.guide-grid                { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 22px; margin-top: 24px }
.gcard                     { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow2); transition: transform 0.3s, box-shadow 0.3s }
.gcard:hover               { transform: translateY(-4px); box-shadow: var(--shadow) }
.gcard-img                 { height: 175px; overflow: hidden; position: relative }
.gcard-img img             { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s }
.gcard:hover .gcard-img img { transform: scale(1.05) }
.gcard-badge               { position: absolute; top: 12px; left: 12px; border-radius: 20px; padding: 4px 12px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase }
.badge-blue  { background: var(--blue); color: white }
.badge-cyan  { background: var(--cyan); color: white }
.badge-sand  { background: var(--sand3); color: var(--ink) }
.gcard-body  { padding: 20px 22px }
.gcard-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--blue); margin-bottom: 5px }
.gcard-loc   { font-size: 0.8rem; color: var(--ink3); margin-bottom: 8px }
.gcard-desc  { font-size: 0.86rem; color: var(--ink2); line-height: 1.65 }
.gcard-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px }
.gtag        { background: var(--sky-lt); border: 1px solid var(--blue-lt); border-radius: 20px; padding: 3px 9px; font-size: 0.73rem; color: var(--blue); font-weight: 500 }
.tip-box     { background: var(--blue-lt); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 28px; border-left: 4px solid var(--blue); display: flex; gap: 14px; align-items: flex-start; font-size: 0.87rem; color: var(--ink2); line-height: 1.65 }
.tip-icon    { font-size: 1.6rem; flex-shrink: 0 }
.ibox        { background: var(--sand); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 20px }
.ibox h3     { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--blue); margin-bottom: 12px }
.irow        { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--sand2); font-size: 0.86rem; align-items: flex-start }
.irow:last-child { border: none }
.iico { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; margin-top: 1px }
.ik   { font-weight: 500; color: var(--ink); min-width: 120px; flex-shrink: 0 }
.iv   { color: var(--ink2); flex: 1 }


/* ══════════════════════════════════════════
   BOOK NOW PAGE
   ══════════════════════════════════════════ */
.book-wrap  { padding-top: 74px; min-height: 100vh; background: linear-gradient(150deg, var(--sky-lt) 0%, var(--cream) 55%, var(--cyan-lt) 100%) }
.book-inner { max-width: 1100px; margin: 0 auto; padding: 72px 56px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start }
.book-card  { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow2); margin-top: 28px }
.bc-row     { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--sand); font-size: 0.88rem }
.bc-row:last-child { border: none }
.bc-l { color: var(--ink3) }
.bc-r { font-weight: 500; color: var(--ink) }
.bc-r.accent { color: var(--cyan2); font-weight: 600 }

.widget-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 44px 40px }
.wt { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--ink); margin-bottom: 6px }
.ws { font-size: 0.85rem; color: var(--ink3); margin-bottom: 28px }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px }
.fg { display: flex; flex-direction: column; gap: 5px }
.fg label { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue) }
.fg input,
.fg select { border: 1.5px solid var(--sand2); border-radius: 10px; padding: 13px 15px; font-family: var(--sans); font-size: 0.91rem; color: var(--ink); background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s; outline: none }
.fg input:focus,
.fg select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(23,165,137,0.12) }

.price-box { background: linear-gradient(135deg, var(--sky-lt), var(--cyan-lt)); border-radius: 12px; padding: 18px 20px; margin: 18px 0; border: 1px solid rgba(23,165,137,0.15) }
.pb-row    { display: flex; justify-content: space-between; font-size: 0.87rem; padding: 4px 0; color: var(--ink2) }
.pb-total  { font-weight: 700; color: var(--blue); font-size: 1rem; border-top: 1px solid var(--sand2); margin-top: 10px; padding-top: 12px }
.pay-row   { display: flex; gap: 8px; margin: 14px 0 18px; flex-wrap: wrap }
.pay-badge { background: var(--sky-lt); border: 1.5px solid var(--blue-lt); border-radius: 8px; padding: 6px 14px; font-size: 0.76rem; font-weight: 600; color: var(--blue) }
.btn-reserve {
  width: 100%; background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: white; padding: 17px; border-radius: 12px; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.02em; box-shadow: 0 6px 24px rgba(23,165,137,0.38);
  transition: all 0.25s; border: none;
}
.btn-reserve:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(23,165,137,0.48) }
.guar { text-align: center; margin-top: 12px; font-size: 0.76rem; color: var(--ink3) }

.also-on  { margin-top: 20px; padding: 18px; background: var(--sand); border-radius: 12px; text-align: center }
.ao-label { font-size: 0.78rem; color: var(--ink3); margin-bottom: 10px }
.ao-btns  { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap }
.ao-btn   { padding: 8px 20px; border-radius: 30px; font-size: 0.82rem; font-weight: 500; border: 1.5px solid var(--sand2); background: white; color: var(--ink2); transition: all 0.2s }
.ao-btn:hover { border-color: var(--blue); color: var(--blue) }

/* BNBForms widget container */
.bnbforms-container { margin-top: 32px }


/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-wrap  { padding-top: 74px; min-height: 100vh; background: var(--cream) }
.contact-inner { max-width: 1040px; margin: 0 auto; padding: 80px 56px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px }
.ci-block { display: flex; flex-direction: column; gap: 28px }
.ci-item  { display: flex; gap: 18px; align-items: flex-start }
.ci-icon  { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--blue2)); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.3rem }
.ci-label { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan2); margin-bottom: 4px }
.ci-val   { font-size: 0.93rem; color: var(--ink2); line-height: 1.55 }
.ci-val a { color: var(--blue); font-weight: 500 }
.ci-val a:hover { color: var(--cyan2) }

.cf-card  { background: var(--white); border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow) }
.cf-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; margin-bottom: 6px }
.cf-sub   { font-size: 0.85rem; color: var(--ink3); margin-bottom: 28px }
.fg-full  { margin-bottom: 14px }
.fg-full label { display: block; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 5px }
.fg-full input,
.fg-full textarea { width: 100%; border: 1.5px solid var(--sand2); border-radius: 10px; padding: 13px 15px; font-family: var(--sans); font-size: 0.91rem; color: var(--ink); background: var(--cream); transition: border-color 0.2s; outline: none }
.fg-full textarea { resize: vertical; min-height: 115px }
.fg-full input:focus,
.fg-full textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(23,165,137,0.12) }
.btn-send {
  width: 100%; background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white; padding: 15px; border-radius: 12px; font-size: 0.95rem; font-weight: 600;
  border: none; margin-top: 8px; box-shadow: 0 6px 24px rgba(26,82,118,0.3); transition: all 0.25s;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,82,118,0.38) }

.map-ph   { background: linear-gradient(135deg, var(--sky-lt), var(--cyan-lt)); height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; border-top: 1px solid var(--sand2) }
.map-link { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1.5px solid var(--blue-lt); border-radius: 30px; padding: 11px 22px; font-size: 0.87rem; font-weight: 500; color: var(--blue); transition: all 0.2s; box-shadow: var(--shadow2) }
.map-link:hover { border-color: var(--blue); background: var(--blue-lt); transform: translateY(-1px) }


/* ══════════════════════════════════════════
   FOOTER (shared)
   ══════════════════════════════════════════ */
footer { background: var(--blue2); color: rgba(255,255,255,0.65); padding: 56px; text-align: center }
.foot-logo-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 8px }
.foot-logo-img  { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.88 }
.foot-name      { font-family: var(--serif); font-size: 1.5rem; color: white; font-weight: 600 }
.foot-tag       { font-size: 0.72rem; letter-spacing: 0.08em; opacity: 0.4; margin-bottom: 28px }
.foot-contact   { display: flex; gap: 22px; justify-content: center; margin-bottom: 22px; flex-wrap: wrap }
.foot-contact a { font-size: 0.84rem; opacity: 0.58; transition: opacity 0.2s; display: flex; align-items: center; gap: 6px }
.foot-contact a:hover { opacity: 1; color: #A8DDD3 }
.foot-links     { display: flex; gap: 22px; justify-content: center; margin-bottom: 22px; flex-wrap: wrap }
.foot-links a   { font-size: 0.82rem; opacity: 0.42; transition: opacity 0.2s }
.foot-links a:hover { opacity: 1; color: #A8DDD3 }
.foot-copy { font-size: 0.72rem; opacity: 0.25 }


/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(28px) }  to { opacity: 1; transform: translateY(0) } }
@keyframes floatDown { 0%, 100% { transform: translateX(-50%) translateY(0) } 50% { transform: translateX(-50%) translateY(10px) } }
.fi  { animation: fadeUp 0.7s both }
.fi1 { animation: fadeUp 0.7s 0.1s both }
.fi2 { animation: fadeUp 0.7s 0.2s both }


/* ══════════════════════════════════════════
   NOTIFICATION TOAST
   ══════════════════════════════════════════ */
.notif {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white; padding: 14px 22px; border-radius: 14px;
  font-size: 0.87rem; font-weight: 500; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(14px); transition: all 0.3s;
}
.notif.show { opacity: 1; transform: translateY(0) }


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 0 20px; gap: 8px }
  .nav-center a { padding: 7px 10px; font-size: 0.79rem }
  .nav-logo-tag { display: none }
  .feat-grid { grid-template-columns: 1fr }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto }
  .gi:first-child { grid-row: auto }
  .book-inner, .contact-inner, .details { grid-template-columns: 1fr; gap: 32px }
  .frow { grid-template-columns: 1fr }
  .apt-top-inner, .book-inner, .contact-inner, .amen-section { padding-left: 24px; padding-right: 24px }
  .details { padding: 48px 24px }
  .cta-sec, .testi { padding: 64px 24px }
  .amen-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)) }
  .guide-section { padding: 40px 24px }
  .guide-grid { grid-template-columns: 1fr 1fr }
}

@media (max-width: 640px) {
  nav { padding: 0 16px }
  .hero-stats { display: none }
  .gallery { grid-template-columns: 1fr }
  .guide-grid { grid-template-columns: 1fr }
  footer { padding: 44px 20px }
  .foot-links, .foot-contact { flex-wrap: wrap; gap: 14px }
}


/* ══════════════════════════════════════════
   HAMBURGER + MOBILE MENU OVERLAY
   ══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px; transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--blue-lt) }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink2); border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-overlay.open { transform: translateX(0) }

.mobile-overlay-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 74px;
  border-bottom: 1px solid var(--sand2);
  flex-shrink: 0;
}
.mob-close-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--ink2);
  border-radius: 8px;
}
.mob-close-btn:hover { background: var(--sand); }

.mobile-nav-links {
  padding: 20px 0; flex: 1;
}
.mobile-nav-links a {
  display: flex; align-items: center;
  padding: 16px 28px; font-size: 1.1rem; font-weight: 500; color: var(--ink2);
  border-bottom: 1px solid var(--sand); transition: all 0.15s;
  min-height: 56px;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { background: var(--blue-lt); color: var(--blue) }

.mobile-overlay-foot {
  padding: 24px 28px 32px;
  border-top: 1px solid var(--sand2);
  display: flex; flex-direction: column; gap: 14px;
}
.mob-reserve {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: white; padding: 15px 24px; border-radius: 12px;
  font-size: 1rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(23,165,137,0.38);
}

/* Mobile language switcher inside overlay */
.mob-lang-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.mob-lang-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: 8px;
  background: var(--white); border: 1.5px solid var(--sand2);
  font-size: 0.85rem; font-weight: 500; color: var(--ink2);
  cursor: pointer; transition: all 0.15s;
}
.mob-lang-btn:hover,
.mob-lang-btn.active { background: var(--blue); border-color: var(--blue); color: white }


/* ══════════════════════════════════════════
   MOBILE RESPONSIVE BREAKPOINTS (≤768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav items */
  .nav-hamburger { display: flex }
  .nav-center { display: none }
  .nav-cta    { display: none }
  nav { padding: 0 16px; height: 64px }

  /* Apartment / guide tab bars: force horizontal scroll, large tap targets */
  .tab-nav {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    border-bottom-width: 2px;
    padding-bottom: 0;
  }
  .tab-nav::-webkit-scrollbar { display: none }
  .tab-btn {
    white-space: nowrap;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .guide-tab {
    min-height: 44px;
    padding: 12px 18px;
  }

  /* Details 2-col → single col */
  #tab-details > div[style*="grid-template-columns"] { display: block !important }
  #tab-details > div > div + div { margin-top: 32px }

  /* Hero adjustments */
  .hero-content { padding: 0 20px }
  .hero-ctas { flex-direction: column; align-items: center }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; max-width: 300px; text-align: center; padding: 14px 24px }
  .hero-scroll { display: none }

  /* Sections padding */
  section[style*="padding:20px 56px"] { padding: 20px 20px 60px !important }
  .apt-top-inner { padding: 56px 20px 32px }
  .book-inner    { padding: 56px 20px 48px }
  .contact-inner { padding: 56px 20px 48px }
  .guide-section { padding: 32px 20px }
  .guide-hero-inner { padding: 56px 20px 0 }
  .cta-sec       { padding: 56px 20px }
  .testi         { padding: 56px 20px }
  .amen-section  { padding: 0 20px 48px }

  /* Gallery: single column */
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto }
  .gi:first-child { grid-row: auto }
  .gi img { height: 240px; object-fit: cover }

  /* Pills wrap nicely */
  .pills { gap: 8px; margin-bottom: 36px }
  .pill { padding: 7px 14px; font-size: 0.82rem }

  /* Feature cards */
  .feat-grid { grid-template-columns: 1fr; gap: 14px }

  /* Book page: widget card padding */
  .widget-card { padding: 28px 20px }
  .frow { grid-template-columns: 1fr }

  /* Contact */
  .cf-card { padding: 28px 20px }
  .ci-block { gap: 20px }

  /* Footer */
  footer { padding: 40px 20px }
  .foot-links, .foot-contact { flex-direction: column; gap: 10px; align-items: center }

  /* Push page content below fixed nav */
  .apt-top, .book-wrap, .contact-wrap { padding-top: 64px }
  .hero { padding-top: 0 }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem) }
  .sec-title  { font-size: clamp(1.7rem, 7vw, 2.5rem) }
  .testi-quote { font-size: 1.1rem }
  .guide-grid { grid-template-columns: 1fr }
  .lang-btn span:last-of-type { display: none } /* hide lang code label, keep flag */
}


/* ══════════════════════════════════════════
   GALLERY IMAGE CAPTIONS (Task 2)
   ══════════════════════════════════════════ */
.gi { position: relative; overflow: hidden; cursor: zoom-in }
.gi-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,51,73,0.85) 0%, transparent 100%);
  color: white; padding: 32px 16px 14px;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.gi:hover .gi-caption { transform: translateY(0) }
.gi-cap-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; line-height: 1.2 }
.gi-cap-desc  { font-size: 0.78rem; opacity: 0.82; margin-top: 3px; line-height: 1.4 }

/* Mobile: show caption below image instead of overlay */
@media (max-width: 768px) {
  .gi { cursor: default }
  .gi-caption {
    position: static;
    transform: none !important;
    background: var(--sand);
    color: var(--ink2);
    padding: 10px 14px;
    border-top: 1px solid var(--sand2);
  }
  .gi-cap-title { color: var(--blue); font-size: 0.9rem }
  .gi-cap-desc  { color: var(--ink3); font-size: 0.78rem }
}


/* ══════════════════════════════════════════
   PAYMENT FLOW (Task 3 — book.html)
   ══════════════════════════════════════════ */
.book-steps-wrap {
  padding-top: 64px; min-height: 100vh;
  background: linear-gradient(150deg, var(--sky-lt) 0%, var(--cream) 55%, var(--cyan-lt) 100%);
}
.book-steps-inner {
  max-width: 700px; margin: 0 auto; padding: 56px 28px 80px;
}

/* Progress bar */
.step-progress {
  display: flex; align-items: center; margin-bottom: 40px;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
  background: var(--sand2); color: var(--ink3);
  transition: all 0.3s;
}
.step-dot.done  { background: var(--cyan);  color: white }
.step-dot.active{ background: var(--blue);  color: white }
.step-line {
  flex: 1; height: 2px; background: var(--sand2); transition: background 0.3s;
}
.step-line.done { background: var(--cyan) }

/* Step panels */
.step-panel { display: none }
.step-panel.active { display: block }
.step-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow2); padding: 36px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .step-card { padding: 24px 20px } }

.step-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
}
.step-sub { font-size: 0.87rem; color: var(--ink3); margin-bottom: 24px; line-height: 1.6 }

/* Price summary box */
.price-summary {
  background: linear-gradient(135deg, var(--sky-lt), var(--cyan-lt));
  border-radius: 14px; padding: 22px 24px; margin-bottom: 24px;
  border: 1px solid rgba(23,165,137,0.15);
}
.ps-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem; padding: 5px 0; color: var(--ink2);
}
.ps-total {
  font-weight: 700; font-size: 1rem; color: var(--blue);
  border-top: 1px solid var(--sand2); margin-top: 10px; padding-top: 12px;
}
.ps-deposit {
  background: var(--blue); color: white;
  border-radius: 10px; padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; font-weight: 600;
}
.ps-deposit-label { font-size: 0.85rem; opacity: 0.85 }
.ps-deposit-amount { font-family: var(--serif); font-size: 1.6rem; font-weight: 700 }
.ps-note { font-size: 0.78rem; opacity: 0.64; margin-top: 4px }

/* Payment method cards */
.pay-methods { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 24px }
@media (max-width: 500px) { .pay-methods { grid-template-columns: 1fr } }
.pay-method-card {
  border: 2px solid var(--sand2); border-radius: 14px; padding: 20px 14px;
  text-align: center; cursor: pointer; transition: all 0.2s; background: white;
}
.pay-method-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow2) }
.pay-method-card.selected { border-color: var(--cyan2); background: var(--cyan-lt) }
.pay-method-icon { font-size: 2rem; margin-bottom: 8px }
.pay-method-name { font-weight: 600; font-size: 0.88rem; color: var(--blue) }
.pay-method-sub  { font-size: 0.73rem; color: var(--ink3); margin-top: 3px }

/* Stripe card element container */
#stripe-element-wrap {
  border: 1.5px solid var(--sand2); border-radius: 10px;
  padding: 14px 15px; background: var(--cream); margin-bottom: 16px;
  transition: border-color 0.2s;
}
#stripe-element-wrap.focused { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(23,165,137,0.12) }

/* Bank transfer box */
.bank-box {
  background: var(--sand); border-radius: 14px; padding: 24px;
  margin-bottom: 16px;
}
.bank-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--sand2); font-size: 0.88rem }
.bank-row:last-child { border: none }
.bank-k { font-weight: 600; color: var(--ink); min-width: 130px }
.bank-v { color: var(--ink2); word-break: break-all }
.bank-ref {
  background: var(--blue); color: white; border-radius: 8px;
  padding: 10px 16px; font-family: monospace; font-size: 1.1rem;
  letter-spacing: 0.08em; text-align: center; margin: 12px 0 4px;
}

/* Confirmation screen */
.confirm-screen { text-align: center; padding: 40px 20px }
.confirm-check  {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(23,165,137,0.4);
}
.confirm-ref { font-family: monospace; font-size: 1.2rem; font-weight: 700; color: var(--blue); letter-spacing: 0.08em; background: var(--sky-lt); border-radius: 8px; padding: 10px 20px; display: inline-block; margin-bottom: 20px }
.confirm-detail { font-size: 0.87rem; color: var(--ink3); line-height: 1.8; margin-bottom: 28px }

/* Test mode banner */
.test-banner {
  background: #FEF3C7; border: 1.5px solid #F59E0B; border-radius: 10px;
  padding: 12px 18px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: #92400E; font-weight: 500;
}

/* Navigation buttons in step flow */
.step-nav { display: flex; gap: 12px; margin-top: 20px }
.btn-step-back {
  flex: 1; padding: 14px; border: 1.5px solid var(--sand2);
  border-radius: 12px; background: white; color: var(--ink2);
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.btn-step-back:hover { border-color: var(--blue); color: var(--blue) }
.btn-step-next {
  flex: 2; padding: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: white; border: none; border-radius: 12px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; box-shadow: 0 6px 24px rgba(23,165,137,0.38);
  transition: all 0.25s;
}
.btn-step-next:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(23,165,137,0.48) }
.btn-step-next:disabled { opacity: 0.5; transform: none; cursor: default }


/* ══════════════════════════════════════════
   LEGAL PAGES (privacy.html, terms.html)
   ══════════════════════════════════════════ */
.legal-wrap {
  padding-top: 64px; min-height: 100vh;
  background: var(--cream);
}
.legal-inner {
  max-width: 800px; margin: 0 auto;
  padding: 64px 28px 96px;
}
.legal-inner h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem);
  color: var(--blue); margin-bottom: 8px; font-weight: 700;
}
.legal-date { font-size: 0.82rem; color: var(--ink3); margin-bottom: 48px }
.legal-inner h2 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: var(--blue); margin: 40px 0 12px;
}
.legal-inner h3 {
  font-size: 1rem; font-weight: 600; color: var(--ink2); margin: 24px 0 8px;
}
.legal-inner p { font-size: 0.93rem; line-height: 1.8; color: var(--ink2); margin-bottom: 14px }
.legal-inner ul { margin: 10px 0 14px 24px }
.legal-inner li { font-size: 0.93rem; line-height: 1.8; color: var(--ink2); margin-bottom: 6px }
.legal-inner a  { color: var(--blue); text-decoration: underline }
.legal-lang-toggle {
  display: inline-flex; gap: 0; border: 1.5px solid var(--sand2); border-radius: 10px;
  overflow: hidden; margin-bottom: 40px;
}
.llt-btn {
  padding: 8px 20px; background: white; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink2);
  transition: all 0.15s;
}
.llt-btn.active { background: var(--blue); color: white }
.legal-section { display: none }
.legal-section.active { display: block }
