@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;
  --spacing-xxxs: 4px;
  --spacing-xxs: 8px;
  --spacing-xs: 16px;
  --spacing-sm: 24px;
  --spacing-md: 32px;
  --spacing-lg: 48px;
  --spacing-xl: 64px;
  --spacing-xxl: 96px;
  --spacing-super: 128px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--canvas);
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--body-color);
  letter-spacing: 0.65px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--spacing-xxs);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  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.1) 0%, rgba(24,24,24,0.7) 60%, rgba(24,24,24,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-xxl) var(--spacing-md);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.hero-title {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: var(--ink);
  max-width: 780px;
  margin-bottom: var(--spacing-sm);
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body-color);
  max-width: 520px;
  margin-bottom: var(--spacing-lg);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 14px 32px;
  height: 48px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--primary-active); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 14px 32px;
  height: 48px;
  border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover { background: var(--ink); color: var(--canvas); }

/* SECTIONS */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-light {
  background: var(--surface-soft-light);
  color: var(--body-on-light);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.36px;
  color: var(--ink);
  margin-bottom: var(--spacing-sm);
}

.section-light .section-title {
  color: var(--body-on-light);
}

.section-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-color);
  max-width: 600px;
  margin-bottom: var(--spacing-xl);
}

.section-light .section-desc {
  color: var(--body-on-light);
  opacity: 0.75;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

/* CARDS */
.card {
  background: var(--canvas-elevated);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-body {
  padding: var(--spacing-sm);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-badge {
  display: inline-block;
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: var(--spacing-xs);
  width: fit-content;
}

.card-light .card-badge {
  background: var(--surface-strong-light);
  border-color: var(--hairline-on-light);
  color: var(--body-on-light);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--spacing-xxs);
}

.card-light .card-title {
  color: var(--body-on-light);
}

.card-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--body-color);
  margin-bottom: var(--spacing-sm);
  flex: 1;
}

.card-light .card-text {
  color: var(--body-on-light);
  opacity: 0.75;
}

.card-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: var(--spacing-xs);
}

.card-light .card-meta {
  border-top-color: var(--hairline-on-light);
  color: var(--muted);
}

.card-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: var(--spacing-xs);
}

/* ACCENT BAND */
.accent-band {
  background: var(--primary);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.accent-band .section-title {
  color: var(--on-primary);
  max-width: 640px;
  margin: 0 auto var(--spacing-sm);
}

.accent-band .section-desc {
  color: rgba(255,255,255,0.8);
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

/* ARTICLE PAGE */
.article-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  margin-top: 64px;
}

.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,24,24,0.2) 0%, rgba(24,24,24,0.75) 100%);
}

.article-hero-caption {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  right: var(--spacing-md);
  max-width: 1280px;
  margin: 0 auto;
}

.article-header {
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.article-meta {
  display: flex;
  gap: var(--spacing-xs);
  align-items: center;
  margin-bottom: var(--spacing-sm);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.article-meta-sep { color: var(--hairline); }

.article-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.12px;
  color: var(--ink);
  margin-bottom: var(--spacing-sm);
}

.article-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body-color);
  max-width: 720px;
  border-left: 3px solid var(--primary);
  padding-left: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.195px;
  color: var(--ink);
  margin: var(--spacing-xl) 0 var(--spacing-sm);
  line-height: 1.3;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: var(--spacing-md) 0 var(--spacing-xs);
}

.article-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-color);
  margin-bottom: var(--spacing-sm);
}

.article-body ul, .article-body ol {
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.article-body li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-color);
  margin-bottom: var(--spacing-xxs);
  list-style: disc;
}

.article-body ol li { list-style: decimal; }

.article-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body figure {
  margin: var(--spacing-xl) 0;
}

.article-body figure img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.article-body figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--spacing-xxs);
  padding-top: var(--spacing-xxs);
  border-top: 1px solid var(--hairline);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--spacing-xl);
  padding: 0 0 var(--spacing-xxl);
}

.article-sidebar {
  padding-top: var(--spacing-xl);
}

.sidebar-block {
  background: var(--canvas-elevated);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.sidebar-block-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-xxs);
  border-bottom: 1px solid var(--hairline);
}

.sidebar-list li {
  padding: var(--spacing-xxs) 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--body-color);
}

.sidebar-list li:last-child { border-bottom: none; }

.sidebar-list a { color: var(--body-color); transition: color 0.2s; }
.sidebar-list a:hover { color: var(--ink); }

/* RELATED */
.related-section {
  padding: var(--spacing-xxl) 0;
  border-top: 1px solid var(--hairline);
}

/* CONTACT FORM */
.contact-form {
  background: var(--canvas-elevated);
  padding: var(--spacing-xl);
  max-width: 640px;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--spacing-xxs);
}

.form-input {
  width: 100%;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 14px 16px;
  height: 48px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--primary); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--canvas-elevated);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-md) var(--spacing-md);
  display: none;
}

#cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 13px;
  color: var(--body-color);
  min-width: 280px;
}

.cookie-text a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

.cookie-actions {
  display: flex;
  gap: var(--spacing-xs);
}

/* FOOTER */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

.footer-brand-name span { color: var(--primary); }

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body-color);
  margin-bottom: var(--spacing-sm);
}

.footer-contact {
  font-size: 13px;
  line-height: 1.8;
  color: var(--body-color);
}

.footer-contact a { color: var(--primary); }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--spacing-sm);
}

.footer-links { display: flex; flex-direction: column; gap: var(--spacing-xxs); }

.footer-links a {
  font-size: 13px;
  color: var(--body-color);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--ink); }

/* ABOUT PAGE */
.page-hero {
  margin-top: 64px;
  padding: var(--spacing-super) 0 var(--spacing-xxl);
  background: linear-gradient(180deg, #303030, #181818 80%);
  text-align: center;
}

.page-hero .section-title {
  margin: 0 auto var(--spacing-sm);
  max-width: 680px;
}

.page-hero .section-desc {
  margin: 0 auto;
  text-align: center;
  max-width: 560px;
}

.page-content {
  padding: var(--spacing-xxl) 0;
  max-width: 860px;
}

.page-content h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin: var(--spacing-xl) 0 var(--spacing-sm);
  letter-spacing: 0.195px;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: var(--spacing-md) 0 var(--spacing-xs);
}

.page-content p, .page-content li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-color);
  margin-bottom: var(--spacing-sm);
}

.page-content ul { padding-left: var(--spacing-md); }
.page-content li { list-style: disc; }

/* LOCATIONS GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.location-card {
  background: var(--canvas-elevated);
  overflow: hidden;
  position: relative;
}

.location-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.location-card-body {
  padding: var(--spacing-sm);
}

.location-card-region {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--spacing-xxs);
}

.location-card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--spacing-xxs);
  line-height: 1.3;
}

.location-card-desc {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.5;
}

/* SPEC CELLS */
.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  margin: var(--spacing-xl) 0;
}

.spec-cell {
  background: var(--canvas-elevated);
  padding: var(--spacing-md);
  text-align: center;
}

.spec-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1.6px;
  margin-bottom: var(--spacing-xxs);
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--hairline);
  margin: var(--spacing-xl) 0;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: var(--spacing-xxs);
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: var(--spacing-sm) 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--hairline); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .spec-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--hairline);
    gap: var(--spacing-sm);
  }
  .hero-title { letter-spacing: -0.5px; }
  .hero-content { padding: var(--spacing-xl) var(--spacing-md); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .spec-row { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: var(--spacing-md); }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
