:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #f1ece4;
  --text: #1f2937;
  --muted: #5f6b7a;
  --line: rgba(31, 41, 55, 0.08);
  --brand: #ae9145;
  --brand-dark: #8f7634;
  --deep: #0f2230;
  --shadow: 0 20px 50px rgba(15, 34, 48, 0.10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.announcement-bar {
  background: var(--deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.announcement-wrap {
  min-height: 48px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.65rem 0;
}
.announcement-wrap a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.82);
  border-bottom: 1px solid rgba(31, 41, 55, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand img { height: 42px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 500;
}
.nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(174,145,69,0.22);
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary {
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: #fff; }

.hero {
  padding: 4.5rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: .9rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(174,145,69,.12);
  color: var(--brand-dark);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.eyebrow-light { background: rgba(255,255,255,.08); color: rgba(255,255,255,.92); }
.hero h1, .section h2 {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 5rem); max-width: 12ch; }
.hero p, .section p { color: var(--muted); font-size: 1.05rem; }
.hero-actions {
  display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.6rem 0 2rem;
}
.hero-stats {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.hero-stats > div {
  min-width: 130px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.hero-stats strong { display:block; font-size:1.05rem; margin-bottom:.2rem; }
.hero-stats span { color: var(--muted); font-size: .95rem; }

.hero-collage {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: repeat(2, 190px);
  gap: 1rem;
}
.card-photo {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.card-photo.tall { grid-row: span 2; min-height: 396px; }

.section { padding: 5rem 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.25)); }
.section-dark {
  background: linear-gradient(135deg, #112838 0%, #17384e 100%);
  color: #fff;
}
.section-dark p { color: rgba(255,255,255,.78); }
.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.split-grid,
.construction-grid,
.spotlight-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.split-grid, .construction-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
.spotlight-grid { grid-template-columns: .85fr 1.15fr; }

.info-card,
.category-card,
.contact-card,
.mini-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.info-card, .contact-card { padding: 2rem; }
.location-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f1e7 100%);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.5rem;
}
.feature-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  font-weight: 600;
}
.text-link { font-weight: 700; color: var(--brand-dark); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.35rem;
}
.category-card {
  overflow: hidden;
  background: rgba(255,255,255,.75);
}
.category-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.category-card h3,
.mini-card h3,
.info-card h3 { margin: 0 0 .65rem; }
.category-card h3,
.category-card p { padding: 0 1.35rem; }
.category-card h3 { padding-top: 1.2rem; }
.category-card p { padding-bottom: 1.4rem; margin: 0; }

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mini-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.1);
  color: #fff;
  padding: 1.35rem;
  box-shadow: none;
}
.mini-card p { color: rgba(255,255,255,.72); margin: 0; }

.spotlight-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.spotlight-gallery img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.logo-grid img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
}

.contact-section { padding-bottom: 6rem; }
.contact-card { background: #fff; }
.contact-row {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: 0; }
.label {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
}
.contact-actions { display:flex; gap:.85rem; flex-wrap:wrap; margin-top: 1.4rem; }

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.65);
}
.footer-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer-logo { height: 36px; width: auto; }
.site-footer p { color: var(--muted); margin: 0; }

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .construction-grid,
  .spotlight-grid,
  .contact-grid,
  .category-grid,
  .logo-grid,
  .mini-cards { grid-template-columns: 1fr 1fr; }
  .spotlight-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .desktop-cta { display: none; }
  .hero { padding-top: 3rem; }
  .hero-grid,
  .split-grid,
  .construction-grid,
  .spotlight-grid,
  .contact-grid,
  .category-grid,
  .logo-grid,
  .mini-cards,
  .feature-list { grid-template-columns: 1fr; }
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 170px);
  }
  .card-photo.tall {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 170px;
  }
  .announcement-wrap { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .hero h1 { max-width: none; }
  .hero-stats > div { flex: 1 1 100%; }
  .spotlight-gallery { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .btn { width: 100%; }
  .contact-actions { flex-direction: column; }
}
