/* ── Cytoda Global Styles — Cyprus Real Estate ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Core palette — deep navy + warm sand + Mediterranean gold */
  --bg:         #080c14;
  --bg2:        #0c1120;
  --bg3:        #101829;
  --surface:    #131c2f;
  --surface2:   #182238;
  --border:     rgba(255,255,255,.07);
  --border-gold:rgba(196,155,85,.3);
  --text:       #f0ede8;
  --text-mid:   #a09b92;
  --text-dim:   #5c574f;
  --gold:       #c49b55;
  --gold-light: #ddb96a;
  --gold-pale:  rgba(196,155,85,.12);
  --sea:        #1a7fa6;
  --sea-light:  #2296c2;
  --white:      #ffffff;
  --gradient-gold: linear-gradient(135deg, #c49b55, #ddb96a);
  --gradient-sea:  linear-gradient(135deg, #1a7fa6, #0e5f7e);
  --gradient-hero: linear-gradient(160deg, #0e1928 0%, #0a1520 50%, #06111c 100%);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --shadow:     0 12px 48px rgba(0,0,0,.5);
  --shadow-gold:0 8px 32px rgba(196,155,85,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: inline-block; width: 20px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.15;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic; color: var(--gold-light);
}
.section-sub {
  font-size: 16px; color: var(--text-mid);
  line-height: 1.85; max-width: 580px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer; transition: all .25s; border: none;
  text-decoration: none;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,155,85,.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-ghost {
  background: transparent; color: var(--gold-light);
  border: none; padding: 0;
  font-size: 13px; letter-spacing: 1.5px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { color: var(--white); gap: 12px; }
.btn-ghost::after { content: '→'; transition: margin .2s; }

/* ── Nav ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s;
  padding: 0;
}
.site-nav.scrolled {
  background: rgba(8,12,20,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex; flex-direction: column; gap: 1px;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white);
  line-height: 1;
}
.nav-logo-tagline {
  font-size: 9px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(240,237,232,.65);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  padding: 11px 24px !important;
  font-size: 11px !important;
}

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* ── Property card ── */
.prop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
}
.prop-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-gold); transform: translateY(-5px); }
.prop-thumb {
  width: 100%; aspect-ratio: 16/10;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; position: relative; overflow: hidden;
}
.prop-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gradient-gold);
  color: var(--bg); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.prop-body { padding: 24px; }
.prop-location {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.prop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; margin-bottom: 10px;
}
.prop-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.prop-specs {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.prop-spec { font-size: 12px; color: var(--text-mid); font-weight: 500; }
.prop-spec strong { display: block; font-size: 13px; color: var(--text); font-weight: 600; margin-bottom: 2px; }

/* ── Divider ── */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Footer ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white); margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; color: var(--text-mid); line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-mid); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 10px; }
.footer-contact a { color: var(--gold-light); transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); letter-spacing: .5px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
