:root {
  --gold: #C6A94D;
  --gold-light: #D4BC6A;
  --gold-dark: #A88B2E;
  --black: #0A0A0A;
  --dark: #1A1A1A;
  --dark-gray: #2A2A2A;
  --medium-gray: #555;
  --light-gray: #F5F5F0;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

/* Skip-to-content link (a11y - visually hidden until focused) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--black);
  outline-offset: -4px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--black);
  color: var(--gold);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--dark-gray);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar a {
  color: var(--gold);
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Header / Navigation ── */
.header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 1px;
}

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

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 50%, #2A2218 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(198,169,77,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(198,169,77,0.15);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(198,169,77,0.3);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: #BBB;
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.06;
  z-index: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198,169,77,0.3);
}

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

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

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

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

/* ── Section Styles ── */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-light {
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: #999;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--gold);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid #E8E8E8;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(198,169,77,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-dark .service-card {
  background: var(--dark-gray);
  border-color: #333;
}

.section-dark .service-card h3 {
  color: var(--white);
}

.section-dark .service-card p {
  color: #999;
}

/* ── About / Split Section ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  color: var(--gold);
  text-align: center;
  padding: 2rem;
}

.image-placeholder svg {
  width: 80px;
  height: 80px;
  fill: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.image-placeholder p {
  font-size: 0.85rem;
  color: #666;
}

.split-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.split-content .section-label {
  display: block;
  text-align: left;
}

.split-content p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.split-content .gold-line {
  margin: 1rem 0;
}

.check-list {
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  color: var(--dark);
  font-weight: 500;
}

.check-list li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Service Detail Cards ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid #E8E8E8;
}

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

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-detail-content p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-detail-content ul {
  margin-bottom: 1.5rem;
}

.service-detail-content ul li {
  padding: 0.3rem 0;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-detail-content ul li::before {
  content: "\25C6";
  color: var(--gold);
  font-size: 0.6rem;
}

/* ── Why Choose Us ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid #333;
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(198,169,77,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(198,169,77,0.05) 0%, transparent 60%);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .btn {
  position: relative;
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
  position: relative;
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--dark);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info-card .icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: rgba(198,169,77,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.contact-info-card p,
.contact-info-card a {
  color: #BBB;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--gold);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--dark-gray);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid #333;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card p {
  color: #CCC;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
}

.testimonial-author h4 {
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--gold-dark);
  font-size: 0.8rem;
}

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: #BBB;
  padding: 4rem 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-name {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.footer-brand .logo-tagline {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #888;
  margin-bottom: 1.5rem;
}

.footer h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  color: #888;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #888;
}

.footer-contact-item a {
  color: #888;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

/* ── Page Header Banner ── */
.page-header {
  background: linear-gradient(135deg, var(--black), var(--dark));
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(198,169,77,0.06) 0%, transparent 70%);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--white);
  position: relative;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

/* ── Hero with Background Image ── */
.hero-with-image {
  background: var(--black);
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
}

/* Mobile gets the thumb (~190KB), desktop gets the full (~720KB) */
.hero-image-bg--deck {
  background-image: url('images/deck-job-with-cedar-ceiling1-thumb.jpg');
}

@media (min-width: 769px) {
  .hero-image-bg--deck {
    background-image: url('images/deck-job-with-cedar-ceiling1-full.jpg');
  }
}

.hero-with-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}

.hero-with-image .hero-content {
  position: relative;
  z-index: 2;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark-gray);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  font: inherit;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-item-static {
  cursor: default;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0) 100%);
  color: var(--gold);
  padding: 2rem 1.25rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption,
.gallery-item-static .gallery-caption {
  transform: translateY(0);
}

.gallery-item-static .gallery-caption {
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0) 100%);
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.blog-card-image {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark-gray);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
}

.blog-card-body {
  padding: 1.75rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card h3 a {
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card h3 a:hover {
  color: var(--gold-dark);
}

.blog-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-link {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-top: auto;
  transition: color var(--transition);
}

.blog-card-link:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── Blog Post (single article) ── */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 0;
}

.blog-post .post-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-post .post-cat {
  background: var(--gold);
  color: var(--black);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
}

.blog-post h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.blog-post .post-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-post .post-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  margin: 1.5rem 0 2.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.blog-post h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
  border-top: 3px solid var(--gold);
  display: inline-block;
}

.blog-post h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark);
  margin: 1.5rem 0 0.75rem;
}

.blog-post p,
.blog-post ul,
.blog-post ol {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.25rem;
}

.blog-post ul,
.blog-post ol {
  padding-left: 1.5rem;
}

.blog-post ul li,
.blog-post ol li {
  margin-bottom: 0.5rem;
}

.blog-post strong { color: var(--dark); }

.blog-post .pullquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(198,169,77,0.06);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

