/* ============================================================
   Aaron Galabau - Main Stylesheet
   Design: Erdig, professionell, modern - inspired by nature
   ============================================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,700;9..144,900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

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

:root {
  /* Earth & Nature Palette */
  --color-leaf: #2d4a3a;
  --color-leaf-dark: #1f3528;
  --color-leaf-light: #3d6651;
  --color-moss: #5a7a4f;
  --color-bark: #4a3528;
  --color-sand: #e8e0d0;
  --color-cream: #f6f1e7;
  --color-stone: #d4ccba;
  --color-clay: #c97b4a;
  --color-clay-bright: #d68a5a;
  --color-charcoal: #2a2624;
  --color-soft-black: #1a1716;
  --color-white: #fdfbf7;

  /* Functional */
  --color-text: var(--color-charcoal);
  --color-text-muted: #6b6560;
  --color-bg: var(--color-cream);
  --color-bg-alt: var(--color-white);
  --color-accent: var(--color-clay);
  --color-primary: var(--color-leaf);

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 880px;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(42, 38, 36, 0.06);
  --shadow-md: 0 8px 24px rgba(42, 38, 36, 0.08);
  --shadow-lg: 0 16px 48px rgba(42, 38, 36, 0.12);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-leaf-dark);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-md);
  font-variation-settings: "opsz" 96;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-variation-settings: "opsz" 24;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: var(--space-sm);
  max-width: 65ch;
}

a {
  color: var(--color-leaf);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-clay);
}

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

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-2xl) 0;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 74, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-leaf-dark);
}

.logo-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--color-leaf);
  color: var(--color-cream);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.nav-list a {
  color: var(--color-charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

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

.nav-list a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-leaf);
  color: var(--color-cream);
}

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

.btn-accent {
  background: var(--color-clay);
  color: var(--color-white);
}

.btn-accent:hover {
  background: #b86a3d;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-leaf-dark);
  border: 1.5px solid var(--color-leaf-dark);
}

.btn-outline:hover {
  background: var(--color-leaf-dark);
  color: var(--color-cream);
}

.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-leaf-dark);
}

/* === HERO === */
.hero {
  padding: var(--space-2xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(201, 123, 74, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(45, 74, 58, 0.06), transparent 60%),
    var(--color-cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(42, 74, 58, 0.07) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: var(--space-md);
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--color-clay);
}

.hero h1 {
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-clay);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.hero-trust li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust li::before {
  content: '✓';
  color: var(--color-leaf);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--color-leaf) 0%, var(--color-leaf-light) 60%, var(--color-moss) 100%);
  box-shadow: var(--shadow-lg);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 224, 208, 0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(201, 123, 74, 0.25), transparent 60%);
}

.hero-visual-content {
  position: absolute;
  inset: 0;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-cream);
}

.hero-badge {
  align-self: flex-start;
  background: rgba(253, 251, 247, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 251, 247, 0.25);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.95rem;
  opacity: 0.92;
  line-height: 1.3;
}

/* === USP / WHY US === */
.usp-section {
  background: var(--color-bg-alt);
}

.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: var(--space-sm);
}

.section-intro {
  max-width: 640px;
  margin: 0 0 var(--space-xl) 0;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.usp-card {
  padding: var(--space-lg);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 74, 58, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-clay);
  transition: width var(--transition);
}

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

.usp-card:hover::before {
  width: 100%;
}

.usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-leaf);
  color: var(--color-cream);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.usp-card p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* === SERVICES === */
.services-section {
  background:
    linear-gradient(180deg, var(--color-cream) 0%, var(--color-sand) 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 74, 58, 0.08);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--color-text);
  border-color: var(--color-clay);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--color-leaf-dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-sm);
  flex-grow: 1;
}

.service-link {
  font-size: 0.9rem;
  color: var(--color-clay);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}

.service-card:hover .service-link {
  gap: 0.6rem;
  color: var(--color-clay-bright);
}

/* === CONSTRUCTION SECTION === */
.construction-section {
  background: var(--color-leaf-dark);
  color: var(--color-cream);
}

.construction-section h2,
.construction-section h3 {
  color: var(--color-cream);
}

.construction-section .section-eyebrow {
  color: var(--color-clay-bright);
}

.construction-section .section-intro {
  color: rgba(253, 251, 247, 0.85);
}

