/* ============================================================
   COMPONENTS.CSS — Sensation Group
   Shared component styles used across all inner pages.
   Depends on: base.css (custom properties, reset)
============================================================ */

/* ============================================================
   PAGE HERO — inner pages (smaller than homepage hero)
============================================================ */
.page-hero {
  position: relative;
  padding: 160px 48px 88px;
  background: var(--black);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.page-hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 28px;
  max-width: 560px;
}

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 48px;
}

.breadcrumb a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--black);
}

.breadcrumb-sep {
  color: var(--gray-200);
}

/* ============================================================
   SECTION WRAPPER
============================================================ */
.section-wrap {
  padding: 120px 48px;
}

.section-wrap--dark {
  background: var(--black);
}

.section-wrap--off {
  background: var(--off-white);
}

.section-wrap--white {
  background: var(--white);
}

.section-wrap--gray {
  background: var(--gray-100);
}

/* ============================================================
   SECTION HEADER
============================================================ */
.section-header {
  margin-bottom: 80px;
}

.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.section-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-200);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-num--dark {
  color: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-title--dark {
  color: var(--white);
}

.section-title--lg {
  font-size: clamp(36px, 5.5vw, 72px);
}

/* ============================================================
   TEXT LINK
============================================================ */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
  white-space: nowrap;
}

.text-link:hover {
  border-color: var(--black);
  gap: 14px;
}

