/* ══════════════════════════════════════
   VARIABLES
   ══════════════════════════════════════ */
:root {
  --black:   #f5f0e8;
  --yellow:  #ffcc00;
  --yellow2: #e6b800;
  --white:   #0a0a0a;
  --grey:    #ede8df;
  --mid:     #d6d0c6;
  --text-sm: clamp(.85rem, 1.5vw, 1rem);
  --text-md: clamp(1rem, 2vw, 1.2rem);
  --text-lg: clamp(1.4rem, 3vw, 2rem);
  --text-xl: clamp(2.5rem, 7vw, 6rem);
  --radius:  4px;
  --ease:    cubic-bezier(.16, 1, .3, 1);
}

/* ══════════════════════════════════════
   RESET
   ══════════════════════════════════════ */
html {
  font-size: 100%;
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:focus-visible {
  outline: 3px solid #ffcc00;
  outline-offset: 3px;
}
body {
  background: #f5f0e8;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   SKIP LINK
   ══════════════════════════════════════ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  background: #ffcc00;
  color: #0a0a0a;
  padding: .6rem 1.2rem;
  font-weight: 500;
  z-index: 9999;
  border-radius: 4px;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ══════════════════════════════════════
   TOPBAR
   ══════════════════════════════════════ */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  height: 64px;
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: background .3s;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: .06em;
  color: #0a0a0a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;


}
.nav-logo span { color: #000000; }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  margin-left: auto;
  z-index: 400;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #0a0a0a;
  transition: transform .3s, opacity .3s;
}
.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); }

/* ── Desktop nav ── */
nav ul {
  list-style: none;
  display: flex;
  gap: clamp(.6rem, 2vw, 1.8rem);
  align-items: center;
}

