/* ============================================================
   ERON RENOVATIONS — Main Stylesheet
   Aesthetic: Luxury Modern · Warm Minimalism · Premium Residential
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Palette */
  --ink: #1C1917;          /* Deep warm black */
  --stone: #3C3530;        /* Warm dark brown */
  --slate: #6B6460;        /* Mid-tone warm grey */
  --pebble: #ADA79F;       /* Light warm grey */
  --linen: #F2EDE6;        /* Off-white linen */
  --cream: #FAF7F2;        /* Near-white cream */
  --white: #FFFFFF;
  --gold: #C9A96E;         /* Warm brushed gold accent */
  --gold-light: #DFC28F;
  --gold-dark: #A8863F;
  --charcoal: #2A2520;     /* Section dark bg */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, 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 */
  --max-width: 1280px;
  --gutter: 2rem;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 24px rgba(28,25,23,0.07);
  --shadow-hover: 0 8px 40px rgba(28,25,23,0.14);
  --transition: all 0.22s ease;

  /* Header */
  --header-h: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Section Base ---- */
.section {
  padding: var(--space-3xl) 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.section-header h2 { margin-bottom: var(--space-sm); }

.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  margin-top: var(--space-sm);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-sm  { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
.btn-md  { padding: 0.8rem 1.6rem; }
.btn-lg  { padding: 0.95rem 2rem; font-size: 0.9rem; }
.btn-xl  { padding: 1.1rem 2.4rem; font-size: 0.95rem; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,25,23,0.07);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(28,25,23,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.logo-text em {
  font-style: italic;
  font-weight: 300;
  color: var(--slate);
}

.logo--light .logo-text,
.logo--light .logo-text em { color: rgba(255,255,255,0.85); }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--stone);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover { color: var(--ink); }

.caret { font-size: 0.6em; vertical-align: middle; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  background: var(--white);
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  color: var(--stone);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--linen);
  color: var(--ink);
  padding-left: 1.5rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 95vh;
  min-height: 640px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A2520 0%, #1C1917 40%, #3C3530 100%);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-img.loaded { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(28,25,23,0.82) 0%,
    rgba(28,25,23,0.60) 50%,
    rgba(28,25,23,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-headline {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.trust-star { color: var(--gold-light); font-size: 0.85rem; }

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.25);
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(28,25,23,0.07);
  padding: var(--space-xl) 0;
}

.intro-strip-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--stone);
  font-style: italic;
}

.intro-text strong {
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
}

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

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(28,25,23,0.07);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--ink);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---- CTA STRIPS ---- */
.cta-strip {
  padding: var(--space-xl) 0;
}

.cta-strip--warm {
  background: var(--linen);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.cta-strip--dark {
  background: var(--charcoal);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-strip--dark .cta-strip-text h3,
.cta-strip--dark .cta-strip-text p { color: rgba(255,255,255,0.9); }

.cta-strip-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.cta-strip-text p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ---- WHY US ---- */
.why-us {
  background: var(--white);
}

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

.why-card {
  padding: var(--space-lg);
  border-left: 1px solid rgba(201,169,110,0.3);
}

.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.35);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.why-card h4 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ---- PORTFOLIO ---- */
.portfolio-preview { background: var(--cream); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.portfolio-item--large {
  grid-column: span 2;
  grid-row: span 1;
}

.portfolio-item { border-radius: var(--radius-md); overflow: hidden; }

.portfolio-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  overflow: hidden;
}

.portfolio-item--large .portfolio-img-wrap { padding-bottom: 55%; }

.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Fallback gradient when image not loaded */
.portfolio-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pebble) 0%, var(--linen) 100%);
  z-index: 0;
}

.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.portfolio-item:hover .portfolio-img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(28,25,23,0.7) 0%,
    transparent 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.portfolio-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.portfolio-type {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.portfolio-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--linen); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.stars { color: var(--gold); font-size: 1rem; }
.rating-text { font-size: 0.85rem; color: var(--slate); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card--featured {
  padding: var(--space-xl);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: var(--space-md);
}

.testimonial-card:not(.testimonial-card--featured) blockquote {
  font-size: 0.95rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--linen);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--pebble);
}

.testimonial-stars { color: var(--gold); font-size: 0.85rem; }

.reviews-cta { text-align: center; margin-top: var(--space-lg); }

