/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0F1A2B;
  --navy-deep: #123B4A;
  --stone:     #E7E0D4;
  --text:      #1B2333;
  --gold:      #C8B07A;
  --gold-light:#E8D9B8;
  --bg:        #F5F1E8;
  --bg-alt:    #EDE8DE;
  --white:     #FFFFFF;
  --border:    #D7CFC2;
  --shadow:    0 4px 32px rgba(15,26,43,0.08);
  --shadow-lg: 0 16px 56px rgba(15,26,43,0.14);
  --radius:    10px;
  --radius-lg: 18px;
  --transition: 0.28s ease;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 32px; }
.hidden { display: none !important; }

/* ===== TYPOGRAPHY UTILITIES ===== */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-intro { margin-bottom: 64px; }
.section-intro h2 { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 16px; }
.section-intro.centered { text-align: center; }
.section-text { font-size: 17px; color: #5A6173; line-height: 1.75; max-width: 560px; }
.section-intro.centered .section-text { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: #1a2f4a;
  border-color: #1a2f4a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,26,43,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-reset {
  background: transparent;
  color: #9BA3AF;
  border: 1px solid var(--border);
  padding: 9px 16px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-reset:hover { color: var(--navy); border-color: var(--navy); }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}
.nav-links { margin-left: auto; }
.nav-inner .lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 0; }

.logo { display: flex; align-items: baseline; gap: 10px; color: var(--white); }
.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--white);
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.nav-cta:hover { opacity: 0.7; }

/* LANG SWITCH */
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 2px 0;
  transition: color var(--transition);
  line-height: 1;
}
.lang-btn:hover { color: rgba(255,255,255,0.85); }
.lang-btn.active { color: var(--gold); border-bottom: 1px solid var(--gold); }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 11px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,26,43,0.72) 0%,
    rgba(15,26,43,0.52) 55%,
    rgba(18,59,74,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ===== PROPERTIES SECTION ===== */
.properties-section { padding: 100px 0 80px; background: var(--bg); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9BA3AF;
}

.filter-group select {
  padding: 9px 36px 9px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239BA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: var(--bg);
  min-width: 160px;
}
.filter-group select:focus { outline: none; border-color: var(--navy); }

.filter-checks { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.check-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  transition: all var(--transition);
  user-select: none;
}
.check-label:hover { border-color: var(--navy); }
.check-label input[type=checkbox] { accent-color: var(--navy); width: 13px; height: 13px; }
.check-label:has(input:checked) { border-color: var(--navy); background: #EEF1F6; }

.results-count { font-size: 13px; color: #9BA3AF; margin-bottom: 32px; letter-spacing: 0.02em; }

/* ===== PROPERTY GRID ===== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-card:hover .card-img { transform: scale(1.04); }

.card-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.badge {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-seafront { background: var(--navy); color: var(--white); }
.badge-seaview  { background: rgba(15,26,43,0.8); color: var(--white); }
.badge-pool     { background: rgba(255,255,255,0.92); color: var(--navy); }
.badge-sauna    { background: rgba(200,176,122,0.95); color: var(--navy); }

.card-price-wrap { position: absolute; bottom: 14px; right: 14px; }
.card-price {
  background: var(--white);
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.card-price.confidential { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-location { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--navy); line-height: 1.2; }

.card-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.card-stat { font-size: 13px; color: #7A8394; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-year { font-size: 12px; color: #9BA3AF; }
.card-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity var(--transition);
}
.card-btn:hover { opacity: 0.6; }

.no-results { text-align: center; padding: 80px 24px; color: #9BA3AF; font-size: 16px; }

.properties-cta { text-align: center; padding-top: 16px; }
.properties-cta p { font-size: 15px; color: #7A8394; margin-bottom: 20px; }

/* ===== DESTINATIONS ===== */
/* ===== DESTINATIONS — NEW LAYOUT ===== */
.destinations-section {
  background: var(--navy);
  overflow: hidden;
}

.dest-header {
  padding: 100px 0 72px;
  text-align: center;
}

.dest-header .eyebrow { color: var(--gold); margin-bottom: 16px; }
.dest-header h2 { color: var(--white); font-size: clamp(36px, 5vw, 60px); font-weight: 500; margin-bottom: 20px; }
.dest-header .section-text { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; font-size: 16px; }

.dest-rows { display: flex; flex-direction: column; }

.dest-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.dest-row.visible { opacity: 1; transform: none; }
.dest-row--reverse { direction: rtl; }
.dest-row--reverse > * { direction: ltr; }

.dest-row-img {
  position: relative;
  overflow: hidden;
}
.dest-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
  display: block;
}
.dest-row:hover .dest-row-img img { transform: scale(1.05); }

.dest-row-body {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--navy);
}

.dest-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 300;
  color: rgba(200,176,122,0.1);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 40px;
  user-select: none;
  pointer-events: none;
}

.dest-row-body h3 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
}

.dest-row-body h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 20px;
}

.dest-row-body p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 420px;
}

.dest-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), opacity var(--transition);
}
.dest-row-btn:hover { gap: 16px; opacity: 0.75; }

