*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --red: #ff2c27; --red2: #b00; --black: #111; --gray: #f5f5f5; --darkgray: #767675;}
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
html, body { overflow-x: hidden; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--black); background: #fff; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }

/* SCROLL REVEAL — five directional variants for visual variety */
.js-reveal [class*="reveal-"] {
  opacity: 0;
  transition: opacity var(--reveal-dur, .75s) var(--reveal-ease, cubic-bezier(.2,.65,.2,1)),
              transform var(--reveal-dur, .75s) var(--reveal-ease, cubic-bezier(.2,.65,.2,1));
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js-reveal .reveal-up    { transform: translateY(32px); }
.js-reveal .reveal-down  { transform: translateY(-24px); --reveal-dur: .55s; }
.js-reveal .reveal-left  { transform: translateX(-44px); }
.js-reveal .reveal-right { transform: translateX(44px); }
.js-reveal .reveal-scale {
  transform: scale(.88);
  --reveal-dur: .7s;
  --reveal-ease: cubic-bezier(.34, 1.35, .64, 1);
}
.js-reveal .reveal-fade  { transform: none; --reveal-dur: 1s; }

.js-reveal [class*="reveal-"].in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal [class*="reveal-"] { transition: none; opacity: 1; transform: none; }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 100;
  background: #000; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 0 clamp(16px, 4vw, 40px); height: 78px;
  transition: box-shadow .35s ease, background .35s ease;
}
nav.scrolled {
  background: rgba(0,0,0,.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; flex-shrink: 1; }
.nav-logo svg, .nav-logo img { height: clamp(32px, 3.5vw, 42px); width: auto; flex-shrink: 0; }
.nav-logo-text { color: #fff; font-size: clamp(0.78rem, 1.4vw, 1rem); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1.2; min-width: 0; }
.nav-logo-text span { display: block; color: var(--red); font-size: clamp(0.46rem, 0.75vw, 0.55rem); font-weight: 400; letter-spacing: 3px; }
.nav-links { display: flex; gap: clamp(14px, 2.2vw, 28px); list-style: none; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red); color: #fff !important;
  padding: 9px 20px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255,44,39,.30);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.nav-cta:hover { background: var(--red2); color: #fff !important; box-shadow: 0 4px 12px rgba(255,44,39,.40); transform: translateY(-1px); }

/* HERO */
.hero {
  margin-top: 78px;
  min-height: calc(100vh - 78px);
  min-height: calc(100dvh - 78px);
  background: url('assets/hero.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: clamp(40px, 8vw, 100px) clamp(16px, 4vw, 40px);
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-content { text-align: center; z-index: 1; width: 100%; max-width: 720px; }
.logo-mark { display: block; margin: 0 auto 24px; width: clamp(96px, 18vw, 140px); height: auto; }
.hero-content h1 {
  color: #fff; font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: clamp(2px, 0.5vw, 4px); text-transform: uppercase;
  line-height: 1.1; margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  overflow-wrap: break-word;
}
.hero-content h1 span { color: var(--red); }
.hero-tagline { color: #ccc; letter-spacing: clamp(2px, 0.6vw, 4px); text-transform: uppercase; font-size: clamp(0.7rem, 1.6vw, 0.85rem); margin-bottom: 28px; }
.hero-content p { color: #ccc; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; font-size: clamp(0.95rem, 1.6vw, 1.05rem); }
.hero-buttons { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; margin: 0 auto; }
.btn-primary {
  display: inline-block; background: var(--red); color: #fff;
  padding: clamp(11px, 1.4vw, 14px) clamp(20px, 3vw, 30px); text-decoration: none; font-weight: 700;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  border-radius: 8px; transition: background .2s, transform .15s, box-shadow .2s;
  border: 2px solid var(--red);
  box-shadow: 0 4px 14px rgba(255,44,39,.25);
}
.btn-primary:hover { background: var(--red2); border-color: var(--red2); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,44,39,.35); }
.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,.5); color: #fff;
  padding: clamp(11px, 1.4vw, 14px) clamp(20px, 3vw, 30px); text-decoration: none; font-weight: 700;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  border-radius: 8px; transition: border-color .2s, color .2s, background .2s, transform .15s;
  background: transparent;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* STATS BAR */
.stats-bar {
  display: flex; flex-wrap: wrap;
  background: var(--black);
  border-top: 3px solid var(--red);
}
.stat {
  flex: 1 1 200px;
  padding: clamp(18px, 2.5vw, 28px) clamp(16px, 2.4vw, 26px);
  text-align: center; color: #fff;
  min-width: 0;
  position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.12);
}
.stat-num { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 900; line-height: 1.1; word-break: break-word; color: #fff; }
.stat-num a { color: #fff; text-decoration: none; transition: color .2s; }
.stat-num a:hover { color: var(--red); }
.stat-label { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #999; margin-top: 8px; font-weight: 600; }

/* SECTIONS */
section { padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 40px); }
.section-header { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section-eyebrow { color: var(--red); font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.section-divider { width: 50px; height: 3px; background: var(--red); margin: 16px auto 0; }

/* SECTION HEADER LEFT (centered variant for properties) */
.section-header-left { max-width: 1100px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-title-large {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
  letter-spacing: -0.5px; line-height: 1.1; margin-top: 6px; margin-bottom: 14px;
}
.section-subtitle { color: #555; font-size: clamp(0.92rem, 1.5vw, 1.05rem); line-height: 1.65; max-width: 720px; margin: 0 auto; }

/* PROPERTIES */
.properties-section { background: var(--gray); }
.properties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 28px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 700px) and (max-width: 1040px) {
  .properties-grid .property-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 14px);
    justify-self: center;
  }
}
.property-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
  min-width: 0;
}
.property-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.14); }
.card-img { height: clamp(170px, 22vw, 240px); position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-img-link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.card-img-link .card-img img { transition: transform .35s ease, filter .25s ease; }
.card-img-link:hover .card-img img { transform: scale(1.04); filter: brightness(1.05); }
.card-tag-city {
  position: absolute; top: 14px; left: 14px;
  background: #fff; color: var(--black); font-size: clamp(0.66rem, 1vw, 0.74rem);
  letter-spacing: 0.5px; padding: 6px 14px;
  font-weight: 700; border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.card-body { padding: clamp(18px, 2.5vw, 28px); flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 800; letter-spacing: -0.2px; margin-bottom: 6px; }
.card-location { color: #888; font-size: clamp(0.8rem, 1.2vw, 0.9rem); margin-bottom: 14px; line-height: 1.45; word-break: break-word; }
.card-details { display: flex; gap: clamp(12px, 1.6vw, 18px); margin-bottom: 16px; flex-wrap: wrap; }
.card-detail {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem); color: #444;
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500;
}
.card-detail svg { width: clamp(14px, 1.3vw, 17px); height: clamp(14px, 1.3vw, 17px); fill: var(--red); flex-shrink: 0; }
.card-divider { height: 1px; background: #ececec; margin: 4px 0 16px; }
.card-desc { color: #666; font-size: clamp(0.85rem, 1.3vw, 0.95rem); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.card-price { font-size: clamp(0.88rem, 1.3vw, 0.98rem); color: #555; margin-bottom: 16px; }
.card-price strong { color: var(--black); font-weight: 800; font-size: clamp(0.98rem, 1.5vw, 1.1rem); }
.card-btn {
  display: block; width: 100%; background: var(--red); color: #fff; text-decoration: none;
  padding: clamp(11px, 1.4vw, 14px) clamp(14px, 1.8vw, 18px); font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  font-weight: 700; border-radius: 8px; transition: background .2s, box-shadow .2s, transform .15s;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255,44,39,.22);
}
.card-btn:hover { background: var(--red2); box-shadow: 0 6px 16px rgba(255,44,39,.32); transform: translateY(-1px); }
.card-btn-disabled { background: #c4c4c4 !important; cursor: default; pointer-events: none; box-shadow: none !important; transform: none !important; }
.card-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.card-actions .card-btn { width: auto; flex: 1; }
.card-actions .card-avail {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem); color: #28a745; font-weight: 600;
  background: rgba(40,167,69,.10); padding: 6px 12px; border-radius: 999px;
  white-space: nowrap;
}
.avail-dot {
  display: inline-block; width: 7px; height: 7px;
  background: #28a745; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(40,167,69,.22);
}

/* WHY US */
.why-section {
  position: relative;
  background: #2a2a2a;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(64px, 10vw, 104px);
  padding-bottom: clamp(64px, 10vw, 104px);
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/bg-ken.jpg') center/cover no-repeat;
  filter: grayscale(1) contrast(1.05) brightness(.55);
  opacity: .55;
  z-index: -1;
}
.why-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,30,30,.55) 0%, rgba(30,30,30,.45) 50%, rgba(30,30,30,.55) 100%);
  z-index: -1;
}
.why-section .section-header-left { position: relative; }
.why-section .section-title-large { color: #fff; }
.why-section .section-subtitle { color: #d8d8d8; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 20px; max-width: 1180px; margin: 0 auto; position: relative; }
.why-item {
  text-align: left; min-width: 0;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(4px);
  border-radius: 14px; padding: clamp(20px, 2.5vw, 28px);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: default;
}
.why-item:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}
.why-icon {
  width: clamp(38px, 4.5vw, 50px); height: clamp(38px, 4.5vw, 50px); background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-item:hover .why-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 16px rgba(255,44,39,.35);
}
.why-icon svg { width: clamp(18px, 2.2vw, 24px); height: clamp(18px, 2.2vw, 24px); fill: #fff; }
.why-title { font-weight: 800; text-transform: none; letter-spacing: 0; margin-bottom: 10px; font-size: clamp(0.98rem, 1.6vw, 1.1rem); }
.why-desc { color: #555; font-size: clamp(0.85rem, 1.3vw, 0.95rem); line-height: 1.55; }

/* CONTACT */
.contact-section { background: #f7f7f7; padding: clamp(56px, 9vw, 90px) clamp(16px, 4vw, 40px); }
.contact-container {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: start;
}
.contact-left { padding-top: 8px; min-width: 0; }
.contact-eyebrow {
  color: var(--red); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px;
}
.contact-heading {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 20px;
}
.contact-subtitle {
  color: #666; font-size: clamp(0.92rem, 1.5vw, 1.05rem); line-height: 1.65;
  max-width: 460px; margin-bottom: 48px;
}
.reach-us-label {
  display: flex; align-items: center; gap: 14px;
  color: var(--red); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px;
}
.reach-us-bar { display: inline-block; width: 28px; height: 2px; background: var(--red); }
.reach-items { display: grid; gap: 20px; }
.reach-item {
  display: flex; align-items: center; gap: 16px; min-width: 0;
  padding: 12px; border-radius: 10px;
  transition: background .2s, transform .2s;
}
.reach-item:hover { background: #fff; transform: translateX(2px); box-shadow: 0 4px 14px rgba(0,0,0,.05); }
.reach-icon {
  width: clamp(38px, 4.5vw, 50px); height: clamp(38px, 4.5vw, 50px); background: var(--red);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
}
.reach-item:hover .reach-icon { transform: scale(1.06); box-shadow: 0 6px 16px rgba(255,44,39,.30); }
.reach-icon svg { width: clamp(16px, 2vw, 22px); height: clamp(16px, 2vw, 22px); fill: #fff; }
.reach-content { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.reach-label {
  font-size: clamp(0.6rem, 0.9vw, 0.68rem); letter-spacing: 2px; text-transform: uppercase;
  color: #999; font-weight: 600;
}
.reach-value { color: var(--black); text-decoration: none; font-weight: 700; font-size: clamp(0.88rem, 1.3vw, 0.98rem); word-break: break-word; line-height: 1.4; }
a.reach-value:hover { color: var(--red); }

/* CONTACT FORM CARD */
.contact-form-card {
  background: #fff; border: 1px solid #ececec; border-radius: 14px;
  padding: clamp(20px, 3vw, 36px); box-shadow: 0 4px 20px rgba(0,0,0,.06);
  min-width: 0;
}
.contact-form { text-align: left; }
.contact-form .form-row-two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 700; color: #333; margin-bottom: 8px;
}
.form-field label .required { color: var(--red); margin-left: 2px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; background: #fff; border: 1px solid #dcdcdc; color: var(--black);
  padding: clamp(11px, 1.3vw, 14px) clamp(13px, 1.6vw, 16px); font-size: clamp(0.88rem, 1.3vw, 1rem); font-family: inherit;
  border-radius: 8px; transition: border-color .2s, box-shadow .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #bbb; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,44,39,.10);
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
  padding-right: 40px;
}
.contact-form select:invalid { color: #bbb; }
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-submit {
  width: 100%; background: var(--red); color: #fff; border: none;
  padding: clamp(12px, 1.6vw, 16px) 18px; font-size: clamp(0.88rem, 1.3vw, 1rem); font-weight: 700;
  cursor: pointer; border-radius: 8px;
  font-family: inherit; transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(255,44,39,.25);
}
.form-submit:hover { background: var(--red2); box-shadow: 0 6px 18px rgba(255,44,39,.35); transform: translateY(-1px); }
.form-disclaimer {
  text-align: center; color: #888; font-size: 0.82rem; margin-top: 14px;
}
.form-note { font-size: 0.9rem; margin-top: 14px; min-height: 0; }
.form-note:empty { display: none; }
.form-note.success,
.form-note.error {
  padding: 14px 16px; border-radius: 8px; border-left: 3px solid;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  text-align: left; margin-top: 14px;
}
.form-note.success { color: #1e7e34; background: rgba(40,167,69,.08); border-color: #28a745; }
.form-note.error { color: var(--red2); background: rgba(255,44,39,.07); border-color: var(--red); }
.form-note .note-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.8rem; line-height: 1; flex-shrink: 0; color: #fff;
}
.form-note.error .note-icon { background: var(--red); }
.form-note.success .note-icon { background: #28a745; }
.form-note .note-text { flex: 1; min-width: 0; }
.form-note .note-action {
  background: var(--red); color: #fff; border: none; cursor: pointer;
  padding: 9px 16px; font-size: 0.85rem;
  font-weight: 700; border-radius: 6px;
  font-family: inherit; transition: background .2s;
}
.form-note .note-action:hover { background: var(--red2); }
.contact-form input.invalid,
.contact-form select.invalid,
.contact-form textarea.invalid {
  border-color: var(--red); background: rgba(255,44,39,.04);
}

/* PAGE HEADER (privacy/accessibility pages) */
.page-header {
  margin-top: 78px; background: var(--black);
  padding: clamp(48px, 7vw, 72px) clamp(16px, 4vw, 40px);
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.page-header h1 {
  color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900;
  letter-spacing: -0.3px; line-height: 1.15;
}
.page-header p { color: #999; font-size: 0.95rem; margin-top: 12px; }
.header-divider { width: 50px; height: 3px; background: var(--red); margin: 18px auto 0; border-radius: 2px; }

/* CONTENT (privacy/accessibility pages) */
.content {
  max-width: 800px; margin: 0 auto;
  padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 40px) clamp(48px, 8vw, 80px);
}
.content h2 {
  font-size: 1.15rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; margin: 36px 0 12px; color: var(--black);
}
.content h2:first-child { margin-top: 0; }
.content p { color: #555; font-size: 0.95rem; line-height: 1.75; margin-bottom: 14px; word-break: break-word; }
.content ul { color: #555; font-size: 0.95rem; line-height: 1.75; margin: 0 0 14px 24px; }
.content a { color: var(--red); text-decoration: none; word-break: break-word; }
.content a:hover { text-decoration: underline; }

/* LEGAL LAYOUT (sidebar + content) */
.legal-layout {
  max-width: 1100px; margin: 0 auto;
  padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 40px) clamp(48px, 8vw, 80px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.legal-layout .content { max-width: none; margin: 0; padding: 0; }

.lang-sidebar { position: sticky; top: 90px; }
.lang-eyebrow {
  color: var(--red); font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.lang-eyebrow::after {
  content: ""; flex: 1; height: 2px; background: var(--red); opacity: 0.25;
}
.lang-list { list-style: none; padding: 0; margin: 0; }
.lang-list li { margin: 0; padding: 0; }
.lang-list a {
  display: block; padding: 8px 14px;
  color: #555; text-decoration: none;
  font-size: 0.9rem;
  border-left: 2px solid transparent;
  transition: color .2s, border-color .2s, background .2s, padding .2s;
}
.lang-list a:hover {
  color: var(--red); border-left-color: var(--red);
  background: rgba(255,44,39,.04); padding-left: 18px;
}
.lang-list .active {
  color: var(--red); border-left-color: var(--red);
  font-weight: 700; background: rgba(255,44,39,.06);
}

@media (max-width: 820px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .lang-sidebar { position: static; }
  .lang-list { display: flex; flex-wrap: wrap; gap: 4px; }
  .lang-list a { padding: 6px 12px; border-left: none; border-radius: 4px; }
  .lang-list a:hover { padding-left: 12px; }
}

/* FOOTER */
footer {
  background: #000; color: #888; text-align: center;
  padding: 28px clamp(16px, 4vw, 40px); font-size: 0.85rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
footer > div { min-width: 0; }
footer a { color: #888; text-decoration: none; margin: 0 10px; white-space: nowrap; display: inline-block; transition: color .2s; }
footer a:hover { color: var(--red); }

/* HAMBURGER TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Tablet & nav collapse */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px; left: 0; right: 0; width: 100%;
    background: #000;
    flex-direction: column;
    padding: 8px 20px 20px;
    gap: 0;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid #222; width: 100%; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { padding: 14px 0; display: block; white-space: normal; }
  .nav-cta { display: inline-block; margin-top: 10px; padding: 10px 22px; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-subtitle { max-width: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .nav-logo-text { letter-spacing: 1.5px; }
  .nav-logo-text span { letter-spacing: 2px; }
  .stat { flex: 1 1 100%; padding: 18px 20px; }
  .stat + .stat::before { display: none; }
  .stat + .stat { border-top: 1px solid rgba(255,255,255,.08); }
  .card-actions { flex-direction: column; align-items: stretch; }
  .card-actions .card-btn { width: 100%; }
  .card-actions .card-avail { justify-content: center; }
  .contact-form .form-row-two { grid-template-columns: 1fr; gap: 0; }
  .contact-form .form-row-two .form-field { margin-bottom: 20px; }
  footer { flex-direction: column; text-align: center; }
  footer > div:last-child { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
}

/* Very narrow screens */
@media (max-width: 360px) {
  nav { padding: 0 12px; gap: 8px; }
  .nav-logo { gap: 8px; }
  .nav-logo-text { letter-spacing: 1.5px; }
  .nav-logo-text span { letter-spacing: 1.5px; }
}
