/* ============================================================
   PAINT & PAINT CORP — stylesheet
   Palette: charcoal · cream · olive · terracotta · warm gray
   NO blue, yellow, or red
   ============================================================ */

/* ---------- Custom properties ---------- */
:root {
  --charcoal:    #2a2825;
  --dark:        #1a1816;
  --cream:       #f5f0e8;
  --ivory:       #ede8dc;
  --parchment:   #ddd6c8;
  --sand:        #c8b99a;
  --warm-gray:   #6b6560;
  --light-gray:  #a8a29c;
  --olive:       #4a5240;
  --olive-light: #6b7260;
  --terra:       #8b5e3c;
  --terra-light: #a87450;
  --off-white:   #faf8f4;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "DM Sans", system-ui, sans-serif;
  --font-accent:  "Cormorant Garamond", Georgia, serif;

  --nav-h: 80px;
  --max-w: 1280px;
  --radius: 2px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--charcoal);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
}
.italic-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.section-sm { padding: clamp(2.5rem, 6vw, 5rem) 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.35s var(--ease-out),
              transform 0.35s var(--ease-out),
              box-shadow 0.35s;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(26, 24, 22, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.site-header.hidden { transform: translateY(-100%); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--terra);
  border: 2px solid var(--terra);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--cream);
}
.logo-text em {
  font-style: normal;
  color: var(--sand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  padding: 0.4rem 0.65rem;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0.65rem; right: 0.65rem;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--terra);
  color: var(--cream) !important;
  padding: 0.5rem 1.1rem !important;
  font-size: 0.75rem !important;
  border: none;
  letter-spacing: 0.08em;
  transition: background 0.25s !important;
}
.nav-call-btn::after { display: none !important; }
.nav-call-btn:hover { background: var(--terra-light) !important; color: var(--cream) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Flash messages ---------- */
.flash-container {
  position: fixed;
  top: calc(var(--nav-h) + 1rem);
  right: 1.5rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.flash {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-left: 3px solid;
  min-width: 280px;
  max-width: 400px;
  animation: slideIn 0.4s var(--ease-out);
}
.flash--success { background: var(--olive); border-color: #8fad7a; color: var(--cream); }
.flash--error   { background: var(--charcoal); border-color: var(--terra); color: var(--cream); }
.flash-close { background: none; border: none; color: inherit; cursor: pointer; font-size: 0.9rem; margin-left: auto; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

/* ---------- Reveal animations ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal      { transform: translateY(24px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right{ transform: translateX(36px); }
.reveal-up   { transform: translateY(32px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  border-radius: var(--radius);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terra); color: var(--cream); }
.btn-primary:hover { background: var(--terra-light); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.4); }
.btn-outline:hover { background: rgba(245,240,232,0.08); border-color: var(--cream); }
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: var(--dark); }
.btn-olive { background: var(--olive); color: var(--cream); }
.btn-olive:hover { background: var(--olive-light); }

/* ---------- Section headings ---------- */
.section-header { margin-bottom: 3.5rem; }
.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}
.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ---------- Divider / stroke ---------- */
.stroke-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--terra);
  margin: 1.25rem 0;
}

/* ======================================================
   HOMEPAGE
   ====================================================== */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vw, 8rem);
  overflow: hidden;
  background: var(--dark);
}
.hero-parallax {
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(160deg, rgba(26,24,22,0.85) 35%, rgba(74,82,64,0.5) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: cover, 200px 200px;
  background-color: #2a2825;
  will-change: transform;
}

/* Paint-stroke texture overlay */
.hero::before {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 70%;
  background: linear-gradient(135deg, transparent 40%, rgba(139,94,60,0.18) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(200,185,154,0.04) 12px,
    rgba(200,185,154,0.04) 13px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--terra);
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 8rem);
  color: var(--cream);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.hero h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.65);
  max-width: 480px;
  line-height: 1.75;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll span { writing-mode: vertical-rl; }
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.3), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Intro strip */
.intro-strip {
  background: var(--charcoal);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.intro-stat {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.intro-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.intro-stat-num sup { font-size: 0.55em; vertical-align: super; color: var(--terra); }
.intro-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 0.3rem;
}
.intro-divider {
  width: 1px;
  height: 50px;
  background: rgba(245,240,232,0.12);
  flex-shrink: 0;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--parchment);
}
.service-card {
  background: var(--off-white);
  padding: clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--terra);
  transition: height 0.4s var(--ease-out);
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--ivory); }

.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
  color: var(--terra);
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.service-card a.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  transition: gap 0.25s;
}
.service-card a.service-link:hover { gap: 0.85rem; }
.service-card a.service-link::after {
  content: "→";
  transition: transform 0.25s;
}