.construction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.construction-card {
  background: rgba(253, 251, 247, 0.05);
  border: 1px solid rgba(253, 251, 247, 0.1);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.construction-card:hover {
  background: rgba(253, 251, 247, 0.1);
  border-color: var(--color-clay-bright);
  transform: translateY(-3px);
}

.construction-card .service-icon {
  color: var(--color-clay-bright);
}

.construction-card p {
  color: rgba(253, 251, 247, 0.75);
  font-size: 0.95rem;
}

.construction-card .service-link {
  color: var(--color-clay-bright);
}

/* === HOW WE WORK === */
.process-section {
  background: var(--color-cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-step {
  position: relative;
  padding: var(--space-md);
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1.4rem;
  top: 1.5rem;
  font-size: 1.6rem;
  color: var(--color-clay);
  font-weight: 300;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-leaf);
  color: var(--color-cream);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* === QUALITY / EQUIPMENT === */
.quality-section {
  background: var(--color-bg-alt);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.quality-card {
  padding: var(--space-lg);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-leaf);
}

.quality-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quality-icon {
  font-size: 1.5rem;
}

/* === COVERAGE === */
.coverage-section {
  background: var(--color-sand);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.coverage-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}

.location-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.location-pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--color-cream);
  border: 1px solid rgba(45, 74, 58, 0.15);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--color-text);
  transition: all var(--transition);
  text-decoration: none;
}

.location-pill:hover {
  background: var(--color-leaf);
  color: var(--color-cream);
  border-color: var(--color-leaf);
}

/* === FAQ === */
.faq-section {
  background: var(--color-cream);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(45, 74, 58, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-leaf-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-cream);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-clay);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* === CONTACT / CTA === */
.contact-section {
  background: var(--color-leaf-dark);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 123, 74, 0.2), transparent 70%);
  pointer-events: none;
}

.contact-section h2 {
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.contact-lead {
  font-size: 1.15rem;
  color: rgba(253, 251, 247, 0.85);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  position: relative;
}

.contact-info h3 {
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: var(--space-sm);
  color: rgba(253, 251, 247, 0.9);
}

.contact-list a {
  color: var(--color-cream);
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--color-clay-bright);
}

.contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(253, 251, 247, 0.08);
  border-radius: 50%;
  font-size: 1.05rem;
}

.contact-form {
  background: rgba(253, 251, 247, 0.05);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(253, 251, 247, 0.1);
}

.form-group {
  margin-bottom: 1rem;
}

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

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(253, 251, 247, 0.85);
  margin-bottom: 0.3rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(253, 251, 247, 0.08);
  border: 1px solid rgba(253, 251, 247, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-cream);
  transition: all var(--transition);
}

input::placeholder, textarea::placeholder {
  color: rgba(253, 251, 247, 0.5);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-clay-bright);
  background: rgba(253, 251, 247, 0.12);
}

select option {
  background: var(--color-leaf-dark);
  color: var(--color-cream);
}

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

.form-consent {
  font-size: 0.82rem;
  color: rgba(253, 251, 247, 0.65);
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.form-consent a {
  color: var(--color-clay-bright);
  text-decoration: underline;
}

button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--color-clay);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

button[type="submit"]:hover {
  background: var(--color-clay-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 123, 74, 0.3);
}

/* === FOOTER === */
.site-footer {
  background: var(--color-soft-black);
  color: rgba(253, 251, 247, 0.7);
  padding: var(--space-xl) 0 var(--space-md);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-block h4 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.footer-block ul {
  list-style: none;
}

.footer-block li {
  margin-bottom: 0.5rem;
}

.footer-block a {
  color: rgba(253, 251, 247, 0.7);
  font-size: 0.95rem;
}

.footer-block a:hover {
  color: var(--color-clay-bright);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 0.6rem;
  display: inline-block;
}

.footer-brand-tag {
  color: rgba(253, 251, 247, 0.6);
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-legal {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}

.footer-legal a {
  color: rgba(253, 251, 247, 0.6);
  margin-left: 1rem;
}

.footer-legal a:first-child {
  margin-left: 0;
}

/* === STICKY MOBILE CALL === */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-leaf-dark);
  padding: 0.7rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mobile-call .btn {
  padding: 0.85rem 0.5rem;
  font-size: 0.95rem;
  width: 100%;
}

.mobile-call .btn-whatsapp {
  background: #25d366;
  color: white;
}

/* === SUBPAGE STYLES === */
.subpage-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background:
    linear-gradient(135deg, var(--color-leaf-dark) 0%, var(--color-leaf) 100%);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(253, 251, 247, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.subpage-hero h1 {
  color: var(--color-cream);
  position: relative;
  margin-bottom: var(--space-md);
}

.subpage-hero p {
  position: relative;
  font-size: 1.15rem;
  color: rgba(253, 251, 247, 0.9);
  max-width: 760px;
  margin-bottom: var(--space-md);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  position: relative;
  flex-wrap: wrap;
}

.breadcrumb li {
  color: rgba(253, 251, 247, 0.7);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--color-clay-bright);
}

.content-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}

.content-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.content-narrow h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
}

.content-narrow h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.content-narrow h3 {
  margin-top: var(--space-md);
}

.content-narrow ul, .content-narrow ol {
  margin-left: 1.4rem;
  margin-bottom: var(--space-sm);
}

