/*
Theme Name: Sol NRG Electrics
Theme URI: https://solnrgelectrics.com
Author: Sol NRG Electrics
Description: Tema WordPress leggero e responsive per il sito vetrina di Sol NRG Electrics.
Version: 1.1.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: sol-nrg-electrics
*/

:root {
  --ink: #0b0d0f;
  --ink-soft: #15191d;
  --steel: #20262b;
  --yellow: #f4c900;
  --yellow-bright: #ffd500;
  --paper: #f5f7f8;
  --muted: #9ca5ad;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1320px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-site), "Manrope", "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding-inline: max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 10, 0.88);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-width: 0;
}

.brand-crop {
  position: relative;
  display: block;
  width: 244px;
  height: 78px;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  max-width: none;
  height: auto;
  transform: translate(-45.75%, -46.05%);
  mix-blend-mode: screen;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 52px);
  padding: 0 28px;
}

.primary-nav a {
  position: relative;
  padding: 14px 0;
  color: #eef1f3;
  font-size: 0.96rem;
  font-weight: 650;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid var(--yellow);
  border-radius: 7px;
  background: var(--yellow);
  box-shadow: 0 0 0 rgba(244, 201, 0, 0);
  color: #080a0b;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--yellow-bright);
  box-shadow: 0 10px 28px rgba(244, 201, 0, 0.16);
  transform: translateY(-2px);
}

.button-small {
  min-height: 50px;
  padding-inline: 25px;
  white-space: nowrap;
}

.header-cta {
  min-height: 48px;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(11, 13, 15, 0.18);
  color: var(--paper);
  backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  background: #050708;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: heroImage 900ms ease-out both;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.99) 0%, rgba(3, 5, 6, 0.96) 28%, rgba(3, 5, 6, 0.62) 50%, rgba(3, 5, 6, 0.08) 76%),
    linear-gradient(0deg, rgba(3, 5, 6, 0.82) 0%, transparent 42%),
    linear-gradient(180deg, rgba(3, 5, 6, 0.56) 0%, transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding-top: clamp(180px, 21vh, 224px);
  padding-bottom: 54px;
  animation: heroCopy 500ms 80ms ease-out both;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-eyebrow span {
  width: 46px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #f7f8f9;
  font-size: clamp(4rem, 5.65vw, 5.15rem);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: #bec5cb;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.hero-proofs {
  display: flex;
  width: fit-content;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-proofs li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: #e4e8eb;
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-proofs li:first-child {
  padding-left: 0;
}

.hero-proofs li:last-child {
  border-right: 0;
}

.hero-proofs span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-size: 0.72rem;
  line-height: 1;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}

.audience-item {
  position: relative;
  min-height: 220px;
  padding: 42px clamp(30px, 4.5vw, 72px);
  border-right: 1px solid var(--line);
}

.audience-item:last-child {
  border-right: 0;
}

.audience-item > span {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 2.4rem;
  font-weight: 800;
}

.audience-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 1.2rem;
}

.audience-item strong::before {
  display: block;
  width: 36px;
  height: 5px;
  margin-bottom: 28px;
  content: "";
  background: var(--yellow);
}

.audience-item p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: 130px max(32px, calc((100vw - var(--max)) / 2));
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.4fr) minmax(420px, 1.35fr) minmax(260px, 0.7fr);
  gap: 52px;
  align-items: start;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  padding-top: 13px;
}

.section-heading h2,
.reasons-intro h2,
.about-content h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.reasons-intro > p,
.contact-copy > p {
  margin: 9px 0 0;
  color: #687077;
  font-size: 1.02rem;
  line-height: 1.72;
}

.services-section {
  background: #f3f4f4;
  color: #15181a;
}

.services-section .eyebrow,
.process-section .eyebrow {
  color: #8a7200;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfd3d5;
  border-left: 1px solid #cfd3d5;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 38px;
  overflow: hidden;
  border-right: 1px solid #cfd3d5;
  border-bottom: 1px solid #cfd3d5;
  background: #f8f9f9;
  transition: color 250ms ease, background 250ms ease;
}

.service-card:hover {
  background: #171b1e;
  color: var(--paper);
}

