/* =============================================
   LAWN TAYLORING LLC — Stylesheet
   Colors: near-black, deep green, bold yellow,
           light gray, off-white, orange accent
   Type: Bebas Neue (display) + Inter (body)
   ============================================= */

:root {
  --black:       #1A1A1A;
  --green-dark:  #2D5016;
  --green-mid:   #3D6B1F;
  --green-light: #5A8A2E;
  --yellow:      #F5C518;
  --yellow-dark: #D4A800;
  --orange:      #E8650A;
  --gray-dark:   #3A3A3A;
  --gray-mid:    #6B6B6B;
  --gray-light:  #E8E8E8;
  --off-white:   #F4F4F0;
  --white:       #FFFFFF;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-height: 72px;
  --max-width:  1200px;
  --radius:     4px;
  --radius-lg:  8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--green-dark); text-decoration: underline; }
a:hover { color: var(--orange); }

img { max-width: 100%; display: block; }

/* ========================
   HEADER & NAV
   ======================== */

.site-logo {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  height: var(--nav-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo-placeholder {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-accent { color: var(--yellow); }

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav buttons */
.main-nav {
  display: flex;
  gap: 4px;
}

.nav-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  background: transparent;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.nav-btn:hover { color: var(--yellow); background: rgba(245,197,24,0.08); }
.nav-btn.active { color: var(--yellow); border-bottom: 2px solid var(--yellow); }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black);
  padding: 12px 24px 20px;
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: var(--nav-height);
  z-index: 99;
}

.mobile-nav.open { display: flex; }
.mobile-nav .nav-btn { text-align: left; padding: 12px 0; border-radius: 0; border-bottom: 1px solid var(--gray-dark); }
.mobile-nav .nav-btn:last-child { border-bottom: none; }

/* ========================
   TAB SECTIONS
   ======================== */
.tab-section { display: none; }
.tab-section.active { display: block; }

/* ========================
   HERO
   ======================== */
.hero {
  background: var(--black);
  min-height: calc(100vh - var(--nav-height));
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-left: clamp(24px, 6vw, 100px);
  padding-right: clamp(24px, 6vw, 100px);
}

/* Subtle grass texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,80,22,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-logo-large {
  flex-shrink: 0;
  width: 360px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: -24px;
}

.hero-logo-large img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(245, 197, 24, 0.3);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-meet {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  text-decoration: none;
  border: 2px solid rgba(245,197,24,0.5);
  border-radius: var(--radius);
  padding: 10px 20px;
  text-align: center;
  width: 100%;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: block;
}

.btn-meet:hover {
  background: rgba(245,197,24,0.1);
  border-color: var(--yellow);
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-line-1 {
  display: block;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--gray-light);
}

.hero-line-2 {
  display: block;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-mid);
  margin-bottom: 36px;
  font-style: italic;
}

.hero-badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.badge-year {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--green-mid);
  opacity: 0.6;
}

.hero-phone {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-phone a {
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Gallery items */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.03); }

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-primary.full-width { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }

.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  padding: 12px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover { background: var(--green-dark); color: var(--white); }

/* ========================
   SECTION LABELS & TITLES
   ======================== */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin-bottom: 32px;
}

/* Page headers (inner tabs) */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 60px 24px 48px;
  text-align: center;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.page-intro {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto;
}

.page-header .section-label { justify-content: center; display: block; }

/* ========================
   VIDEO SECTION
   ======================== */
.video-section {
  background: var(--white);
  padding: 80px 24px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  background: var(--black);
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-mid);
  border: 2px dashed var(--gray-dark);
}

.play-icon {
  font-size: 3rem;
  color: var(--yellow);
  opacity: 0.6;
}

/* ========================
   TRAITS SECTION
   ======================== */
.traits-section {
  background: var(--green-dark);
  padding: 64px 24px;
}

.traits-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.trait-card {
  background: var(--green-mid);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.2s;
}

.trait-card:hover { background: var(--green-light); }

.trait-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 16px;
}

.trait-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.trait-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ========================
   MISSION STRIP
   ======================== */
.mission-strip {
  background: var(--yellow);
  padding: 48px 24px;
  text-align: center;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--black);
  letter-spacing: 0.02em;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.2;
  font-style: normal;
}

/* ========================
   SERVICES GRID
   ======================== */
.services-preview {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 36px;
  text-align: left;
}

.services-grid.preview { grid-template-columns: repeat(2, 1fr); }
.services-grid.full    { grid-template-columns: repeat(2, 1fr); max-width: var(--max-width); margin: 0 auto 0; padding: 60px 24px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--green-dark);
  transition: border-color 0.2s, transform 0.15s;
}

.service-card:hover { border-left-color: var(--orange); transform: translateY(-2px); }
.service-card.large { padding: 36px; }

.service-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ========================
   CTA STRIP
   ======================== */
.cta-strip {
  background: var(--black);
  padding: 72px 24px;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.cta-strip p {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ========================
   GALLERY
   ======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 40px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: 0.85rem;
  border: 2px dashed #ccc;
}

.gallery-placeholder span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gray-dark);
}

.gallery-note {
  text-align: center;
  padding: 16px 24px 60px;
  color: var(--gray-mid);
  font-size: 0.9rem;
}

/* ========================
   ABOUT
   ======================== */
.about-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.65;
}

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

.about-text strong { color: var(--green-dark); }

/* Timeline */
.timeline {
  border-left: 3px solid var(--yellow);
  padding-left: 24px;
}

.timeline .section-label { margin-bottom: 20px; }

.timeline-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  border: 2px solid var(--off-white);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  line-height: 1;
}

.timeline-event {
  font-size: 0.92rem;
  color: var(--gray-mid);
  margin-top: 2px;
}

/* ========================
   CONTACT FORM
   ======================== */
.contact-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--gray-light); }

.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.required { color: var(--orange); }

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.12);
}

.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 6px;
}

/* File upload */
.file-upload-area {
  position: relative;
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  background: var(--off-white);
  transition: border-color 0.2s;
  cursor: pointer;
}

.file-upload-area:hover { border-color: var(--green-dark); }

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-label {
  pointer-events: none;
}

.upload-icon { font-size: 2rem; display: block; margin-bottom: 8px; }

.file-upload-label p {
  font-size: 0.92rem;
  color: var(--gray-dark);
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.file-list {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--green-dark);
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-top: 16px;
}

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.sidebar-card.accent {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 16px;
}

.sidebar-card.accent h3,
.sidebar-card.accent p,
.sidebar-card.accent a {
  color: var(--white);
}

.sidebar-card ol {
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 2;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--yellow);
  padding: 48px 24px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}

.footer-slogan {
  font-size: 0.85rem;
  color: var(--gray-mid);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-mid);
  cursor: pointer;
  text-align: left;
  padding: 2px 0;
  transition: color 0.2s;
}

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

.social-link {
  font-size: 0.85rem;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.social-link:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding: 16px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .hero { flex-direction: column-reverse; text-align: center; padding-top: 48px; }
  .hero-logo-large { width: 220px; margin-left: 0; }
  .hero-buttons { justify-content: center; }
  .btn-meet { font-size: 1rem; }
  .traits-inner { grid-template-columns: 1fr; gap: 2px; }
  .services-grid.preview,
  .services-grid.full { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .contact-form { padding: 24px 18px; }
}

/* ========================
   REDUCED MOTION
   ======================== */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
