/* ============================================================
   Lamb Bros Painting & Drywall — Shared Stylesheet
   Site prototype by BRCG (Blue Ridge Consulting Group)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* --- Custom Properties (Brand Tokens) --- */
:root {
  /* Colors */
  --forest:    #2D5016;
  --forest-dark: #1E3A0E;
  --sage:      #6B8F54;
  --sage-light:#8BAF74;
  --clay:      #A0522D;
  --clay-light:#C4734A;
  --gold:      #D4A76A;
  --gold-light:#E4C08A;
  --cream:     #FAF6F0;
  --linen:     #F2EBE0;
  --charcoal:  #2C2C2C;
  --dark:      #1A1A1A;
  --white:     #FFFFFF;
  --text:      #2C2C2C;
  --text-light:#5A5A5A;
  --text-muted:#8A8A80;
  --border:    #E0D8CC;

  /* Gradients */
  --accent-gradient: linear-gradient(135deg, var(--forest), var(--sage));
  --warm-gradient:   linear-gradient(135deg, var(--clay), var(--gold));
  --card-accent:     linear-gradient(90deg, var(--forest), var(--sage), var(--gold));

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Spacing */
  --section-pad:   80px 0;
  --container-max: 1200px;
  --gap:           24px;
  --radius:        8px;
  --radius-lg:     12px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 36px rgba(0,0,0,0.16);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
}

.label--light {
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .label {
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

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

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

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

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

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* --- Mockup Banner --- */
.mockup-banner {
  background: var(--dark);
  color: var(--text-muted);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
}

.mockup-banner a {
  color: var(--gold);
  text-decoration: underline;
}

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
}

.header__logo-text {
  color: var(--white);
}

.header__logo-text strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  display: block;
  line-height: 1.2;
}

.header__logo-text span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sage-light);
  letter-spacing: 0.5px;
}

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

.nav__links {
  display: flex;
  gap: 4px;
}

.nav__links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--duration) var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__phone {
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.nav__phone:hover {
  color: var(--gold-light) !important;
}

.nav__cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav__cta:hover {
  background: var(--sage) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
  z-index: 1010;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

.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);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.mobile-nav__phone {
  color: var(--gold) !important;
  font-family: var(--font-mono) !important;
  font-size: 18px !important;
  margin-top: 16px;
}

.mobile-nav__cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  margin-top: 8px;
  padding: 14px 32px !important;
  border-radius: var(--radius) !important;
}

/* --- Hero Section (Homepage) --- */
.hero {
  position: relative;
  background: var(--dark);
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 80, 22, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(160, 82, 45, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__meta-item .value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
}

.hero__meta-item .desc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  background: var(--dark);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(45, 80, 22, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  background: var(--linen);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.breadcrumbs__list a {
  color: var(--sage);
}

.breadcrumbs__list a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.breadcrumbs__sep {
  color: var(--border);
}

/* --- Sections --- */
.section {
  padding: var(--section-pad);
}

.section--cream {
  background: var(--cream);
}

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

.section--linen {
  background: var(--linen);
}

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p,
.section--dark li {
  color: rgba(255,255,255,0.7);
}

.section--dark .label {
  color: var(--gold);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent);
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--forest);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--forest);
  margin-top: 16px;
  transition: gap var(--duration) var(--ease);
}

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

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.gallery-grid--featured {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.gallery-item__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* --- Testimonial Cards --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-card__stars .star {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--forest);
}

.review-card__info strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.review-card__info span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}

.stat-item {
  padding: 32px 16px;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-item__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section--dark .stat-item__number {
  background: var(--warm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section--dark .stat-item__label {
  color: rgba(255,255,255,0.5);
}

/* --- Info Cards --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Area Cards --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent);
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.area-card strong {
  font-family: var(--font-heading);
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.area-card span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* --- Map Section --- */
.map-section {
  position: relative;
  height: 400px;
  background: var(--linen);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85);
}

.map-section__overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
}

.map-section__overlay h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.map-section__overlay p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--forest);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 143, 84, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 167, 106, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  margin: 0 8px;
}

.cta-section__phone {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.cta-section__phone a {
  color: var(--gold);
}

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

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 15px;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 143, 84, 0.15);
}

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

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

/* --- Footer --- */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact li {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

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

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
}

.footer__bottom a:hover {
  color: var(--gold);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive Breakpoints --- */

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

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

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

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

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

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

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

  .hero h1 {
    font-size: 42px;
  }

  .section-header h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 0;
  }

  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
  }

  .nav__links,
  .nav__phone,
  .nav__cta {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__meta {
    gap: 20px;
  }

  .hero__meta-item .value {
    font-size: 18px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 16px;
  }

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

  .gallery-grid,
  .gallery-grid--featured {
    grid-template-columns: 1fr;
  }

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

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

  .stat-item__number {
    font-size: 36px;
  }

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

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section .btn {
    display: block;
    margin: 8px auto;
    width: fit-content;
  }

  .contact-form {
    padding: 24px;
  }

  .map-section {
    height: 300px;
  }

  .map-section__overlay {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0;
    border-radius: 0;
    max-width: 100%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

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

  .header__logo-text strong {
    font-size: 14px;
  }

  .header__logo-text span {
    font-size: 10px;
  }
}
