/* ================================================
   PROMENADA PARK — Global Styles
   Design: Dark Forest Lake / European Luxury
   ================================================ */

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

/* ── CSS Variables ─────────────────────────────── */
:root {
  --navy:      #0a1628;
  --navy-mid:  #112040;
  --forest:    #0f1e14;
  --gold:      #c4963a;
  --gold-lt:   #ddb96a;
  --gold-dim:  #9a7228;
  --cream:     #f2ede3;
  --cream-dk:  #e5ddd0;
  --white:     #ffffff;
  --text-dark: #1c1c1c;
  --text-mid:  #4a4a4a;
  --text-lt:   #888888;
  --green-ok:  #2e7d4a;
  --red-sold:  #8b2020;
  --orange-res:#8b5a00;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-h:    80px;
  --nav-h-sm: 64px;
  --max-w:    1280px;
  --gap:      clamp(1.5rem, 4vw, 3rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography scale ──────────────────────────── */
.t-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, .t-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h2, .t-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
}
h3, .t-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}
h4, .t-h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}
p { max-width: 65ch; }

/* ── Layout helpers ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section {
  padding-block: clamp(4rem, 10vw, 8rem);
}
.section--dark {
  background: var(--navy);
  color: var(--cream);
}
.section--forest {
  background: var(--forest);
  color: var(--cream);
}
.section--cream {
  background: var(--cream);
}
.section--white {
  background: var(--white);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Gold divider line ──────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-block: 1.2rem;
}
.gold-line--center { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 150, 58, 0.35);
}
.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--outline-light {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Header / Navigation ────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  width: min(150px, 100%);
}
.site-header .nav-logo {
  transition: width 0.35s var(--ease-out);
}
.site-header.scrolled .nav-logo {
  width: min(120px, 100%);
}
.nav-logo__image {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
}
.site-header .nav-logo__image {
  transition: max-width 0.35s var(--ease-out);
}
.site-header.scrolled .nav-logo__image {
  max-width: 120px;
}
.nav-logo__main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-logo__sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.25s var(--ease-out), right 0.25s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0.75rem; right: 0.75rem; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}
.nav-phone i { margin-right: 0.4rem; opacity: 0.8; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  padding: 0.75rem 2rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__bottom {
  position: absolute;
  bottom: 2.5rem;
  text-align: center;
}
.mobile-menu__bottom p {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  max-width: none;
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.3) 0%,
    rgba(10,22,40,0.1) 40%,
    rgba(10,22,40,0.7) 75%,
    rgba(10,22,40,0.95) 100%
  );
}
.hero__gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.5) 0%,
    rgba(10,22,40,0.25) 40%,
    rgba(10,22,40,0.05) 70%,
    transparent 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.hero__inner {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: clamp(1.25rem, 5vw, 3rem);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__sub {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 45ch;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

/* ── Stats bar ──────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  padding-block: 2.5rem;
  border-top: 1px solid rgba(196,150,58,0.2);
  border-bottom: 1px solid rgba(196,150,58,0.2);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.stat-item {
  text-align: center;
  padding: 1rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(196,150,58,0.25);
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-item__num sup {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
}
.stat-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ── Section header ─────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header--center { text-align: center; }
.section-header--center .gold-line { margin-inline: auto; }
.section-header--center p { margin-inline: auto; }

/* ── About ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img__frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy-mid);
  overflow: hidden;
}
.about-img__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}
.about-img__frame:hover img { transform: scale(1.04); }
.about-img__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.about-img__badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.about-img__badge span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
}
.about-text { }
.about-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-text p:last-of-type { margin-bottom: 0; }
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196,150,58,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}
.about-link:hover { border-color: var(--gold); gap: 0.8rem; }

/* ── Advantages ─────────────────────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(196,150,58,0.1);
}
.advantage-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.advantage-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-card:hover { transform: translateY(-4px); background: var(--cream); }
.advantage-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.advantage-card:hover .advantage-icon {
  background: var(--gold);
  color: var(--white);
}
.advantage-card h4 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.advantage-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: none;
}

/* ── Floor selector ─────────────────────────────── */
.floor-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(196,150,58,0.2);
  overflow-x: auto;
}
.floor-tab {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 1rem 1.75rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  cursor: pointer;
}
.floor-tab:hover { color: rgba(255,255,255,0.8); }
.floor-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.floor-panel { display: none; }
.floor-panel.active { display: block; }
.floor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.floor-plan {
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  border: 1px solid rgba(196,150,58,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}
.floor-plan__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,150,58,0.5);
}
.floor-plan i { font-size: 2.5rem; opacity: 0.2; }
.floor-unit-list { }
.floor-unit-list h4 {
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.unit-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.82rem;
}
.unit-row:last-child { border-bottom: none; }
.unit-row__num { font-weight: 600; color: var(--gold-lt); }
.unit-row__area { color: rgba(255,255,255,0.65); }
.unit-row__rooms { color: rgba(255,255,255,0.45); font-size: 0.75rem; }
.unit-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
}
.unit-badge--available { background: rgba(46,125,74,0.2); color: #5ebd82; }
.unit-badge--sold      { background: rgba(139,32,32,0.2); color: #e27070; }
.unit-badge--reserved  { background: rgba(139,90,0,0.2);  color: #e0aa55; }

/* ── Apartments full table ──────────────────────── */
.table-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.filter-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(196,150,58,0.3);
  color: var(--text-mid);
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.apt-table-wrap { overflow-x: auto; }
.apt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.apt-table thead tr {
  background: var(--navy);
  color: var(--gold);
}
.apt-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.apt-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--cream-dk);
  vertical-align: middle;
}
.apt-table tbody tr { transition: background 0.15s; }
.apt-table tbody tr:hover { background: var(--cream); }
.apt-table .unit-num { font-weight: 600; color: var(--navy); }
.apt-table .floor-label { color: var(--text-mid); }
.status-pill {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 0;
}
.status-pill--available { background: #e8f5ed; color: var(--green-ok); }
.status-pill--sold      { background: #f5e8e8; color: var(--red-sold); }
.status-pill--reserved  { background: #f5efe0; color: var(--orange-res); }

#apartments.section--dark .table-filters {
  margin-bottom: 2rem;
}

#apartments.section--dark .filter-btn {
  border-color: rgba(196,150,58,0.35);
  color: rgba(255,255,255,0.72);
}

#apartments.section--dark .apt-table-wrap {
  border: 1px solid rgba(196,150,58,0.18);
}

#apartments.section--dark .apt-table {
  background: rgba(255,255,255,0.04);
  color: var(--cream);
}

