/* ===========================
   A&A Professional Roofers LLC
   Shared Stylesheet
   =========================== */

/* Google Fonts imported via <link> in HTML */

:root {
  --red: #CC0000;
  --dark: #111111;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray-text: #aaaaaa;
  --font-headline: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===========================
   UTILITY BAR
   =========================== */
.utility-bar {
  background: var(--dark);
  border-top: 4px solid var(--red);
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.utility-bar span,
.utility-bar a {
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-body);
}

.utility-bar a:hover { color: var(--red); }

.utility-divider {
  color: #555;
  margin: 0 10px;
}

/* ===========================
   MAIN NAV
   =========================== */
.main-nav {
  background: var(--dark);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  min-height: 68px;
}

.nav-brand {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  line-height: 1.2;
}

.nav-brand span { display: block; font-size: 11px; color: #888; font-family: var(--font-body); font-weight: 400; letter-spacing: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 24px 0;
  display: block;
  border-bottom: 3px solid transparent;
}

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

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: 3px;
  border-bottom: none !important;
  transition: background 0.2s, transform 0.1s !important;
  white-space: nowrap;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: #aa0000 !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  min-height: 48px;
  line-height: 1.4;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-red:hover {
  background: #aa0000;
  border-color: #aa0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204,0,0,0.4);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-black {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}

.btn-black:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ===========================
   HERO SECTION (HOME)
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-bg-fallback {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0000 0%, #111 50%, #1a0000 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: var(--font-headline);
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-content h1 span { color: var(--red); }

.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 19px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.hero-espanol {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* ===========================
   PAGE HERO BANNER
   =========================== */
.page-hero {
  background: var(--dark);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: var(--red);
}

.page-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

/* ===========================
   SECTION TITLES
   =========================== */
.section-title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 12px;
}

.title-underline {
  width: 70px;
  height: 4px;
  background: var(--red);
  margin: 0 auto 40px;
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--dark);
  padding: 32px 20px;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.trust-item i {
  color: var(--red);
  font-size: 22px;
  flex-shrink: 0;
}

/* ===========================
   SERVICES PREVIEW (HOME)
   =========================== */
.services-preview {
  background: var(--dark);
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 32px 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(204,0,0,0.18);
}

.service-card i {
  font-size: 36px;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-us {
  background: var(--light-gray);
  padding: 80px 20px;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-left h2 {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.why-us-left .title-underline { margin: 0 0 24px; }

.why-us-left p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.why-list li .check-circle {
  width: 26px;
  height: 26px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list li .check-circle i {
  color: var(--white);
  font-size: 12px;
}

/* ===========================
   OUR WORK PREVIEW
   =========================== */
.work-preview {
  padding: 80px 20px;
  background: var(--white);
}

.work-preview .subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
  margin-top: -28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

/* ===========================
   AREAS PREVIEW
   =========================== */
.areas-preview {
  background: var(--dark);
  padding: 80px 20px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 36px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}

.area-item i { color: var(--red); font-size: 14px; flex-shrink: 0; }

/* ===========================
   CTA BANNER (RED)
   =========================== */
.cta-banner {
  background: var(--red);
  padding: 70px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  margin-bottom: 32px;
}

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

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--dark);
  border-top: 4px solid var(--red);
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-tagline {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-espanol {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-style: italic;
}

.footer-heading {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #888;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--red); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #888;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact-item i { color: var(--red); margin-top: 3px; font-size: 14px; }
.footer-contact-item a { color: #888; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px;
  text-align: center;
  color: #555;
  font-size: 13px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===========================
   SERVICES PAGE — DETAIL CARDS
   =========================== */
.services-detail {
  background: var(--white);
  padding: 80px 20px;
}

.services-detail-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: var(--dark);
  border-radius: 6px;
  padding: 36px 32px;
  border-left: 5px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-detail-icon {
  font-size: 48px;
  color: var(--red);
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  margin-top: 4px;
}

.service-detail-content h3 {
  font-family: var(--font-headline);
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-detail-content p {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===========================
   AREAS PAGE
   =========================== */
.areas-section {
  padding: 80px 20px;
  background: var(--white);
}

.areas-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.areas-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.area-full-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light-gray);
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border-left: 3px solid var(--red);
  transition: background 0.2s, transform 0.2s;
}

.area-full-item:hover {
  background: #e8e8e8;
  transform: translateX(4px);
}

.area-full-item i { color: var(--red); font-size: 14px; }

.areas-note {
  text-align: center;
  color: #666;
  font-style: italic;
  font-size: 15px;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   GALLERY PAGE
   =========================== */
.gallery-section {
  padding: 80px 20px;
  background: var(--white);
}

.gallery-9-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.gallery-9-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-9-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.gallery-note {
  text-align: center;
  color: #555;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 32px;
  padding: 16px;
  background: var(--light-gray);
  border-left: 4px solid var(--red);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section {
  padding: 80px 20px;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1050px;
  margin: 0 auto;
  align-items: start;
}

.contact-details h3 {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 700;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-wrap i { color: var(--white); font-size: 16px; }

.contact-info-item .info-text label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
  margin-bottom: 3px;
}

.contact-info-item .info-text a,
.contact-info-item .info-text span,
.contact-info-item .info-text p {
  font-size: 15px;
  color: #333;
  font-family: var(--font-body);
}

.contact-info-item .info-text a { font-weight: 600; transition: color 0.2s; }
.contact-info-item .info-text a:hover { color: var(--red); }
.contact-info-item .emergency { color: var(--red) !important; font-weight: 600; font-style: italic; }

.contact-espanol {
  margin-top: 28px;
  padding: 16px;
  background: var(--light-gray);
  border-left: 4px solid var(--red);
  font-style: italic;
  color: #555;
  font-size: 15px;
}

/* FORM */
.quote-form-wrap {
  background: var(--dark);
  border-radius: 6px;
  padding: 40px 36px;
}

.quote-form-wrap h3 {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 700;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
  min-height: 48px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
}

.form-row textarea { resize: vertical; min-height: 110px; }

.form-row select option { background: #1e1e1e; }

.form-submit { width: 100%; padding: 16px; font-size: 16px; letter-spacing: 0.5px; }

.form-success {
  display: none;
  background: #1a3a1a;
  border: 1px solid #2d6a2d;
  color: #7ddb7d;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 15px;
  margin-top: 16px;
  text-align: center;
}

.form-error {
  display: none;
  background: #3a1a1a;
  border: 1px solid #6a2d2d;
  color: #db7d7d;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 15px;
  margin-top: 16px;
  text-align: center;
}

/* ===========================
   SPACING UTILS
   =========================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.mt-8 { margin-top: 8px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 992px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .gallery-9-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .utility-bar { flex-direction: column; text-align: center; gap: 4px; }
  .utility-divider { display: none; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 40px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.3s;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    overflow-y: auto;
  }

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

  .nav-links a {
    padding: 14px 0;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid #1a1a1a;
  }

  .nav-links a.active,
  .nav-links a:hover {
    border-bottom-color: #1a1a1a;
    color: var(--red);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    border-bottom: none !important;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 900;
  }
  .nav-overlay.open { display: block; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-9-grid { grid-template-columns: 1fr; }
  .areas-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .service-detail-card {
    flex-direction: column;
    gap: 16px;
    padding: 28px 22px;
  }

  .trust-bar-grid { grid-template-columns: 1fr; }

  .why-us-inner { gap: 30px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .quote-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .nav-brand { font-size: 16px; }
  .page-hero { padding: 60px 20px; }
  .services-preview,
  .work-preview,
  .why-us,
  .areas-preview,
  .contact-section,
  .services-detail,
  .gallery-section,
  .areas-section { padding: 56px 16px; }
}
