/* ============================================
   Elite Finishing, LLC — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --orange: #e4572e;
  --orange-dark: #c4431c;
  --orange-light: #f0724a;
  --black: #111111;
  --charcoal: #1e1e1e;
  --charcoal-light: #2a2a2a;
  --dark-section: #161616;
  --mid-gray: #555555;
  --light-gray: #f4f4f2;
  --white: #ffffff;
  --off-white: #faf9f7;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
}

.section-title--light {
  color: var(--white);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 620px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-intro--light {
  color: rgba(255,255,255,0.72);
}

/* Angular accent bar */
.accent-bar {
  width: 48px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(228, 87, 46, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
  position: relative;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: flex-start;
  padding-top: 72px;
}

/* Angular background shape */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 60%, #222222 100%);
}

/* Orange angular accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(145deg, transparent 40%, rgba(228, 87, 46, 0.06) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-diagonal {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 84px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0 120px;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.trust-badge .icon {
  width: 28px;
  height: 28px;
  background: rgba(228, 87, 46, 0.15);
  border: 1px solid rgba(228, 87, 46, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Hero image block */
.hero-visual {
  position: relative;
}

.hero-img-block {
  position: relative;
  height: clamp(320px, 45vw, 520px);
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Replace with actual image: images/hero-gutters.jpg */
.hero-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #222222 0%, #2d2d2d 100%);
  color: rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.img-placeholder svg {
  opacity: 0.2;
}

.hero-stat-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--orange);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(228, 87, 46, 0.4);
}

.hero-stat-card .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-card .label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  padding: 100px 0;
  background: var(--off-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.problem-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 2px;
}

.problem-text span {
  font-size: 0.9rem;
  color: var(--mid-gray);
}

.problem-visual {
  position: relative;
}

.problem-img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ddd;
}

.problem-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.15;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
  padding: 100px 0;
  background: var(--white);
  margin-top: -4px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #e8e8e4;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--charcoal-light);
  position: relative;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
}

.service-card-body {
  padding: 24px;
}

.service-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 16px;
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 10px;
}

/* ============================================
   WHY GUTTERS MATTER
   ============================================ */
.why-gutters {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-gutters::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(228,87,46,0.05) 100%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.why-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-check {
  width: 28px;
  height: 28px;
  background: rgba(228, 87, 46, 0.15);
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 13px;
  margin-top: 2px;
}

.benefit-text {
  flex: 1;
}

.benefit-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.benefit-text span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-img-block {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-light);
}