.text-link--white {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.text-link--white:hover {
  border-bottom-color: var(--white);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: gap 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  gap: 16px;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn--dark:hover {
  background: var(--gray-600);
  border-color: var(--gray-600);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--black);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ============================================================
   FORM ELEMENTS
============================================================ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 14px 16px;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--black);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ============================================================
   CARD GRIDS
============================================================ */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ============================================================
   HORIZONTAL RULE
============================================================ */
.h-rule {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0;
}

.h-rule--dark {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   CTA SECTION — shared dual-card pattern
   Mirrors the homepage .cta-section for reuse on inner pages.
   Usage:
     <section class="cta-section">
       <div class="cta-card cta-card--dark">…</div>
       <div class="cta-card cta-card--light">…</div>
     </section>
============================================================ */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-card {
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.cta-card--dark {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-card--light {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}

.cta-label-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cta-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.cta-card--dark .cta-card-num {
  color: rgba(255, 255, 255, 0.15);
}

.cta-card--light .cta-card-num {
  color: var(--gray-200);
}

.cta-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-card--dark .cta-label {
  color: rgba(255, 255, 255, 0.3);
}

.cta-card--light .cta-label {
  color: var(--gray-400);
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-card--dark .cta-title {
  color: var(--white);
}

.cta-card--light .cta-title {
  color: var(--black);
}

.cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: 40px;
}

.cta-card--dark .cta-desc {
  color: rgba(255, 255, 255, 0.48);
}

.cta-card--light .cta-desc {
  color: var(--gray-600);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cta-card--dark .cta-btn {
  color: var(--black);
  background: var(--white);
}

.cta-card--dark .cta-btn:hover {
  opacity: 0.85;
}

.cta-card--light .cta-btn {
  color: var(--white);
  background: var(--black);
}

.cta-card--light .cta-btn:hover {
  opacity: 0.8;
}

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  .section-wrap {
    padding: 80px 32px;
  }

  .page-hero {
    padding: 140px 32px 72px;
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card {
    padding: 60px 40px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  .section-wrap {
    padding: 64px 24px;
  }

  .page-hero {
    padding: 120px 24px 60px;
  }

  .breadcrumb {
    margin-bottom: 32px;
  }

  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-card--dark {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cta-card {
    padding: 60px 24px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .section-wrap {
    padding: 56px 20px;
  }

  .page-hero {
    padding: 110px 20px 52px;
  }

  .cta-card {
    padding: 48px 20px;
  }
}

/* ============================================================
   ============================================================
   SENSATION SOUND & LIGHTS — BRAND COMPONENTS
   Electric blue accent, dark surfaces, technical typography
   ============================================================
============================================================ */

/* SSL — collapse the inherited 2-col CTA grid to 1 col when there is
   only one card (every SSL page ships only the dark card). */
.cta-section:has(> .cta-card:only-child) {
  grid-template-columns: 1fr;
}
.cta-section:has(> .cta-card:only-child) .cta-card--dark {
  border-right: none;
}

/* Accent primitives */
.accent-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}
.text-accent { color: var(--accent); }

/* Section variants — dark surfaces for SSL */
.section-wrap--dark {
  background-color: var(--black);
  color: var(--white);
}
.section-wrap--surface {
  background-color: var(--dark-surface);
  color: var(--white);
  padding: 120px 80px;
}
.section-wrap--dark .section-label,
.section-wrap--surface .section-label {
  color: var(--accent);
}
.section-wrap--dark .section-title,
.section-wrap--surface .section-title {
  color: var(--white);
}

/* SSL hero — dark, full-screen, electric overlay */
.ssl-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 88px;
  background-color: var(--black);
  color: var(--white);
  overflow: hidden;
}
.ssl-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.ssl-hero-bg.loaded { opacity: 0.6; }
.ssl-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 70% 30%, rgba(74, 158, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 60%, var(--black) 100%);
}
.ssl-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px;
  width: 100%;
}
.ssl-hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ssl-hero-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.ssl-hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
}
.ssl-hero-title em {
  font-style: normal;
  color: var(--accent);
}
.ssl-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--gray-200);
  max-width: 600px;
  margin-bottom: 36px;
}
.ssl-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Decorative meta strip across the bottom of the hero */
.ssl-hero-meta {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.ssl-hero-meta span:not(:last-child)::after {
  content: '·';
  margin: 0 14px;
  color: var(--accent);
}

/* Technical button — blue */
.btn--accent {
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent);
}
.btn--accent:hover {
  background: transparent;
  color: var(--accent);
}

/* Service blocks (home) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-border);
  border: 1px solid var(--dark-border);
}
.service-card {
  background: var(--dark-surface);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.25s ease, transform 0.25s ease;
}
.service-card:hover {
  background: var(--dark-surface-2);
}
.service-card-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.service-card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.service-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-400);
  flex: 1;
}
.service-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 12px;
}

/* Differentials list */
.differential-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  list-style: none;
}
.differential-item {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
}
.differential-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
}
.differential-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-200);
}

/* Sectors list */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.sector-item {
  text-align: left;
  padding: 28px 24px;
  border: 1px solid var(--dark-border);
  background: var(--dark-surface);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 130px;
}
.sector-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, 0.68);
  transition: background 0.25s ease;
}
.sector-item:hover::before {
  background: rgba(12, 11, 9, 0.45);
}
.sector-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.sector-item p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Process timeline (5 steps) */
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
}
.process-step {
  padding: 32px 24px;
  border-left: 1px solid var(--dark-border);
  position: relative;
}
.process-step:first-child { border-left: 1px solid var(--accent); }
.process-step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.55;
}

/* Project (portfolio) card — technical */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.project-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.project-card:hover {
  border-color: var(--accent);
}
.project-card-inner {
  display: block;
  color: var(--white);
}
.project-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.project-card-body {
  padding: 28px 28px 32px;
  position: relative;
}
.project-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.project-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
}
.project-card-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--dark-border);
  padding-top: 18px;
}
.project-card-meta li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray-200);
}
.project-card-meta li span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.project-card-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--accent);
  font-size: 18px;
}

/* Project detail page */
.project-hero {
  position: relative;
  min-height: 64vh;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 0 80px 80px;
  overflow: hidden;
}
.project-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.project-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%);
}
.project-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
}
.project-hero-cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.project-hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
}
.project-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
}
.project-meta-row > div span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.project-meta-row > div strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.project-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.project-narrative h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.project-narrative p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-200);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