.blog-post .post-cta {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--black), var(--dark));
  color: var(--white);
  border-radius: 8px;
  text-align: center;
}

.blog-post .post-cta h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  border: none;
  padding: 0;
}

.blog-post .post-cta p {
  color: #BBB;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.blog-post .post-cta .cta-phone-inline {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.4rem;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.related-posts {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E8E8E8;
}

.related-posts h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.related-grid a {
  display: block;
  padding: 1.25rem;
  background: var(--light-gray);
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #E8E8E8;
  transition: all var(--transition);
}

.related-grid a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.related-grid .related-cat {
  display: block;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.related-grid h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.3;
}

@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .blog-post h2 { font-size: 1.4rem; }
  .blog-post .post-lead { font-size: 1rem; }
}

/* ── Service Area Map ── */
.service-area-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.service-area-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  background: var(--dark-gray);
  min-height: 400px;
}

.service-area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.map-link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--black);
  color: var(--gold);
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--gold-dark);
}

.map-link:hover {
  background: var(--gold);
  color: var(--black);
}

.service-area-list h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.area-subtitle {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.cities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  padding: 0;
}

.cities-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #E8E8E8;
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
}

.cities-grid li::before {
  content: "\1F4CD";
  font-size: 0.85rem;
  filter: hue-rotate(10deg) saturate(0.7);
}

