/* ==========================================================================
   Brandon Grinnell Construction - Template Stylesheet
   Professional business website CSS for trades/service companies.
   Colors are driven by CSS custom properties set in the HTML <head>.
   Font: Inter (Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text, #333333);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--secondary, #1a1a2e);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   1. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--secondary, #1a1a2e);
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666666;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 500;
}

.section-intro {
  font-size: 1.0625rem;
  color: #555555;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   2. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* -- Header top bar -- */
.header-top {
  background: var(--secondary, #1a1a2e);
  color: #ffffff;
  font-size: 0.875rem;
  padding: 8px 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top a {
  color: #ffffff;
  font-weight: 500;
}

.header-top a:hover {
  color: var(--primary);
}

.header-top-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.header-top-tagline {
  opacity: 0.85;
  font-size: 0.8125rem;
}

/* -- Header nav bar -- */
.header-nav {
  background: #ffffff;
  padding: 0;
}

.header-nav .container {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* -- Logo -- */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 16px 0 12px;
}

.logo-img {
  height: 96px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary, #1a1a2e);
  line-height: 1.2;
  white-space: nowrap;
}

/* -- Nav links -- */
.nav-links {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--secondary, #1a1a2e);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* -- Nav CTA button -- */
.nav-cta {
  color: var(--secondary, #1a1a2e) !important;
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: var(--primary) !important;
}

/* -- Mobile hamburger -- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary, #1a1a2e);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   3. HERO
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(
    135deg,
    var(--secondary, #1a1a2e) 0%,
    #0d0d1a 60%,
    var(--primary-dark, #8a0808) 100%
  );
  color: #ffffff;
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -- Page hero (inner pages) -- */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--secondary, #1a1a2e) 0%,
    #0d0d1a 60%,
    var(--primary-dark, #8a0808) 100%
  );
  color: #ffffff;
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* -- Page hero small (legal pages) -- */
.page-hero-sm {
  background: linear-gradient(
    135deg,
    var(--secondary, #1a1a2e) 0%,
    #0d0d1a 100%
  );
  color: #ffffff;
  padding: 48px 0 40px;
  text-align: center;
}

.page-hero-sm h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.page-hero-sm p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--secondary, #1a1a2e);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--secondary, #1a1a2e);
  border-color: #ffffff;
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. SERVICE CARDS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb, 184, 10, 10), 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary, #1a1a2e);
}

.service-card p {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.65;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.service-card-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* -- Services list (full services page) -- */
.services-list {
  max-width: 900px;
  margin: 0 auto;
}

.service-row {
  padding: 48px 0;
  border-bottom: 1px solid #e5e5e5;
}

.service-row:first-child {
  padding-top: 0;
}

.service-row:last-child {
  border-bottom: none;
}

.service-row h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary, #1a1a2e);
  margin-bottom: 16px;
}

.service-row p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 24px;
}

/* -- Smaller service grid variant (area pages) -- */
.services-grid-sm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-sm {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card-sm h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary, #1a1a2e);
}

.service-card-sm p {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   6. SERVICE DETAIL (individual service pages)
   -------------------------------------------------------------------------- */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.service-detail-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--secondary, #1a1a2e);
}

.service-detail-content h2:first-child {
  margin-top: 0;
}

.service-detail-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--secondary, #1a1a2e);
}

.service-detail-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #555555;
  margin-bottom: 16px;
}

.service-detail-content ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.service-detail-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height: 1.65;
  color: #555555;
}

.service-detail-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.service-detail-sidebar {
  position: sticky;
  top: 100px;
}

/* --------------------------------------------------------------------------
   7. TRUST SECTION
   -------------------------------------------------------------------------- */
.trust-section {
  background: var(--light-bg, #f8f8f8);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item {
  padding: 24px 16px;
}

.trust-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 0.9375rem;
  color: #666666;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   8. AREAS
   -------------------------------------------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 16px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary, #1a1a2e);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: var(--primary);
}

/* -- Detailed area grid (service-areas page) -- */
.areas-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.area-detail-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.area-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.area-detail-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary, #1a1a2e);
}

.area-detail-card h3 a {
  color: inherit;
  text-decoration: none;
}

.area-detail-card h3 a:hover {
  color: var(--primary);
}