/* Why choose us */
.why-section { background: var(--charcoal); color: var(--cream); }
.why-section .section-header p { color: var(--sand); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 3rem;
}
.why-item {
  background: var(--charcoal);
  padding: 2.5rem;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.why-item h4 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.why-item p { color: var(--light-gray); font-size: 0.92rem; line-height: 1.75; }
.why-num {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(139,94,60,0.3);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* CTA band */
.cta-band {
  background: var(--terra);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.cta-band p { color: rgba(245,240,232,0.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ======================================================
   INTERIOR / EXTERIOR / RESIDENTIAL / PREPARATION
   ====================================================== */

/* Page hero (inner pages) */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.page-hero-bg.olive-bg  { background: radial-gradient(ellipse at 70% 30%, var(--olive) 0%, var(--dark) 70%); }
.page-hero-bg.terra-bg  { background: radial-gradient(ellipse at 30% 60%, var(--terra) 0%, var(--dark) 70%); }
.page-hero-bg.sand-bg   { background: radial-gradient(ellipse at 60% 40%, var(--sand) 0%, var(--dark) 70%); }
.page-hero-bg.warm-bg   { background: radial-gradient(ellipse at 50% 50%, #3d3428 0%, var(--dark) 70%); }

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
}
.page-hero h1 em {
  color: var(--sand);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
}
.page-hero p {
  color: rgba(245,240,232,0.65);
  margin-top: 1.25rem;
  font-size: 1.05rem;
  max-width: 540px;
}

/* Feature sections */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }

.feature-visual {
  aspect-ratio: 4/5;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.feature-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual-texture {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(
      -30deg,
      transparent,
      transparent 20px,
      rgba(200,185,154,0.06) 20px,
      rgba(200,185,154,0.06) 21px
    );
  position: absolute;
  inset: 0;
}
.feature-visual-label {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: rgba(245,240,232,0.04);
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.feature-tag {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--terra);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
}

.feature-text { }
.feature-text h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin: 0.75rem 0; }
.feature-text p { color: var(--warm-gray); line-height: 1.8; margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.92rem; color: var(--charcoal);
}
.feature-list li::before {
  content: "";
  display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Process steps */
.process-steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--parchment);
  counter-increment: step;
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  position: relative;
}
.step-num::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
}
.step-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.92rem; color: var(--warm-gray); line-height: 1.75; }

/* Benefits bar */
.benefits-bar {
  background: var(--olive);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.benefits-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
}
.benefit-item {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  color: var(--cream);
}
.benefit-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.benefit-item p { font-size: 0.82rem; color: rgba(245,240,232,0.65); }

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.about-manifesto {
  background: var(--charcoal);
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.manifesto-text {
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text strong {
  font-style: normal;
  color: var(--sand);
  font-weight: 400;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-card {
  aspect-ratio: 3/4;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.about-visual-card-inner {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--charcoal) 0%, #353028 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-stamp {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: rgba(200,185,154,0.08);
  text-align: center;
}
.about-visual-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  background: var(--terra);
  opacity: 0.12;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-item {
  border-top: 2px solid var(--parchment);
  padding-top: 1.25rem;
}
.value-item h4 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--charcoal); }
.value-item p { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.7; }

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.contact-info p { color: var(--warm-gray); line-height: 1.8; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--charcoal);
  color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail-text { }
.contact-detail-text strong { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); }
.contact-detail-text p { font-size: 0.95rem; color: var(--charcoal); margin-top: 0.2rem; }
.contact-detail-text a { color: var(--charcoal); transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--terra); }

.call-big-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--terra);
  color: var(--cream);
  padding: 1.25rem 2rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s;
  width: fit-content;
}
.call-big-btn:hover { background: var(--terra-light); color: var(--cream); }
.call-big-btn svg { flex-shrink: 0; }
.call-big-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-top: 0.1rem;
}

/* Contact form */
.contact-form-wrap {
  background: var(--ivory);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form-wrap p {
  color: var(--warm-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-field label .req { color: var(--terra); margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(139,94,60,0.1);
}
.form-field input.field-error,
.form-field select.field-error,
.form-field textarea.field-error {
  border-color: #9a5a2a;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%236b6560' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit { display: flex; justify-content: flex-end; margin-top: 0.5rem; }
.form-submit .btn { padding: 1rem 2.5rem; }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer { background: var(--dark); color: var(--cream); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.footer-brand .logo-mark { font-size: 1.1rem; width: 36px; height: 36px; }
.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--sand);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}
.footer-links h4, .footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--light-gray);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact address { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact address p { font-size: 0.88rem; color: var(--light-gray); }
.footer-contact address a { color: var(--light-gray); transition: color 0.2s; }
.footer-contact address a:hover { color: var(--cream); }
.footer-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terra);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  margin-top: 1.25rem;
  transition: background 0.25s;
}
.footer-call-btn:hover { background: var(--terra-light); color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--warm-gray);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 0.85rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; }
  .nav-call-btn { margin-top: 1rem; justify-content: center; }

  .feature-grid, .feature-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-visual { aspect-ratio: 16/9; }
  .about-split { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .footer-inner { grid-template-columns: 1fr; }
  .intro-strip-inner { flex-direction: column; gap: 1rem; }
  .intro-divider { width: 80px; height: 1px; }
}
