/* ============================================================
   Sun Lakes Home Remodeling — Master Stylesheet
   Retro Yellow / Orange / Dark Green — Abril Fatface + Lora
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lora:ital,wght@0,400;0,600;1,400&family=Oswald:wght@400;500;600&display=swap');

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-accent: #52B788;
  --yellow:       #F5C842;
  --yellow-dark:  #D4A520;
  --orange:       #E8651A;
  --orange-dark:  #BF4F10;
  --cream:        #FEF8E7;
  --warm-white:   #FFFDF5;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --border-warm:  #D4A853;
  --shadow:       0 4px 20px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
}

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

a { color: inherit; }

/* ---- HEADER ---- */
.site-header {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Abril Fatface', serif;
  color: var(--cream);
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.logo-badge {
  background: var(--orange);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 4px 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
}

/* ---- NAV ---- */
nav { display: flex; align-items: center; }

nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--cream);
  text-decoration: none;
  padding: 24px 14px;
  display: inline-block;
  transition: color .2s, background .2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav a:hover { color: var(--yellow); background: rgba(255,255,255,0.04); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: .8; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green-dark);
  border-top: 3px solid var(--orange);
  min-width: 260px;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.dropdown-menu a:last-child { border-bottom: none; }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 20px !important;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-cta:hover { background: var(--orange-dark) !important; color: white !important; }

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: .3s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .2s;
  cursor: pointer;
  border: none;
  border-radius: 2px;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 15px 32px;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,101,26,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  padding: 13px 30px;
  font-size: 0.95rem;
}

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

.btn-white {
  background: white;
  color: var(--orange);
  padding: 15px 36px;
  font-size: 0.95rem;
}

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

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 13px 28px;
  font-size: 0.9rem;
}

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

/* ---- HOMEPAGE HERO ---- */
.hero {
  background: var(--cream);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(27,67,50,0.04) 59px, rgba(27,67,50,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(27,67,50,0.04) 59px, rgba(27,67,50,0.04) 60px);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Abril Fatface', serif;
  font-size: 3.2rem;
  line-height: 1.08;
  color: var(--green-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

.hero-lead { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 32px; max-width: 500px; }

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.badge {
  background: var(--green-dark);
  color: var(--yellow);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.hero-image { position: relative; }

.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 10px 10px 0 var(--orange);
}

.hero-stamp {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 118px;
  height: 118px;
  background: var(--yellow);
  border: 4px solid var(--green-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-align: center;
  color: var(--green-dark);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
  z-index: 2;
}

.stamp-num {
  font-family: 'Abril Fatface', serif;
  font-size: 2.2rem;
  line-height: 1;
  display: block;
  color: var(--green-dark);
  margin-bottom: 2px;
}

/* ---- SECTIONS (shared) ---- */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Abril Fatface', serif;
  font-size: 2.4rem;
  color: var(--green-dark);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc { font-size: 1rem; color: var(--text-mid); max-width: 600px; line-height: 1.75; }

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

/* ---- SERVICES GRID ---- */
.services-section { background: var(--cream); }

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

.service-card {
  background: white;
  border-top: 4px solid var(--green-dark);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  display: block;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.11); }

.sc-icon { font-size: 2.4rem; margin-bottom: 16px; }

.service-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }

.sc-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ---- WHY US ---- */
.why-section { background: var(--green-dark); }
.why-section .section-title { color: var(--yellow); }
.why-section .section-desc { color: rgba(255,255,255,.75); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

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

.why-icon { font-size: 2.8rem; margin-bottom: 16px; }

.why-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.why-item p { font-size: 0.9rem; color: rgba(255,255,255,.72); line-height: 1.65; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--yellow);
  padding: 48px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
}

.stat-item { padding: 0 24px; border-right: 1px solid rgba(27,67,50,0.2); }
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Abril Fatface', serif;
  font-size: 3.2rem;
  color: var(--green-dark);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  margin-top: 6px;
  display: block;
}

/* ---- AGING-IN-PLACE FEATURE ---- */
.aip-feature {
  background: var(--orange);
  padding: 80px 24px;
}

.aip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.aip-feature .section-label { color: var(--yellow); }

.aip-feature .section-title { color: white; }

.aip-feature p { color: rgba(255,255,255,.88); font-size: 1rem; margin-bottom: 16px; }

.aip-checklist { list-style: none; margin: 24px 0 32px; }

.aip-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.aip-checklist li::before {
  content: '✓';
  background: rgba(255,255,255,.2);
  color: var(--yellow);
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.aip-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: -8px 8px 0 rgba(0,0,0,0.2);
}

/* ---- GALLERY PREVIEW ---- */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gp-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gp-item:hover img { transform: scale(1.06); }

.gp-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(27,67,50,.88));
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 24px 14px 12px;
  transform: translateY(100%);
  transition: transform .3s;
}

.gp-item:hover .gp-label { transform: translateY(0); }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--cream); }

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

.review-card {
  background: white;
  padding: 32px 28px;
  border-left: 5px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.review-stars { color: var(--yellow-dark); font-size: 1rem; margin-bottom: 16px; letter-spacing: .05em; }

.review-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.reviewer {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviewer span {
  display: block;
  font-weight: 400;
  color: var(--text-mid);
  text-transform: none;
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  letter-spacing: 0;
  margin-top: 2px;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--green-dark);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(245,200,66,0.03) 30px,
    rgba(245,200,66,0.03) 31px
  );
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 2.6rem;
  color: var(--yellow);
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-band .btn-primary { font-size: 1.05rem; padding: 17px 40px; }

/* ---- FOOTER ---- */
footer {
  background: #0e2a1e;
  color: rgba(255,255,255,.82);
  padding: 64px 24px 32px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-logo {
  font-family: 'Abril Fatface', serif;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 14px;
}

.footer-about { font-size: 0.9rem; line-height: 1.72; color: rgba(255,255,255,.65); }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color .2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--green-dark);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(245,200,66,0.03) 40px,
    rgba(245,200,66,0.03) 41px
  );
  pointer-events: none;
}