#apartments.section--dark .apt-table thead tr {
  background: rgba(0,0,0,0.24);
}

#apartments.section--dark .apt-table td {
  border-bottom-color: rgba(255,255,255,0.08);
}

#apartments.section--dark .apt-table tbody tr:hover {
  background: rgba(255,255,255,0.05);
}

#apartments.section--dark .apt-table .unit-num {
  color: var(--gold-lt);
}

#apartments.section--dark .apt-table .floor-label,
#apartments.section--dark .price-col {
  color: rgba(255,255,255,0.68);
}

#apartments.section--dark .about-link {
  color: var(--gold-lt);
}

/* ── Location ───────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.location-map {
  aspect-ratio: 1;
  background: var(--navy-mid);
  overflow: hidden;
  position: relative;
}
.location-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}
.location-map__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(196,150,58,0.2);
}
.location-info {
  background: var(--navy);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h2 { color: var(--cream); margin-bottom: 0.75rem; }
.location-info p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; max-width: 42ch; }
.distances {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.distance-item__name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.distance-item__name i { color: var(--gold); font-size: 0.75rem; width: 16px; }
.distance-item__km {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 400;
}

/* ── Contact form ───────────────────────────────── */
.contact-form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--cream-dk);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group--dark label { color: rgba(255,255,255,0.55); }
.form-group--dark input,
.form-group--dark textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.form-group--dark input:focus,
.form-group--dark textarea:focus { border-color: var(--gold); }
.form-group--dark input::placeholder,
.form-group--dark textarea::placeholder { color: rgba(255,255,255,0.3); }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.checkbox-group input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}
.checkbox-group label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  cursor: pointer;
}
.form-msg {
  margin-top: 1rem;
  font-size: 0.82rem;
  padding: 0.75rem 1rem;
  display: none;
}
.form-msg.success { background: rgba(46,125,74,0.15); color: #5ebd82; display: block; }
.form-msg.error   { background: rgba(139,32,32,0.15);  color: #e27070; display: block; }

/* ── Offices ─────────────────────────────────────── */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.office-card {
  border: 1px solid rgba(196,150,58,0.2);
  padding: 2.5rem;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s;
}
.office-card:hover {
  border-color: rgba(196,150,58,0.5);
  background: rgba(255,255,255,0.05);
}
.office-card__city {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.office-card h3 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.office-detail i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.office-detail a { transition: color 0.2s; }
.office-detail a:hover { color: var(--gold); }
.office-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.office-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding: 0.35rem 0;
}
.office-hours__row span:last-child { color: rgba(255,255,255,0.7); }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.5);
  padding-top: 4rem;
}
.footer-top {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-brand .nav-logo__image { max-width: 150px; }
.footer-brand .nav-logo__main { font-size: 1.3rem; margin-bottom: 0.25rem; }
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  max-width: 28ch;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(196,150,58,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.25s;
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.72rem; max-width: none; }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Page hero (subpages) ───────────────────────── */
.page-hero {
  background: var(--navy);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(196,150,58,0.15);
}
.page-hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.page-hero .t-eyebrow { margin-bottom: 0.75rem; display: block; }
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: none;
}

/* ── Gallery ────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--navy-mid);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Construction log ───────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-entry {
  position: relative;
  margin-bottom: 4rem;
}
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.4rem;
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
.timeline-date {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.timeline-entry h3 {
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.timeline-entry p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 60ch;
}
.timeline-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.timeline-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-mid);
}
.timeline-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.timeline-photo:hover img { transform: scale(1.04); }
.timeline-video {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-top: 1.25rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
}
.timeline-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.timeline-photos--two {
  grid-template-columns: repeat(2, 1fr);
}

/* ── Contact page ───────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.contact-sidebar {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem);
}
.contact-form-area {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem);
}

/* ── Cookie Banner ──────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(196,150,58,0.2);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 2000;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
  flex-wrap: wrap;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  max-width: 60ch;
}
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ── Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 480px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { aspect-ratio: 16/9; }
  .contact-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-header .nav-logo,
  .site-header.scrolled .nav-logo {
    width: min(110px, 100%);
  }
  .site-header .nav-logo__image,
  .site-header.scrolled .nav-logo__image {
    max-width: 110px;
  }
  .hero { align-items: center; }
  .hero__content { padding-bottom: 0; }
  .hero__inner { margin-right: 0; text-align: center; align-items: center; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before {
    display: none;
  }
  .stat-item:nth-child(2n+1)::after {
    display: none;
  }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .floor-content { grid-template-columns: 1fr; }
   .form-row { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .timeline-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .timeline-photos { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
