/* ============================================================
   Absolute Solutions — Main Stylesheet
   Values sourced from original X-theme icon.css and x-generated-css
   ============================================================ */

/* ── Lato Bold 700 (self-hosted) ────────────────────────────── */
@font-face {
  font-family: 'Lato';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/lato-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Font Awesome (self-hosted) ─────────────────────────────── */
@font-face {
  font-family: 'FA-Solid';
  font-style: normal; font-weight: 900; font-display: block;
  src: url('/fonts/fa-solid-900.woff2') format('woff2'),
       url('/fonts/fa-solid-900.woff')  format('woff'),
       url('/fonts/fa-solid-900.ttf')   format('truetype');
}
@font-face {
  font-family: 'FA-Regular';
  font-style: normal; font-weight: 400; font-display: block;
  src: url('/fonts/fa-regular-400.woff2') format('woff2'),
       url('/fonts/fa-regular-400.woff')  format('woff'),
       url('/fonts/fa-regular-400.ttf')   format('truetype');
}
@font-face {
  font-family: 'FA-Brands';
  font-style: normal; font-weight: 400; font-display: block;
  src: url('/fonts/fa-brands-400.woff2') format('woff2'),
       url('/fonts/fa-brands-400.woff')  format('woff'),
       url('/fonts/fa-brands-400.ttf')   format('truetype');
}

.fa, .fas, .far, .fab {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
}
.fas { font-family: 'FA-Solid';   font-weight: 900; }
.far { font-family: 'FA-Regular'; }
.fab { font-family: 'FA-Brands';  }

.fa-bars::before            { content: '\f0c9'; }
.fa-facebook-square::before { content: '\f082'; }
.fa-angle-up::before        { content: '\f106'; }
.fa-angle-right::before     { content: '\f105'; }
.fa-home::before            { content: '\f015'; }
.fa-check::before           { content: '\f00c'; }
.fa-check-square::before    { content: '\f14a'; }
.fa-phone::before           { content: '\f095'; }

/* ── Variables ────────────────────────────────────────────── */
/* Values from x-generated-css and icon.css */
:root {
  --accent:     rgb(170, 19, 3);    /* hsl(6, 97%, 34%) */
  --dark:       rgb(35, 31, 32);    /* x-generated-css heading/link color */
  --bg:         #f3f3f3;
  --white:      #ffffff;
  --border:     #ebedee;            /* icon.css pricing-column border color */
  --max-width:  1200px;
}

/* ── Accessibility ────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* x-generated-css: html{font-size:18px} at all breakpoints ≥480px */
html {
  font-size: 18px;
  overflow-x: hidden;
}

/* x-generated-css: body font-family, font-weight:700, color accent, bg */
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif;
  font-weight: 700;
  color: var(--accent);
  background-color: var(--bg);
  line-height: 1.7;
}

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

/* x-generated-css: a{color:rgb(35,31,32)} a:hover{color:rgb(170,19,3)} */
a { color: var(--dark); text-decoration: none; }
a:hover { color: var(--accent); }

/* x-generated-css: h1-h6 font-family Lato, weight 700, letter-spacing -0.035em, color dark */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-top: 0;
}

p { margin-top: 0; }
ul { padding-left: 1.25em; }

/* ── Layout container ─────────────────────────────────────── */
/* x-generated-css: .x-container.width{width:88%} .x-container.max{max-width:1200px} */
.container {
  width: 88%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Topbar ───────────────────────────────────────────────── */
.topbar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .075);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar .tagline { color: var(--accent); }
.topbar .phone { margin-left: auto; }
.topbar .phone a { color: var(--accent); }
.topbar .phone a:hover { color: var(--dark); }
.topbar .social-icon {
  font-size: 18px;
  color: var(--dark);
  margin-left: 8px;
}
.topbar .social-icon:hover { color: var(--accent); }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .075);
  position: relative;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* x-generated-css: .x-brand{margin-top:22px} */
