/* ================================================
   Curb & Home Appeal - Global Styles
   Design tokens from onboarding landing page
   ================================================ */

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

:root {
  --slate: #0f172a;
  --sage: #2d5016;
  --sage-light: #4a7c28;
  --sage-bg: rgba(45, 80, 22, 0.06);
  --cream: #faf8f3;
  --warm: #f5f0e8;
  --gold: #c8a84e;
  --gold-light: #d4b85e;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --red: #dc2626;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

a { color: var(--sage); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sage-light); }

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

/* ================================================
   NAVIGATION
   ================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 80, 22, 0.08);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--sage);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sage); }

.nav-links a.active { color: var(--sage); font-weight: 600; }

.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--sage);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--sage-light);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

.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 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 105;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(45, 80, 22, 0.08);
}

.mobile-nav a:hover { color: var(--sage); }

.mobile-nav .nav-cta {
  margin-top: 1rem;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 70px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 5rem;
}

.hero-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--sage-bg);
  border-radius: 4px;
  width: fit-content;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--slate);
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

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

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

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

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--sage-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--sage-bg);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.hero-visual {
  background: linear-gradient(160deg, var(--sage) 0%, #1a3d08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem;
  position: relative;
  z-index: 1;
}

.hero-icon-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
}

.hero-icon-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.hero-icon-card svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 1rem;
}

.hero-icon-card span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ================================================
   SECTION HELPERS
   ================================================ */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -1px;
  margin-bottom: 1rem;
  max-width: 650px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 3.5rem;
}

.section-center { text-align: center; }
.section-center .section-title { margin-left: auto; margin-right: auto; }
.section-center .section-desc { margin-left: auto; margin-right: auto; }

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
  padding: 6rem 5rem;
  background: var(--white);
}

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

.service-card {
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(45, 80, 22, 0.08);
  background: var(--cream);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  border-color: rgba(45, 80, 22, 0.15);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.06);
  transform: translateY(-4px);
  color: inherit;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-price {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}

/* ================================================
   SERVICE DETAIL PAGE
   ================================================ */
.service-hero {
  padding: 8rem 5rem 4rem;
  background: linear-gradient(160deg, var(--sage) 0%, #1a3d08 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.service-hero .section-label { color: var(--gold); }
.service-hero .section-title { color: var(--white); max-width: 700px; font-size: clamp(2.2rem, 4vw, 3.2rem); }
.service-hero .section-desc { color: rgba(255, 255, 255, 0.75); max-width: 600px; margin-bottom: 2rem; }

.service-hero-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.service-hero-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.5rem;
}

.service-detail {
  padding: 5rem;
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  max-width: 1100px;
}

.service-detail h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

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

.service-includes {
  list-style: none;
  padding: 0;
}

.service-includes li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(45, 80, 22, 0.06);
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-includes li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--sage-bg);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d5016' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.service-sidebar {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 80, 22, 0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.service-sidebar h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.price-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(45, 80, 22, 0.06);
  font-size: 0.9rem;
}

.price-table td:first-child { color: var(--muted); }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--sage); }

/* ================================================
   WHY SECTION
   ================================================ */
.why {
  padding: 6rem 5rem;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(45, 80, 22, 0.1);
  line-height: 1;
  min-width: 50px;
}

.why-point h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

.why-point p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================
   SERVICE AREA
   ================================================ */
.area {
  padding: 5rem;
  background: var(--sage);
  color: var(--white);
  text-align: center;
}

.area .section-label { color: var(--gold); }
.area .section-title { color: var(--white); margin: 0 auto 1rem; }
.area .section-desc { color: rgba(255, 255, 255, 0.7); margin: 0 auto 2.5rem; }

.area-towns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.area-tag {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  padding: 6rem 5rem;
  background: var(--warm);
  text-align: center;
}

.cta-section .section-title {
  margin: 0 auto 1rem;
  max-width: 600px;
}

.cta-section .section-desc {
  margin: 0 auto 2.5rem;
}

/* ================================================
   QUOTE FORM
   ================================================ */
