/* =========================================================== */
/* =========================================================== */
/* =========================================================== */
/* ================   TECHNOLOGIE VYROBY   =================== */
/* =========================================================== */
/* =========================================================== */
/* =========================================================== */


/* =========================================
   TECHNOLOGIE - HLAVIČKA (Nová sekce)
   ========================================= */
.tech-header-section {
  background-color: var(--bg-soft); /* Odlišné pozadí (šedá/jemná) */
  padding: 5rem 0 3rem 0; /* Menší spodní padding, protože taby začínají hned pod tím */
  border-top: 1px solid var(--line);
}

.tech-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tech-intro-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

.tech-intro-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0.75rem 0 0 0;
  max-width: 650px;
  line-height: 1.6;
}

/* =========================================
   TECHNOLOGIE - TABY
   ========================================= */
.tech-tabs-section {
  background-color: var(--bg-soft); /* Bílé pozadí tabů */
  padding: 3rem 0 5rem 0; /* Navazuje na hlavičku, takže nahoře stačí méně místa */
  border-top: 1px solid var(--line);
}

/* --- TAB NAVIGATION --- */
.tech-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--line);
  margin-top: 3rem;
}

.tech-tab-btn {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px; 
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-tab-btn:hover {
  color: var(--ink);
}

.tech-tab-btn.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-icon {
  opacity: 0.6;
}

/* --- FUNKČNOST ZÁLOŽEK (PANE) --- */
.tech-tab-pane {
  display: none; 
  animation: tabFadeIn 0.3s ease forwards;
}

.tech-tab-pane.is-active {
  display: block;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- TAB CONTENT HEADER --- */
.tech-tab-header {
  margin-bottom: 2.5rem;
}

.tech-tab-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
  line-height: 1;
}

.tech-tab-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* --- TEXTOVÝ INFO GRID (3 Sloupce!) --- */
.tech-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px; 
  background-color: var(--line); 
  margin-bottom: 3rem;
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .tech-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tech-info-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px; 
  background-color: var(--line); 
  margin-bottom: 3rem;
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .tech-info-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-info-card {
  background-color: var(--bg);
  padding: 2rem;
}

.tech-info-kicker {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}

.tech-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 0.75rem 0;
  line-height: 1.1;
}

.tech-info-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* --- FOTOGRAFIE ZE ZÁVODU --- */
.tech-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .tech-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tech-photo-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  margin: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tech-photo-img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--bg-soft);
}

.photo-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 1rem 1rem;
}

.photo-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.photo-sublabel {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.4;
}


/* =========================================
   PROCESNÍ STANDARDY SECTION
   ========================================= */
.standards-section {
  background-color: var(--bg-soft);
  padding: 5rem 0; /* Lehce zvětšený padding pro lepší dýchání sekce */
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Hlavní rozložení: Nadpis vlevo, Data vpravo */
.standards-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .standards-layout {
    /* Nadpis zabere zhruba 30 %, data zbytek */
    grid-template-columns: 1fr 2.2fr; 
    gap: 5rem;
  }
}

/* --- LEVÝ SLOUPEC (Nadpis) --- */
.standards-intro {
  display: flex;
  flex-direction: column;
}

.standards-rule {
  display: block;
  width: 3rem;
  height: 3px;
  background-color: var(--accent);
  margin-bottom: 1.25rem;
}

.standards-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 1rem 0;
  line-height: 1;
}

.standards-lead {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* --- PRAVÝ SLOUPEC (Data Grid) --- */
.standards-data {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem; /* Vertikální a horizontální mezera */
}

/* Na tabletu a PC se parametry seřadí do 2 sloupců */
@media (min-width: 640px) {
  .standards-data {
    grid-template-columns: repeat(2, 1fr);
  }
}

.standard-item {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--line-strong); 
  padding-left: 1.25rem;
  transition: border-color 0.2s ease;
}

/* Zvýrazněné položky (oranžová linka) */
.standard-item--accent {
  border-left-color: var(--accent);
}

.standard-item:hover {
  border-left-color: var(--accent); /* Při najetí se linka rozsvítí u všech */
}

/* Typografie parametrů */
.standard-kicker {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}

.standard-value {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem; /* Zvětšeno pro lepší čitelnost hlavní metriky */
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.4rem;
}

.standard-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  display: block;
}


/* =========================================
   VÝROBNÍ PROCES - HERO
   ========================================= */
.process-hero {
  background-color: var(--bg-dark); /* Tmavé pozadí (černá/antracit) */
  padding: 5rem 0 4rem;
  border-bottom: 3px solid var(--accent);
}

.process-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.process-hero-kicker .kicker-line {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
}

.process-hero-kicker .kicker-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.process-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
}

.process-hero-title span {
  color: var(--accent);
}

