/* ============================================
   Hugo's Roof & Gutter Cleaning — Design System
   Light body + dark hero/nav/footer
   ============================================ */

:root {
  /* Brand Palette */
  --accent: #F5B92B;
  --accent-dark: #D4A020;
  --accent-glow: rgba(245, 185, 43, 0.15);

  /* Dark Backgrounds (nav, hero, trust-bar, cta, footer) */
  --dark: #2D2D2D;
  --dark-alt: #242424;
  --darkest: #1B1B1B;
  --charcoal: #3A3A3A;

  /* Light Backgrounds (body sections) */
  --light-bg: #F5F5F0;
  --light-bg-alt: #EAEAE5;
  --white: #FFFFFF;

  /* Text Colours */
  --text-on-dark: #F7F7F5;
  --text-on-light: #2D2D2D;
  --grey-medium: #5A5A5A;
  --grey-light: #F7F7F5;
  --text-muted: #9A9590;
  --text-muted-light: #7A7570;
  --text-dim: #6B6560;

  /* Semantic */
  --red: #E8685A;
  --green: #4A8F4E;

  /* Borders on light */
  --border-light: rgba(0,0,0,0.08);
  --border-light-hover: rgba(245, 185, 43, 0.4);

  /* Spacing */
  --section-pad: 100px;
  --container-max: 1200px;
  --container-side: 24px;
  --radius-card: 16px;
  --radius-btn: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light-bg);
  color: var(--text-on-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== LAYOUT ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-side); }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== NAV (dark) ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(27, 27, 27, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 90px; }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: transparent !important;
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  font-weight: 600 !important;
  transition: border-color 0.2s, background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  border-color: var(--accent) !important;
  background: var(--accent) !important;
  color: var(--darkest) !important;
  transform: translateY(-1px);
}

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a .dropdown-arrow {
  width: 12px; height: 12px; transition: transform 0.2s;
}
.nav-dropdown:hover > a .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: -12px;
  padding-top: 12px; min-width: 200px; z-index: 101;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu-inner {
  background: var(--darkest); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 0.88rem !important; color: var(--text-muted) !important;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(245,185,43,0.08);
  color: var(--accent) !important;
}

/* Mobile nav */
.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text-on-dark); font-size: 1.5rem; cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(27, 27, 27, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 16px 0;
  color: var(--text-on-dark); text-decoration: none;
  font-size: 1.1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .nav-cta-mobile {
  display: inline-block; margin-top: 24px;
  background: var(--accent); color: var(--darkest);
  padding: 14px 32px; border-radius: var(--radius-btn);
  font-weight: 700; text-align: center; text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--darkest);
  padding: 16px 32px; border-radius: var(--radius-btn);
  font-size: 1rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 185, 43, 0.35);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-on-dark); padding: 16px 24px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--accent); }
.btn-secondary svg { width: 20px; height: 20px; }

/* Light-section variant */
.btn-secondary--light { color: var(--text-on-light); }
.btn-secondary--light:hover { color: var(--accent-dark); }

/* Outline button for light sections */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-on-light);
  padding: 14px 28px; border-radius: var(--radius-btn);
  font-size: 1rem; font-weight: 600;
  text-decoration: none; border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }

/* ===== HERO (dark) ===== */
.hero {
  padding: 140px 0 var(--section-pad);
  background: var(--dark);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 60%, rgba(245, 185, 43, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

/* Hero breadcrumb */
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-dim); margin-bottom: 20px;
}
.hero-breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--accent); }
.hero-breadcrumb svg { width: 14px; height: 14px; }

/* Hero text */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.7; max-width: 500px; margin-bottom: 32px;
}