.why-img-block:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.why-img-block:nth-child(n+2) {
  aspect-ratio: 1;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.before-after {
  padding: 100px 0;
  background: var(--off-white);
}

.ba-header {
  text-align: center;
  margin-bottom: 52px;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ba-pair {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e0e0dc;
}

.ba-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-img {
  aspect-ratio: 4/3;
  background: var(--charcoal-light);
  position: relative;
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.ba-label--before {
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);
}

.ba-label--after {
  background: var(--orange);
  color: var(--white);
}

.ba-pair-desc {
  padding: 20px 24px;
  background: var(--white);
}

.ba-pair-desc h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.ba-pair-desc p {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

.ba-cta {
  text-align: center;
  margin-top: 44px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed #e0e0dc;
}

.ba-cta p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 0;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-us-intro .section-intro {
  margin-bottom: 32px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-us-item {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-us-item:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow);
}

.why-us-item .icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.why-us-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.why-us-item p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: var(--font-display);
  font-size: 300px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials .section-label,
.testimonials .section-title {
  text-align: center;
}

.testimonials .section-title {
  margin-bottom: 52px;
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
}

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

.testimonial-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.author-location {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: 100px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: rgba(0,0,0,0.08);
  clip-path: polygon(0 0, 85% 0, 65% 100%, 0 100%);
}

.final-cta-inner {
  position: relative;
  text-align: center;
}

.final-cta .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 16px;
}

.final-cta .section-intro {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 40px;
}

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

.btn--white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn--white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 4px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.footer-contact-item .ico {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

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

.footer-credit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.designed-by {
  display: flex;
  align-items: center;
  gap: 8px;
}

.designed-by a {
  display: inline-flex;
  align-items: center;
}

.designed-by .mrb-logo {
  height: 26px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.designed-by a:hover .mrb-logo {
  opacity: 1;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.page-hero {
  background: var(--black);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; /* 2px overlap eliminates hairline rendering gap */
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

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

.page-hero .section-title {
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero .section-intro {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}

/* Angular orange shape on page hero */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(145deg, transparent 30%, rgba(228,87,46,0.07) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.about-section {
  padding: 100px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-body p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.trust-point .check {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  flex-shrink: 0;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal-light);
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  border: 4px solid var(--off-white);
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e0e0dc;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 52px;
}

.about-stat {
  background: var(--white);
  padding: 28px;
  text-align: center;
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat .label {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* Services detail */
.services-detail {
  padding: 100px 0;
  background: var(--white);
}

.services-detail-header {
  margin-bottom: 64px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.service-block:last-of-type {
  border-bottom: 1px solid #eee;
}

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

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

.service-block-content {}

.service-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}

.service-block-desc {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-problems {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
}

.service-problems h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.service-problems ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-problems ul li {
  font-size: 0.88rem;
  color: var(--mid-gray);
  padding-left: 16px;
  position: relative;
}

.service-problems ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
}

.service-block-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal-light);
}

/* Additional services */
.additional-services {
  padding: 80px 0;
  background: var(--off-white);
}

.additional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.additional-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e8e8e4;
}

.additional-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
}

.additional-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e8e4;
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.info-body p,
.info-body a {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.6;
  transition: color var(--transition);
}

.info-body a:hover {
  color: var(--orange);
}

.service-area-box {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
}

.service-area-box h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.service-area-box .area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.65);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 36px;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e4;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

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

.form-group select {
  cursor: pointer;
}

.upload-zone {
  border: 2px dashed #e0e0dc;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--off-white);
}

.upload-zone:hover {
  border-color: var(--orange);
  background: rgba(228, 87, 46, 0.03);
}

.upload-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--mid-gray);
}

.upload-zone p {
  font-size: 0.88rem;
  color: var(--mid-gray);
}

.upload-zone span {
  font-weight: 600;
  color: var(--orange);
}

.form-submit {
  margin-top: 28px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 14px;
}

/* Map placeholder */
.map-placeholder {
  padding: 80px 0;
  background: var(--white);
}

.map-block {
  height: 400px;
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  font-size: 2.5rem;
  position: relative;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--mid-gray);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.animate-up.delay-1 { animation-delay: 0.1s; }
.animate-up.delay-2 { animation-delay: 0.2s; }
.animate-up.delay-3 { animation-delay: 0.3s; }
.animate-up.delay-4 { animation-delay: 0.45s; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0 80px;
  }

  .hero-visual {
    max-width: 520px;
  }

  .problem-grid,
  .why-inner,
  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .service-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-block.reverse {
    direction: ltr;
  }

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

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

  .contact-info {
    position: static;
  }

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

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .contact-form-wrap {
    padding: 28px 20px;
  }

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

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

  .ba-pair-images {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat-card {
    bottom: -12px;
    left: -8px;
  }

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

  .why-visual {
    grid-template-columns: 1fr;
  }

  .why-img-block:first-child {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    gap: 16px;
  }
}


/* ============================================
   ICON REFINEMENTS - orange one-color line icons
   ============================================ */
.site-icon {
  width: 1.45em;
  height: 1.45em;
  display: block;
  color: var(--orange);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge .icon .site-icon,
.why-us-item .icon .site-icon,
.info-icon .site-icon,
.success-icon .site-icon,
.upload-icon .site-icon,
.map-pin .site-icon,
.process-icon .site-icon,
.footer-contact-item .ico .site-icon {
  width: 18px;
  height: 18px;
}

.problem-icon .site-icon,
.service-card-icon .site-icon {
  width: 30px;
  height: 30px;
}

.benefit-check .site-icon,
.check .site-icon {
  width: 18px;
  height: 18px;
}

.inline-icon,
.btn-icon,
.heading-icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.18em;
  margin-right: 0.35em;
  color: var(--orange);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-icon {
  color: currentColor;
}

.heading-icon {
  width: 1em;
  height: 1em;
  margin-right: 0.45em;
}

/* Home: revised Why It Matters layout */
.problem-grid--reworked {
  align-items: start;
}

.problem-copy .problem-visual {
  margin-top: 30px;
}

.problem-copy .problem-img-wrap {
  aspect-ratio: 16 / 10;
}

.problem-list--floating {
  margin-top: 64px;
  gap: 18px;
}

.problem-list--floating .problem-item {
  transform: translateY(0);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-list--floating .problem-item:nth-child(even) {
  transform: translateX(18px);
}

.problem-list--floating .problem-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-list--floating .problem-item:nth-child(even):hover {
  transform: translateX(18px) translateY(-5px);
}

.problem-icon {
  color: var(--orange);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(228, 87, 46, 0.1);
  border: 1px solid rgba(228, 87, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
}

/* Home: cleaner service cards with icons only */
.services-preview .service-card-img {
  display: none;
}

.services-preview .service-card-body {
  padding: 30px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(228, 87, 46, 0.1);
  border: 1px solid rgba(228, 87, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
}

.why-us-item .icon,
.info-icon,
.success-icon,
.upload-icon,
.map-pin,
.process-icon,
.footer-contact-item .ico,
.check {
  color: var(--orange);
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(228, 87, 46, 0.1);
}

@media (max-width: 900px) {
  .problem-list--floating {
    margin-top: 0;
  }

  .problem-list--floating .problem-item:nth-child(even),
  .problem-list--floating .problem-item:nth-child(even):hover {
    transform: none;
  }

  .problem-list--floating .problem-item:hover {
    transform: translateY(-4px);
  }
}

/* ============================================
   GLOBAL RESPONSIVE TYPOGRAPHY POLISH
   Keeps body/detail text readable on mobile while preserving hierarchy.
   ============================================ */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-size: 1rem;
  line-height: 1.6;
}

p,
li,
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-title,
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.hero-subtitle,
.page-hero p,
.section-intro {
  font-size: clamp(1rem, 2vw, 1.15rem);
}

@media (max-width: 768px) {
  body,
  p,
  li,
  input,
  select,
  textarea,
  button,
  .section-intro,
  .hero-subtitle,
  .page-hero p,
  .service-card p,
  .problem-item p,
  .benefit-item p,
  .why-us-item p,
  .testimonial-card p,
  .footer-text,
  .footer-links a,
  .footer-contact-item,
  .contact-detail p,
  .form-note,
  .upload-zone p,
  .service-block p,
  .additional-card p,
  .about-copy p,
  .trust-item p,
  .process-step p,
  .map-block {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-label,
  .trust-badge,
  .eyebrow,
  .footer-label,
  .service-tag,
  .stat-label,
  .contact-label,
  .small-text {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-title,
  .page-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1.05;
  }

  .section-title,
  h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.1;
  }

  h3,
  .service-card h3,
  .problem-item h3,
  .benefit-item h3,
  .why-us-item h3,
  .testimonial-card h3,
  .contact-detail h3,
  .process-step h3 {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
    line-height: 1.2;
  }

  .btn {
    font-size: 1rem;
    line-height: 1.2;
  }

  .container,
  .container--narrow {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .page-hero h1 {
    font-size: clamp(2rem, 12vw, 2.65rem);
  }

  .section-title,
  h2 {
    font-size: clamp(1.65rem, 9vw, 2.1rem);
  }

  .hero-subtitle,
  .section-intro,
  .page-hero p {
    font-size: 1rem;
  }
}


/* ============================================
   V4 ENHANCEMENTS
   ============================================ */

/* ------------------------------------------
   ICON CIRCLE HOVER — invert on hover
   (orange bg + orange icon → solid orange + white icon)
   ------------------------------------------ */
.problem-icon,
.why-us-item .icon,
.process-icon {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

/* Give why-us icons a circle background to match problem icons */
.why-us-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(228, 87, 46, 0.1);
  border: 1px solid rgba(228, 87, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-item:hover .problem-icon,
.why-us-item:hover .icon,
.trust-strip-item:hover .process-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.08);
}

/* Icon SVG color follows the parent color on hover */
.problem-item:hover .problem-icon .site-icon,
.why-us-item:hover .icon .site-icon {
  color: var(--white);
}

/* ------------------------------------------
   PROBLEM CARDS — orange left border on hover only
   (matches .why-us-item border-top behaviour)
   ------------------------------------------ */
.problem-item {
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-list--floating .problem-item:hover {
  border-left-color: var(--orange);
}

/* ------------------------------------------
   TRUST POINT ICONS (About page)
   Fix: white icon inside orange circle
   ------------------------------------------ */
.trust-point .check .site-icon {
  color: var(--white);
}

.trust-point .check {
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.trust-point:hover .check {
  transform: scale(1.15);
  background: var(--orange-dark, #c43d1a);
}

/* ------------------------------------------
   SERVICE CARDS — keep lift + add left accent on hover
   ------------------------------------------ */
.service-card {
  border-left: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  border-left-color: var(--orange);
}


/* ------------------------------------------
   BENEFIT CHECK ICONS — invert on hover
   (Big Picture / Why Gutters section)
   ------------------------------------------ */
.benefit-check {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.why-benefit:hover .benefit-check {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.1);
}

.why-benefit:hover .benefit-check .site-icon {
  color: var(--white);
}

/* ------------------------------------------
   BEFORE / AFTER IMAGES
   ------------------------------------------ */
.ba-img {
  overflow: hidden;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ------------------------------------------
   MOBILE HERO FIXES (max-width: 480px)
   ------------------------------------------ */
@media (max-width: 480px) {

  /* Cut top space roughly in half on mobile */
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 100px;
  }

  /* Cut hero-grid top padding in half */
  .hero-grid {
    padding-top: 20px;
  }

  /* Slightly larger than minimum for readability on mobile */
  .hero-headline {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 14px;
  }

  /* Tighten spacing between elements */
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-actions {
    margin-bottom: 20px;
    gap: 8px;
  }

  /* Remove hairline black line between hero and services on mobile */
  .services-preview {
    margin-top: -2px;
  }

}