.navbar .logo {
  display: block;
  margin-top: 22px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.navbar .logo img { display: block; }

/* Desktop nav */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

/* x-generated-css: height:20px; padding-top:75px; font-size:13px; Lato Bold; uppercase; letter-spacing:0.085em */
/* x-generated-css: padding-left:10px; padding-right:10px */
.nav-menu li a {
  display: block;
  height: 20px;
  padding: 75px 10px 0;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  line-height: 1;
}

/* cranium icon.css: span gets border+radius creating the pill shape; padding adds spacing */
/* x-generated-css: padding-right overrides to compensate for letter-spacing:0.085em */
/* cranium: x-navbar-static-active rule shifts span up so pill sits within nav height */
.nav-menu li a > span {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 100em;
  padding: 0.875em 1.25em;
  padding-right: calc(1.25em - 0.085em);
  margin-top: calc(-0.875em - 1px);
}

/* x-generated-css: hover and current-menu-item → color #272727 */
.nav-menu li a:hover,
.nav-menu li.current > a {
  color: var(--dark);
}

/* cranium icon.css: hover and current-menu-item → border becomes visible (the "light circle") */
.nav-menu li a:hover > span,
.nav-menu li.current > a > span {
  border-color: rgba(0, 0, 0, 0.075);
}


/* Mobile hamburger button */
/* x-generated-css: .x-btn-navbar{margin-top:20px} .x-btn-navbar{font-size:24px} */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--accent);
  margin-top: 20px;
  padding: 6px;
  line-height: 1;
}

/* ── Breadcrumbs ──────────────────────────────────────────── */
/* icon.css: .x-breadcrumb-wrap — padding:0.85em 0; font-size:11px; letter-spacing:1px; uppercase; bg:#fff */
/* icon.css: .x-breadcrumbs{float:none;width:100%;text-align:center} */
.breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .075);
  padding: 0.85em 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs a:hover { color: var(--dark); }
.breadcrumbs .sep { color: var(--dark); font-size: 11px; }
.breadcrumbs .current { color: var(--dark); }

/* ── Page content ─────────────────────────────────────────── */
/* icon.css: .site/.x-site{background-color:#fff} — white page area over grey body */
main { padding: 0; background-color: var(--white); }

.page-content {
  width: 88%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 45px 0 60px;
}
.page-header {
  width: 88%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 45px 0 20px;
}

/* All page h1s use class .entry-title (matches original WordPress class) */
/* icon.css: position:relative; font-size:314%; line-height:1; text-align:center; word-wrap:break-word */
/* .page-header/.page-content are 88% wide; .container inside is 88% of that = ~77% viewport (matches original double-.x-container.max.width) */
.entry-title {
  position: relative;
  margin: 0 auto 0.65em;
  font-size: 3.14rem;
  line-height: 1;
  text-align: center;
  word-wrap: break-word;
}

/* ── Buttons ──────────────────────────────────────────────── */
/* x-generated-css: .x-btn color, border, bg, text-shadow, box-shadow, radius */
.btn {
  display: inline-block;
  padding: .55em 1.1em;
  font-family: 'Lato', Arial, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--accent);
  border: 2px solid #ac1100;
  border-radius: 0.25em;
  box-shadow: 0 .25em 0 0 rgb(66, 54, 54), 0 4px 9px rgba(0, 0, 0, .75);
  text-shadow: 0 .075em .075em rgba(0, 0, 0, .5);
  margin-bottom: .25em;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .15s;
}
/* x-generated-css: hover border-color:#600900; box-shadow changes */
.btn:hover {
  color: var(--white);
  border-color: #600900;
  box-shadow: 0 .25em 0 0 rgb(11, 10, 10), 0 4px 9px rgba(0, 0, 0, .75);
}
.btn-lg { font-size: 1rem;    padding: .65em 1.4em; }
.btn-xl { font-size: 1.25rem; padding: .75em 1.8em; }
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Home page ────────────────────────────────────────────── */

/* Home h1 — larger and centered vs inner page h1 */
.home-title {
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
  margin: .75em auto .35em;
  padding: 0 20px;
  word-wrap: break-word;
}

/* Home tagline — h5 styled as accent subtitle */
/* Archive: h5.h-custom-headline.cs-ta-center.accent with color hsl(6,97%,34%) and margin-top:.5em */
.home-tagline {
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  margin: .35em 0 2em;
}

/* ── Pricing table (home service cards) ───────────────────── */
/* icon.css: .x-pricing-column — originally float layout with negative margins */
/* Replaced with CSS grid; same visual output */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 10px;
}

/* icon.css: .x-pricing-column{background-color:#fcfcfc; text-align:center} */
.pricing-column {
  background-color: #fcfcfc;
  text-align: center;
}