/* Hero price badge */
.hero-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: rgba(245, 185, 43, 0.08);
  border: 1px solid rgba(245, 185, 43, 0.2);
  border-radius: 10px; padding: 14px 20px; margin-bottom: 32px;
}
.hero-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 800; color: var(--accent);
}
.hero-price-unit { font-size: 0.9rem; color: var(--text-muted); }
.hero-price-note { font-size: 0.8rem; color: var(--text-dim); margin-left: 4px; }

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Hero image stack */
.hero-visual { position: relative; }
.hero-img-main {
  border-radius: var(--radius-card); overflow: hidden;
  aspect-ratio: 3/4; max-height: 620px;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-before {
  position: absolute; bottom: -20px; left: -30px;
  width: 180px; height: 180px;
  border-radius: 12px; overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: slideIn 0.7s ease-out 0.4s both;
}
.hero-img-before img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-before-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(27,27,27,0.85); backdrop-filter: blur(4px);
  padding: 6px 10px; text-align: center;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
}

@keyframes slideIn {
  from { opacity: 0; transform: translate(-10px, 10px); }
  to { opacity: 1; transform: translate(0, 0); }
}

/* Hero floating stat card */
.hero-stat-float {
  position: absolute; top: 24px; right: -20px;
  background: rgba(27,27,27,0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(245,185,43,0.2);
  border-radius: 12px; padding: 16px 20px; text-align: center;
  animation: slideIn 0.7s ease-out 0.6s both;
}
.hero-stat-float .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--accent);
}
.hero-stat-float .stat-label {
  font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 2px;
}

/* ===== TRUST BAR (dark) ===== */
.trust-bar {
  padding: 40px 0;
  background: var(--darkest);
}
.trust-bar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.trust-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.trust-stat-label {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}

/* ===== PROCESS (light) ===== */
.process {
  padding: var(--section-pad) 0;
  background: var(--light-bg);
  position: relative;
}
.process::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--border-light);
}
.process-header { text-align: center; margin-bottom: 64px; }
.process-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text-on-light); margin-bottom: 12px;
}
.process-header p { color: var(--text-muted-light); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, rgba(245,185,43,0.3), rgba(245,185,43,0.08));
}
.step { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(245, 185, 43, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800; color: var(--accent);
  position: relative; z-index: 2;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover .step-number {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(245, 185, 43, 0.12);
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-on-light); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted-light); line-height: 1.55; max-width: 220px; margin: 0 auto; }

/* ===== GALLERY (light) ===== */
.gallery { padding: var(--section-pad) 0; background: var(--white); }
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
}
.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text-on-light);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto; gap: 16px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item:first-child { grid-row: 1 / 3; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,27,27,0.6) 0%, transparent 40%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { font-size: 0.85rem; color: var(--white); font-weight: 500; }

/* ===== DIFFERENCE / COMPARISON (light-bg-alt) ===== */
.difference {
  padding: var(--section-pad) 0;
  background: var(--light-bg);
}
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.diff-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text-on-light); margin-bottom: 20px;
}
.diff-content > p {
  color: var(--text-muted-light); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 36px;
}
.diff-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.diff-col { display: flex; flex-direction: column; gap: 14px; }
.diff-col-title {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700;
  padding-bottom: 10px; border-bottom: 2px solid; margin-bottom: 4px;
}
.diff-col-title.bad { color: var(--red); border-color: rgba(232, 104, 90, 0.3); }
.diff-col-title.good { color: var(--green); border-color: rgba(74, 143, 78, 0.3); }
.diff-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; line-height: 1.5; color: var(--text-muted-light);
}
.diff-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.diff-item.bad svg { color: var(--red); }
.diff-item.good svg { color: var(--green); }

/* Diff visual card */
.diff-visual { position: relative; }
.diff-card {
  background: var(--white); border-radius: var(--radius-card);
  border: 1px solid var(--border-light); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.diff-card-img { aspect-ratio: 4/5; overflow: hidden; }
.diff-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.diff-card-body { padding: 24px; }
.diff-card-body h4 { font-size: 1rem; font-weight: 700; color: var(--text-on-light); margin-bottom: 8px; }
.diff-card-body p { font-size: 0.88rem; color: var(--text-muted-light); line-height: 1.55; }

/* ===== PRICING (white) ===== */
.pricing { padding: var(--section-pad) 0; background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text-on-light); margin-bottom: 12px;
}
.pricing-header p { color: var(--text-muted-light); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }
.pricing-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 800px; margin: 0 auto;
}
.pricing-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); padding: 36px;
  transition: border-color 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.pricing-card:hover { border-color: var(--border-light-hover); }
