/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #1a3a2a;
  --green-mid:   #2d6a4f;
  --green-light: #40916c;
  --green-accent:#52b788;
  --tan:         #f4f1e8;
  --tan-dark:    #e8e0cc;
  --text:        #1c1c1c;
  --text-light:  #555;
  --white:       #ffffff;
  --radius:      6px;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

/* ========== UTILITY ========== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--tan { background: var(--tan); }
.section--dark { background: var(--green-dark); color: var(--white); }

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 12px;
}

h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

.section-intro { color: var(--text-light); max-width: 560px; margin-bottom: 48px; }
.section--dark .section-intro { color: rgba(255,255,255,0.7); }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-light);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-mid); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--green-dark); }
.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--green-mid); }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
}
.nav__logo span { color: var(--green-accent); }
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__cta { margin-left: 16px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 88vh;
  background:
    linear-gradient(to bottom, rgba(20,40,28,0.68) 0%, rgba(20,40,28,0.45) 100%),
    url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero__content { max-width: 640px; }
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  border-top: 4px solid var(--green-accent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.13); }
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card p { color: var(--text-light); font-size: 0.93rem; }

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
}
.why-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--green-accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
}
.why-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-image img { width: 100%; height: 380px; object-fit: cover; }
.why-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 3rem;
  gap: 12px;
}
.why-placeholder p { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--green-mid);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }

/* ========== LOCATIONS ========== */
.locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.location-chip {
  background: var(--green-dark);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ========== INSTAGRAM REEL ========== */
.reel-preview {
  display: inline-block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  cursor: pointer;
}
.reel-thumb {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.reel-preview:hover .reel-thumb { transform: scale(1.03); }
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background 0.3s;
}
.reel-preview:hover .reel-overlay { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%); }
.reel-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform 0.2s, background 0.2s;
}
.reel-preview:hover .reel-play { transform: scale(1.1); background: rgba(255,255,255,0.3); }
.reel-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  position: absolute;
  bottom: 24px;
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  background:
    linear-gradient(to bottom, rgba(20,40,28,0.7) 0%, rgba(20,40,28,0.5) 100%),
    url('images/hero.jpg') center/cover no-repeat;
  padding: 100px 0 80px;
  color: var(--white);
  text-align: center;
}
.about-hero h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 12px; }
.about-hero p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-body p { color: var(--text-light); margin-bottom: 16px; }

/* ========== CONTACT / QUOTE PAGE ========== */
.contact-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}
.contact-hero h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 12px; }
.contact-hero p  { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-item .icon {
  font-size: 1.2rem;
  margin-top: 2px;
}
.contact-info-item p { font-size: 0.93rem; color: var(--text-light); margin: 0; }
.contact-info-item strong { display: block; color: var(--text); margin-bottom: 2px; }

/* FORM */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group label .req { color: #c0392b; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.form-submit { display: flex; gap: 12px; align-items: center; }
.form-note { font-size: 0.8rem; color: var(--text-light); }

/* ========== FAQ ========== */
.faq-list { max-width: 700px; }
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
}
.faq-btn .chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.25s;
}
.faq-btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ========== FOOTER ========== */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ========== SUCCESS STATE ========== */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success .check {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-light); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .why-grid, .about-body, .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 20px 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav { position: relative; }
  .why-image img, .why-placeholder { height: 260px; }
}

/* ========== MOBILE (iPhone) ========== */
@media (max-width: 600px) {

  /* ---- Base ---- */
  .container { padding: 0 20px; }
  .section { padding: 52px 0; }
  .section-intro { font-size: 0.95rem; margin-bottom: 28px; }
  h2 { font-size: 1.7rem; }

  /* ---- Nav ---- */
  .nav__inner { padding: 0 16px; height: 60px; }
  .nav__logo img { height: 36px !important; }

  /* ---- Hero ---- */
  .hero {
    min-height: 90svh;
    align-items: flex-end;
    padding-bottom: 52px;
    background-position: 65% center;
  }
  .hero__eyebrow { display: none; }
  .hero h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 22px; }
  .hero p { display: none; }
  .hero__ctas { flex-direction: column; gap: 12px; }
  .hero__ctas .btn {
    width: 100%;
    text-align: center;
    padding: 17px 20px;
    font-size: 1rem;
  }

  /* ---- Services ---- */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 22px 18px; }
  .service-card__icon { font-size: 1.6rem; margin-bottom: 10px; }
  .service-card h3 { font-size: 1.05rem; }

  /* ---- Why section ---- */
  .why-grid { gap: 32px; }
  .why-grid > div:last-child { display: none; }
  .why-list li { font-size: 0.95rem; }

  /* ---- CTA banner ---- */
  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: 1.6rem; margin-bottom: 10px; }
  .cta-banner p { font-size: 0.95rem; margin-bottom: 24px; }
  .cta-banner .btn { width: 100%; max-width: 320px; text-align: center; }

  /* ---- Instagram reel ---- */
  .reel-preview { max-width: 100%; }
  .reel-thumb { height: 420px; }
  .reel-play { width: 64px; height: 64px; }
  .reel-label { font-size: 0.88rem; }

  /* ---- Locations ---- */
  .locations-list { gap: 8px; }
  .location-chip { font-size: 0.82rem; padding: 7px 14px; }

  /* ---- About hero ---- */
  .about-hero { padding: 72px 0 52px; }
  .about-hero h1 { font-size: 1.9rem; }
  .about-hero p { font-size: 0.95rem; }

  /* ---- About body ---- */
  .about-body { gap: 32px; }
  .about-body > div:last-child { display: none; }

  /* ---- Contact hero ---- */
  .contact-hero { padding: 64px 0 44px; }
  .contact-hero h1 { font-size: 1.9rem; }

  /* ---- Contact grid ---- */
  .contact-grid { gap: 36px; }

  /* ---- Form ---- */
  .form-card { padding: 28px 18px; border-radius: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; padding: 13px 14px; }
  .form-submit { flex-direction: column; gap: 10px; }
  .form-submit .btn { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }
  .form-note { font-size: 0.78rem; }

  /* ---- Footer ---- */
  .footer { padding: 44px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer__col h4 { margin-bottom: 12px; }
  .footer__bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 0.78rem;
  }
}
