/* ===========================================================
   BEST SELLERS GROUP — design tokens
   Palette: near-black ground, gold/champagne metal, bone text
   Display: Cormorant Garamond (carved, ceremonial)
   Body:    Jost (clean geometric sans, quiet)
   Signature: hairline gold seals + engraved dividers, echoing
   the logo's metallic linework and the brand's "stamp of
   approval" world — a seal for each country of residence.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root{
  --bg: #0b0b0c;
  --bg-elevated: #141416;
  --bg-card: #18181a;
  --line: #2a2a2c;
  --gold: #c9a24b;
  --gold-light: #e6c879;
  --gold-dim: #8a6f33;
  --silver: #b9bcc1;
  --bone: #f2ede2;
  --bone-dim: #b8b3a8;
  --muted: #7e7b74;

  --display: 'Cormorant Garamond', serif;
  --body: 'Jost', sans-serif;

  --container: 1180px;
  --radius: 2px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }

h1,h2,h3,h4{
  font-family: var(--display);
  font-weight: 500;
  margin: 0 0 .4em;
  color: var(--bone);
  letter-spacing: .01em;
}
h1{ font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 1.05; }
h2{ font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3{ font-size: 1.4rem; }
p{ margin:0 0 1em; color: var(--bone-dim); }

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

.eyebrow{
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 32px; height:1px;
  background: var(--gold-dim);
}

/* ---------- header ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(11,11,12,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 42px; width:auto; }
.brand-text{ font-family: var(--display); font-size:1.1rem; letter-spacing:.04em; color: var(--bone); }
.brand-text small{ display:block; font-family:var(--body); font-size:.55rem; letter-spacing:.32em; color:var(--gold); text-transform:uppercase; }

nav.main-nav{ display:flex; align-items:center; justify-content:space-evenly; flex:1; gap:16px; margin:0 36px; }
nav.main-nav a{
  font-size:.82rem; letter-spacing:.05em; text-transform:uppercase;
  color: var(--bone-dim);
  position:relative;
  padding: 6px 0;
  transition: color .25s;
}
nav.main-nav a:hover, nav.main-nav a.active{ color: var(--gold-light); }
nav.main-nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px; background: var(--gold);
}

.header-right{ display:flex; align-items:center; gap:14px; }
.lang-switch{ display:flex; border:1px solid var(--gold-dim); border-radius: 20px; overflow:hidden; }
.lang-switch button{
  background:none; border:none; color: var(--gold-light);
  font-family: var(--body); font-size:.72rem; letter-spacing:.1em; font-weight:500;
  padding: 8px 14px; cursor:pointer; transition: all .2s;
}
.lang-switch button:hover{ background: rgba(201,162,75,.1); }
.lang-switch button.active{ background: var(--gold); color:#1a1505; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--body); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase;
  padding: 13px 26px;
  border:1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  cursor:pointer;
  transition: all .25s;
  border-radius: var(--radius);
}
.btn:hover{ background: var(--gold); color:#1a1505; }
.btn-solid{ background: var(--gold); color:#1a1505; border-color:var(--gold); }
.btn-solid:hover{ background: var(--gold-light); border-color:var(--gold-light); }
.btn-whatsapp{ border-color:#3fae5a; color:#7fd99a; }
.btn-whatsapp:hover{ background:#3fae5a; color:#06190c; }

.menu-toggle{ display:none; background:none; border:none; color:var(--bone); font-size:1.4rem; cursor:pointer; }

/* ---------- hero ---------- */
.hero{
  position:relative;
  padding: 110px 0 90px;
  overflow:hidden;
  background:
    radial-gradient(ellipse at 75% 0%, rgba(201,162,75,.10), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero .container{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items:center; }
.hero h1{ margin-bottom: .3em; }
.hero h1 em{ font-style:italic; color: var(--gold-light); }
.hero-lede{ font-size: 1.05rem; max-width: 46ch; }
.hero-actions{ display:flex; gap:16px; margin-top: 34px; flex-wrap:wrap; }
.hero-art{
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  display:flex; align-items:center; justify-content:center;
}
.hero-art img{ width:85%; height:85%; opacity:.95; object-fit:contain; }
.hero-art::before{
  content:""; position:absolute; inset:14px; border:1px solid var(--gold-dim); pointer-events:none;
}

.stat-row{ display:flex; gap:42px; margin-top:54px; flex-wrap:wrap; }
.stat-row div b{ display:block; font-family:var(--display); font-size:2.1rem; color: var(--gold-light); font-weight:500; }
.stat-row div span{ font-size:.75rem; letter-spacing:.08em; text-transform:uppercase; color: var(--muted); }

/* ---------- sections ---------- */
section{ padding: 90px 0; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.alt{ background: var(--bg-elevated); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

/* destination seals (signature element) */
.seal-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.seal-card{
  border:1px solid var(--line);
  background: var(--bg-card);
  padding: 34px 24px;
  text-align:center;
  position:relative;
  transition: border-color .3s, transform .3s;
}
.seal-card:hover{ border-color: var(--gold-dim); transform: translateY(-4px); }
.seal{
  width:64px; height:64px; margin:0 auto 18px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.seal::before, .seal::after{
  content:""; position:absolute; inset:-6px; border:1px solid var(--gold-dim); border-radius:50%;
}
.seal::after{ inset:6px; border-style:dashed; opacity:.5; }
.seal svg{ width:28px; height:28px; stroke: var(--gold-light); fill:none; }
.seal-card h3{ font-size:1.15rem; margin-bottom:.3em; }
.seal-card p{ font-size:.88rem; margin-bottom: 1.2em; }
.seal-card a.link{ font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); border-bottom:1px solid var(--gold-dim); padding-bottom:3px; }

/* services list (about/services page) */
.service-row{
  display:grid; grid-template-columns: 90px 1fr; gap: 28px;
  padding: 30px 0; border-top:1px solid var(--line);
}
.service-row:last-child{ border-bottom:1px solid var(--line); }
.service-row .num{ font-family:var(--display); font-size:1.6rem; color: var(--gold-dim); }
.service-row h3{ margin-bottom:.35em; }

/* cards / properties */
.prop-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.prop-card{
  background: var(--bg-card); border:1px solid var(--line);
  display:flex; flex-direction:column; overflow:hidden;
  transition: transform .3s, border-color .3s;
}
.prop-card:hover{ transform: translateY(-4px); border-color: var(--gold-dim); }
.prop-thumb{ aspect-ratio: 4/3; background:#0e0e10; overflow:hidden; position:relative; }
.prop-thumb img{ width:100%; height:100%; object-fit:cover; }
.prop-tag{
  position:absolute; top:12px; left:12px;
  background: rgba(11,11,12,.85); border:1px solid var(--gold-dim);
  color: var(--gold-light); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase;
  padding: 5px 10px;
}
.prop-body{ padding: 20px 22px 24px; flex:1; display:flex; flex-direction:column; }
.prop-body h3{ font-size:1.2rem; margin-bottom:.2em; }
.prop-loc{ font-size:.78rem; color: var(--muted); margin-bottom:14px; }
.prop-specs{ display:flex; gap:16px; flex-wrap:wrap; font-size:.74rem; color: var(--bone-dim); margin-bottom:16px; border-top:1px solid var(--line); padding-top:14px; }
.prop-specs span{ display:flex; align-items:center; gap:6px; }
.prop-price{ font-family:var(--display); color: var(--gold-light); font-size:1.3rem; margin-top:auto; }
.prop-empty{ text-align:center; padding:80px 20px; color:var(--muted); border:1px dashed var(--line); }

/* property detail */
.gallery-main{ aspect-ratio:16/10; background:#0e0e10; border:1px solid var(--line); overflow:hidden; margin-bottom:14px; }
.gallery-main img{ width:100%; height:100%; object-fit:cover; }
.gallery-thumbs{ display:grid; grid-template-columns: repeat(7,1fr); gap:8px; }
.gallery-thumbs img{ aspect-ratio:1; object-fit:cover; cursor:pointer; border:1px solid var(--line); opacity:.7; transition:opacity .2s; }
.gallery-thumbs img:hover, .gallery-thumbs img.active{ opacity:1; border-color: var(--gold); }
.spec-table{ width:100%; border-collapse:collapse; margin-top:10px; }
.spec-table tr{ border-bottom:1px solid var(--line); }
.spec-table td{ padding:12px 0; font-size:.9rem; }
.spec-table td:first-child{ color: var(--muted); text-transform:uppercase; letter-spacing:.06em; font-size:.72rem; }
.spec-table td:last-child{ text-align:right; color: var(--bone); }

/* forms */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.field label{ font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); }
.field input, .field select, .field textarea{
  background: var(--bg-card); border:1px solid var(--line); color: var(--bone);
  padding: 13px 14px; font-family: var(--body); font-size:.92rem; border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--gold); }
.field-full{ grid-column: 1 / -1; }
.form-note{ font-size:.8rem; color: var(--muted); margin-top:8px; }

/* footer */
footer{ background: var(--bg-elevated); border-top:1px solid var(--line); padding: 60px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap:40px; margin-bottom:50px; }
.footer-grid h4{ font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color: var(--gold); margin-bottom:18px; font-family:var(--body); font-weight:500; }
.footer-grid li{ margin-bottom:10px; font-size:.9rem; color: var(--bone-dim); }
.footer-grid a:hover{ color: var(--gold-light); }
.footer-bottom{ border-top:1px solid var(--line); padding-top:24px; display:flex; justify-content:space-between; font-size:.78rem; color: var(--muted); flex-wrap:wrap; gap:10px; }

/* whatsapp float */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:90;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform .2s;
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width:28px; height:28px; fill:#06190c; }

/* page hero (inner pages) */
.page-hero{ padding: 70px 0 50px; border-bottom:1px solid var(--line); background: linear-gradient(180deg, rgba(201,162,75,.06), transparent); }
.breadcrumb{ font-size:.76rem; color: var(--muted); letter-spacing:.05em; margin-bottom:14px; }
.breadcrumb span{ color: var(--gold-light); }


/* admin */
.admin-lock{ max-width:380px; margin: 80px auto; text-align:center; }
.btn-group{ display:flex; flex-wrap:wrap; gap:10px; }
.btn-group button, .toggle-btn{
  background: var(--bg-card); border:1px solid var(--line); color: var(--bone-dim);
  padding: 11px 18px; font-family: var(--body); font-size:.82rem; letter-spacing:.03em;
  border-radius: var(--radius); cursor:pointer; transition: all .2s;
}
.btn-group button:hover, .toggle-btn:hover{ border-color: var(--gold-dim); color: var(--bone); }
.btn-group button.selected, .toggle-btn.selected{ background: var(--gold); border-color: var(--gold); color:#1a1505; }
.field-note{ font-size:.72rem; color: var(--muted); margin-top:2px; }
.conditional-fields{ display:contents; }
.conditional-fields.hidden{ display:none; }
.prop-tag-sale{
  position:absolute; top:12px; right:12px;
  background: rgba(11,11,12,.85); border:1px solid var(--gold-dim);
  color: var(--gold-light); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase;
  padding: 5px 10px;
}
.map-embed{ aspect-ratio:16/9; border:1px solid var(--line); overflow:hidden; margin-top:16px; }
.map-embed iframe{ width:100%; height:100%; border:0; }
.contact-card{ border:1px solid var(--line); background: var(--bg-card); padding:22px 24px; margin-top:24px; }
.contact-card .name{ font-family:var(--display); font-size:1.15rem; color: var(--gold-light); margin-bottom:4px; }
.thumb-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.thumb-list .t{ position:relative; width:84px; height:84px; }
.thumb-list img{ width:100%; height:100%; object-fit:cover; border:1px solid var(--line); }
.thumb-list .rm{ position:absolute; top:-6px; right:-6px; background:#c0392b; color:#fff; border:none; width:20px; height:20px; border-radius:50%; cursor:pointer; font-size:.7rem; line-height:1; }
.admin-table{ width:100%; border-collapse:collapse; margin-top:30px; }
.admin-table th{ text-align:left; font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); border-bottom:1px solid var(--line); padding:10px 8px; }
.admin-table td{ padding:12px 8px; border-bottom:1px solid var(--line); font-size:.86rem; vertical-align:middle; }
.admin-table img{ width:54px; height:40px; object-fit:cover; }
.del-btn{ background:none; border:1px solid #6b3030; color:#e08585; padding:6px 12px; font-size:.72rem; cursor:pointer; letter-spacing:.05em; text-transform:uppercase; }
.del-btn:hover{ background:#6b3030; color:#fff; }

/* utility */
.center{ text-align:center; }
.mt-lg{ margin-top:60px; }
.divider{ height:1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); margin: 70px 0; }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:center; }

[data-lang="ka"] body, .lang-ka{ }

/* responsive */
@media (max-width: 920px){
  nav.main-nav{ position:fixed; top:71px; left:0; right:0; background: var(--bg); flex-direction:column; align-items:flex-start; justify-content:flex-start; margin:0; padding:24px 28px; gap:20px; border-bottom:1px solid var(--line); transform: translateY(-130%); transition: transform .3s; }
  nav.main-nav.open{ transform: translateY(0); }
  .menu-toggle{ display:block; }
  .header-right .btn span.full{ display:none; }
  .hero .container{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; max-width:340px; margin:0 auto; }
  .seal-grid{ grid-template-columns: repeat(2,1fr); }
  .prop-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .gallery-thumbs{ grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 600px){
  .seal-grid, .prop-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .stat-row{ gap:26px; }
}
