/* ============================================================
   Mustang Landscaping — Stylesheet
   Palette: Deep Red (#C41230), Black (#111), Cream (#FAF8F4), White
   Fonts: DM Serif Display (headings) + Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito:wght@400;500;600;700;800&display=swap');

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

:root {
  --red:        #C41230;
  --red-dark:   #9B0E25;
  --red-light:  #E8192E;
  --black:      #111111;
  --black-soft: #222222;
  --cream:      #FAF8F4;
  --warm-gray:  #F0EDE8;
  --border:     #E2DDD8;
  --text:       #1A1A1A;
  --text-muted: #6B6560;
  --white:      #FFFFFF;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
h1,h2,h3,h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.7; }

/* --- Layout --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.5rem; border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all .2s ease; text-align: center;
}
.btn-primary  { background: var(--red); color: white; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(196,18,48,.3); }
.btn-black    { background: var(--black); color: white; border-color: var(--black); }
.btn-black:hover { background: var(--black-soft); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: white; }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: white; color: var(--red); }
.btn-sm  { padding: .4rem 1rem; font-size: .85rem; }
.btn-lg  { padding: .85rem 2.2rem; font-size: 1.05rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--black);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: white; letter-spacing: .01em;
}
.nav-logo span { color: var(--red-light); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .9rem; color: rgba(255,255,255,.7); font-weight: 600; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-hamburger { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.nav-mobile {
  display: none; list-style: none; flex-direction: column;
  padding: 1rem 1.5rem; gap: .75rem;
  background: var(--black-soft); border-top: 1px solid rgba(255,255,255,.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: rgba(255,255,255,.8); font-weight: 600; padding: .4rem 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--black); color: white;
  padding: 7rem 1.5rem 6rem;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-red-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red); }
.hero-content { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }
.hero-tag {
  display: inline-block; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); color: white; margin-bottom: 1.25rem; line-height: 1.1; }
.hero h1 em { font-style: italic; color: var(--red-light); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.65); margin-bottom: 2.25rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--red); padding: 1.25rem 1.5rem; }
.trust-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem;
}
.trust-item { color: white; font-weight: 700; font-size: .9rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-eyebrow {
  display: block; font-size: .8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); margin-bottom: .6rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .75rem; }
.section-sub   { color: var(--text-muted); max-width: 560px; font-size: 1.05rem; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.service-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; transition: all .25s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red); transform: scaleY(0); transition: transform .25s ease; transform-origin: bottom;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleY(1); }
.service-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.service-card p  { font-size: .9rem; color: var(--text-muted); }
.service-price {
  display: inline-block; margin-top: 1rem;
  background: var(--warm-gray); color: var(--black);
  padding: .25rem .85rem; border-radius: 999px; font-size: .85rem; font-weight: 800;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip { background: var(--warm-gray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-placeholder {
  width: 100%; aspect-ratio: 4/3; background: var(--black); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); font-size: .9rem; text-align: center; gap: .5rem;
}
.about-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--red); color: white; border-radius: var(--radius);
  padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 1.8rem; font-family: 'DM Serif Display', serif; }
.about-badge span { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   DARK FEATURE SECTION (replaces charity/green section)
   ============================================================ */