.quote-hero {
  padding: 8rem 5rem 4rem;
  background: linear-gradient(160deg, var(--sage) 0%, #1a3d08 100%);
  color: var(--white);
  text-align: center;
}

.quote-hero .section-label { color: var(--gold); }
.quote-hero .section-title { color: var(--white); margin: 0 auto 1rem; }
.quote-hero .section-desc { color: rgba(255, 255, 255, 0.75); margin: 0 auto; }

.quote-section {
  padding: 4rem 5rem 6rem;
  background: var(--white);
}

.quote-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(45, 80, 22, 0.08);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group label .required { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(45, 80, 22, 0.15);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(45, 80, 22, 0.1);
  transition: all 0.2s;
}

.checkbox-label:hover { background: rgba(45, 80, 22, 0.04); }

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sage);
}

.form-submit-row {
  margin-top: 2rem;
  text-align: center;
}

.form-submit-row .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage);
  margin: 1rem 0 0.75rem;
}

.form-success p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.form-error {
  background: #fef2f2;
  color: var(--red);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #fecaca;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-hero {
  padding: 8rem 5rem 4rem;
  background: linear-gradient(160deg, var(--sage) 0%, #1a3d08 100%);
  color: var(--white);
  text-align: center;
}

.gallery-hero .section-label { color: var(--gold); }
.gallery-hero .section-title { color: var(--white); margin: 0 auto 1rem; }
.gallery-hero .section-desc { color: rgba(255, 255, 255, 0.75); margin: 0 auto; }

.gallery-section {
  padding: 5rem;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(45, 80, 22, 0.08);
  background: var(--cream);
}

.gallery-placeholder {
  height: 250px;
  background: linear-gradient(135deg, var(--warm) 0%, #e8e0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1;
  opacity: 0.4;
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-badge.before {
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
}

.gallery-badge.after {
  background: var(--sage);
  color: var(--white);
}

.gallery-card-info {
  padding: 1.5rem;
}

.gallery-card-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

.gallery-card-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

.gallery-coming-soon {
  text-align: center;
  padding: 3rem;
  margin-top: 3rem;
  background: var(--cream);
  border-radius: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-coming-soon h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.gallery-coming-soon p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================================================
   CLOSING / TESTIMONIAL SECTION
   ================================================ */
.closing {
  padding: 6rem 5rem;
  background: var(--white);
  text-align: center;
}

.closing-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--slate);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  padding: 3rem 5rem;
  background: var(--slate);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo { color: var(--white); }
footer .logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ================================================
   PAGE HEADER (for inner pages)
   ================================================ */
.page-header {
  padding: 8rem 5rem 4rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(45, 80, 22, 0.06);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--sage); }
.breadcrumb span { color: var(--muted); }

/* ================================================
   ALL SERVICES PAGE
   ================================================ */
.services-page {
  padding: 5rem;
  background: var(--white);
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
}

.service-page-card {
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(45, 80, 22, 0.08);
  background: var(--cream);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-page-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-page-card:hover {
  border-color: rgba(45, 80, 22, 0.15);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.06);
  transform: translateY(-4px);
  color: inherit;
}

.service-page-card .service-icon { margin-bottom: 1.25rem; }

.service-page-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.service-page-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-page-card .service-price {
  font-size: 1rem;
}

.service-page-card .card-arrow {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 32px;
  height: 32px;
  background: var(--sage-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-page-card:hover .card-arrow {
  background: var(--sage);
}

.service-page-card .card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}

.service-page-card:hover .card-arrow svg { stroke: var(--white); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 6rem 2rem 3rem; }
  .hero-visual { min-height: 350px; }
  .hero-icon-grid { gap: 1rem; padding: 2rem; }

  .services, .why, .area, .closing, .cta-section { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .service-hero, .quote-hero, .gallery-hero, .page-header { padding: 7rem 1.5rem 3rem; }
  .service-detail { padding: 3rem 1.5rem; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .quote-section { padding: 3rem 1.5rem 4rem; }
  .quote-form-wrapper { padding: 2rem 1.5rem; }
  .gallery-section { padding: 3rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }

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

  nav { padding: 1rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
  .hero-stats { gap: 1.5rem; }
  .services-page { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-icon-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { text-align: center; }
  .logo { font-size: 1.15rem; }
}

/* ================================================
   STRUCTURED DATA / SEO HELPERS
   ================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
