/* ===========================
   YARDS R US — stylesheet
   =========================== */

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

:root {
  --green:      #2d6a2d;
  --green-dark: #1e4a1e;
  --green-light:#e8f5e8;
  --yellow:     #f5c200;
  --yellow-dark:#c49a00;
  --white:      #ffffff;
  --off-white:  #f9faf9;
  --gray:       #6b7280;
  --gray-light: #f3f4f6;
  --text:       #1a1a1a;
  --radius:     10px;
}

html { scroll-behavior: smooth; }

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

/* ---- UTILITIES ---- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

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

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.logo .r {
  color: var(--yellow);
  font-style: italic;
}

.nav nav {
  display: flex;
  gap: 28px;
}

.nav nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

.nav nav a:hover { color: var(--yellow); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 96px 0 80px;
  text-align: center;
  color: var(--white);
}

.hero-content { max-width: 680px; margin: 0 auto; }

.tagline {
  display: inline-block;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

.btn-primary {
  background: var(--yellow);
  color: var(--green-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}

.btn-outline:hover { border-color: var(--white); }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); padding: 80px 0; }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 48px;
}

/* ---- SERVICE CARDS ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p  { color: var(--gray); font-size: .95rem; }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.why-list li { font-size: 1rem; font-weight: 500; color: var(--text); }

.why-quote {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-quote blockquote {
  color: var(--white);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  border-left: 4px solid var(--yellow);
  padding-left: 20px;
}

/* ---- CONTACT ---- */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  padding: 32px 40px;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.contact-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.contact-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}

.contact-number:hover { color: var(--green-dark); }

.contact-hint {
  margin-top: 6px;
  font-size: .82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.sms-disclosure {
  margin-top: 40px;
  text-align: center;
  font-size: .82rem;
  color: var(--gray);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.sms-disclosure a {
  color: var(--green);
  text-decoration: underline;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--green-dark);
  padding: 48px 0 32px;
  color: rgba(255,255,255,.65);
  text-align: center;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-logo .r {
  color: var(--yellow);
  font-style: italic;
}

.footer p { font-size: .9rem; margin-bottom: 8px; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 20px;
  font-size: .85rem;
}

.footer-links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ---- LEGAL PAGES ---- */
.legal-page { padding: 60px 0 80px; }

.legal-container { max-width: 780px; }

.legal-container h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.legal-date {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 32px;
}

.legal-container h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.legal-container h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-container p { margin-bottom: 14px; }

.legal-container ul {
  margin: 0 0 14px 24px;
}

.legal-container ul li { margin-bottom: 6px; }

.legal-container a { color: var(--green); }

/* ---- RESPONSIVE ---- */
@media (max-width: 720px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .nav nav {
    gap: 16px;
    font-size: .82rem;
  }

  .nav nav a:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 56px; }
  .section, .section-alt { padding: 56px 0; }
}