/* Equipment list under project */
.equipment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

/* Spec tag */
.spec-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(74, 158, 255, 0.3);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Equipment catalogue cards */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equipment-card {
  background: var(--dark-surface-2);
  border: 1px solid var(--dark-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  display: block;
  color: var(--white);
  text-decoration: none;
}
.equipment-card-link {
  cursor: pointer;
}
.equipment-card-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.equipment-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
  background: rgba(74, 158, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}
.equipment-card-link:hover .equipment-card-arrow {
  background: var(--accent);
  color: var(--black);
  transform: translateX(2px);
}
[data-theme="light"] .equipment-card-arrow {
  border-color: rgba(10, 10, 10, 0.1);
}

/* Equipment detail hero layout */
.equipment-detail-hero .page-hero-content {
  width: 100%;
}
.equipment-detail-hero-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 24px;
}
.equipment-detail-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
}
@media (max-width: 1024px) {
  .equipment-detail-hero-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Equipment detail "about" article */
.equipment-detail-about {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--gray-200);
  max-width: 760px;
}
[data-theme="light"] .equipment-detail-about {
  color: var(--gray-600);
}

/* Empty-state for "applied in" projects */
.item-empty {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
}

/* Equipment teaser on the home page — 4 columns instead of the 3 used on
   the catalogue. The home page only ever shows one item per category. */
.equipment-grid--teaser {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .equipment-grid--teaser { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .equipment-grid--teaser { grid-template-columns: 1fr; }
}

/* Friendly error notice rendered when fetch() fails (most commonly when
   the page is opened via file:// instead of http://). */
.content-error {
  grid-column: 1 / -1;
  border: 1px dashed var(--accent);
  background: var(--accent-dim);
  padding: 32px 36px;
  font-family: 'Inter', sans-serif;
  border-radius: 2px;
}
.content-error-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.content-error-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-200);
}
.content-error-desc code {
  font-family: 'Inter', sans-serif;
  background: rgba(74, 158, 255, 0.18);
  border: 1px solid rgba(74, 158, 255, 0.3);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 13px;
  color: var(--accent);
}
[data-theme="light"] .content-error-desc {
  color: var(--gray-600);
}
.equipment-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
}
.equipment-card-body {
  padding: 22px 24px 26px;
}
.equipment-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 8px;
}
.equipment-card-spec {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.equipment-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Equipment category section */
.equipment-cat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.equipment-cat-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--white);
}

/* FAQ — dark variant overrides */
.section-wrap--dark .faq-item,
.section-wrap--surface .faq-item {
  border-bottom: 1px solid var(--dark-border);
  padding: 28px 0;
}
.section-wrap--dark .faq-question,
.section-wrap--surface .faq-question {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.section-wrap--dark .faq-question::after,
.section-wrap--surface .faq-question::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 300;
}
.section-wrap--dark .faq-item.open .faq-question::after,
.section-wrap--surface .faq-item.open .faq-question::after {
  content: '−';
}
.section-wrap--dark .faq-answer,
.section-wrap--surface .faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gray-200);
  line-height: 1.7;
  margin-top: 16px;
  display: none;
  max-width: 800px;
}
.section-wrap--dark .faq-item.open .faq-answer,
.section-wrap--surface .faq-item.open .faq-answer {
  display: block;
}

/* Form on dark background */
.section-wrap--dark .form-label,
.section-wrap--surface .form-label {
  color: var(--gray-200);
}
.section-wrap--dark .form-input,
.section-wrap--dark .form-textarea,
.section-wrap--dark .form-select,
.section-wrap--surface .form-input,
.section-wrap--surface .form-textarea,
.section-wrap--surface .form-select {
  background: transparent;
  border-bottom: 1px solid var(--dark-border);
  color: var(--white);
}
.section-wrap--dark .form-input:focus,
.section-wrap--surface .form-input:focus,
.section-wrap--dark .form-textarea:focus,
.section-wrap--surface .form-textarea:focus,
.section-wrap--dark .form-select:focus,
.section-wrap--surface .form-select:focus {
  border-bottom-color: var(--accent);
}