/* ===== WHY CROATIA ===== */
.why-section { padding: 100px 0; background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.why-text h2 { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 600; }
.why-body { padding-top: 8px; }
.why-lead { font-size: 20px; font-family: 'Cormorant Garamond', serif; color: var(--navy); line-height: 1.5; margin-bottom: 20px; font-style: italic; }
.why-body p { font-size: 15px; color: #5A6173; line-height: 1.8; }
.why-body .btn { margin-top: 12px; }

/* ===== ABOUT ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.about-img-col { position: relative; overflow: hidden; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.about-text-col {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text-col .eyebrow { color: var(--gold); }
.about-text-col h2 { color: var(--white); font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 28px; }
.about-text-col p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.7); }
.about-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 24px !important;
}
.about-quote { color: rgba(255,255,255,0.55) !important; font-family: 'Cormorant Garamond', serif; font-size: 18px !important; line-height: 1.6 !important; border-left: 2px solid var(--gold); padding-left: 20px; margin: 24px 0; }

/* ===== THE NEVA STANDARD ===== */
.standard-section { padding: 100px 0; background: var(--white); }

.standard-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.standard-item { padding: 48px 44px; }
.standard-divider { width: 1px; background: var(--border); }
.standard-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.standard-item h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.standard-item p { font-size: 14px; color: #5A6173; line-height: 1.8; margin: 0; }

/* ===== HOW WE WORK ===== */
.process-section { padding: 100px 0; background: var(--bg); }

.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 16px; }

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  margin-top: -4px;
}
.step-body h3 { font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.step-body p { font-size: 15px; color: #5A6173; line-height: 1.8; margin: 0; }

/* ===== ENSOSTUDIO ===== */
.enso-section { padding: 100px 0; background: var(--white); }

.enso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.enso-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.enso-img img { width: 100%; height: 100%; object-fit: cover; }

.enso-text h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 20px; }
.enso-text > p { font-size: 15px; color: #5A6173; line-height: 1.8; }
.enso-text strong { color: var(--navy); }

.enso-steps { display: flex; flex-direction: column; gap: 0; margin: 32px 0; }
.enso-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.enso-step:last-child { border-bottom: 1px solid var(--border); }
.enso-step-num { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--gold); min-width: 28px; padding-top: 2px; }
.enso-step strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.enso-step p { font-size: 14px; color: #5A6173; line-height: 1.7; margin: 0; }

/* ===== BOTTOM CTA ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: url('https://croatiarealestates.com/wp-content/uploads/2023/08/exclusive-seafront2.jpg') center/cover no-repeat;
  text-align: center;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(15,26,43,0.72); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); margin-bottom: 16px; }
.cta-content > p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 16px; }
.contact-info .section-text { margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cinfo-item strong { display: block; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #9BA3AF; margin-bottom: 4px; }
.cinfo-item a, .cinfo-item span { font-size: 15px; color: var(--text); }
.cinfo-item a:hover { color: var(--navy); border-bottom: 1px solid currentColor; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9BA3AF; }
.form-group input, .form-group textarea {
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  resize: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B8BCC8; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-note { font-size: 12px; color: #B8BCC8; text-align: center; margin-top: -4px; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 48px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: baseline; gap: 10px; color: var(--white); }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,26,43,0.75);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  backdrop-filter: blur(6px);
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,0.7); }

.modal-gallery { position: relative; aspect-ratio: 16/9; background: #0F1A2B; overflow: hidden; }
.modal-img { width: 100%; height: 100%; object-fit: cover; }

.gallery-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.gallery-btn:hover { background: rgba(0,0,0,0.7); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

.gallery-counter {
  position: absolute;
  bottom: 12px; right: 14px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

.modal-body { padding: 36px 40px; }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 20px; }
.modal-title { font-size: 1.9rem; color: var(--navy); }
.modal-location { font-size: 13px; color: #9BA3AF; margin-top: 4px; letter-spacing: 0.04em; }
.modal-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--navy); white-space: nowrap; }

.modal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.modal-badges .badge { font-size: 10px; padding: 5px 12px; }

.modal-stats {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.modal-stat {
  flex: 1;
  min-width: 110px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.modal-stat:last-child { border-right: none; }
.modal-stat-value { display: block; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--navy); }
.modal-stat-label { display: block; font-size: 10px; color: #9BA3AF; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }

.modal-desc { font-size: 15px; color: #5A6173; line-height: 1.85; margin-bottom: 24px; }

.modal-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 28px; }
.detail-item { font-size: 13px; color: #7A8394; background: var(--bg-alt); padding: 10px 14px; border-radius: 4px; }

.modal-contact { background: var(--navy); border-radius: var(--radius); padding: 28px; text-align: center; margin-bottom: 28px; }
.modal-contact p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 18px; }
.modal-contact-btns { display: flex; gap: 12px; justify-content: center; }

.modal-thumbs { display: flex; gap: 6px; flex-wrap: wrap; }
.thumb { width: 80px; height: 56px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: 0.6; transition: opacity var(--transition); border: 2px solid transparent; }
.thumb:hover { opacity: 1; }
.thumb.active { opacity: 1; border-color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-section { grid-template-columns: 1fr; }
  .about-img-col { aspect-ratio: 16/8; }
  .about-img-col img { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-divider { width: 100%; height: 1px; }
  .enso-grid { grid-template-columns: 1fr; }
  .enso-img { aspect-ratio: 16/8; }
  .dest-row { grid-template-columns: 1fr 1fr; min-height: 420px; }
  .dest-row-body { padding: 48px 40px; }
  .dest-row-num { font-size: 72px; }
  .modal-details { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { gap: 12px; }
  .nav-inner .lang-switch { margin-left: auto; }
  .container { padding: 0 20px; }
  .about-text-col { padding: 56px 32px; }
  .filters { flex-direction: column; }
  .filter-group { width: 100%; }
  .filter-group select { min-width: 100%; }
  .filter-checks { width: 100%; }
  .property-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal-header { flex-direction: column; }
  .modal-body { padding: 24px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .dest-row { grid-template-columns: 1fr; min-height: auto; direction: ltr; }
  .dest-row--reverse { direction: ltr; }
  .dest-row-img { aspect-ratio: 4/3; min-height: 260px; }
  .dest-row-body { padding: 40px 24px 48px; }
  .dest-row-num { font-size: 56px; top: 16px; right: 20px; }
  .dest-header { padding: 72px 0 48px; }
}
