@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --canvas: #181818;
  --canvas-elevated: #303030;
  --canvas-light: #ffffff;
  --surface-soft-light: #f7f7f7;
  --surface-strong-light: #ebebeb;
  --primary: #da291c;
  --primary-active: #b01e0a;
  --hairline: #303030;
  --hairline-on-light: #d2d2d2;
  --ink: #ffffff;
  --body-color: #969696;
  --body-on-light: #181818;
  --muted: #666666;
  --on-primary: #ffffff;
  --font: 'Inter', -apple-system, system-ui, sans-serif;
  --sp-xxxs: 4px; --sp-xxs: 8px; --sp-xs: 16px; --sp-sm: 24px;
  --sp-md: 32px; --sp-lg: 48px; --sp-xl: 64px; --sp-xxl: 96px; --sp-super: 128px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-sm); }

/* NAV */
.site-nav {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--body-color);
  text-transform: uppercase;
  letter-spacing: 0.65px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-xxs);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-sm);
  z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-sm); }
.nav-mobile a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  color: var(--body-color);
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,24,24,0.15) 0%, rgba(24,24,24,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-xxl) var(--sp-sm);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--sp-xs);
}
.hero-title {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: var(--ink);
  max-width: 760px;
  margin-bottom: var(--sp-sm);
}
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  max-width: 560px;
  margin-bottom: var(--sp-md);
  line-height: 1.6;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 14px 32px;
  height: 48px;
  line-height: 20px;
  border-radius: 0;
  border: none;
  cursor: pointer;
}
.btn-primary:active { background: var(--primary-active); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 13px 31px;
  height: 48px;
  line-height: 20px;
  border-radius: 0;
  border: 1px solid var(--ink);
}
.hero-actions { display: flex; gap: var(--sp-xs); flex-wrap: wrap; }

/* BADGE */
.badge {
  display: inline-block;
  background: var(--canvas-elevated);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  padding: 4px 12px;
  border-radius: 9999px;
}

/* SECTION DARK */
.section-dark { background: var(--canvas); padding: var(--sp-xxl) 0; }
.section-light { background: var(--canvas-light); padding: var(--sp-xxl) 0; }
.section-elevated { background: var(--canvas-elevated); padding: var(--sp-xxl) 0; }
.section-soft { background: var(--surface-soft-light); padding: var(--sp-xxl) 0; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--sp-xs);
}
.section-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.36px;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
.section-title-light {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.36px;
  color: var(--body-on-light);
  margin-bottom: var(--sp-sm);
}
.section-body { color: var(--body-color); font-size: 14px; line-height: 1.6; max-width: 640px; }
.section-body-light { color: var(--body-on-light); font-size: 14px; line-height: 1.6; max-width: 640px; }

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

/* FEATURE CARD DARK */
.feature-card {
  background: var(--canvas-elevated);
  border-radius: 0;
  overflow: hidden;
}
.feature-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.feature-card-body { padding: var(--sp-sm); }
.feature-card-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--sp-xxs);
}
.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: var(--sp-xxs);
}
.feature-card-desc {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.5;
  margin-bottom: var(--sp-sm);
}
.feature-card-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}

/* FEATURE CARD LIGHT */
.feature-card-light {
  background: var(--canvas-light);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--hairline-on-light);
}
.feature-card-light .feature-card-title { color: var(--body-on-light); }
.feature-card-light .feature-card-desc { color: #555; }

/* ACCENT BAND */
.accent-band {
  background: var(--primary);
  padding: var(--sp-xxl) 0;
  text-align: center;
}
.accent-band .section-title { color: var(--on-primary); margin-bottom: var(--sp-xs); }
.accent-band p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: var(--sp-md); }

/* LOCATIONS TABLE */
.locations-table { width: 100%; border-collapse: collapse; margin-top: var(--sp-md); }
.locations-table th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
  padding: var(--sp-xs) var(--sp-sm);
  border-bottom: 1px solid var(--hairline);
  text-align: left;
}
.locations-table td {
  font-size: 14px;
  color: var(--body-color);
  padding: var(--sp-sm);
  border-bottom: 1px solid var(--hairline);
}
.locations-table tr:last-child td { border-bottom: none; }
.locations-table td:first-child { color: var(--ink); font-weight: 500; }