/* Service category page (servicos.html) */
.service-cat-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  padding: 80px 0;
  border-bottom: 1px solid var(--dark-border);
}
.service-cat-block:last-child { border-bottom: none; }
.service-cat-block h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
}
.service-cat-block p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-200);
  margin-bottom: 24px;
}
.service-cat-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.service-cat-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  padding: 14px 18px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
}

/* Related projects */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  display: block;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: var(--white);
}
.related-card:hover { border-color: var(--accent); }
.related-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.related-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 18px 20px 4px;
}
.related-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  padding: 0 20px 22px;
  line-height: 1.3;
}

/* Big stats / numbers */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 40px 0;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ------------------------------------------------------------
   SSL page hero — overrides the parent's emotional/short-title
   sizing for SSL's longer technical headlines so the whole hero
   fits above the fold on standard laptop viewports.
------------------------------------------------------------ */
.page-hero--ssl {
  background-color: var(--black);
  color: var(--white);
  padding: 132px 80px 72px;
}
.page-hero--ssl .page-hero-bg { opacity: 0.35; }
.page-hero--ssl .page-hero-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero--ssl .page-hero-content {
  max-width: 1100px;
}
.page-hero--ssl .page-hero-label {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.page-hero--ssl .page-hero-title {
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.page-hero--ssl .page-hero-desc {
  color: var(--gray-200);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 24px;
  max-width: 620px;
}
.page-hero--ssl .breadcrumb {
  margin-bottom: 36px;
  color: rgba(255,255,255,0.55);
}
.page-hero--ssl .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero--ssl .breadcrumb a:hover { color: var(--accent); }
.page-hero--ssl .breadcrumb-sep { color: rgba(255,255,255,0.25); }


/* ============================================================
   SSL RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .ssl-hero { padding: 0 32px 96px; min-height: 80vh; }
  .ssl-hero-meta { left: 32px; right: 32px; }
  .page-hero--ssl { padding: 116px 32px 64px; }
  .page-hero--ssl .page-hero-title { font-size: clamp(30px, 5vw, 44px); max-width: 22ch; }
  .service-grid,
  .differential-list,
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .project-hero { padding: 0 32px 60px; }
  .project-narrative { grid-template-columns: 1fr; gap: 32px; }
  .project-meta-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .service-cat-block { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .section-wrap--surface { padding: 80px 32px; }
}
@media (max-width: 768px) {
  .ssl-hero { padding: 0 24px 80px; min-height: 76vh; }
  .ssl-hero-meta { left: 24px; right: 24px; bottom: 18px; padding-top: 14px; font-size: 9px; flex-wrap: wrap; gap: 6px; }
  .ssl-hero-meta span:not(:last-child)::after { margin: 0 8px; }
  .page-hero--ssl { padding: 104px 24px 56px; }
  .page-hero--ssl .page-hero-title { font-size: clamp(28px, 6vw, 36px); max-width: none; }
  .page-hero--ssl .page-hero-desc { font-size: 15px; }
  .page-hero--ssl .breadcrumb { margin-bottom: 24px; }
  .service-grid,
  .sector-grid,
  .differential-list,
  .equipment-grid,
  .process-row { grid-template-columns: 1fr; }
  .project-meta-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 40px; }
  .section-wrap--surface { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .project-card-meta { grid-template-columns: 1fr; }
  .project-meta-row { grid-template-columns: 1fr; }
  .ssl-hero-cta { flex-direction: column; align-items: flex-start; }
  .ssl-hero-cta .btn { width: 100%; }
  /* Responsiveness fixes for narrow phones (≤480) */
  .stat-row { grid-template-columns: 1fr; gap: 20px; }
  .stat-num { font-size: 36px; }
  .service-cat-block { gap: 20px; }
  .service-cat-block > div { min-width: 0; }
  .service-cat-block h2,
  .equipment-cat-header h2 { font-size: 28px; overflow-wrap: break-word; }
  .service-cat-list li { overflow-wrap: anywhere; }
}

/* ============================================================
   ============================================================
   NAV LAYOUT OVERRIDES — SSL
   - Replace the inherited `space-between` (which now distributes
     5 children unevenly) with a `gap`-based layout: logo on the
     left, everything else cluster-aligned to the right with
     consistent spacing between elements.
   - Nav links never wrap (e.g. "Sobre Nós" used to break in two).
   ============================================================
============================================================ */
.nav-inner {
  justify-content: flex-start;
  gap: 24px;
}
.nav-logo {
  margin-right: auto;          /* pushes everything else to the right */
}
.nav-links {
  gap: 28px;
}
.nav-links a {
  white-space: nowrap;         /* keep "Sobre Nós" on one line */
}
/* Reset margins set by inherited rules so the parent's `gap: 24px` is the
   single source of horizontal spacing in the right cluster. */
.lang-switcher,
.nav-inner > .theme-toggle,
.nav-inner > .nav-cta {
  margin: 0;
}

@media (max-width: 1280px) {
  .nav-inner { gap: 18px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 11px; }
}

/* ============================================================
   ============================================================
   THEME TOGGLE — sun/moon button
   ============================================================
============================================================ */
.theme-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.3s ease;
  position: relative;
}
.theme-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}
.theme-toggle:active {
  transform: scale(0.94);
}
.theme-toggle svg {
  width: 16px;
  height: 16px;
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* When the nav is scrolled (parent gives it a black bg), the toggle
   border still needs to read clearly — keep it bright. */
.nav.scrolled .theme-toggle {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* In light mode + over the dark hero (top of page), the toggle still
   sits over a dark image, so the white styling continues to work. Once
   scrolled into the light page body, the nav.scrolled state is what
   matters; in light mode the parent's .scrolled bg becomes a problem
   (always black) — fix it: in light mode, scrolled nav uses an off-white
   bg and dark icon. */
[data-theme="light"] .nav.scrolled {
  background: var(--off-white);
  border-bottom-color: rgba(10, 10, 10, 0.08);
}
[data-theme="light"] .nav.scrolled .nav-links a {
  color: rgba(10, 10, 10, 0.7);
}
[data-theme="light"] .nav.scrolled .nav-links a:hover {
  color: var(--black);
}
[data-theme="light"] .nav.scrolled .nav-cta {
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.35);
}
[data-theme="light"] .nav.scrolled .nav-cta:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
[data-theme="light"] .nav.scrolled .lang-switcher button {
  color: rgba(10, 10, 10, 0.45);
}
[data-theme="light"] .nav.scrolled .lang-switcher button.active,
[data-theme="light"] .nav.scrolled .lang-switcher button:hover {
  color: var(--black);
  border-bottom-color: rgba(10, 10, 10, 0.4);
}
[data-theme="light"] .nav.scrolled .theme-toggle {
  border-color: rgba(10, 10, 10, 0.35);
  background: rgba(10, 10, 10, 0.04);
  color: var(--black);
}
[data-theme="light"] .nav.scrolled .nav-hamburger span {
  background: var(--black);
}

/* Invert the white logo PNG to black when the nav is on a light surface.
   `filter: brightness(0)` flips the white pixels to black while keeping the
   transparent alpha untouched — no second logo file needed.
   Cases where this is required:
     - light theme + nav.scrolled (cream bg)
   The footer logo always sits on a dark footer, so it stays as-is. */
[data-theme="light"] .nav.scrolled .nav-logo .logo-img {
  filter: brightness(0);
  transition: filter 0.25s ease;
}
.nav-logo .logo-img {
  transition: filter 0.25s ease;
}

/* ============================================================
   ============================================================
   LIGHT THEME OVERRIDES
   - Hero, page-hero, project-hero, footer, .nav (scrolled state),
     and CTA card stay dark in both modes — they're brand anchors.
   - Everything else flips: body bg, section surfaces, cards.
   ============================================================
============================================================ */
[data-theme="light"] body {
  background-color: var(--off-white);
  color: var(--black);
}

/* Section backgrounds flip */
[data-theme="light"] .section-wrap--dark {
  background-color: var(--off-white);
  color: var(--black);
}
[data-theme="light"] .section-wrap--surface {
  background-color: #F0EFEB;
  color: var(--black);
}

/* Section headers/titles inside flipped sections */
[data-theme="light"] .section-wrap--dark .section-title,
[data-theme="light"] .section-wrap--surface .section-title,
[data-theme="light"] .section-title--dark {
  color: var(--black);
}
[data-theme="light"] .section-wrap--dark .section-label,
[data-theme="light"] .section-wrap--surface .section-label {
  color: var(--accent);
}
[data-theme="light"] .section-wrap--dark .section-num,
[data-theme="light"] .section-wrap--surface .section-num {
  color: var(--gray-600);
}

/* Service blocks (home + casamentos + corporate + sobre) */
[data-theme="light"] .service-grid {
  background: rgba(10, 10, 10, 0.08);
  border-color: rgba(10, 10, 10, 0.08);
}
[data-theme="light"] .service-card {
  background: var(--white);
  color: var(--black);
}
[data-theme="light"] .service-card:hover {
  background: var(--off-white);
}
[data-theme="light"] .service-card-name { color: var(--black); }
[data-theme="light"] .service-card-desc { color: var(--gray-600); }

/* Differentials list */
[data-theme="light"] .differential-item {
  border-top-color: rgba(10, 10, 10, 0.12);
}
[data-theme="light"] .differential-text { color: var(--gray-600); }

/* Sectors */
[data-theme="light"] .sector-item {
  background: var(--white);
  border-color: rgba(10, 10, 10, 0.08);
}
[data-theme="light"] .sector-item h4 { color: var(--black); }
[data-theme="light"] .sector-item p { color: var(--gray-600); }

/* Process timeline */
[data-theme="light"] .process-step {
  border-left-color: rgba(10, 10, 10, 0.12);
}
[data-theme="light"] .process-step-title { color: var(--black); }
[data-theme="light"] .process-step-desc { color: var(--gray-600); }

/* Project cards (projetos.html grid + home featured) */
[data-theme="light"] .project-card {
  background: var(--white);
  border-color: rgba(10, 10, 10, 0.08);
}
[data-theme="light"] .project-card-inner { color: var(--black); }
[data-theme="light"] .project-card-title { color: var(--black); }
[data-theme="light"] .project-card-meta li { color: var(--gray-600); }
[data-theme="light"] .project-card-meta { border-top-color: rgba(10, 10, 10, 0.1); }

/* Project narrative + project meta row (project detail page) */
[data-theme="light"] .project-narrative p { color: var(--gray-600); }
[data-theme="light"] .project-meta-row { border-top-color: rgba(10, 10, 10, 0.12); }
[data-theme="light"] .project-meta-row > div strong { color: var(--black); }

/* Equipment catalogue */
[data-theme="light"] .equipment-cat-header h2 { color: var(--black); }
[data-theme="light"] .equipment-card {
  background: var(--white);
  border-color: rgba(10, 10, 10, 0.08);
}
[data-theme="light"] .equipment-card-name { color: var(--black); }
[data-theme="light"] .equipment-card-spec { color: var(--gray-600); }

/* Service category page (servicos.html) */
[data-theme="light"] .service-cat-block {
  border-bottom-color: rgba(10, 10, 10, 0.12);
}
[data-theme="light"] .service-cat-block h2 { color: var(--black); }
[data-theme="light"] .service-cat-block p { color: var(--gray-600); }
[data-theme="light"] .service-cat-list li {
  background: var(--white);
  border-color: rgba(10, 10, 10, 0.08);
  color: var(--black);
}

/* Stats row */
[data-theme="light"] .stat-row {
  border-top-color: rgba(10, 10, 10, 0.12);
  border-bottom-color: rgba(10, 10, 10, 0.12);
}
[data-theme="light"] .stat-label { color: var(--gray-600); }

/* Related cards */
[data-theme="light"] .related-card {
  background: var(--white);
  border-color: rgba(10, 10, 10, 0.08);
  color: var(--black);
}
[data-theme="light"] .related-card-title { color: var(--black); }

/* FAQ — inside light surface section */
[data-theme="light"] .section-wrap--dark .faq-item,
[data-theme="light"] .section-wrap--surface .faq-item {
  border-bottom-color: rgba(10, 10, 10, 0.1);
}
[data-theme="light"] .section-wrap--dark .faq-question,
[data-theme="light"] .section-wrap--surface .faq-question {
  color: var(--black);
}
[data-theme="light"] .section-wrap--dark .faq-answer,
[data-theme="light"] .section-wrap--surface .faq-answer {
  color: var(--gray-600);
}

/* Forms — contact page */
[data-theme="light"] .section-wrap--dark .form-label,
[data-theme="light"] .section-wrap--surface .form-label {
  color: var(--gray-600);
}
[data-theme="light"] .section-wrap--dark .form-input,
[data-theme="light"] .section-wrap--dark .form-textarea,
[data-theme="light"] .section-wrap--dark .form-select,
[data-theme="light"] .section-wrap--surface .form-input,
[data-theme="light"] .section-wrap--surface .form-textarea,
[data-theme="light"] .section-wrap--surface .form-select {
  color: var(--black);
  border-bottom-color: rgba(10, 10, 10, 0.2);
}
[data-theme="light"] .contact-aside {
  color: var(--black) !important;
}
[data-theme="light"] .contact-aside h2 { color: var(--black); }
[data-theme="light"] .contact-aside a { color: var(--black) !important; }

/* Legal-pages article body */
[data-theme="light"] .section-wrap--surface article {
  color: var(--gray-600);
}
[data-theme="light"] .section-wrap--surface article h2 {
  color: var(--black) !important;
}

/* Buttons that were styled for dark backgrounds.
   Only flip when actually inside a light-themed section — hero, project-hero
   and page-hero stay dark in both modes, so buttons over them must keep
   their white outline styling. */
[data-theme="light"] .section-wrap--dark .btn--outline-white,
[data-theme="light"] .section-wrap--surface .btn--outline-white,
[data-theme="light"] .cta-card--light .btn--outline-white {
  border-color: var(--black);
  color: var(--black);
}
[data-theme="light"] .section-wrap--dark .btn--outline-white:hover,
[data-theme="light"] .section-wrap--surface .btn--outline-white:hover,
[data-theme="light"] .cta-card--light .btn--outline-white:hover {
  background: var(--black);
  color: var(--white);
}

/* Smooth color transitions when toggling */
body, .section-wrap, .service-card, .equipment-card, .project-card,
.related-card, .sector-item, .service-cat-list li {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* ============================================================
   COOKIE CONSENT BANNER
============================================================ */
#cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  max-width: 960px;
  margin: 0 auto;
}
#cookie-banner p {
  margin: 0;
  color: var(--gray-200);
}
#cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#cookie-banner button {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
#cookie-banner button:hover {
  border-color: var(--white);
}
#cookie-banner button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}
#cookie-banner button.primary:hover {
  background: transparent;
  color: var(--accent);
}
@media (max-width: 720px) {
  #cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
}