.area-detail-card p {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* -- Area detail layout (individual area page) -- */
.area-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* -- Cities grid -- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cities-grid a {
  display: block;
  padding: 10px 16px;
  background: var(--light-bg, #f8f8f8);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--secondary, #1a1a2e);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cities-grid a:hover {
  background: var(--primary);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   9. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background: var(--secondary, #1a1a2e);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   10. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--secondary, #1a1a2e);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary, #1a1a2e);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text, #333333);
  background: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 184, 10, 10), 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: none;
}

.form-status-success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status-error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* -- Contact info sidebar -- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999999;
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary, #1a1a2e);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   11. ABOUT
   -------------------------------------------------------------------------- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--secondary, #1a1a2e);
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #555555;
  margin-bottom: 16px;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.about-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary, #1a1a2e);
}

.about-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #666666;
}

.about-card ul {
  padding: 0;
  margin: 0;
}

.about-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: #555555;
}

.about-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   12. LEGAL
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}

.legal-content h2 {
  font-size: 1.625rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--secondary, #1a1a2e);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-bg, #f8f8f8);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--secondary, #1a1a2e);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.legal-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--secondary, #1a1a2e);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* -- Footer about column (wider first column) -- */
.footer-about {
  padding-right: 24px;
}

.footer-about p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone:hover {
  color: var(--primary);
}

/* -- Footer bottom bar -- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   14. LISTS
   -------------------------------------------------------------------------- */

/* -- Feature list (custom check marks) -- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555555;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.feature-list-lg li {
  font-size: 1.0625rem;
  padding-left: 32px;
  margin-bottom: 14px;
}

.feature-list-lg li::before {
  font-size: 1.125rem;
}

/* -- Check list -- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555555;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10 3L4.5 8.5 2 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* -- Inline list -- */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.inline-list li a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--light-bg, #f8f8f8);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary, #1a1a2e);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.inline-list li a:hover {
  background: var(--primary);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   15. SIDEBAR CARDS
   -------------------------------------------------------------------------- */
.sidebar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary, #1a1a2e);
}

.sidebar-card p {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.65;
}

.cta-card {
  background: var(--light-bg, #f8f8f8);
  border-radius: 12px;
  padding: 32px 24px;
  border: 2px solid rgba(var(--primary-rgb, 184, 10, 10), 0.12);
  text-align: center;
}

.cta-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary, #1a1a2e);
}

.cta-card p {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 20px;
}

.cta-card .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   16. PRODUCTS
   -------------------------------------------------------------------------- */

/* -- Breadcrumb -- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.9);
}

/* -- Product category grid (catalog page) -- */
.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-category-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.product-category-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-bg, #f8f8f8);
}

.product-category-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s ease;
}

.product-category-card:hover .product-category-img img {
  transform: scale(1.05);
}

.product-category-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category-info h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary, #1a1a2e);
  margin-bottom: 8px;
}

.product-category-info p {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
}