nav a {
  color: #0a0a0a;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
nav a:hover,
nav a[aria-current="page"] {
  color: #c9a000;
  border-bottom-color: #c9a000;
}

.nav-cta {
  background: #0a0a0a !important;
  color: #ffcc00 !important;
  padding: .45rem 1.1rem !important;
  border-radius: 4px;
  font-weight: 500 !important;
  border-bottom: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s !important;
  display: inline-block;
  line-height: 1.4;
}
.nav-cta:hover {
  background: #1a1a1a !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   LANGUAGE SWITCHER — TOPBAR
   ══════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-desktop .lang-switcher {
  margin-left: 1.2rem;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(10, 10, 10, 0.15);
}

/* Base lang-btn — dark context (topbar) */
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  padding: 0.28rem 0.42rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  color: #c9a000;
}

.lang-btn.active {
  color: #c9a000;
  background: rgba(201, 160, 0, 0.1);
}

.lang-divider {
  color: rgba(10, 10, 10, 0.2);
  font-size: 0.6rem;
  user-select: none;
  padding: 0 1px;
}

/* ══════════════════════════════════════
   ACCESSIBILITY PANEL
   ══════════════════════════════════════ */
#a11y-panel {
  position: fixed;
  top: 72px;
  right: 1rem;
  background: #f0ebe2;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 8px;
  padding: 1.2rem;
  z-index: 500;
  min-width: 220px;
  display: none;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  max-height: calc(100vh - 88px);
  overflow-y: auto;
}
#a11y-panel.open { display: block; }
#a11y-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #000000b4;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
  font-size: .85rem;
  color: rgba(10,10,10,.75);
}
.a11y-row label { cursor: pointer; }
.a11y-row input[type="range"] { accent-color: #ffcc00; width: 90px; }

.toggle-switch { position: relative; width: 38px; height: 20px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch .slider {
  position: absolute;
  inset: 0;
  background: #d6d0c6;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
}
.toggle-switch .slider::before {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  left: 3px; top: 3px;
  background: #f5f0e8;
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch input:checked + .slider { background: #ffcc00; }
.toggle-switch input:checked + .slider::before { transform: translateX(18px); }
.toggle-switch input:focus-visible + .slider { outline: 2px solid #ffcc00; outline-offset: 2px; }

/* ── Language switcher inside a11y panel (light bg context) ── */
.a11y-lang {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.a11y-lang-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
  margin-bottom: 0.65rem;
}

.a11y-lang .lang-switcher {
  gap: 6px;
}

/* Override base .lang-btn for the light panel context */
.a11y-lang .lang-btn {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  padding: 0.42rem 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: rgba(10, 10, 10, 0.55);
  background: none;
}

.a11y-lang .lang-btn:hover {
  color: #c9a000;
  border-color: #c9a000;
  background: rgba(201, 160, 0, 0.06);
}

.a11y-lang .lang-btn.active {
  color: #c9a000;
  border-color: #c9a000;
  background: rgba(201, 160, 0, 0.08);
}

/* ══════════════════════════════════════
   A11Y MODES — HIGH CONTRAST
   ══════════════════════════════════════ */
body.high-contrast,
body.high-contrast #topbar,
body.high-contrast .grundriss-strip,
body.high-contrast #overview,
body.high-contrast #location,
body.high-contrast footer {
  background: #0a0a0a;
  color: #f5f0e8;
}

body.high-contrast #hero::before {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.6) 55%,
    rgba(0,0,0,.2) 100%
  );
}

body.high-contrast .hero-title,
body.high-contrast .section-title,
body.high-contrast .grundriss-title {
  color: #f5f0e8;
}

body.high-contrast .hero-subtitle,
body.high-contrast .overview-desc {
  color: rgba(245,240,232,.75);
}

body.high-contrast nav a,
body.high-contrast .nav-logo {
  color: #f5f0e8;
}

body.high-contrast .nav-toggle span {
  background: #f5f0e8;
}

body.high-contrast .nav-cta {
  background: #ffcc00 !important;
  color: #0a0a0a !important;
}

body.high-contrast .grundriss-frame,
body.high-contrast .map-placeholder {
  border-color: rgba(255,255,255,.2);
  background: #111;
}

body.high-contrast .spec-row {
  border-bottom-color: rgba(255,255,255,.12);
}
body.high-contrast .spec-row dt { color: rgba(245,240,232,.5); }
body.high-contrast .spec-row dd { color: #f5f0e8; }

body.high-contrast #details { background: #0a0a0a; }

body.high-contrast .details-images .img-main,
body.high-contrast .details-images .img-sub {
  background: #1a1a1a;
}

body.high-contrast .poi-item {
  border-bottom-color: rgba(255,255,255,.1);
  color: #f5f0e8;
}
body.high-contrast .features-list li { color: #f5f0e8; }

body.high-contrast #contact {
  background: #111;
}
body.high-contrast .contact-left .big-cta-title { color: #ffcc00; }
body.high-contrast .contact-left .big-cta-sub   { color: rgba(245,240,232,.7); }
body.high-contrast .contact-left .big-cta-label { color: rgba(245,240,232,.45); }

body.high-contrast .agent-strip { background: rgba(255,255,255,.08); }
body.high-contrast .agent-name  { color: #f5f0e8; }
body.high-contrast .agent-role  { color: rgba(245,240,232,.5); }
body.high-contrast .agent-contact { color: #f5f0e8; }

body.high-contrast #a11y-panel {
  background: #1a1a1a;
  border-color: rgba(255,255,255,.15);
  color: #f5f0e8;
}
body.high-contrast #a11y-panel h2 { color: #f5f0e8; }
body.high-contrast .a11y-row { color: rgba(245,240,232,.75); }
body.high-contrast .toggle-switch .slider { background: #444; }
body.high-contrast .toggle-switch .slider::before { background: #f5f0e8; }

/* Lang switcher in high-contrast panel */
body.high-contrast .a11y-lang {
  border-top-color: rgba(255,255,255,.12);
}
body.high-contrast .a11y-lang-label {
  color: rgba(245,240,232,.4);
}
body.high-contrast .a11y-lang .lang-btn {
  color: rgba(245,240,232,.5);
  border-color: rgba(255,255,255,.15);
}
body.high-contrast .a11y-lang .lang-btn:hover {
  color: #ffcc00;
  border-color: #ffcc00;
}
body.high-contrast .a11y-lang .lang-btn.active {
  color: #ffcc00;
  border-color: #ffcc00;
  background: rgba(255,204,0,.1);
}

/* Topbar lang btns in high contrast */
body.high-contrast .nav-desktop .lang-btn {
  color: rgba(245,240,232,.45);
}
body.high-contrast .nav-desktop .lang-btn:hover { color: #ffcc00; }
body.high-contrast .nav-desktop .lang-btn.active {
  color: #ffcc00;
  background: rgba(255,204,0,.08);
}
body.high-contrast .nav-desktop .lang-switcher {
  border-left-color: rgba(255,255,255,.15);
}
body.high-contrast .lang-divider {
  color: rgba(245,240,232,.2);
}

body.high-contrast .nav-mobile { background: #0a0a0a; border-top-color: rgba(255,255,255,.1); }
body.high-contrast .nav-mobile a { color: #f5f0e8; }
body.high-contrast .nav-mobile a:hover { color: #ffcc00; border-bottom-color: #ffcc00; }

body.high-contrast footer { border-top-color: rgba(255,255,255,.1); color: rgba(245,240,232,.4); }

/* Lightbox high-contrast */
body.high-contrast #grundriss-lightbox-img {
  background: #1a1a1a;
}

/* ══════════════════════════════════════
   A11Y MODES — LARGE TEXT
   ══════════════════════════════════════ */
body.large-text {
  --text-sm: clamp(.95rem, 1.1em, 1.15rem);
  --text-md: clamp(1.15rem, 1.25em, 1.4rem);
  --text-lg: clamp(1.6rem,  1.5em, 2.3rem);
  --text-xl: clamp(2.8rem,  8vw,   6.5rem);
}

/* ── Reduce motion ── */
body.reduce-motion * {
  animation-duration: .001ms !important;
  transition-duration: .001ms !important;
}

/* ══════════════════════════════════════
   BASE SECTION
   ══════════════════════════════════════ */
section {
  min-height: 100vh;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 6vw, 5rem);
  position: relative;
  width: 100%;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
#hero {
  padding: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245,240,232,.92) 0%,
    rgba(245,240,232,.6) 55%,
    rgba(245,240,232,.2) 100%
  );
  z-index: 2;
}
.hero-overlay { display: none; }
.hero-copy {
  position: relative;
  z-index: 3;
  padding: 0 clamp(1.2rem, 6vw, 5rem);
  max-width: 1200px;
  width: 100%;
}

.hero-eyebrow {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #c9a000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: #c9a000;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--text-xl);
  line-height: .92;
  letter-spacing: .02em;
  color: #0a0a0a;
}
.hero-title em { color: #c9a000; font-style: normal; }
.hero-subtitle {
  margin-top: 1.5rem;
  font-size: var(--text-md);
  max-width: 44ch;
  color: rgba(10,10,10,.65);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #c9a000;
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(10,10,10,.45);
  margin-top: .2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn-primary {
  background: #0a0a0a;
  color: #ffcc00;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: .85rem 2.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s, transform .2s var(--ease), box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.btn-outline {
  background: transparent;
  color: #0a0a0a;
  font-weight: 400;
  font-size: var(--text-sm);
  padding: .85rem 2.2rem;
  border: 1.5px solid rgba(10,10,10,.3);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-outline:hover { border-color: #c9a000; color: #c9a000; }

/* High-contrast button overrides */
body.high-contrast .btn-primary {
  background: #ffcc00;
  color: #0a0a0a;
}
body.high-contrast .btn-primary:hover { background: #e6b800; }
body.high-contrast .btn-outline {
  border-color: rgba(245,240,232,.4);
  color: #f5f0e8;
}
body.high-contrast .btn-outline:hover { border-color: #ffcc00; color: #ffcc00; }

/* ══════════════════════════════════════
   OVERVIEW
   ══════════════════════════════════════ */
#overview { background: #ede8df; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #c9a000;
  margin-bottom: .8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: #c9a000;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  max-width: 20ch;
  color: #0a0a0a;
}
.section-title em { font-style: italic; color: #c9a000; }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
}
.overview-desc {
  font-size: var(--text-md);
  color: rgba(10,10,10,.65);
  line-height: 1.75;
}
.overview-desc p + p { margin-top: 1.2rem; }
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: var(--text-sm);
  color: #0a0a0a;
}
.features-list li::before {
  content: '▲';
  color: #c9a000;
  font-size: .55rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   DETAILS
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   DETAILS
   ══════════════════════════════════════ */
#details {
  background: #ede8df;
  width: 100%;
  padding: clamp(5rem, 10vw, 8rem) 0 0;
}
.details-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  margin-top: 3.5rem;
}
.details-images {
  position: relative;
  display: grid;
  grid-template-rows: 60% 40%;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  min-height: 600px;
}
.details-images .img-main {
  grid-column: 1 / -1;
  grid-row: 1;
  background: #d6d0c6;
  overflow: hidden;
  position: relative;
}
.details-images .img-sub {
  background: #d6d0c6;
  overflow: hidden;
  position: relative;
}

/* ── Reset grundriss-frame & picture inside photo grid ── */
.details-images .grundriss-frame,
.details-images picture {
  display: block;
  width: 100%;
  height: 100%;
}
.details-images .grundriss-frame {
  background: none;
  background-image: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  min-height: 0;
}

.details-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.95);
  transition: transform .6s var(--ease), filter .4s;
  cursor: zoom-in;
}
.details-images .img-main:hover img,
.details-images .img-sub:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.details-images .img-main::after,
.details-images .img-sub::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,204,0,.02);
  pointer-events: none;
}
.img-badge {
  position: absolute;
  bottom: .8rem;
  left: .8rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(245,240,232,.9);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  padding: .25rem .65rem;
  border-radius: 2px;
  z-index: 1;
}
.details-specs {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.details-header { margin-bottom: 2rem; }
.spec-group { width: 100%; margin-bottom: 2.2rem; }
.spec-group h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .12em;
  color: #c9a000;
  border-bottom: 1px solid rgba(201,160,0,.25);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}
.spec-rows {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  width: 100%;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(10,10,10,.07);
}
.spec-row dt { color: rgba(10,10,10,.45); }
.spec-row dd { color: #0a0a0a; font-weight: 400; text-align: right; }

/* ══════════════════════════════════════
   GRUNDRISS / FLOOR PLANS
   ══════════════════════════════════════ */
.grundriss-strip {
  width: 100%;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.2rem, 6vw, 5rem) clamp(5rem, 10vw, 8rem);
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 0;
}
.grundriss-header {
  margin-bottom: 3rem;
}
.grundriss-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: #0a0a0a;
  margin-top: .4rem;
}
.grundriss-title em {
  font-style: italic;
  color: #c9a000;
}
.grundriss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.grundriss-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.grundriss-frame {
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.04),
    0 24px 60px rgba(0,0,0,.08);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background-image:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grundriss-frame:hover {
  border-color: rgba(201,160,0,.4);
  box-shadow:
    inset 0 0 0 1px rgba(201,160,0,.1),
    0 32px 80px rgba(0,0,0,.12);
}
.grundriss-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform .5s var(--ease), opacity .2s;
}
.grundriss-frame:hover .grundriss-img {
  transform: scale(1.015);
  opacity: 0.88;
}
.grundriss-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 .2rem;
}
.grundriss-level {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .1em;
  color: rgba(10,10,10,.5);
  text-transform: uppercase;
}
.grundriss-area {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: #c9a000;
}

/* ── Lightbox ── */
#grundriss-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}
#grundriss-lightbox.is-open {
  display: flex;
}
#grundriss-lightbox-inner {
  position: relative;
  width: min(90vw, 860px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#grundriss-lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 2rem;
  box-sizing: border-box;
}
#grundriss-lightbox-caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: .95rem;
}
#grundriss-lightbox-area {
  opacity: 0.55;
  font-size: .875rem;
}
#grundriss-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: .25rem .5rem;
  transition: opacity .15s;
}
#grundriss-close:hover { opacity: 1; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .details-outer {
    grid-template-columns: 1fr;
  }
  .details-images {
    min-height: 420px;
    grid-template-rows: 55% 45%;
  }
  .grundriss-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .details-images {
    grid-template-columns: 1fr;
    grid-template-rows: 40vh 25vh 25vh;
    min-height: 0;
  }
  .details-images .img-main {
    grid-column: 1;
    grid-row: 1;
  }
  .details-images .img-sub:nth-child(2) { grid-row: 2; }
  .details-images .img-sub:nth-child(3) { grid-row: 3; }
  .grundriss-grid {
    grid-template-columns: 1fr;
  }
  .grundriss-frame {
    min-height: 200px;
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}
/* ══════════════════════════════════════
   GRUNDRISS / FLOOR PLANS
   ══════════════════════════════════════ */
