/* ═══════════════════════════════════════════════════
   THE STAIN BROS LLC — Shared Stylesheet
   ═══════════════════════════════════════════════════ */

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

:root {
  --green:       #4D7A2E;
  --green-light: #6AA347;
  --green-dark:  #2E4D1A;
  --brown:       #8B6914;
  --brown-light: #B38A26;
  --brown-dark:  #5C4509;
  --forest:      #171C14;
  --forest-mid:  #1F261B;
  --forest-soft: #252D20;
  --cream:       #F2EDE4;
  --cream-dim:   #D9D2C5;
  --white:       #FFFFFF;
  --text-dim:    #9AA490;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius: 4px;
  --section-pad: 100px 5vw;
  --max-w: 1160px;
}

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

body {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 5vw; }
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
}
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--brown));
  margin: 1.5rem 0 2rem;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(23, 28, 20, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(23,28,20,0.98);
  backdrop-filter: blur(16px);
  padding: 2rem 5vw;
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(242,237,228,0.3);
  color: var(--cream-dim);
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(255,255,255,0.05);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 5vw 100px;
  background:
    linear-gradient(160deg, rgba(12,16,10,0.90) 0%, rgba(23,28,20,0.75) 45%, rgba(23,28,20,0.55) 100%),
    url('photo-deer-valley-modern.jpg') center center / cover no-repeat;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(77,122,46,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 30% 70%, rgba(139,105,20,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #0F1410 0%, #171C14 40%, #1A2016 100%);
  z-index: -1;
}

.hero-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  opacity: 0.05;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.05s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.hero-badge.gold {
  background: rgba(179, 138, 38, 0.25);
  border-color: rgba(179, 138, 38, 0.5);
  color: var(--brown-light);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--brown-light);
}
.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.5vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.15s ease both;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-light);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(242,237,228,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.25s ease both;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.35s ease both;
}

.hero-trust {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.9s 0.45s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  align-self: center;
}

/* ── ABOUT ── */
#about {
  padding: var(--section-pad);
  background: var(--forest-mid);
}
.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--forest-soft);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brown);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  min-width: 120px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}
.about-content { padding-bottom: 2rem; }
.about-body {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.about-body p + p { margin-top: 1rem; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(77,122,46,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.about-feature-text p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── SERVICES ── */
#services {
  padding: var(--section-pad);
  background: var(--forest);
}
.services-header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  background: var(--forest-soft);
  padding: 2.5rem;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: #2A331F; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--green), var(--brown));
  transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  user-select: none;
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.service-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-list li {
  list-style: none;
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

/* ── PORTFOLIO ── */
#portfolio {
  padding: var(--section-pad);
  background: var(--forest-mid);
}
.portfolio-header {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}
.portfolio-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 10px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--forest-soft);
  cursor: pointer;
}
.portfolio-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.portfolio-item.featured .portfolio-img { min-height: 520px; }
.portfolio-item:hover .portfolio-img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,20,12,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-caption {
  font-size: 0.8rem;
  color: var(--cream);
  font-weight: 400;
}
.portfolio-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

/* ── VIDEO SECTION ── */
#work-video {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: var(--forest);
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12,16,10,0.85) 0%, rgba(23,28,20,0.50) 100%);
  display: flex;
  align-items: center;
  padding: 0 5vw;
}
.video-content {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.video-content .tag { color: var(--brown-light); }
.video-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 680px;
}
.video-content p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
}
.video-no-support {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0F1410 0%, #171C14 60%, #1A2016 100%);
  z-index: -1;
}

/* ── PROCESS ── */
#process {
  padding: var(--section-pad);
  background: var(--forest);
}
.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--brown), var(--green));
  opacity: 0.3;
}
.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest-soft);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-light);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: var(--section-pad);
  background: var(--forest);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonials-rating {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.testimonials-score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.testimonials-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.star-lg { color: var(--brown-light); font-size: 1.3rem; }
.testimonials-rating-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--forest-soft);
  padding: 2.25rem;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
  background: rgba(77,122,46,0.12);
  padding: 4px 10px;
  border-radius: 30px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.star { color: var(--brown-light); font-size: 0.85rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.testimonial-author strong {
  color: var(--cream);
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 5vw;
  background: var(--forest-mid);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 5vw 80px;
  background: var(--forest-mid);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(77,122,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .tag { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.page-hero p {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
  padding: var(--section-pad);
  background: var(--forest-mid);
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}
.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: rgba(77,122,46,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-text {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.contact-detail-text strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-form {
  background: var(--forest-soft);
  padding: 2.5rem;
  border-radius: var(--radius);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group select option { background: var(--forest); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.form-submit:hover:not(:disabled) { background: var(--green-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

/* ── FAQ ── */
.faq-section {
  padding: var(--section-pad);
  background: var(--forest);
}
.faq-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--forest-soft);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--green-light);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 5vw;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --section-pad: 70px 5vw; }
  .about-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-badge { bottom: 1rem; right: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.featured { grid-column: span 2; grid-row: span 1; }
  .portfolio-item.featured .portfolio-img { min-height: 340px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-trust { gap: 2rem; }
  #work-video { height: 400px; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .hero-trust { display: none; }
  .testimonials-rating { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  #work-video { height: 320px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .page-hero { padding: 140px 5vw 60px; }
}