.content-narrow li {
  margin-bottom: 0.4rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.95rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th, .price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(45, 74, 58, 0.08);
}

.price-table th {
  background: var(--color-leaf);
  color: var(--color-cream);
  font-weight: 600;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: var(--color-cream);
}

.cta-box {
  background: var(--color-leaf);
  color: var(--color-cream);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  text-align: center;
}

.cta-box h3 {
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.cta-box-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: var(--space-md);
}

.related-services {
  background: var(--color-sand);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

.related-services h3 {
  margin-bottom: var(--space-md);
}

.related-services ul {
  list-style: none;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.related-services li {
  margin-bottom: 0;
}

.related-services a {
  color: var(--color-leaf-dark);
  font-weight: 500;
}

.related-services a::before {
  content: '→ ';
  color: var(--color-clay);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 16/10;
  }

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

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

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

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

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

  .process-step:nth-child(2)::after {
    display: none;
  }

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

@media (max-width: 720px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 3rem;
  }

  body {
    padding-bottom: 70px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(45, 74, 58, 0.1);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    display: flex;
    align-items: stretch;
    gap: 1rem;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .nav .btn {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .construction-grid,
  .usp-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-legal a {
    margin-left: 0;
  }

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

  .mobile-call {
    display: block;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-stat-num {
    font-size: 2.4rem;
  }
}

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 3px solid var(--color-clay);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

.hero-content > * {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-lead { animation-delay: 0.3s; }
.hero-ctas { animation-delay: 0.45s; }
.hero-trust { animation-delay: 0.6s; }

/* ============================================ */
/* LEGAL PAGES (Impressum & Datenschutz)        */
/* ============================================ */
.legal-page {
  padding: 4rem 0 6rem;
  background: var(--bg);
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--leaf-dark);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--earth-900);
}
.legal-page p,
.legal-page ul {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--earth-700);
  margin-bottom: 1rem;
}
.legal-page ul {
  padding-left: 1.5rem;
}
.legal-page li {
  margin-bottom: 0.4rem;
}
.legal-page a {
  color: var(--leaf-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-page a:hover {
  color: var(--clay);
}
.legal-meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--earth-500);
  font-style: italic;
}

/* ============================================ */
/* SERVICE HUB PAGES                            */
/* ============================================ */
.service-hero {
  background: linear-gradient(135deg, var(--leaf-dark) 0%, var(--earth-900) 100%);
  color: white;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(217, 119, 87, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.service-hero .breadcrumb {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.service-hero .breadcrumb a {
  color: rgba(255,255,255,0.85);
}
.service-hero .breadcrumb li::after {
  color: rgba(255,255,255,0.5);
}
.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 900px;
}
.service-hero .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 720px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
}
.service-hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-section {
  padding: 4rem 0;
}
.service-section.alt {
  background: var(--bg-soft);
}
.service-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  color: var(--earth-900);
}
.service-section h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--leaf-dark);
}
.service-section .lead {
  font-size: 1.1rem;
  color: var(--earth-700);
  margin-bottom: 2rem;
  max-width: 800px;
  line-height: 1.7;
}
.service-section p {
  line-height: 1.75;
  color: var(--earth-700);
  margin-bottom: 1rem;
}
.service-section ul.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem 2rem;
  margin: 1.5rem 0;
}
.service-section ul.checklist li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.6;
}
.service-section ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--leaf);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(58, 38, 24, 0.06);
}
.pricing-table th {
  background: var(--earth-900);
  color: white;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.pricing-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:nth-child(even) td {
  background: var(--bg-soft);
}
.pricing-table .price-col {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--leaf-dark);
  white-space: nowrap;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.process-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  position: relative;
}
.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--clay);
  color: white;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--earth-900);
}
.process-step p {
  font-size: 0.95rem;
  color: var(--earth-700);
  line-height: 1.6;
  margin: 0;
}

/* Info Cards Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58, 38, 24, 0.08);
}
.info-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--earth-900);
}
.info-card p {
  font-size: 0.95rem;
  color: var(--earth-700);
  line-height: 1.6;
  margin: 0;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--leaf-dark), var(--earth-900));
  color: white;
  padding: 3rem 2rem;
  border-radius: 18px;
  text-align: center;
  margin: 3rem 0;
}
.cta-box h2 {
  color: white !important;
  margin-bottom: 0.75rem;
}
.cta-box p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-box .hero-ctas {
  justify-content: center;
}

/* Related Services */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.related-card {
  display: block;
  padding: 1.25rem 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--earth-900);
  font-weight: 500;
  transition: all 0.2s ease;
}
.related-card:hover {
  border-color: var(--leaf);
  background: var(--bg-soft);
  transform: translateY(-2px);
}
.related-card .arrow {
  float: right;
  color: var(--clay);
  font-weight: 700;
}

/* FAQ items on service pages */
.service-faq {
  max-width: 820px;
  margin: 0 auto;
}