.service-number {
  color: #8b9297;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.service-card h3 {
  max-width: 270px;
  margin: 78px 0 18px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.service-card p {
  max-width: 330px;
  margin: 0;
  color: #6d7479;
  font-size: 0.97rem;
  line-height: 1.62;
  transition: color 250ms ease;
}

.service-card:hover p {
  color: #aeb6bd;
}

.service-line {
  position: absolute;
  top: 38px;
  right: 38px;
  width: 48px;
  height: 5px;
  background: var(--yellow);
  transition: width 250ms ease;
}

.service-card:hover .service-line {
  width: 78px;
}

.reasons-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 8vw, 140px);
  background: var(--ink);
}

.reasons-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

.reasons-intro h2 {
  max-width: 620px;
}

.reasons-intro > p {
  max-width: 560px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  font-weight: 750;
}

.text-link span {
  color: var(--yellow);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.reasons-list {
  border-top: 1px solid var(--line);
}

.reason {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.reason > span {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.reason h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.reason p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.process-section {
  background: var(--paper);
  color: #141719;
}

.section-heading.compact {
  grid-template-columns: 0.4fr 1.8fr;
  max-width: 1050px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ced3d6;
}

.process-grid li {
  min-height: 275px;
  padding: 38px 48px 20px 0;
  border-right: 1px solid #ced3d6;
}

.process-grid li + li {
  padding-left: 48px;
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  color: #8a7200;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin: 62px 0 16px;
  font-size: 1.35rem;
}

.process-grid p {
  margin: 0;
  color: #697177;
  line-height: 1.65;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 720px;
  overflow: hidden;
  background: var(--steel);
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.about-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: max(32px, calc((100vw - var(--max)) / 2));
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(7rem, 13vw, 13rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.72;
  user-select: none;
}

.about-mark::after {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 16px;
  height: 36%;
  content: "";
  background: var(--yellow);
}

.about-content {
  align-self: center;
  max-width: 860px;
  padding: 110px max(32px, calc((100vw - var(--max)) / 2)) 110px clamp(52px, 6vw, 110px);
}

.about-content h2 {
  max-width: 820px;
}

.about-lead {
  max-width: 800px;
  margin: 40px 0 0;
  color: #d5dade;
  font-size: 1.24rem;
  line-height: 1.68;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.about-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 8vw, 140px);
  padding: 130px max(32px, calc((100vw - var(--max)) / 2));
  background: #e4ba00;
  color: #0b0d0f;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.contact-copy .eyebrow {
  color: #0b0d0f;
}

.contact-copy h2 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.contact-copy > p {
  max-width: 680px;
  color: #3e3a20;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.contact-actions .button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.contact-actions .button:hover {
  background: var(--steel);
  box-shadow: none;
}

.contact-actions .light-outline {
  border-color: rgba(11, 13, 15, 0.5);
  background: transparent;
  color: var(--ink);
  backdrop-filter: none;
}

.contact-card {
  align-self: center;
  padding: 42px;
  border: 1px solid rgba(11, 13, 15, 0.3);
  background: rgba(255, 255, 255, 0.14);
  font-style: normal;
}

.contact-label {
  margin: 0 0 28px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card a {
  display: block;
  padding: 22px 0;
  border-top: 1px solid rgba(11, 13, 15, 0.22);
}

.contact-card a span {
  display: block;
  margin-bottom: 5px;
  color: #51491c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a strong {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  overflow-wrap: anywhere;
}

.contact-card a:hover strong {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-note {
  margin: 26px 0 0;
  color: #51491c;
  font-size: 0.88rem;
}

.site-footer {
  padding: 80px max(32px, calc((100vw - var(--max)) / 2)) 34px;
  background: #07090a;
}

.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 42px;
  align-items: center;
  padding-bottom: 58px;
}

.footer-brand .brand-crop {
  width: 228px;
}

.footer-main > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-main nav a {
  color: #d5dade;
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-main nav a:hover {
  color: var(--yellow);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: flex-start;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #737b82;
  font-size: 0.78rem;
}

.footer-legal p {
  margin: 0;
}

.footer-legal details {
  max-width: 520px;
}

.footer-legal summary {
  cursor: pointer;
  color: #9ca5ad;
}

.footer-legal details p {
  margin-top: 12px;
  line-height: 1.6;
}

.mobile-contact-bar {
  display: none;
}

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

@keyframes heroImage {
  from { opacity: 0.7; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 220px 1fr auto;
    padding-inline: 20px;
  }

  .brand-crop {
    width: 216px;
    height: 72px;
  }

  .brand-logo {
    width: 330px;
  }

  .primary-nav {
    gap: clamp(16px, 2.2vw, 24px);
    padding-inline: 12px;
  }

  .primary-nav a {
    font-size: 0.88rem;
  }

  .button-small {
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .section-heading {
    grid-template-columns: 170px 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
    max-width: 680px;
  }

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

  .about-section {
    grid-template-columns: 0.55fr 1.45fr;
  }
}

@media (max-width: 840px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    position: fixed;
    grid-template-columns: 1fr auto;
    width: 100%;
    height: 80px;
    padding-inline: 18px;
  }

  .brand-crop {
    width: 190px;
    height: 60px;
  }

  .brand-logo {
    width: 300px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 80;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    background: rgba(9, 11, 12, 0.7);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--paper);
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 70;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(86vw, 420px);
    height: 100svh;
    padding: 100px 38px 70px;
    background: rgba(8, 10, 11, 0.98);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(110%);
    transition: transform 240ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.25rem;
  }

  .hero {
    min-height: 880px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 5, 6, 0.78) 62%, rgba(3, 5, 6, 0.34) 100%),
      linear-gradient(0deg, rgba(3, 5, 6, 0.96) 0%, rgba(3, 5, 6, 0.62) 58%, transparent 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-top: 160px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 13vw, 5rem);
  }

  .hero-proofs {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 44px;
    padding-top: 18px;
  }

  .hero-proofs li,
  .hero-proofs li:first-child {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .audience-strip {
    grid-template-columns: 1fr;
  }

  .audience-item {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading,
  .section-heading.compact {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 50px;
  }

  .section-heading .eyebrow {
    padding-top: 0;
  }

  .section-heading > p:last-child {
    grid-column: auto;
    margin-top: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 285px;
  }

  .service-card h3 {
    margin-top: 54px;
  }

  .reasons-section {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .reasons-intro {
    position: static;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .process-grid li + li {
    min-height: 220px;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid #ced3d6;
  }

  .process-grid h3 {
    margin-top: 36px;
  }

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

  .about-mark {
    min-height: 250px;
    padding: 70px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(6rem, 30vw, 11rem);
  }

  .about-mark::after {
    right: auto;
    bottom: -8px;
    left: 0;
    width: 42%;
    height: 16px;
  }

  .about-content {
    padding: 90px 24px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 68px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #0a0c0e;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.24);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    font-weight: 800;
  }

  .mobile-contact-bar a:last-child {
    background: var(--yellow);
    color: var(--ink);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 820px;
  }

  .hero-media img {
    object-position: 69% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 5, 6, 0.82) 100%),
      linear-gradient(0deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 5, 6, 0.58) 67%, rgba(3, 5, 6, 0.4) 100%);
  }

  .hero-eyebrow {
    gap: 10px;
    font-size: 0.67rem;
    letter-spacing: 0.13em;
  }

  .hero-eyebrow span {
    width: 25px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14.5vw, 4.2rem);
  }

  .hero-intro {
    max-width: 94%;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-heading h2,
  .reasons-intro h2,
  .about-content h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .service-card {
    padding: 30px;
  }

  .reason {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .about-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-copy h2 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-main nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress integration */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 840px) {
  .admin-bar .primary-nav {
    top: 32px;
    height: calc(100svh - 32px);
  }
}

.theme-content {
  width: min(100% - 48px, 920px);
  min-height: 70vh;
  margin: 0 auto;
  padding: 180px 0 100px;
}

.theme-content article {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: var(--ink-soft);
}

.theme-content h1,
.theme-content h2,
.theme-content h3 {
  line-height: 1.08;
}

.theme-content h1 {
  margin-top: 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.theme-content p,
.theme-content li {
  color: #c8cfd4;
}

.theme-content a:not(.button) {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .primary-nav {
    top: 46px;
    height: calc(100svh - 46px);
  }
}