.pricing-card-label {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 16px;
}
.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--text-on-light); margin-bottom: 8px;
}
.pricing-card-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.pricing-card-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--accent);
}
.pricing-card-price .unit { font-size: 0.9rem; color: var(--text-muted-light); }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted-light); line-height: 1.5;
}
.pricing-card li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--green); }
.pricing-note { text-align: center; margin-top: 32px; font-size: 0.88rem; color: var(--text-muted-light); }

/* ===== FAQ (light-bg) ===== */
.faq { padding: var(--section-pad) 0; background: var(--light-bg); }
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: flex-start;
}
.faq-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--text-on-light); margin-bottom: 16px;
}
.faq-left p { color: var(--text-muted-light); line-height: 1.6; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--text-on-light); font-size: 1rem; font-weight: 600;
  text-align: left; padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'DM Sans', sans-serif; transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-dark); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-muted-light); font-size: 0.92rem; line-height: 1.65; }

/* ===== CTA SECTION (dark) ===== */
.cta-section {
  padding: var(--section-pad) 0; text-align: center; position: relative;
  background: var(--dark);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245,185,43,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 36px; max-width: 500px;
  margin-left: auto; margin-right: auto; position: relative;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== OTHER SERVICES (light) ===== */
.other-services { padding: 80px 0 0; background: var(--light-bg); }
.other-services h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--text-on-light); margin-bottom: 24px; text-align: center;
}
.other-services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 600px; margin: 0 auto;
}
.other-service-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px; padding: 20px;
  text-decoration: none; color: var(--text-on-light);
  transition: border-color 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.other-service-card:hover { border-color: var(--border-light-hover); }
.other-service-card img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; }
.other-service-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 2px; }
.other-service-card span { font-size: 0.8rem; color: var(--accent-dark); font-weight: 500; }

/* ===== SERVICES CARDS (Homepage — light bg) ===== */
.services-section { padding: var(--section-pad) 0; background: var(--light-bg); }
.services-section .section-header { text-align: center; margin-bottom: 48px; }
.services-section .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text-on-light); margin-bottom: 12px;
}
.services-section .section-header p { color: var(--text-muted-light); font-size: 1.05rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  position: relative; border-radius: var(--radius-card);
  overflow: hidden; background: var(--white);
  border: 1px solid var(--border-light);
  text-decoration: none; display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover { border-color: var(--border-light-hover); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.service-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
  padding: 24px;
}
.service-card-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 800; color: var(--text-on-light); margin-bottom: 6px;
}
.service-card-overlay p {
  font-size: 0.85rem; color: var(--text-muted-light); margin-bottom: 12px; line-height: 1.5;
}
.service-card-overlay .service-price {
  font-size: 0.85rem; color: var(--accent-dark); font-weight: 600;
}

/* ===== WHY HUGO'S (Homepage — white) ===== */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text-on-light); margin-bottom: 20px;
}
.why-content > p {
  color: var(--text-muted-light); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 32px;
}
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point {
  display: flex; align-items: flex-start; gap: 14px;
}
.why-point-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,185,43,0.1); border: 1px solid rgba(245,185,43,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-point-icon svg { width: 20px; height: 20px; color: var(--accent); }
.why-point h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-on-light); margin-bottom: 4px; }
.why-point p { font-size: 0.85rem; color: var(--text-muted-light); line-height: 1.5; }
.why-image { border-radius: var(--radius-card); overflow: hidden; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PORTFOLIO GRID (Homepage — light-bg) ===== */
.portfolio { padding: var(--section-pad) 0; background: var(--light-bg); }
.portfolio-header { margin-bottom: 40px; }
.portfolio-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text-on-light);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.portfolio-item {
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer;
}
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,27,27,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-overlay span { font-size: 0.85rem; color: var(--white); font-weight: 500; }

