/* Atalan Teknik — Turgutlu Kombi Servisi */
:root {
  --ink: #12141a;
  --ink-soft: #2a2f3a;
  --muted: #5c6575;
  --line: #d8dde6;
  --paper: #f3f5f8;
  --paper-deep: #e8ecf2;
  --ember: #e85a1b;
  --ember-deep: #c44512;
  --ember-glow: rgba(232, 90, 27, 0.18);
  --steel: #3d4f66;
  --white: #ffffff;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(232, 90, 27, 0.07), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(61, 79, 102, 0.08), transparent 50%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ember-deep);
}

::selection {
  background: var(--ember-glow);
  color: var(--ink);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 8px 30px rgba(18, 20, 26, 0.15);
}

.skip:focus {
  left: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 245, 248, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 221, 230, 0.85);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-decoration: none;
  line-height: 1.1;
}

.brand:hover {
  color: var(--ink);
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand__tag {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav__links a:hover {
  color: var(--ember);
}

.nav__cta {
  display: none;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--white);
  cursor: pointer;
  color: var(--ink);
}

.nav__toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav__toggle[aria-expanded="false"] .icon-close,
.nav__toggle:not([aria-expanded="true"]) .icon-close {
  display: none;
}

.nav__toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 1rem 0 1.25rem;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-panel a {
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--paper-deep);
  font-weight: 600;
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

@media (min-width: 960px) {
  .nav__links,
  .nav__cta {
    display: flex;
  }

  .nav__toggle {
    display: none;
  }

  .mobile-panel {
    display: none !important;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn--ember {
  background: var(--ember);
  color: var(--white);
}

.btn--ember:hover {
  background: var(--ember-deep);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
}

.btn--ink:hover {
  background: var(--ink-soft);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

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

.btn--wa {
  background: #0f8a72;
  color: var(--white);
}

.btn--wa:hover {
  background: #0c7260;
  color: var(--white);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.62) 0%, rgba(8, 10, 16, 0.78) 42%, rgba(8, 10, 16, 0.94) 100%),
    linear-gradient(105deg, rgba(8, 10, 16, 0.55) 0%, transparent 55%),
    linear-gradient(120deg, rgba(232, 90, 27, 0.22), transparent 45%),
    url("/assets/hero.jpg") center / cover no-repeat;
  background-color: #1a1f2b;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 14px,
      rgba(255, 255, 255, 0.015) 14px,
      rgba(255, 255, 255, 0.015) 15px
    );
  opacity: 0.9;
}

.hero__glow {
  position: absolute;
  width: 42vw;
  max-width: 520px;
  aspect-ratio: 1;
  right: -8%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 90, 27, 0.55), transparent 68%);
  filter: blur(40px);
  animation: pulse-glow 7s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.hero__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 6.5rem 0 4.5rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  max-width: 14ch;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  animation: rise 0.9s var(--ease) both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.85rem;
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.96);
  animation: rise 0.9s var(--ease) 0.08s both;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  animation: rise 0.9s var(--ease) 0.16s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.24s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.65rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.section__text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Services — editorial rows, not cards */
.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.service-item:hover {
  color: inherit;
  padding-left: 0.35rem;
}

.service-item__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.service-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ember);
  font-size: 0.95rem;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.service-item__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--steel);
}

@media (min-width: 768px) {
  .service-item {
    grid-template-columns: 4rem 1fr auto;
    align-items: start;
    gap: 1.5rem;
  }

  .service-item__top {
    display: contents;
  }

  .service-item p {
    grid-column: 2;
  }

  .service-item__link {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    white-space: nowrap;
  }
}

/* Brands */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

.brand-strip span::after,
.brand-strip a::after {
  content: "·";
  margin-left: 1.5rem;
  color: var(--line);
  font-weight: 400;
}

.brand-strip span:last-child::after,
.brand-strip a:last-child::after {
  content: none;
}

.brand-strip > *:last-child::after {
  content: none;
}

/* Process */
.process {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.process__step {
  position: relative;
  padding-top: 0.25rem;
}

.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--ember);
  margin-bottom: 0.65rem;
  line-height: 1;
}

.process__step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.process__step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Why */
.why {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .why {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
}

.why__points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.why__points li {
  padding-left: 1.1rem;
  border-left: 2px solid var(--ember);
}

.why__points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.why__points span {
  color: var(--muted);
  font-size: 0.95rem;
}

.why__panel {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.why__panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% 20%;
  height: 70%;
  background: radial-gradient(circle, rgba(232, 90, 27, 0.45), transparent 65%);
  pointer-events: none;
}

.why__panel h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 0.6rem;
}