/* icon.css: .x-pricing-column h2{border:1px solid #ebedee; padding:20px 20px 25px; font-size:32px} */
.pricing-column h2 {
  border: 1px solid var(--border);
  border-right: none;
  padding: 20px 20px 25px;
  letter-spacing: 0;
  line-height: 1.1;
  font-size: 32px;
  margin: 0;
  color: var(--dark);
  text-transform: none;
}
.pricing-column:last-child h2 {
  border-right: 1px solid var(--border);
}

/* icon.css: .x-pricing-column.featured{position:relative; margin-top:-20px; background-color:#fff} */
/* x-generated-css: .x-pricing-column.featured h2{background-color:rgb(35,31,32)} */
.pricing-column.featured {
  position: relative;
  margin-top: -20px;
  background-color: #fff;
}
.pricing-column.featured h2 {
  border: 0;
  padding-bottom: 28px;
  color: #fff;
  background-color: var(--dark);
}

/* icon.css: .x-pricing-column-info{border:1px solid #ebedee; border-top:0; padding:10px 0 32px} */
/* icon.css: .x-pricing-column.featured .x-pricing-column-info{padding-bottom:50px} */
.pricing-column-info {
  border: 1px solid var(--border);
  border-top: 0;
  border-right: none;
  padding: 10px 0 32px;
}
.pricing-column:last-child .pricing-column-info {
  border-right: 1px solid var(--border);
}
.pricing-column.featured .pricing-column-info {
  border-right: 1px solid var(--border);
  padding-bottom: 50px;
}

/* icon.css: .x-pricing-column-info span{font-size:12px; letter-spacing:2px; uppercase; color:#97a4b0} */
.interval {
  display: block;
  margin-top: -1px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #97a4b0;
  padding: 10px 20px;
  line-height: 1.4;
}
.pricing-column img {
  display: block;
  margin: 12px auto;
  max-height: 220px;
  width: auto;
}

/* icon.css: .x-pricing-column-info ul>li{padding:10px 40px 11px; font-size:14px; uppercase} */
.ul-icons {
  list-style: none;
  margin: 15px 0 25px;
  padding: 0;
}
.ul-icons li {
  padding: 10px 40px 11px;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  position: relative;
}
/* icon.css: first-child border-top; last-child border-bottom */
.ul-icons li:first-child { border-top: 1px solid var(--border); }
.ul-icons li:last-child  { border-bottom: 1px solid var(--border); }

/* icon.css: .x-pricing-column-info ul>li [class*="x-icon-"]{margin-left:0.85em} */
.ul-icons li i {
  margin-left: 0.85em;
  margin-right: 0.45em;
  color: var(--accent);
  font-size: 0.75rem;
}

/* icon.css: .x-pricing-column-info .x-btn{margin-left:20px; margin-right:20px} */
.pricing-column .btn {
  margin-left: 20px;
  margin-right: 20px;
}

/* ── Home CTA phone button ────────────────────────────────── */
/* icon.css: x-section-3 padding:45px 0; text-align:center */
.home-cta {
  text-align: center;
  padding: 45px 0;
}

/* icon.css: .x-btn-circle-wrap — ::before and ::after are PNG arc images in normal flow */
/* [top arc PNG] then [button] then [bottom arc PNG] — NOT an absolutely-positioned ellipse */
/* icon.css: .x-btn-circle-wrap.x-btn-x-large{margin:0 0 21px; padding:0} */
/* icon.css: ::before — top arc; ::after — bottom arc */
.cta-ring-wrap {
  display: inline-block;
  position: relative;
  margin: 0 0 21px;
  padding: 0;
}
.cta-ring-wrap::before {
  content: "";
  position: relative;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  top: 2px;
  width: 172px;
  height: 43px;
  background-image: url('/images/cta-ring-top.png');
  background-size: 172px 43px;
}
.cta-ring-wrap::after {
  content: "";
  position: relative;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  bottom: 2px;
  width: 190px;
  height: 43px;
  background-image: url('/images/cta-ring-bottom.png');
  background-size: 190px 43px;
}
/* icon.css: .x-btn-circle-wrap .x-btn{position:relative; z-index:2} */
.cta-ring-wrap .btn {
  position: relative;
  z-index: 2;
}

/* ── Feature list (Radio page) ────────────────────────────── */
.feature-list { list-style: none; padding: 0; margin: 0 0 20px; }

