:root {
  color-scheme: dark;
  --bg: #0e0f12;
  --bg-soft: #15171c;
  --bg-panel: #1d1f26;
  --text: #f5f5f2;
  --muted: #aaaaa3;
  --accent: #d7b47b;
  --accent-strong: #f0c98d;
  --border: rgba(255, 255, 255, 0.08);
  font-size: 16px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
  overflow: hidden;
}

.nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(20%);
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0.35) 80%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem 1.5rem;
  padding-top: 1rem;
}

.stats span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.hero__highlights {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.hero__highlights span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.metro-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: -2rem;
  padding-bottom: 4rem;
}

.section {
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.section__header {
  margin-bottom: 1.5rem;
}

.section__header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.intro__card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 20px;
}

.intro__card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}

.intro__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--muted);
}

.timeline__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.timeline__items article {
  background: var(--bg-panel);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.timeline__items span {
  color: var(--accent);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.units__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.units__grid article {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.units__grid header span {
  color: var(--muted);
  font-size: 0.95rem;
}

.units__grid ul {
  list-style: none;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery__tabs .tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery__tabs .tab.active,
.gallery__tabs .tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery__grid figure {
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.documents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.documents__grid article {
  background: var(--bg-panel);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.documents__grid a {
  color: var(--accent);
  font-weight: 600;
}

.dataroom {
  margin-top: 2rem;
  padding: 1.8rem;
  border: 1px dashed var(--accent);
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.dataroom__btn {
  background: var(--accent);
  color: #1c1c1c;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.contact {
  padding: 4rem clamp(1.5rem, 6vw, 5rem) 3rem;
  background: radial-gradient(circle at top, rgba(215, 180, 123, 0.15), transparent 55%);
}

.contact__card {
  background: rgba(13, 14, 17, 0.65);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 720px;
}

.contact__photo {
  text-align: center;
  margin-bottom: 1.2rem;
}

.contact__photo--inline {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact__photo img {
  width: 100%;
  max-width: 200px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.contact__card h2 {
  font-family: "Playfair Display", serif;
  margin: 0.5rem 0 1rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact__grid span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted);
}

.contact__grid a {
  font-size: 1.1rem;
  color: var(--accent-strong);
}

.contact__card .scope {
  color: var(--accent-strong);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact__legal {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  font-size: 0.95rem;
}

.contact__legal span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.contact__legal a {
  color: var(--accent-strong);
  font-weight: 600;
}

.signature {
  margin-top: 2rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 4rem;
  }
  .nav {
    position: relative;
  }
  .hero__content {
    margin-top: 4rem;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 2rem));
  background: rgba(14, 15, 18, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  display: none;
  gap: 1rem;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.35);
  z-index: 20;
  backdrop-filter: blur(12px);
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner a {
  color: var(--accent-strong);
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
}

.cookie-banner__actions button {
  background: var(--accent);
  border: none;
  color: #1b1b1b;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
}