.grundriss-strip {
  width: 100%;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.2rem, 6vw, 5rem) clamp(5rem, 10vw, 8rem);
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 0;
}

.grundriss-header {
  margin-bottom: 3rem;
}

.grundriss-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: #0a0a0a;
  margin-top: .4rem;
}
.grundriss-title em {
  font-style: italic;
  color: #c9a000;
}

.grundriss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.grundriss-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.grundriss-frame {
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.04),
    0 24px 60px rgba(0,0,0,.08);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background-image:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grundriss-frame:hover {
  border-color: rgba(201,160,0,.4);
  box-shadow:
    inset 0 0 0 1px rgba(201,160,0,.1),
    0 32px 80px rgba(0,0,0,.12);
}

.grundriss-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform .5s var(--ease), opacity .2s;
}
.grundriss-frame:hover .grundriss-img {
  transform: scale(1.015);
  opacity: 0.88;
}

.grundriss-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 .2rem;
}

.grundriss-level {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .1em;
  color: rgba(10,10,10,.5);
  text-transform: uppercase;
}

.grundriss-area {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: #c9a000;
}

/* ── Lightbox ── */
#grundriss-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}
#grundriss-lightbox.is-open {
  display: flex;
}

#grundriss-lightbox-inner {
  position: relative;
  width: min(90vw, 860px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#grundriss-lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 2rem;
  box-sizing: border-box;
}

