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

:root {
  --navy:   #2D4A2D;
  --blue:   #1E3A1E;
  --orange: #6B4423;
  --orange-dark: #4E3019;
  --gray-50:  #F5F0E8;
  --gray-100: #EDE6D9;
  --gray-300: #C4A882;
  --gray-500: #8a7d6e;
  --gray-700: #4a3f35;
  --gray-900: #2a2018;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 6px 32px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .12s, box-shadow .18s;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(107,68,35,.35);
}

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

.btn-full { width: 100%; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

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

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
}
.nav-logo span { color: var(--gray-300); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-svg {
  display: block;
  flex-shrink: 0;
}

.nav-phone {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background .18s;
}
.nav-phone:hover { background: var(--orange-dark); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-before-after {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 32px 20px 24px;
  text-align: center;
}

.before-after-pair {
  display: flex;
  gap: 16px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 12px;
}

.before-after-photo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.before-after-photo img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.ba-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-300);
}

.ba-caption {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  font-style: italic;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 36px;
}

.trust-item {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ── Services ── */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

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

.service-card p {
  color: var(--gray-700);
  font-size: .95rem;
}

.services-cta { text-align: center; }

/* ── Our Work ── */
.our-work {
  background: var(--gray-50);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}

.work-video {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  position: relative;
}

.work-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

/* ── About ── */
.about {
  background: var(--gray-50);
}

.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo-placeholder {
  border: 4px solid #000;
  border-radius: 0;
}

.about-photo-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-text .btn { margin-top: 8px; }

/* ── Testimonials ── */
.testimonials {
  background: var(--navy);
}

.testimonials h2,
.testimonials .section-sub {
  color: var(--white);
}

.testimonials .section-sub {
  color: rgba(255,255,255,.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.stars {
  color: #f9c74f;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

/* ── Service Area ── */
.area {
  background: var(--white);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 28px;
}

.area-column ul {
  list-style: none;
  padding: 0;
}

.area-column li {
  color: var(--gray-700);
  font-size: .95rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-100);
}

.area-note {
  color: var(--gray-500);
  font-size: .9rem;
  font-style: italic;
}

/* ── Contact ── */
.contact {
  background: var(--gray-50);
}

.contact-info-only {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 800px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-item strong {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-500);
}

.contact-item a,
.contact-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-item a:hover { color: var(--orange); }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 48px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo span { color: var(--gray-300); }

.footer p { font-size: .9rem; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--gray-300); }
.footer-copy { font-size: .8rem; margin-top: 8px; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .section { padding: 52px 0; }

  .hero { padding: 56px 0 0; }
  .hero h1 { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

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

  .work-video {
    max-width: 100%;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .about-photo-placeholder {
    width: 100%;
  }


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

  .trust-bar-inner {
    gap: 8px 24px;
  }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 1.05rem; }
  .nav-phone { font-size: .85rem; padding: 8px 14px; }
}