.why__panel p {
  position: relative;
  margin: 0;
  max-width: 28ch;
}

.why__panel a {
  position: relative;
  margin-top: 1.25rem;
  color: #ffc4a0;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.why__panel a:hover {
  color: var(--white);
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 44rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0 1.15rem;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ember);
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
  border-top: 1px solid var(--paper-deep);
  padding-top: 0.85rem;
}

/* Contact / map */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.address-block {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 1.25rem;
  overflow: hidden;
  display: grid;
}

@media (min-width: 700px) {
  .address-block {
    grid-template-columns: 1fr 1fr;
  }
}

.address-block__copy {
  padding: 1.75rem;
}

.address-block__copy h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}

.address-block address {
  font-style: normal;
  margin-bottom: 1rem;
}

.address-block iframe {
  width: 100%;
  min-height: 260px;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list a,
.contact-list div {
  display: block;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.contact-list span {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.form input,
.form textarea {
  font: inherit;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--white);
  color: var(--ink);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--ember-glow);
  border-color: var(--ember);
}

/* Footer */
.site-footer {
  background: #0c0e14;
  color: rgba(255, 255, 255, 0.55);
  padding: 3rem 0 2rem;
  border-top: 1px solid #1c2230;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.footer__nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__meta {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 40rem;
}

.footer__meta a {
  color: rgba(255, 255, 255, 0.8);
}

.footer__copy {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #1c2230;
  font-size: 0.8rem;
}

/* Floating WhatsApp — desktop only (mobile uses sticky bar) */
.fab-wa {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: #0f8a72;
  color: var(--white);
  display: none;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 138, 114, 0.35);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.fab-wa:hover {
  transform: scale(1.06);
  background: #0c7260;
  color: var(--white);
}

.fab-wa svg {
  width: 1.55rem;
  height: 1.55rem;
}

@media (min-width: 769px) {
  .fab-wa {
    display: grid;
  }
}

/* Mobile sticky CTA bar */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  gap: 0;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: var(--ink);
  box-shadow: 0 -8px 28px rgba(18, 20, 26, 0.28);
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--white);
}

.sticky-cta__wa {
  background: #128c7e;
}

.sticky-cta__wa:hover {
  background: #0e7a6f;
  color: var(--white);
}

.sticky-cta__call {
  background: var(--ember);
}

.sticky-cta__call:hover {
  background: var(--ember-deep);
  color: var(--white);
}

.sticky-cta svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: calc(3.35rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Reveal on scroll — only when JS is available */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__brand,
  .hero__title,
  .hero__lead,
  .hero__actions {
    animation: none;
  }
}

/* Inner pages */
.page-hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 90, 27, 0.06), transparent 70%),
    var(--white);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  max-width: 16ch;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.08rem;
}

.prose {
  max-width: 42rem;
}

.prose--wide {
  max-width: 52rem;
}

.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 2.25rem 0 0.75rem;
  color: var(--ink);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink);
}

.prose p,
.prose ul,
.prose ol {
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.15rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose a {
  color: var(--ember-deep);
  font-weight: 600;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.page-hero__meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.page-hero__meta strong {
  color: var(--ink-soft);
}

/* Error / fault code table */
.code-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
}

.code-table th,
.code-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.code-table th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.code-table tr:last-child td {
  border-bottom: 0;
}

.code-table code {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ember);
  font-size: 1rem;
}

.code-table td:first-child {
  white-space: nowrap;
  width: 5.5rem;
}

@media (max-width: 640px) {
  .code-table,
  .code-table thead,
  .code-table tbody,
  .code-table th,
  .code-table td,
  .code-table tr {
    display: block;
  }

  .code-table thead {
    display: none;
  }

  .code-table tr {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .code-table tr:last-child {
    border-bottom: 0;
  }

  .code-table td {
    border: 0;
    padding: 0.2rem 0;
    width: auto;
    white-space: normal;
  }

  .code-table td:first-child {
    margin-bottom: 0.25rem;
  }
}

.cta-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 1.15rem;
}

.cta-panel h2 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.cta-panel p {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.brand-strip a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
}

.brand-strip a:hover {
  color: var(--ember);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.related-links a {
  font-weight: 600;
  text-decoration: none;
  color: var(--steel);
}

.related-links a:hover {
  color: var(--ember);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--steel);
}

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

.breadcrumb span[aria-hidden="true"] {
  color: var(--line);
}

/* Icons inline */
.icon {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex-shrink: 0;
}