#grundriss-lightbox-caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: .95rem;
}

#grundriss-lightbox-area {
  opacity: 0.55;
  font-size: .875rem;
}

#grundriss-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: .25rem .5rem;
  transition: opacity .15s;
}
#grundriss-close:hover { opacity: 1; }

/* ══════════════════════════════════════
   LOCATION
   ══════════════════════════════════════ */
#location { background: #f5f0e8; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
}
.map-placeholder {
  aspect-ratio: 4/3;
  background: #ede8df;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.1);
}
.map-placeholder iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.05) brightness(1.05);
  border-radius: 8px;
}
.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,204,0,.04);
  pointer-events: none;
  border-radius: 8px;
}
.poi-list { list-style: none; margin-top: 1rem; }
.poi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(10,10,10,.07);
  font-size: var(--text-sm);
}

.poi-name { display: flex; align-items: center; gap: .6rem; }

.poi-icon {
  width: 28px;
  height: 28px;
  background: rgba(201,160,0,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.poi-icon img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.poi-dist {
  font-family: 'Bebas Neue', sans-serif;
  color: #c9a000;
  font-size: 1rem;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
#contact {
  background: #ffcc00;
  min-height: 100vh;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  width: 100%;
}
.contact-left .big-cta-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(0,0,0,.5);
  margin-bottom: 1rem;
}
.contact-left .big-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .9;
  color: #0a0a0a;
  letter-spacing: .01em;
}
.contact-left .big-cta-sub {
  margin-top: 1.5rem;
  font-size: var(--text-md);
  color: rgba(0,0,0,.65);
  max-width: 38ch;
  line-height: 1.75;
}
.agent-strip {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: rgba(0,0,0,.08);
  padding: 1.2rem 1.6rem;
  border-radius: 8px;
}
.agent-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}




