/* ============================================
   KORESTON CONSTRUCTION — PREMIUM BEIGE THEME
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  /* Brand Palette */
  --gold:        #1a1a1a;
  --gold-light:  #444444;
  --gold-dark:   #000000;
  --gold-faint:  rgba(200,151,58,0.12);

  /* Beige / Warm Neutrals */
  --cream:       #F8F4EE;
  --beige:       #EDE6D9;
  --beige-mid:   #DDD3C0;
  --beige-dark:  #C9BAA3;
  --sand:        #B5A48C;

  /* Warm Browns */
  --brown-deep:  #000000;
  --brown-dark:  #111111;
  --brown:       #222222;
  --brown-mid:   #444444;
  --brown-light: #666666;

  /* Text */
  --text:        #3D2B1F;
  --text-muted:  #7A6555;
  --text-light:  #A89080;

  /* Whites */
  --white:       #FDFAF6;
  --off-white:   #F5F1EA;

  /* Utility */
  --border:       rgba(0,0,0,0.2);
  --border-light: rgba(200,151,58,0.12);
  --shadow:       0 4px 24px rgba(42,31,20,0.10);
  --shadow-lg:    0 16px 56px rgba(42,31,20,0.14);
  --shadow-gold:  0 8px 32px rgba(0,0,0,0.25);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', system-ui, -apple-system, sans-serif;

  /* Legacy aliases used in inner page inline styles */
  --light-grey:   #F0EAE0;
  --black:        #1C1410;
  --grey:         #7A6555;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown-dark);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--text-muted); line-height: 1.8; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.section-title { margin-bottom: 18px; color: var(--brown-dark); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 60px;
  font-weight: 300;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  font-family: var(--font-body);
}

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

.btn-dark {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}
.btn-dark:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--brown-dark);
  border-color: var(--beige-dark);
}
.btn-outline-dark:hover {
  background: var(--beige);
  border-color: var(--brown-mid);
}

.btn-lg { padding: 17px 38px; font-size: 0.95rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(252,250,246,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 32px rgba(42,31,20,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo img { height: 50px; width: auto; }

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

.nav-links a {
  color: var(--brown-mid);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--brown-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

.nav-phone {
  color: var(--gold-dark);
  font-weight: 500;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}

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

.mobile-nav a {
  color: var(--brown-mid);
  font-size: 0.95rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }

/* Sticky mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(42,31,20,0.08);
}

.sticky-mobile-cta a { flex: 1; text-align: center; justify-content: center; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,16,10,0.88) 0%,
    rgba(26,16,10,0.70) 45%,
    rgba(26,16,10,0.30) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 148px 0 100px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,58,0.15);
  border: 1px solid rgba(200,151,58,0.35);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--font-body);
}

.hero h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

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

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
}

.hero-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 52px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1;
}

.stat-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--brown-dark);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}

.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(200,151,58,0.07); }

.trust-icon { font-size: 1.4rem; flex-shrink: 0; }

.trust-item h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.trust-item p { color: rgba(255,255,255,0.38); font-size: 0.76rem; }

/* ─── SERVICES ─── */
.services-section { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,0,0,0.2);
}

.service-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--beige);
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--beige);
}

.service-card-body { padding: 26px; }

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--brown-dark);
  font-family: var(--font-heading);
  font-weight: 600;
}

.service-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap var(--transition);
}

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

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

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.66%; right: 16.66%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(200,151,58,0.15));
}

.process-card { text-align: center; position: relative; z-index: 1; }

.process-num {
  width: 100px; height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 1.5px solid var(--gold);
  position: relative;
  box-shadow: var(--shadow);
}

.process-num span {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.process-icon {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
}

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

/* ─── GALLERY ─── */
.gallery-section { background: var(--brown-dark); padding: 100px 0; }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-label { color: var(--gold-light); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.45); }

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

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

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

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

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.gallery-placeholder .icon { font-size: 2.5rem; opacity: 0.3; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,151,58,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.why-visual { position: relative; }

.why-visual-main {
  border-radius: var(--radius-lg);
  height: 520px;
  overflow: hidden;
  position: relative;
}

.why-visual-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.why-visual-main-placeholder {
  width: 100%; height: 100%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.why-badge strong {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.why-badge span { font-size: 0.72rem; font-weight: 500; opacity: 0.85; letter-spacing: 0.06em; }

.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 44px; }

.why-point { display: flex; gap: 16px; align-items: flex-start; }

.why-point-icon {
  width: 50px; height: 50px;
  background: var(--beige);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.why-point h4 { margin-bottom: 4px; color: var(--brown-dark); font-weight: 600; }
.why-point p { font-size: 0.875rem; color: var(--text-muted); }

/* ─── ESTIMATE FORM ─── */
.estimate-section {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.estimate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(200,151,58,0.07), transparent 60%);
}

.estimate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.estimate-info h2 { color: var(--white); }
.estimate-info .section-label { color: var(--gold-light); }
.estimate-info .section-subtitle { color: rgba(255,255,255,0.45); }

.estimate-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.perk-icon {
  width: 32px; height: 32px;
  background: rgba(200,151,58,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--gold-light);
}

/* ─── FORMS ─── */
.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--brown-dark);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--beige);
  font-family: var(--font-heading);
  font-weight: 600;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brown-mid);
  margin-bottom: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-group label .req { color: var(--gold); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,0.12);
}

