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

:root {
  --red:       #C0392B;
  --red-dark:  #922B21;
  --red-light: #FADBD8;
  --dark:      #1A1A1A;
  --mid:       #3D3D3D;
  --muted:     #6B6B6B;
  --border:    #D9D9D9;
  --bg:        #F5F4F0;
  --white:     #FFFFFF;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  min-height: 100vh;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 8px 40px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.topbar a { color: #ccc; text-decoration: none; }
.topbar a:hover { color: var(--white); }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo img {
  height: 60px;
  width: auto;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark);
  text-transform: uppercase;
}
.logo-text span {
  color: var(--red);
}

/* ── NAV ── */
nav {
  display: flex;
  gap: 4px;
}
nav a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a.active {
  background: var(--red);
  color: var(--white);
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--red);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.12;
}
.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: 18px;
  color: #bbb;
  max-width: 520px;
}

/* ── MAIN LAYOUT ── */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

/* ── SIDEBAR ── */
aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.sidebar-card-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red-dark);
  padding: 10px 16px;
}
.sidebar-links {
  list-style: none;
}
.sidebar-links li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s, color 0.12s, padding-left 0.12s;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover {
  background: var(--bg);
  color: var(--red);
  padding-left: 22px;
}
.sidebar-links li.active a {
  color: var(--red);
  font-weight: 600;
  border-left: 3px solid var(--red);
  padding-left: 13px;
}

/* ── CONTENT ── */
main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Contact strip */
.contact-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.contact-value a {
  color: var(--red);
  text-decoration: none;
}
.contact-value a:hover { text-decoration: underline; }

/* Download section */
.download-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.download-section h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.download-section p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 480px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 3px;
  transition: background 0.15s, transform 0.1s;
}
.btn-download:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-download:active { transform: translateY(0); }
.btn-download svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.download-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

/* Map section */
.map-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.map-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}
.map-address {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #888;
  font-size: 13px;
  text-align: center;
  padding: 20px 40px;
  margin-top: 16px;
}
footer a { color: #aaa; text-decoration: none; }
footer a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  header { flex-direction: column; gap: 16px; padding: 16px 20px; }
  .hero { padding: 40px 20px; }
  .hero h1 { font-size: 36px; }
  .page { grid-template-columns: 1fr; padding: 24px 20px; }
  .topbar { padding: 8px 20px; font-size: 12px; }
  footer { padding: 16px 20px; }
}