/* icon.css: .x-feature-box.left-text{display:flex} */
/* icon.css: .x-feature-box{margin:0 auto 1.313em} (mb between items) */
.feature-box {
  display: flex;
  align-items: flex-start;
  margin: 0 auto 1.313em;
}

/* icon.css: .x-feature-box-graphic i.circle{border-radius:100em} */
/* icon.css: .x-feature-box-graphic i{width:1em; height:1em} at font-size:60px = 60×60px */
/* icon.css: .x-feature-box-graphic i:before{font-size:0.395em} at 60px = 23.7px glyph */
/* Archive inline style: background-color:hsl(6,97%,34%); color:#fff; margin-right:20px */
.feature-box-graphic {
  width: 60px;
  height: 60px;
  border-radius: 100em;
  background-color: hsl(6, 97%, 34%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23.7px;
  flex-shrink: 0;
  margin-right: 20px;
}

/* icon.css: .x-feature-box.left-text .x-feature-box-content{flex:1 0 0%} */
.feature-box-content {
  flex: 1 0 0%;
  display: flex;
  align-items: center;
  min-height: 60px;
}

/* icon.css: .x-feature-box-title{margin:0; font-size:1.5em; line-height:1.2} */
.feature-box-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Radio model lists ────────────────────────────────────── */
/* Archive: x-section-2 background-color:hsl(0,0%,88%); inside .x-container.max.width (88%/1200px) */
.model-section {
  background: hsl(0, 0%, 88%);
  padding: 45px 0;
  margin: 20px 0 0;
}
.model-section h5 {
  margin-bottom: 6px;
}
.model-section p {
  font-size: .85rem;
  margin-bottom: 20px;
}

/* icon.css: .x-feature-box center-text (square graphic, image) for service badge */
/* Archive: center-text top-text with img.square, no border-radius */
.service-badge {
  max-width: 300px;
  display: block;
  margin: 20px auto 0;
}

/* ── Emergency Lighting ───────────────────────────────────── */
.page-intro {
  font-size: .95rem;
  margin-bottom: 24px;
}

/* icon.css: .x-column.x-1-3 side by side for brand logos */
.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0;
}
.brand-logos img {
  max-height: 100px;
  width: auto;
}

/* icon.css: .x-feature-box center-text top-text (stacked, not flex) for MECP box */
/* icon.css: .x-feature-box-graphic{display:inline-block; margin:0 0 10px} */
/* icon.css: .x-feature-box-title{margin:0; font-size:1.5em; line-height:1.2} */
.feature-box-center {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 1.313em;
}
.feature-box-center img {
  display: inline-block;
  margin: 0 auto 10px;
  max-width: 180px;
}
.feature-box-center h4 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
}
.feature-box-center p {
  font-size: .9rem;
  margin-top: 8px;
}

.full-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
}

/* ── About page ───────────────────────────────────────────── */
/* Archive: x-column x-2-3 (left) + x-1-3 (right) */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-grid p {
  font-size: .95rem;
}
.about-img     { float: left; margin: 0 20px 12px 0; }
.about-divider { margin: 16px 0 20px; }

.about-thumbs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.about-thumbs figure { margin: 0; }
.about-thumbs figcaption {
  font-size: .8rem;
  font-weight: 400;
  color: var(--dark);
  margin-top: 4px;
}
.about-thumbs img {
  margin: 0 auto;
  border: 1px solid var(--border);
}

/* ── Contact page ─────────────────────────────────────────── */
/* Archive: x-section-1 background-color:hsl(345,6%,13%); padding:60px 0px 50px */
/* Archive: section is inside .x-container.max.width (88%/1200px), so it's not full-viewport-width */
.contact-section {
  background: hsl(345, 6%, 13%);
  padding: 60px 0 50px;
  width: 88%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Archive: x-column x-1-3 (info) + x-2-3 (form) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  color: var(--white);
  font-size: .9rem;
  font-weight: 400;
  text-align: center;
}
.contact-info img { margin: 0 auto 16px; }
.contact-info address { font-style: normal; line-height: 1.8; }
.contact-info a { color: var(--white); text-decoration: underline; }