.form-control::placeholder { color: var(--sand); }
textarea.form-control { resize: vertical; min-height: 100px; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5A48C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.checkbox-group, .radio-group { display: flex; flex-direction: column; gap: 10px; }

.checkbox-item, .radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-item input, .radio-item input {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-item span, .radio-item span { font-size: 0.9rem; color: var(--text-muted); }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; }

.form-note { text-align: center; font-size: 0.76rem; color: var(--sand); margin-top: 12px; }

/* ─── SERVICE AREA ─── */
.area-section { background: var(--white); }

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

.area-map {
  background: var(--beige);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.area-map-inner { text-align: center; color: var(--text-muted); }
.area-map-inner .map-icon { font-size: 4rem; margin-bottom: 12px; opacity: 0.4; }
.area-map-inner p { font-size: 0.875rem; }

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.area-tag::before { content: '📍'; font-size: 0.75rem; }

.area-tag.featured {
  background: var(--brown-dark);
  color: var(--gold-light);
  border-color: transparent;
}

.area-tag.featured::before { content: '⭐'; }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--brown-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,151,58,0.08), transparent 60%);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.final-cta h2 { color: var(--white); max-width: 500px; }
.final-cta p { color: rgba(255,255,255,0.50); margin-top: 8px; }
.final-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer {
  background: var(--brown-deep);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 24px; font-weight: 300; }

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition);
  cursor: pointer;
  color: rgba(255,255,255,0.6);
}

.social-btn:hover { background: var(--gold); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.42);
  font-size: 0.875rem;
  font-weight: 300;
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.875rem;
}

.footer-contact-item .icon { font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); font-weight: 300; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-contact-item div { color: rgba(255,255,255,0.45); font-weight: 300; font-size: 0.875rem; }

.footer-hours span { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.38); padding: 2px 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.25);
}

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

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--brown-dark);
  background-image: url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?w=1400&q=70&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 148px 0 84px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,16,10,0.93) 0%, rgba(26,16,10,0.80) 60%, rgba(26,16,10,0.65) 100%);
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-style: italic; font-weight: 400; }
.page-hero p { color: rgba(255,255,255,0.50); font-size: 1.05rem; max-width: 560px; font-weight: 300; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ─── SERVICE DETAIL ─── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.service-detail-content h2 { margin-bottom: 18px; }
.service-detail-content p { margin-bottom: 20px; }

.service-includes { margin: 36px 0; }
.service-includes h3 { font-size: 1.2rem; margin-bottom: 18px; font-family: var(--font-heading); }

.include-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.include-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.include-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
}

.service-form-sticky { position: sticky; top: 94px; }

/* ─── VALUE GRID ─── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.2);
  box-shadow: var(--shadow-lg);
}

.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-family: var(--font-heading); }
.value-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--brown-dark);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 8px; font-style: italic; font-weight: 400; }
.contact-info-card > p { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-bottom: 44px; font-weight: 300; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-detail:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }

.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(200,151,58,0.14);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-detail p, .contact-detail a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 300; }
.contact-detail a:hover { color: var(--gold-light); }

/* ─── PROJECTS ─── */
.projects-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--beige-dark);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--white);
}

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

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

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

.project-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--beige);
}

.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-img img { transform: scale(1.05); }

.project-card-body { padding: 22px 24px; }
.project-card-body h4 { margin-bottom: 4px; font-family: var(--font-heading); font-weight: 600; color: var(--brown-dark); }
.project-card-body p { font-size: 0.82rem; color: var(--text-muted); }

.project-category {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(200,151,58,0.12);
  color: var(--gold-dark);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

/* ─── HOMEPAGE UTILITY CLASSES ─── */
.gallery-cta-wrap { margin-top: 52px; }

.why-intro-text {
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 300;
}

.estimate-title { color: var(--white); }

.estimate-contact-block {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.estimate-contact-label {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.estimate-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estimate-contact-links a.link-phone {
  color: var(--gold-light);
  font-size: 1rem;
  font-family: var(--font-heading);
}

.estimate-contact-links a.link-secondary {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.area-intro-text {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.area-cta-text {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.area-cta-text a {
  color: var(--gold);
  font-weight: 500;
}

.footer-logo-img { height: 46px; }

/* ─── SUCCESS ─── */
.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success.visible { display: block; }

.success-icon {
  width: 70px; height: 70px;
  background: rgba(200,151,58,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--gold);
}

.form-success h3 { color: var(--brown-dark); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

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

.animate-up {
  opacity: 0;
  will-change: transform, opacity;
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .estimate-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-form-sticky { position: static; }
  .gallery-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-badge { bottom: 16px; right: 16px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta .btn:not(.btn-sm) { display: none; }
  .hamburger { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta-btns { justify-content: center; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .gallery-grid, .projects-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-phone { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
}

/* Footer logo sizing */
.footer-brand .logo img {
  height: auto !important;
  width: 130px !important;
  object-fit: contain;
}

/* Header logo sizing */
.nav .logo img {
  height: 72px !important;
  width: auto !important;
  object-fit: contain;
}

/* Restore gold, only brown → black */
:root {
  --gold:        #C8973A !important;
  --gold-light:  #E0B86A !important;
  --gold-dark:   #A67828 !important;
  --gold-faint:  rgba(200,151,58,0.12) !important;
  --shadow-gold: 0 8px 32px rgba(200,151,58,0.25) !important;
  --border:      rgba(200,151,58,0.2) !important;
}