.agent-info { text-align: left; }
.agent-name { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: #0a0a0a; }
.agent-role { font-size: .78rem; color: rgba(0,0,0,.55); text-transform: uppercase; letter-spacing: .1em; margin: .2rem 0; }
.agent-contact { font-size: .9rem; color: #0a0a0a; font-weight: 500; text-decoration: none; display: block; }
.agent-contact:hover { text-decoration: underline; }

/* ── Form ── */
.enquire-form {
  background: #0a0a0a;
  border-radius: 12px;
  padding: 2.5rem 2.5rem 2rem;
}
.enquire-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: #ffcc00;
  margin-bottom: 1.8rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(245,240,232,.45);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(245,240,232,.1);
  color: #f5f0e8;
  padding: .8rem 1rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-sm);
  transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ffcc00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,204,0,.1);
}
.form-group select option { background: #1a1a1a; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; font-size: var(--text-sm); padding: 1rem; }

/* ── Form status ── */
.form-status {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    transform 0.4s ease,
    margin-bottom 0.4s ease;
  margin-bottom: 0;
  border-radius: 6px;
}
.form-status.visible {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: .8rem;
}
.form-status.loading {
  background: rgba(245,240,232,.07);
  border: 1px solid rgba(245,240,232,.12);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(245,240,232,.45);
}
.form-status.success {
  background: rgba(76,175,80,.1);
  border: 1px solid rgba(76,175,80,.3);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-status.error {
  background: rgba(244,67,54,.1);
  border: 1px solid rgba(244,67,54,.25);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.status-text-wrap { display: flex; flex-direction: column; gap: 2px; padding-top: 1px; }
.status-title { font-size: .85rem; font-weight: 500; }
.form-status.success .status-title { color: #81c784; }
.form-status.error   .status-title { color: #e57373; }
.status-body { font-size: .78rem; color: rgba(245,240,232,.5); line-height: 1.5; }

/* Animated SVG icons */
.check-circle, .x-circle {
  width: 32px; height: 32px; flex-shrink: 0; margin-top: 1px; overflow: visible;
}
.check-circle circle {
  fill: none; stroke: #81c784; stroke-width: 2;
  stroke-dasharray: 101; stroke-dashoffset: 101;
  animation: draw-ring 0.5s ease forwards 0.1s;
}
.check-circle polyline {
  fill: none; stroke: #81c784; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 22; stroke-dashoffset: 22;
  animation: draw-mark 0.3s ease forwards 0.55s;
}
.x-circle circle {
  fill: none; stroke: #e57373; stroke-width: 2;
  stroke-dasharray: 101; stroke-dashoffset: 101;
  animation: draw-ring 0.5s ease forwards 0.1s;
}
.x-circle line {
  fill: none; stroke: #e57373; stroke-width: 2.2; stroke-linecap: round;
  stroke-dasharray: 17; stroke-dashoffset: 17;
}
.x-circle line:nth-child(2) { animation: draw-mark 0.22s ease forwards 0.55s; }
.x-circle line:nth-child(3) { animation: draw-mark 0.22s ease forwards 0.72s; }
@keyframes draw-ring { to { stroke-dashoffset: 0; } }
@keyframes draw-mark { to { stroke-dashoffset: 0; } }

/* Loading dots */
.dots { display: flex; gap: 5px; align-items: center; }
.dots span {
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(245,240,232,.4);
  animation: dot-pulse 1.3s ease-in-out infinite;
}
.dots span:nth-child(2) { animation-delay: 0.18s; }
.dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes dot-pulse {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: #ede8df;
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 2rem clamp(1.2rem, 6vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(10,10,10,.4);
}
footer a { color: #c9a000; text-decoration: none; }

/* ══════════════════════════════════════
   PROGRESS BAR
   ══════════════════════════════════════ */
#progress-bar {
  position: fixed;
  top: 63px; left: 0;
  height: 2px;
  background: #ffcc00;
  width: 0;
  z-index: 101;
  transition: width .1s linear;
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

.accent-line {
  width: 60px; height: 3px;
  background: #c9a000;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.accent-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #f5f0e8;
  transform: translateX(-100%);
  animation: sweep 2s ease-in-out infinite;
}
@keyframes sweep {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ══════════════════════════════════════
   A11Y FLOAT BUTTON
   ══════════════════════════════════════ */
.a11y-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  z-index: 300;
  transition: transform .2s, box-shadow .2s;
}
.a11y-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
}
.a11y-float svg {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════ */
.sub { vertical-align: baseline; position: relative; bottom: -0.3em; font-size: 0.7em; }
.m-t-20 { padding-top: 100px; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET / MOBILE (≤ 900px)
   ══════════════════════════════════════ */
@media (max-width: 900px) {

  /* Hero */
  #hero { padding: 0; }
  #hero::before {
    background: linear-gradient(180deg, rgba(245,240,232,.9) 0%, rgba(245,240,232,.55) 100%);
  }

  /* Layouts */
  .overview-grid,
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .details-outer { grid-template-columns: 1fr; }
  .details-images { min-height: 320px; grid-template-rows: 200px 160px; }
  .details-specs { padding: 2rem clamp(1.2rem, 6vw, 5rem); }
  #contact { grid-template-columns: 1fr; gap: 3rem; }

  /* Grundriss — single column on tablet */
  .grundriss-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grundriss-frame { min-height: 220px; }

  /* Show hamburger */
  .nav-toggle { display: flex; }

  /* ── Mobile nav overlay ── */
  nav ul {
    display: none;
    list-style: none;
  }

  nav ul.open {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f0e8;
    padding: 2.5rem clamp(1.2rem, 6vw, 3rem);
    gap: 0;
    border-top: 1px solid rgba(0,0,0,.08);
    z-index: 350;
  }

  nav ul.open li { width: 100%; }

  nav ul.open a {
    font-size: clamp(1.4rem, 5vw, 2rem);
    padding: .6rem 0;
    display: block;
    width: 100%;
  }

  nav ul.open .nav-cta {
    margin-top: .5rem;
    display: inline-block;
    width: auto;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 560px)
   ══════════════════════════════════════ */
@media (max-width: 560px) {
  .hero-stats { gap: 1.5rem; }
  .features-list,
  .form-row { grid-template-columns: 1fr; }
  .enquire-form { padding: 1.8rem 1.4rem; }
  .grundriss-strip { padding-left: clamp(1.2rem, 5vw, 2rem); padding-right: clamp(1.2rem, 5vw, 2rem); }

  #grundriss-lightbox { padding: 1rem; }
  #grundriss-lightbox-img { padding: 1rem; }
}

/* ══════════════════════════════════════
   NAV SPLIT — desktop inside header,
   mobile overlay outside header
   ══════════════════════════════════════ */
.nav-desktop { display: flex; }
.nav-desktop ul {
  list-style: none;
  display: flex;
  gap: clamp(.6rem, 2vw, 1.8rem);
  align-items: center;
}

.nav-mobile { display: none; }

body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }

  .nav-toggle { display: flex; }

  .nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f0e8;
    z-index: 350;
    border-top: 1px solid rgba(0,0,0,.08);
  }

  .nav-mobile.open {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem clamp(1.2rem, 6vw, 3rem);
  }

  .nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
  }

  .nav-mobile li { width: 100%; }

  .nav-mobile a {
    color: #0a0a0a;
    text-decoration: none;
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: block;
    width: 100%;
    padding: .4rem 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
  }

  .nav-mobile a:hover,
  .nav-mobile a[aria-current="page"] {
    color: #c9a000;
    border-bottom-color: #c9a000;
  }

  .nav-mobile .nav-cta {
    background: #0a0a0a !important;
    color: #ffcc00 !important;
    padding: .6rem 1.4rem !important;
    border-radius: 4px;
    border-bottom: none !important;
    display: inline-block;
    width: auto;
    margin-top: .5rem;
    font-size: clamp(1rem, 3vw, 1.2rem) !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500 !important;
    letter-spacing: .08em;
  }
}

/* ══════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════ */
#manage-cookies { background: #2196F3; color: white; }

#cookie-modal {
  display: none;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  z-index: 999999;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.cookie-content {
  max-width: 900px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }
}

/* ── Lang switcher inside mobile nav ── */
.nav-mobile .a11y-lang {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

.nav-mobile .a11y-lang-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  margin-bottom: 0.65rem;
}

.nav-mobile .lang-switcher {
  gap: 6px;
}

.nav-mobile .lang-btn {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  padding: 0.42rem 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: rgba(10, 10, 10, 0.55);
  background: none;
}

.nav-mobile .lang-btn:hover {
  color: #c9a000;
  border-color: #c9a000;
}

.nav-mobile .lang-btn.active {
  color: #c9a000;
  border-color: #c9a000;
  background: rgba(201, 160, 0, 0.08);
}


.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