.area-counties {
  padding: 1rem 1.25rem;
  background: rgba(198,169,77,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem;
}

.area-counties strong {
  display: block;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.area-counties span {
  display: inline-block;
  background: var(--white);
  padding: 0.3rem 0.75rem;
  margin: 0.2rem 0.3rem 0.2rem 0;
  border-radius: 20px;
  font-weight: 500;
  color: var(--dark);
  border: 1px solid #E0D7BC;
}

@media (max-width: 900px) {
  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-area-map { min-height: 320px; }
  .service-area-map iframe { min-height: 320px; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* ── Before / After Comparison Slider ── */
.before-after {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  user-select: none;
  cursor: ew-resize;
  background: var(--dark-gray);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;          /* allow vertical page scroll, but capture horizontal drag */
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;          /* the wrapper handles all input */
  display: block;
}

.before-after .ba-after-wrapper {
  position: absolute;
  inset: 0;
  width: 50%;                   /* JS overrides this */
  overflow: hidden;
}

.before-after .ba-after-wrapper img {
  /* Keep the cropped (right) image aligned to the right edge so the visible
     slice always shows the matching portion of the underlying image. */
  width: 100vw;
  max-width: none;
  right: 0;
  left: auto;
}

@supports (clip-path: inset(0)) {
  .before-after .ba-after-wrapper {
    width: 100% !important;     /* full width when using clip-path */
    clip-path: inset(0 50% 0 0); /* JS overrides the right inset */
  }
  .before-after .ba-after-wrapper img {
    width: 100%;
    right: auto;
    left: 0;
  }
}

.before-after .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(198,169,77,0.6);
}

.before-after .ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  border: 3px solid var(--white);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  z-index: 3;
}

.before-after .ba-label {
  position: absolute;
  top: 1rem;
  background: rgba(10,10,10,0.78);
  color: var(--gold);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
  border: 1px solid rgba(198,169,77,0.4);
  pointer-events: none;
  z-index: 2;
}

.before-after .ba-label-before { left: 1rem; }
.before-after .ba-label-after { right: 1rem; }

.before-after:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .before-after .ba-knob { width: 40px; height: 40px; font-size: 1rem; }
  .before-after .ba-label { top: 0.6rem; padding: 0.3rem 0.7rem; font-size: 0.65rem; }
  .before-after .ba-label-before { left: 0.6rem; }
  .before-after .ba-label-after { right: 0.6rem; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: min(1400px, 95vw);
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background: var(--dark);
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold);
  border: 1px solid rgba(198, 169, 77, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
  font-family: inherit;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
}

.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 42px; height: 42px; font-size: 1.4rem; }
  .lightbox-prev { left: 0.5rem; width: 42px; height: 42px; font-size: 1.1rem; }
  .lightbox-next { right: 0.5rem; width: 42px; height: 42px; font-size: 1.1rem; }
  .lightbox-image { max-height: 70vh; }
  .lightbox-caption { font-size: 0.95rem; }
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.75rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-gray);
    width: 100%;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: block;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
  }

  .nav-overlay.show { display: block; }
  .header { z-index: 1001; }
  .nav-links { z-index: 1002; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h3 { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }

  .section-header h2 { font-size: 2rem; }
  .section { padding: 3.5rem 0; }

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

  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 4rem 0 2rem; }
  .page-header h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .container { padding: 0 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .logo-name { font-size: 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   MOBILE POLISH
   Everything below tightens up the mobile experience.
   ───────────────────────────────────────────────────────── */

/* ── Floating "Call Now" button (mobile only) ── */
.mobile-call-fab {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
  right: 1rem;
  display: none;                 /* hidden on desktop */
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.3rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(198, 169, 77, 0.2);
  border: 2px solid var(--gold-dark);
  -webkit-tap-highlight-color: transparent;
  animation: fab-pulse 2.5s ease-in-out infinite;
}

.mobile-call-fab:hover,
.mobile-call-fab:focus-visible {
  background: var(--gold-light);
  color: var(--black);
  outline: none;
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

.mobile-call-fab .fab-icon {
  font-size: 1.2rem;
  line-height: 1;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(198, 169, 77, 0.45); }
  50%      { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(198, 169, 77, 0); }
}

/* Show on mobile / tablet only */
@media (max-width: 900px) {
  .mobile-call-fab { display: inline-flex; }
}

/* Don't let the fab cover the footer call-to-action */
@media (max-width: 900px) {
  .footer { padding-bottom: 5.5rem; }
}

/* ── iOS safe area insets ── */
@supports (padding: max(0px)) {
  .header .container,
  .top-bar .container {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }
  .nav-links {
    padding-right: max(2rem, env(safe-area-inset-right));
    padding-top: max(5rem, calc(5rem + env(safe-area-inset-top)));
  }
}

/* ── Tap-target minimums (Apple HIG: 44px; Material: 48px) ── */
@media (max-width: 900px) {
  .nav-links a,
  .top-bar a,
  .footer ul li a,
  .footer-contact-item a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .btn {
    min-height: 48px;
    padding: 0.9rem 1.6rem;
  }

  /* Form fields */
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 16px;            /* prevents iOS auto-zoom on focus */
  }

  /* Service-card icons keep enough breathing room */
  .service-card { padding: 2rem 1.5rem; }

  /* Hamburger easier to hit */
  .hamburger {
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
  }
}

/* ── Mobile typography polish ── */
@media (max-width: 600px) {
  body { font-size: 16px; }

  .hero { min-height: auto; padding: 4rem 0 3.5rem; }
  .hero-badge { font-size: 0.7rem; letter-spacing: 2px; padding: 0.4rem 1rem; }
  .hero h1 { font-size: 1.85rem; line-height: 1.2; }
  .hero h1 span { display: inline; }     /* keep "Inside & Out" on its own visual line via wrap */
  .hero p { font-size: 0.98rem; line-height: 1.65; margin-bottom: 1.75rem; }

  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2.25rem; }
  .section-header h2 { font-size: 1.75rem; }
  .section-header p { font-size: 0.95rem; }

  .page-header { padding: 3.5rem 0 2rem; }
  .page-header h1 { font-size: 1.75rem; }
  .page-header p { font-size: 0.85rem; letter-spacing: 1.5px; }

  .cta-section { padding: 3.5rem 0; }
  .cta-section h2 { font-size: 1.6rem; line-height: 1.25; }
  .cta-phone { font-size: 1.5rem; }
  .cta-section p { font-size: 0.95rem; }

  .stat-item h3 { font-size: 1.6rem; }
  .stat-item p { font-size: 0.7rem; letter-spacing: 1.5px; }

  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.9rem; }

  .service-detail-content h3 { font-size: 1.4rem; }
  .service-detail-content p,
  .service-detail-content ul li { font-size: 0.95rem; }

  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-card p { font-size: 0.9rem; }

  .footer { padding-top: 3rem; }
  .footer h4 { font-size: 0.95rem; margin-bottom: 1rem; }

  .top-bar { font-size: 0.78rem; }
  .top-bar-left { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .top-bar-item:nth-child(2) a { word-break: break-all; }
}

/* ── Contact form fits comfortably on small screens ── */
@media (max-width: 600px) {
  .contact-form { padding: 1.75rem 1.25rem; }
  .form-group label { font-size: 0.78rem; }
  .contact-info-card { padding: 1.5rem; gap: 1rem; }
  .contact-info-card h4 { font-size: 0.95rem; }
  .contact-info-card a,
  .contact-info-card p { font-size: 0.9rem; }
}

/* ── Lightbox tightens further on very small screens ── */
@media (max-width: 480px) {
  .lightbox-image { max-height: 65vh; }
  .lightbox-caption { font-size: 0.85rem; margin-top: 0.6rem; padding: 0 1rem; }
  .lightbox { padding: 0.5rem; }
}

/* ── Prevent iOS bounce overscroll from breaking the lightbox ── */
.lightbox.open { overscroll-behavior: contain; }

/* ── Respect users who request reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }

  .mobile-call-fab { animation: none; }
}

/* ── Print styles (nice-to-have for service info / quotes) ── */
@media print {
  .header, .top-bar, .footer, .cta-section,
  .mobile-call-fab, .hamburger, .nav-overlay, .lightbox,
  .hero-image-bg, .skip-link { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
  .container { max-width: 100%; padding: 0; }
}