.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }

.breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.35); margin: 0 8px; }

.page-hero h1 {
  font-family: 'Abril Fatface', serif;
  font-size: 2.8rem;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 720px;
}

.page-hero h1 em { color: var(--yellow); font-style: normal; }

.page-hero-lead { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; line-height: 1.72; }

/* ---- PAGE CONTENT TWO-COL ---- */
.page-content { padding: 72px 24px; }
.page-content-inner { max-width: 1200px; margin: 0 auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

/* ---- CONTENT BODY (service pages) ---- */
.content-body img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  margin-bottom: 36px;
}

.content-body h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.85rem;
  color: var(--green-dark);
  margin: 40px 0 14px;
  line-height: 1.18;
}

.content-body h2:first-of-type { margin-top: 0; }

.content-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-mid);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.content-body p { margin-bottom: 16px; font-size: 0.98rem; color: var(--text-mid); line-height: 1.78; }

.content-body ul, .content-body ol { margin: 0 0 18px 22px; }

.content-body ul li, .content-body ol li {
  margin-bottom: 8px;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.65;
}

.content-body ul li::marker { color: var(--orange); }
.content-body ol li::marker { color: var(--green-mid); font-weight: 600; }

.content-cta {
  background: var(--cream);
  border-left: 5px solid var(--orange);
  padding: 24px 28px;
  margin: 36px 0;
}

.content-cta p { margin: 0 0 16px; font-weight: 600; color: var(--green-dark); }

/* ---- SIDEBAR ---- */
.sidebar-card {
  background: var(--cream);
  border-top: 4px solid var(--green-dark);
  padding: 26px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.sidebar-card ul { list-style: none; padding: 0; }

.sidebar-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  font-size: 0.9rem;
}

.sidebar-card ul li:last-child { border-bottom: none; }

.sidebar-card ul li a {
  color: var(--green-dark);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-card ul li a:hover { color: var(--orange); }
.sidebar-card ul li a::before { content: '→'; color: var(--orange); font-size: 0.8rem; }

.contact-sidebar {
  background: var(--green-dark);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}

.contact-sidebar h4 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 10px;
}

.contact-sidebar p { color: rgba(255,255,255,.78); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.65; }

.phone-display {
  font-family: 'Abril Fatface', serif;
  font-size: 1.6rem;
  color: var(--yellow);
  margin: 12px 0 20px;
  display: block;
}

/* ---- PROCESS STEPS ---- */
.process-section { background: var(--cream); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-warm);
  z-index: 0;
}

.step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }

.step-num {
  width: 68px;
  height: 68px;
  background: var(--green-dark);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Abril Fatface', serif;
  font-size: 1.7rem;
  color: var(--yellow);
  margin: 0 auto 18px;
}

.step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.step p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }

/* ---- GALLERY (full page) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .gl-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(27,67,50,.9));
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 24px 14px 12px;
  transform: translateY(100%);
  transition: transform .3s;
}

.gallery-item:hover .gl-label { transform: translateY(0); }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: white;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.1); }

.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }

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

.blog-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

.blog-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  color: rgba(0,0,0,.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
}

/* ---- SERVICE AREAS ---- */
.area-section {
  padding: 64px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.area-section:last-of-type { border-bottom: none; }

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

.area-grid.reverse { direction: rtl; }
.area-grid.reverse > * { direction: ltr; }

.area-img img { width: 100%; height: 340px; object-fit: cover; }

.area-body h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.area-body p { font-size: 0.97rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.76; }

.area-body ul { margin-left: 20px; }
.area-body ul li { font-size: 0.93rem; color: var(--text-mid); margin-bottom: 6px; }
.area-body ul li::marker { color: var(--orange); }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: white;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.9rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.contact-form > p { font-size: 0.93rem; color: var(--text-mid); margin-bottom: 28px; }

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

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

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e2d9c8;
  background: var(--warm-white);
  font-family: 'Lora', serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color .2s;
  outline: none;
  border-radius: 0;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }

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

.contact-info-card {
  background: var(--green-dark);
  padding: 36px;
  color: white;
}

.contact-info-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: 24px;
}

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

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

.ci-body strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 4px;
}

.ci-body span {
  font-size: 0.92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img img { width: 100%; height: 460px; object-fit: cover; }

.about-body h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.15;
}

.about-body p { font-size: 0.97rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.78; }

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

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

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 16px;
}

.team-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.team-card p { font-size: 0.88rem; color: var(--text-mid); }

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

.value-card {
  background: white;
  padding: 28px;
  border-top: 4px solid var(--orange);
}

.value-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.value-card p { font-size: 0.9rem; color: var(--text-mid); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
}

@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: block; }

  nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    border-top: 2px solid var(--orange);
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }

  nav.open a { padding: 12px 24px; }
  .nav-cta { margin-left: 0 !important; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; background: rgba(0,0,0,.2); min-width: 0; }
  .nav-dropdown.open .dropdown-menu { display: block; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .aip-inner { grid-template-columns: 1fr; }
  .aip-image { display: none; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .area-grid.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.9rem; }
  .page-hero h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .site-header { position: relative; }
  .contact-form { padding: 24px; }
}