@keyframes field-nudge {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.field-nudge { animation: field-nudge 0.4s ease; }

/* Contact form: hidden until main.js adds .js-active to <html> */
.contact-form { display: none; }
.js-active .contact-form { display: block; }

.noscript-notice {
  color: var(--white);
  padding: 16px 0;
  font-size: .95rem;
  line-height: 1.6;
}
.noscript-notice a { color: var(--accent); text-decoration: underline; }

/* Contact form */
.contact-form .optional-label {
  font-weight: 400;
  font-size: .8em;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.65;
}
.contact-form label {
  display: block;
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  font-family: 'Lato', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: .5em .75em;
  font-family: inherit;
  font-size: .9rem;
  border: 1px solid #666;
  background: #fff;
  color: var(--dark);
  border-radius: 2px;
  margin-bottom: 16px;
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(170, 19, 3, .2);
}

.form-message {
  padding: 10px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-size: .9rem;
  font-weight: 400;
}
.form-message.success { background: #d4edda; color: #155724; }
.form-message.error   { background: #f8d7da; color: #721c24; }

/* NOT display:none — some bots skip hidden fields */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, .075);
  padding: 4% 0;
  text-align: center;
}
footer .footer-social { margin: 10px 0; }
footer .footer-social a {
  font-size: 21px;
  margin: 0 1.25%;
  color: var(--dark);
}
footer .footer-social a:hover { color: var(--accent); }

footer .footer-nav {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .footer-nav li a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  padding: 4px 10px;
}
footer .footer-nav li a:hover { color: var(--accent); }

footer .footer-copyright {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--dark);
  margin: 10px 0;
}
footer .footer-copyright a { color: var(--accent); }
footer .footer-copyright a:hover { color: var(--dark); }

/* ── Back to top ──────────────────────────────────────────── */
/* icon.css: .x-scroll-top{position:fixed; bottom:10px; width:35px; height:35px; */
/*           margin-bottom:-75px; border:1px solid #000; font-size:25px; line-height:28px} */
/* icon.css: .x-scroll-top.in{margin-bottom:0; opacity:0.375} */
/* icon.css: .x-scroll-top.in:hover{opacity:1} */
/* icon.css: .x-scroll-top.right{right:10px} */
.back-to-top {
  position: fixed;
  z-index: 1031;
  bottom: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  margin-bottom: -75px;
  border: 1px solid #000;
  background: transparent;
  font-size: 25px;
  line-height: 28px;
  text-align: center;
  color: #000;
  cursor: pointer;
  transition: margin-bottom 0.6s ease, border-color 0.3s ease,
              opacity 0.3s ease, color 0.3s ease;
}
.back-to-top.visible {
  margin-bottom: 0;
  opacity: 0.375;
}
.back-to-top.visible:hover { opacity: 1; }

/* ── Responsive ───────────────────────────────────────────── */
/* icon.css: @media (max-width: 979px){.entry-title{font-size:257%}} */
@media (max-width: 979px) {
  .entry-title { font-size: 2.57rem; }
}

/* icon.css: @media (max-width: 767px){.entry-title{font-size:200%}} */
@media (max-width: 767px) {
  .entry-title { font-size: 2rem; }
}

@media (max-width: 978px) {

  /* Mobile nav toggle */
  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .075);
    padding: 8px 0;
  }
  .nav-menu.open { display: flex; }

  .nav-menu li a {
    height: auto;
    padding: 10px 0;
  }
  /* Reset pill border on mobile — mobile nav uses simple list style */
  .nav-menu li a > span {
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
  }
  /* No active chevron on mobile nav */
  .nav-menu li.current > a::after { display: none; }

  .navbar .container { flex-wrap: wrap; }

  /* Hide CTA ring arcs on mobile — they clip at narrow widths */
  .cta-ring-wrap::before,
  .cta-ring-wrap::after { display: none; }

  /* Home */
  .home-title    { font-size: 1.8rem; }
  .pricing-table { grid-template-columns: 1fr; }
  .pricing-column { margin-top: 0 !important; }
  .pricing-column h2,
  .pricing-column-info,
  .pricing-column:last-child h2,
  .pricing-column:last-child .pricing-column-info { border-right: 1px solid var(--border); }
  .pricing-column.featured h2 { border-right: 0; }

  /* Radio */
  .two-col { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Misc */
  .brand-logos img { max-height: 70px; }
}

@media (max-width: 479px) {
  /* x-generated-css: font-size:18px at ≥480px; below that use 16px */
  html { font-size: 16px; }
  /* icon.css: @media (max-width: 480px){.entry-title{font-size:156%}} */
  .entry-title { font-size: 1.56rem; }
}