.process-hero-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  margin: 0;
}

   .process-section {
    background: var(--bg);
    padding: 6rem 0;
    padding-bottom: 3rem;
  }

  .process-head {
    margin-bottom: 3.5rem;
  }

  .process-main-title {
    margin-bottom: 0.75rem;
  }

  .process-main-description {
    margin: 0;
    color: var(--muted);
    max-width: 650px;
  }

  .process-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.75rem;
  }

  /* TIMELINE */
  .process-timeline {
    position: relative;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .process-line {
    display: none;
    position: absolute;
    top: 1.5rem;
    left: 4.2%;
    right: 4.2%;
    height: 2px;
    background-color: var(--line);
    z-index: 0;
  }

  .process-line-progress {
    height: 100%;
    width: 0%;
    background-color: var(--accent);
    transform-origin: left center;
  }

  .process-grid {
    display: grid;
    gap: 2rem 1rem;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-icon-wrap {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    background-color: var(--panel);
    border: 2px solid var(--line-strong);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .p-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: inherit;
  }

  .process-badge {
    position: absolute;
    top: -0.45rem;
    right: -0.45rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: var(--line-strong);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
  }

  .process-step.is-active .process-icon-wrap {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 8px 16px rgba(237, 125, 49, 0.22);
  }

  .process-step.is-active .process-badge {
    background: var(--accent);
  }

  .process-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
  }

  @media (min-width: 520px) {
    .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 768px) {
    .process-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .process-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (min-width: 1280px) {
    .process-line {
      display: block;
    }

    .process-grid {
      grid-template-columns: repeat(12, 1fr);
      gap: 0.75rem;
    }

    .process-title {
      font-size: 0.74rem;
      line-height: 1.25;
    }
  }

  /* BUILDER STYLE CARDS */
.process-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.process-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 0.9rem;
}

.process-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.process-card-side {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.process-card-icon-wrap {
  position: relative;
  width: fit-content;
  flex: 0 0 auto;
}

.process-card-icon-bg {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: rgba(237, 125, 49, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.process-card-badge {
  position: absolute;
  top: -0.28rem;
  right: -0.28rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card-content {
  flex: 1;
}

.process-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.process-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.86rem;
  max-width: none;
}

/* 2 vedle sebe */
@media (min-width: 700px) {
  .process-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 3 vedle sebe */
@media (min-width: 1100px) {
  .process-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* U širších layoutů už není třeba levý sloupec jako u builderu */
@media (min-width: 1024px) {
  .process-card-inner {
    gap: 0.85rem;
  }

  .process-card-title {
    font-size: 1.05rem;
  }
}

  .process-card-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.86rem;
    max-width: 62rem;
  }

  @media (min-width: 1024px) {
    .process-card {
      padding: 0.9rem;
      border-radius: 1.35rem;
    }

    .process-card-inner {
      flex-direction: row;
      align-items: flex-start;
      gap: 2rem;
    }

    .process-card-side {
      width: 84px;
      min-width: 84px;
      justify-content: center;
    }

    .process-card-title {
      font-size: 1.05rem;
      margin-bottom: 0.6rem;
    }
  }

  /* CTA */
  .con-now {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

.now {
  width: 80%;
  margin: 3rem auto;
  margin-top: 4.5rem;
}

.for-whom-section {
  background-color: var(--bg-soft);
  padding: 6rem 0;
  border-top: 1px solid var(--line);
}

/* Omezíme šířku, aby se text dobře četl, a vycentrujeme to na střed stránky */
.for-whom-centered {
  max-width: 800px;
  margin: 0 auto;
}

.for-whom-centered .title {
  margin-bottom: 1.5rem;
}

.for-whom-centered .description {
  margin-bottom: 1.25rem;
}

.fw-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.fw-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.fw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: rgba(237, 125, 49, 0.1);
  border: 1px solid var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--accent);
}

.fw-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink);
}

/* Tmavý CTA box v jednosloupcovém layoutu */
.fw-cta {
  background-color: var(--bg-dark);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 0.5rem;
  border-left: 3px solid var(--accent);
}

@media (min-width: 768px) {
  .fw-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.fw-cta-text {
  max-width: 450px;
}

.fw-cta-text strong {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 0.25rem;
}

.fw-cta-text span {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  display: block;
}

.fw-cta-phone {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: rgba(237, 125, 49, 0.1);
  border-radius: 0.5rem;
  border: 1px solid var(--accent);;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fw-cta-phone:hover {
  background-color: rgba(237, 125, 49, 0.3);
}


.process-timeline {
  margin-bottom: 2.5rem;
}

.process-bottom-cta {
  margin-top: 2.5rem;
}
/* =========================================
   STANDARDY (CATEGORY HEADERS)
   ========================================= */
.standard-category {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 0;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cat-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.cat-line {
  flex: 1;
  height: 1px;
  background-color: var(--line);
}


/* =========================================
   CENOVÁ POLITIKA (PRICING)
   ========================================= */
.pricing-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .pricing-split { grid-template-columns: repeat(2, 1fr); }
}

.pricing-box {
  background-color: var(--bg-dark);
  padding: 2.5rem;
}

.pricing-box-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.p-arrow {
  color: var(--accent);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.p-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}


/* =========================================
   ZÁVĚREČNÉ CTA / KONTAKT (Dark mode)
   ========================================= */
.final-cta-section {
  background-color: var(--bg-dark); /* Temné pozadí */
  padding: 5rem 0;
  border-top: 3px solid var(--accent); /* Výrazná horní oranžová linka */
  position: relative;
  overflow: hidden;
}

/* Pokud nemáš jinde definovanou třídu coss-grid-bg, tohle vytvoří ten jemný vzor na pozadí (volitelné) */
.final-cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
}

.final-cta-kicker-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.final-cta-line {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--accent);
}

.final-cta-kicker {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.final-cta-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Levá část textová */
.final-cta-text {
  max-width: 520px;
}

.final-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1;
}

.final-cta-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.7;
}

/* Pravá část s akcemi */
.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.final-cta-btn {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background-color: var(--accent);
  padding: 1rem 2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  border-radius: 4px;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.final-cta-btn:hover {
  background-color: #d66b26;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(237, 125, 49, 0.25);
}

.final-cta-email {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s ease;
}

.final-cta-email:hover {
  color: var(--accent);
}

.final-cta-hours {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}

.pagegrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 24px;
  align-items: start;
}
.pagegrid__side {
  position: sticky;
  top: 84px;
  align-self: start;
}