.dark-section { background: var(--black); color: white; padding: 5rem 1.5rem; position: relative; overflow: hidden; }
.dark-section::before {
  content: '10%'; position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
  font-family: 'DM Serif Display', serif; font-size: 14rem; color: rgba(255,255,255,.04);
  line-height: 1; pointer-events: none;
}
.dark-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.dark-text  { flex: 1; min-width: 280px; }
.dark-text h2 { font-size: 2.2rem; color: white; margin-bottom: 1rem; }
.dark-text p  { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; font-size: 1.05rem; }
.dark-stat { text-align: center; }
.dark-number { font-family: 'DM Serif Display', serif; font-size: 7rem; color: var(--red-light); line-height: 1; display: block; }
.dark-stat p { color: rgba(255,255,255,.5); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-top: .5rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--red); padding: 5rem 1.5rem; text-align: center; }
.cta-section h2 { color: white; font-size: 2.4rem; margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-section .btn-black { background: white; color: var(--red); border-color: white; }
.cta-section .btn-black:hover { background: var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0A0A0A; color: rgba(255,255,255,.45); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: .75rem; }
.footer-brand p { font-size: .9rem; line-height: 1.6; }
.footer-col h4 { color: white; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { font-size: .9rem; transition: color .15s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--black); color: white; padding: 4rem 1.5rem 3rem; text-align: center; border-bottom: 4px solid var(--red); }
.page-hero h1 { color: white; font-size: 2.8rem; }
.page-hero p  { color: rgba(255,255,255,.55); margin-top: .75rem; font-size: 1.05rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { padding: 4rem 0; }
.service-section { margin-bottom: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); background: white; overflow: hidden; }
.service-section-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; background: white; cursor: pointer; transition: background .15s; }
.service-section-header:hover { background: var(--warm-gray); }
.service-section-header-left { display: flex; align-items: center; gap: 1rem; }
.service-section-header h3 { font-size: 1.25rem; margin-bottom: .15rem; }
.service-section-header p  { font-size: .875rem; color: var(--text-muted); }
.service-section-price { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--red); white-space: nowrap; }
.service-details { border-top: 1px solid var(--border); padding: 1.5rem 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.price-tier { background: var(--warm-gray); border-radius: var(--radius-sm); padding: 1rem 1.25rem; }
.price-tier h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .35rem; }
.price-tier .price { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--red); }
.price-tier p { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }
.pricing-note { background: var(--warm-gray); border-radius: var(--radius); padding: 1.5rem 2rem; margin-top: 2rem; border-left: 4px solid var(--red); }
.pricing-note h4 { margin-bottom: .5rem; font-family: 'Nunito', sans-serif; font-weight: 800; }
.pricing-note p  { font-size: .9rem; color: var(--text-muted); }
.discount-banner { background: var(--black); color: white; border-radius: var(--radius); padding: 2rem; text-align: center; margin: 2.5rem 0; }
.discount-banner h3 { color: white; font-size: 1.5rem; margin-bottom: .5rem; }
.discount-banner p  { color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 5rem 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.about-photo-stack { position: relative; padding-bottom: 3rem; }
.about-photo-main {
  width: 100%; aspect-ratio: 3/4; background: var(--black); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); text-align: center; gap: .5rem;
}
.about-photo-main p { font-size: .85rem; padding: 0 1.5rem; }
.about-photo-secondary {
  position: absolute; bottom: 0; right: -1.5rem; width: 55%; aspect-ratio: 1;
  background: var(--red); border-radius: var(--radius); overflow: hidden; border: 4px solid var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-align: center; gap: .3rem;
}
.about-photo-secondary p { font-size: .75rem; padding: 0 .75rem; }
.about-content h1  { font-size: 2.5rem; margin-bottom: .5rem; }
.about-content .lead { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; border-left: 3px solid var(--red); padding-left: 1rem; font-style: italic; }
.about-content h3  { font-size: 1.3rem; margin: 1.75rem 0 .6rem; }
.about-content p   { color: #444; margin-bottom: 1rem; }
.about-values { background: var(--black); padding: 5rem 0; color: white; }
.about-values .section-title { color: white; }
.about-values .section-eyebrow { color: rgba(255,255,255,.4); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.75rem; transition: background .2s; }
.value-card:hover { background: rgba(255,255,255,.08); }
.value-card h4 { color: white; font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: .5rem; font-size: 1rem; }
.value-card p  { color: rgba(255,255,255,.5); font-size: .9rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 4rem 0 6rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info h2   { font-size: 2rem; margin-bottom: .75rem; }
.contact-info .lead { color: var(--text-muted); margin-bottom: 2rem; }
.contact-method { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-method-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--warm-gray); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; font-weight: 800; color: var(--red); }
.contact-method h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .9rem; margin-bottom: .2rem; }
.contact-method p  { font-size: .9rem; color: var(--text-muted); }
.contact-method a  { color: var(--red); font-weight: 700; }
.contact-form-wrap { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-page { min-height: 100vh; }
.booking-header { background: var(--black); color: white; padding: 3rem 1.5rem; text-align: center; border-bottom: 4px solid var(--red); }
.booking-header h1 { font-size: 2.2rem; color: white; }
.booking-header p  { color: rgba(255,255,255,.55); margin-top: .5rem; }
.progress-bar { display: flex; margin: 2rem 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.progress-step { flex: 1; padding: .75rem; text-align: center; font-size: .82rem; font-weight: 700; color: var(--text-muted); border-right: 1px solid var(--border); transition: all .2s; }
.progress-step:last-child { border-right: none; }
.progress-step.active  { background: #fff8f8; color: var(--red); }
.progress-step.current { background: var(--red); color: white; }
.booking-container { padding-top: 1.5rem; padding-bottom: 5rem; }
.form-step { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.form-step h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-step.hidden { display: none; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; font-size: .875rem; margin-bottom: .4rem; color: var(--black); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: 'Nunito', sans-serif; transition: border-color .2s; background: white; color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,18,48,.1); }
.form-group small { display: block; margin-top: .3rem; font-size: .8rem; color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.required { color: var(--red); }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .75rem; }
.option-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.1rem .75rem; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all .2s; background: white; }
.option-card:hover { border-color: var(--red); background: #fff8f8; }
.option-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.option-card:has(input:checked) { border-color: var(--red); background: #fff8f8; box-shadow: 0 0 0 2px var(--red); }
.option-label { font-weight: 700; font-size: .9rem; }
.option-price { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }
.frequency-options { display: flex; gap: .75rem; flex-wrap: wrap; }
.freq-card { flex: 1; min-width: 120px; display: flex; flex-direction: column; align-items: center; padding: 1rem; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all .2s; text-align: center; }
.freq-card:has(input:checked) { border-color: var(--red); background: #fff8f8; box-shadow: 0 0 0 2px var(--red); }
.freq-card input { display: none; }
.freq-label { font-weight: 800; }
.freq-sub   { font-size: .8rem; color: var(--red); font-weight: 700; margin-top: .15rem; }
.step-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; gap: 1rem; }
.review-box { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.review-row { display: flex; justify-content: space-between; align-items: center; padding: .7rem 1rem; font-size: .9rem; }
.review-row:nth-child(even) { background: var(--warm-gray); }
.review-row span { color: var(--text-muted); }
.tag-discount { background: var(--red); color: white; font-size: .75rem; padding: .15rem .5rem; border-radius: 999px; margin-left: .5rem; }
.charity-notice { background: var(--warm-gray); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin-bottom: 1rem; font-size: .9rem; }
.payment-note { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.error-msg { background: #fff5f5; border: 1px solid #f5c6c6; color: var(--red); border-radius: 8px; padding: .75rem 1rem; margin-bottom: 1rem; font-size: .9rem; }
.error-msg.hidden { display: none; }
.confirm-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
.confirm-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 3rem; max-width: 520px; width: 100%; text-align: center; box-shadow: var(--shadow); }
.confirm-card h1 { font-size: 2rem; margin-bottom: .5rem; }
.confirm-card p  { color: var(--text-muted); margin-bottom: 1.5rem; }
.confirm-details { text-align: left; background: var(--warm-gray); border-radius: 10px; padding: 1.25rem; margin: 1.5rem 0; }
.confirm-detail-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.confirm-detail-row:last-child { border-bottom: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: block; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-story-grid  { grid-template-columns: 1fr; }
  .about-photo-secondary { right: 0; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row      { grid-template-columns: 1fr; }
  .dark-inner    { flex-direction: column; text-align: center; }
  .step-nav      { flex-direction: column; }
  .progress-step { font-size: .7rem; padding: .5rem .2rem; }
}