/* CONTACT FORM */
.contact-form {
  background: var(--canvas-elevated);
  padding: var(--sp-md);
  border-radius: 0;
  max-width: 560px;
  margin-top: var(--sp-md);
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-bottom: var(--sp-xxs);
  margin-top: var(--sp-sm);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 14px;
  height: 48px;
  outline: none;
}
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xs); }
.form-btn { margin-top: var(--sp-md); }

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}
.info-cell {
  border-top: 2px solid var(--primary);
  padding-top: var(--sp-sm);
}
.info-cell-num {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.12px;
  color: var(--ink);
  margin-bottom: var(--sp-xxs);
}
.info-cell-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-bottom: var(--sp-xxs);
}
.info-cell-desc { font-size: 13px; color: var(--body-color); line-height: 1.5; }

/* ARTICLE PAGE */
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,24,24,0.1) 0%, rgba(24,24,24,0.8) 100%);
}
.article-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-xl) var(--sp-sm);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.article-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.12px;
  color: var(--ink);
  max-width: 760px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
  font-size: 12px;
  color: var(--body-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-meta span { color: var(--muted); }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-xxl) var(--sp-sm);
}
.article-body h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.195px;
  color: var(--ink);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}
.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-xs);
}
.article-body p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}
.article-body ul, .article-body ol {
  padding-left: var(--sp-md);
  margin-bottom: var(--sp-sm);
}
.article-body li {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--sp-xxs);
}
.article-body img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin: var(--sp-xl) 0;
}
.article-body a { color: var(--primary); border-bottom: 1px solid transparent; }
.article-body a:hover { border-bottom-color: var(--primary); }
.article-body strong { color: var(--ink); }

.related-articles { margin-top: var(--sp-xl); padding-top: var(--sp-xl); border-top: 1px solid var(--hairline); }
.related-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}

/* PAGE CONTENT */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--sp-xxl) var(--sp-sm);
}
.page-content h1 {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1.12px;
  color: var(--ink);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--hairline);
}
.page-content h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}
.page-content p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}
.page-content ul {
  padding-left: var(--sp-md);
  margin-bottom: var(--sp-sm);
}
.page-content li {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--sp-xxs);
}
.page-content a { color: var(--primary); }

/* FOOTER */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-xl) 0 var(--sp-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--hairline);
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-xs);
}
.footer-brand-name span { color: var(--primary); }
.footer-brand-desc {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--sp-xs); }
.footer-links a {
  font-size: 13px;
  color: var(--body-color);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-md);
  flex-wrap: wrap;
  gap: var(--sp-xs);
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: var(--sp-sm);
}
.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--ink); }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--canvas-elevated);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-sm) var(--sp-sm);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.cookie-text { font-size: 13px; color: var(--body-color); line-height: 1.5; max-width: 640px; }
.cookie-text a { color: var(--primary); }
.cookie-actions { display: flex; gap: var(--sp-xs); flex-shrink: 0; }
.cookie-accept { background: var(--primary); color: var(--on-primary); border: none; padding: 10px 24px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.1px; cursor: pointer; border-radius: 0; }
.cookie-reject { background: transparent; color: var(--body-color); border: 1px solid var(--hairline); padding: 10px 24px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.1px; cursor: pointer; border-radius: 0; }
.cookie-hidden { display: none; }

/* ABOUT PAGE */
.about-hero {
  background: var(--canvas-elevated);
  padding: var(--sp-super) 0 var(--sp-xxl);
}
.about-hero-inner { max-width: 760px; }
.about-hero-title {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1.12px;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
.about-hero-desc { font-size: 16px; color: var(--body-color); line-height: 1.6; }

/* BREADCRUMB */
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--hairline);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--body-color); }

/* DISCLAIMER */
.disclaimer {
  background: var(--canvas-elevated);
  border-left: 3px solid var(--primary);
  padding: var(--sp-sm) var(--sp-md);
  margin: var(--sp-md) 0;
  font-size: 13px;
  color: var(--body-color);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 32px; letter-spacing: -0.5px; }
  .article-title { font-size: 32px; }
  .section-title, .section-title-light { font-size: 26px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .page-content h1 { font-size: 36px; }
  .about-hero-title { font-size: 36px; }
}

@media (max-width: 640px) {
  .hero { height: 100vh; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 14px; }
}