.product-category-count {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* -- Product grid (category page + related products) -- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-grid-sm {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-bg, #f8f8f8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-info h2,
.product-card-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary, #1a1a2e);
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-card-spec {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card-price {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--secondary, #1a1a2e);
}

.product-card-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

/* -- Product category nav (bottom of category page) -- */
.product-category-nav {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #e5e5e5;
}

.product-category-nav h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary, #1a1a2e);
  margin-bottom: 16px;
}

.product-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-category-links a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--light-bg, #f8f8f8);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--secondary, #1a1a2e);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.product-category-links a:hover {
  background: var(--primary);
  color: #ffffff;
}

/* -- Product detail page -- */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-image {
  position: sticky;
  top: 100px;
}

.product-hero-img {
  width: 100%;
  border-radius: 12px;
  background: var(--light-bg, #f8f8f8);
  padding: 24px;
  object-fit: contain;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}

.product-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  background: var(--light-bg, #f8f8f8);
  padding: 4px;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.product-thumb:hover {
  border-color: var(--primary);
}

.product-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.product-detail-info h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary, #1a1a2e);
  margin-bottom: 8px;
  line-height: 1.25;
}

.product-model {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #999999;
  margin-bottom: 16px;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.product-compare-price {
  font-size: 1.125rem;
  color: #999999;
  text-decoration: line-through;
}

.product-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 24px;
}

.product-cta-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-highlight {
  text-align: center;
}

.product-highlight strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary, #1a1a2e);
  margin-bottom: 2px;
}

.product-highlight span {
  font-size: 0.75rem;
  color: #999999;
}

/* -- Product specs table -- */
.product-specs-layout {
  max-width: 800px;
  margin: 0 auto;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs-table tr {
  border-bottom: 1px solid #e5e5e5;
}

.product-specs-table tr:last-child {
  border-bottom: none;
}

.product-specs-table th,
.product-specs-table td {
  padding: 14px 16px;
  font-size: 0.9375rem;
  text-align: left;
  vertical-align: top;
}

.product-specs-table th {
  font-weight: 600;
  color: var(--secondary, #1a1a2e);
  width: 40%;
  background: rgba(0, 0, 0, 0.02);
}

.product-specs-table td {
  color: #555555;
}

/* -- Product features grid -- */
.product-features-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #555555;
  padding: 8px 0;
}

.product-feature-check {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  line-height: 1.5;
}

/* -- Product includes grid -- */
.product-includes-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-include-item {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--secondary, #1a1a2e);
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* -- Policy cards (catalog page) -- */
.product-policies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.policy-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.policy-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary, #1a1a2e);
  margin-bottom: 10px;
}

.policy-card p {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   17. UTILITY
   -------------------------------------------------------------------------- */
.lead {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: #555555;
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE - Tablet (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  /* Service grids: 2 columns */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  /* Trust grid: 2x2 */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Areas grid: 3 columns */
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Areas detail grid: still 2 columns */
  .areas-detail-grid {
    gap: 24px;
  }

  /* Two-column layouts: stack */
  .service-detail-layout,
  .area-detail-layout,
  .about-content,
  .contact-grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-detail-image {
    position: static;
  }

  /* Product grids: 2 columns */
  .product-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .product-policies {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .service-detail-sidebar,
  .about-sidebar {
    position: static;
  }

  /* Footer: 2x2 grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  /* Cities grid: 2 columns */
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE - Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-intro {
    font-size: 0.9375rem;
    margin-bottom: 36px;
  }

  /* -- Header: mobile hamburger -- */
  .header-top {
    font-size: 0.8125rem;
    padding: 6px 0;
  }

  .header-top-tagline {
    display: none;
  }

  .header-nav .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .nav-logo {
    padding: 8px 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mobile-menu-btn.active + .nav-links,
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--light-bg, #f8f8f8);
  }

  .nav-cta {
    text-align: left;
  }

  /* -- Hero mobile -- */
  .hero {
    padding: 80px 0 64px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .page-hero {
    padding: 48px 0 40px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero-sm {
    padding: 36px 0 28px;
  }

  .page-hero-sm h1 {
    font-size: 1.625rem;
  }

  /* -- Grids: single column -- */
  .product-category-grid,
  .product-grid,
  .product-grid-sm {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-policies {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-features-grid {
    grid-template-columns: 1fr;
  }

  .product-includes-grid {
    grid-template-columns: 1fr;
  }

  .product-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-detail-info h1 {
    font-size: 1.375rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

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

  .services-grid-sm {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-number {
    font-size: 2.25rem;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* -- CTA section mobile -- */
  .cta-section {
    padding: 56px 0;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* -- Contact mobile -- */
  .contact-form {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* -- Footer mobile -- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 16px 0;
  }

  /* -- Legal mobile -- */
  .legal-content {
    padding: 32px 0;
  }

  .legal-content h2 {
    font-size: 1.375rem;
    margin: 32px 0 12px;
  }

  .legal-content h3 {
    font-size: 1.125rem;
  }

  /* -- Buttons mobile -- */
  .btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }

  /* -- About mobile -- */
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  /* -- Lead text mobile -- */
  .lead {
    font-size: 1.0625rem;
  }
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE - Small mobile (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .page-hero h1 {
    font-size: 1.625rem;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-number {
    font-size: 2rem;
  }

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

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

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    height: 40px;
  }

  .footer-phone {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   20. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .hero-actions,
  .mobile-menu-btn,
  .nav-cta {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .hero,
  .page-hero,
  .page-hero-sm {
    background: none !important;
    color: #000;
    padding: 20px 0;
  }

  .hero-content h1,
  .page-hero h1,
  .page-hero-sm h1 {
    color: #000;
  }

  .container {
    max-width: 100%;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