/* ---- SERVICE AREA ---- */
.service-area { background: var(--cream); }

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.area-text p {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.area-text h2 { margin-bottom: var(--space-md); }

.area-map-visual {
  position: relative;
  height: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28,25,23,0.07);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.area-tag {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  background: rgba(250,247,242,0.92);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  z-index: 2;
  white-space: nowrap;
}

/* ---- FINAL CTA ---- */
.final-cta {
  background: var(--charcoal);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.final-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.final-cta p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.final-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.final-cta-contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.final-cta-contact a:hover { color: var(--gold-light); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-3xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { max-width: 280px; }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-rating {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col h5 {
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  margin-bottom: 0.25rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 1.4;
}

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

.footer-btn { margin-top: 0.5rem; }

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ---- PAGE-SPECIFIC: ABOUT ---- */
.page-hero {
  padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-3xl);
  background: var(--charcoal);
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto var(--space-lg); font-size: 1.05rem; }

.about-story {
  background: var(--white);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--linen);
  position: relative;
}

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

.about-story-text p {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-xl);
}

.value-item {
  display: flex;
  gap: 1rem;
}

.value-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.value-item h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.25rem; }
.value-item p  { font-size: 0.85rem; color: var(--slate); line-height: 1.5; }

/* ---- PAGE-SPECIFIC: SERVICE PAGES ---- */
.service-hero {
  padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-3xl);
  background: var(--charcoal);
}

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

.service-hero-text h1 { color: var(--white); margin-bottom: var(--space-md); }
.service-hero-text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; margin-bottom: var(--space-lg); }

.service-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--stone);
  position: relative;
}

.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.service-included {
  background: var(--cream);
}

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

.included-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 3px solid var(--gold);
}

.included-item h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.4rem; }
.included-item p  { font-size: 0.85rem; color: var(--slate); line-height: 1.5; }

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: var(--space-md);
}

.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0 auto var(--space-sm);
}

.process-step h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.85rem; color: var(--slate); line-height: 1.5; }

/* ---- FAQ ---- */
.faq-section { background: var(--linen); }

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

.faq-item {
  border-bottom: 1px solid rgba(28,25,23,0.1);
  padding: var(--space-md) 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.faq-toggle {
  width: 22px;
  height: 22px;
  border: 1px solid var(--pebble);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

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

.faq-answer p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  padding-top: var(--space-sm);
}

/* ---- CONTACT PAGE ---- */
.contact-page { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

.contact-info h2 { margin-bottom: var(--space-md); }

.contact-info p {
  color: var(--slate);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-item strong {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 70px;
  padding-top: 0.1em;
}

.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.9rem;
  color: var(--stone);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}

.contact-form-wrap h3 { margin-bottom: var(--space-sm); }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--slate); margin-bottom: var(--space-lg); }

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(28,25,23,0.12);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

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

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

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ---- REVIEWS PAGE ---- */
.reviews-hero { background: var(--charcoal); padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl); text-align: center; }
.reviews-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.reviews-hero .hero-sub { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto var(--space-md); }
.reviews-hero .rating-summary { justify-content: center; }

.all-reviews { background: var(--cream); }
.all-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--featured { grid-column: span 2; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item--large { grid-column: span 2; }
}

@media (max-width: 900px) {
  :root { --space-3xl: 5rem; --space-2xl: 3.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-inner,
  .service-hero-inner,
  .area-inner,
  .contact-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-story-img { max-height: 400px; }
  .service-hero { text-align: center; }
  .service-hero-text .btn { margin: 0 auto; }
  .all-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --gutter: 1.25rem;
    --space-3xl: 4rem;
    --header-h: 68px;
  }

  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--cream);
    padding: var(--space-xl) var(--gutter);
    gap: var(--space-md);
    overflow-y: auto;
    z-index: 999;
    align-items: flex-start;
  }

  .main-nav.open .nav-link { font-size: 1.1rem; color: var(--ink); }
  .main-nav.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0.25rem 0 0 1rem; }
  .main-nav.open .dropdown-menu a { font-size: 0.95rem; padding: 0.4rem 0; }
  .main-nav.open .header-cta-mobile { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; margin-top: auto; padding-top: var(--space-md); }
  .main-nav.open .header-cta-mobile .btn { width: 100%; justify-content: center; }

  .hero { height: 100svh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 1rem; }
  .trust-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item--large { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-strip-inner { flex-direction: column; text-align: center; gap: var(--space-md); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .all-reviews-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

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

/* ---- Logo images (Eron brand) ---- */
.logo-img-mark {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 130px;
  width: auto;
  opacity: 0.92;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .logo-img-mark { height: 38px; }
  .footer-logo-img { height: 100px; }
}