/* ===== SOCIAL PROOF / REVIEWS ===== */
.hero-social-proof {
  display: flex; align-items: center; gap: 10px;
  margin-top: 24px;
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; fill: var(--accent); }
.hero-social-proof span { font-size: 0.88rem; color: var(--text-muted); }

/* Trust badges */
.hero-badges { display: flex; gap: 12px; margin-bottom: 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,185,43,0.08);
  border: 1px solid rgba(245,185,43,0.15);
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--accent);
}
.hero-badge svg { width: 14px; height: 14px; }

/* ===== CONTACT PAGE (light body) ===== */
.contact-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--dark);
}
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.contact-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; padding: var(--section-pad) 0;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--text-on-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px; padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text-on-light);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,185,43,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-detail-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-on-light); margin-bottom: 4px; }
.contact-detail-item p { font-size: 0.88rem; color: var(--text-muted-light); }
.contact-detail-item a { color: var(--text-muted-light); text-decoration: none; transition: color 0.2s; }
.contact-detail-item a:hover { color: var(--accent-dark); }

.contact-map {
  border-radius: var(--radius-card); overflow: hidden;
  aspect-ratio: 16/10; margin-top: 16px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== BLOG (light) ===== */
.blog-hero {
  padding: 140px 0 60px; text-align: center;
  background: var(--dark);
}
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.blog-hero p { font-size: 1.1rem; color: var(--text-muted); }

.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px; padding: 48px 0 var(--section-pad);
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card); padding: 32px;
  text-decoration: none; color: var(--text-on-light);
  transition: border-color 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.blog-card:hover { border-color: var(--border-light-hover); }
.blog-card-date { font-size: 0.78rem; color: var(--text-muted-light); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-on-light); margin-bottom: 10px; }
.blog-card p { font-size: 0.88rem; color: var(--text-muted-light); line-height: 1.55; margin-bottom: 16px; }
.blog-card .read-more { font-size: 0.88rem; color: var(--accent-dark); font-weight: 600; }

/* Blog post article */
.blog-post {
  padding: 140px 0 var(--section-pad);
}
.blog-post .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted-light); margin-bottom: 24px;
}
.blog-post .breadcrumb a { color: var(--text-muted-light); text-decoration: none; transition: color 0.2s; }
.blog-post .breadcrumb a:hover { color: var(--accent-dark); }
.blog-post .breadcrumb svg { width: 14px; height: 14px; }

.blog-post h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--text-on-light); margin-bottom: 12px;
}
.blog-post-date { font-size: 0.85rem; color: var(--text-muted-light); margin-bottom: 40px; }

.blog-post-body { max-width: 720px; }
.blog-post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 800; color: var(--text-on-light);
  margin: 48px 0 16px;
}
.blog-post-body h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--text-on-light);
  margin: 36px 0 12px;
}
.blog-post-body p {
  font-size: 1rem; color: var(--text-muted-light);
  line-height: 1.8; margin-bottom: 20px;
}
.blog-post-body ul, .blog-post-body ol {
  margin: 0 0 20px 24px; color: var(--text-muted-light);
  line-height: 1.8; font-size: 1rem;
}
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body a { color: var(--accent-dark); text-decoration: underline; }
.blog-post-body a:hover { color: var(--accent); }
.blog-post-body strong { color: var(--text-on-light); }

.blog-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-dark); text-decoration: none; font-weight: 600;
  margin-top: 40px; transition: color 0.2s;
}
.blog-back:hover { color: var(--accent); }

/* ===== FOOTER (dark) ===== */
footer {
  padding: 60px 0 32px;
  background: var(--darkest);
  color: var(--text-on-dark);
  margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted); font-size: 0.88rem;
  line-height: 1.6; margin-top: 16px; max-width: 280px;
}
.footer-col h4 {
  font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.88rem; margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-row: auto; aspect-ratio: 4/3; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  :root { --section-pad: 70px; }
  .hero { padding: 110px 0 60px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .diff-compare { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-img-before { width: 140px; height: 140px; left: -10px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .blog-grid { grid-template-columns: 1fr; }
}
