/* ============================================
   STARSEASON LLC — SHARED STYLES
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }
button { cursor: pointer; }

:root {
  --bg: #FAFBF8;
  --bg-alt: #E2E6DC;
  --primary: #1C3829;
  --primary-light: #264D38;
  --secondary: #5B8C5A;
  --secondary-light: #7BA87A;
  --accent: #D4943A;
  --accent-hover: #C0842F;
  --accent-glow: rgba(212, 148, 58, 0.25);
  --text: #3B4F3E;
  --text-light: #6B7F6E;
  --white: #FFFFFF;
  --border: #D8DDD5;
  --shadow-sm: 0 1px 3px rgba(28, 56, 41, 0.06);
  --shadow-md: 0 4px 16px rgba(28, 56, 41, 0.08);
  --shadow-lg: 0 8px 32px rgba(28, 56, 41, 0.1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --nav-height: 72px;
  --max-width: 1140px;
  --section-pad: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  border-top: 3px solid var(--secondary);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--primary); line-height: 1.2; font-weight: 400; }
h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.section-intro { max-width: 600px; color: var(--text-light); font-size: 1.05rem; }

/* LAYOUT */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-alt); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 2px 8px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 4px 16px var(--accent-glow); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }
.btn-green { background: var(--primary); color: var(--white); }
.btn-green:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }

/* NAVIGATION */
.nav {
  position: fixed; top: 3px; left: 0; right: 0;
  height: var(--nav-height); background: var(--white);
  z-index: 1000; transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--primary);
}
.nav-logo .logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--secondary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--secondary); transition: width 0.2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--secondary); }
.nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.nav-cta { margin-left: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: calc(var(--nav-height) + 3px);
  left: 0; right: 0; background: var(--white);
  padding: 1.5rem; box-shadow: var(--shadow-lg); z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.75rem 0; font-size: 1rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* HERO */
.hero {
  padding: calc(var(--nav-height) + 5rem) 0 5rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(28,56,41,0.92) 0%, rgba(28,56,41,0.75) 100%), url('images/IMG_8678.jpg') center/cover no-repeat;
  min-height: 520px; display: flex; align-items: center;
}
.hero h1, .hero .section-eyebrow { color: var(--white); }
.hero .section-eyebrow { color: rgba(255,255,255,0.6); }
.hero-content { max-width: 720px; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 2rem; max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7);
}
.hero-badge svg { flex-shrink: 0; }

/* TRUST BAR */
.trust-bar { padding: 2.5rem 0; background: var(--primary); }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.trust-item { color: rgba(255,255,255,0.9); }
.trust-number { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 0.25rem; }
.trust-label { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.8; }

/* WHY CHOOSE US — 4-COLUMN NUMBERED */
.why-section { background: var(--bg-alt); padding: var(--section-pad) 0; }
.why-section .section-header { text-align: center; margin-bottom: 3.5rem; }
.why-section .section-header .section-intro { margin: 0 auto; }
.why-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.why-item .why-number {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--secondary-light); opacity: 0.5; margin-bottom: 0.75rem;
}
.why-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* SERVICES */
.services-header { text-align: center; margin-bottom: 3rem; }
.services-header .section-intro { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem; transition: all 0.25s ease;
}
.service-card:hover { border-color: var(--secondary-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon { width: 44px; height: 44px; margin-bottom: 1rem; color: var(--secondary); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* GUARANTEE BANNER */
.guarantee-banner { background: var(--primary); padding: 2.5rem 0; text-align: center; }
.guarantee-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.guarantee-inner svg { color: var(--accent); flex-shrink: 0; }
.guarantee-inner h3 { color: var(--white); font-size: 1.25rem; }
.guarantee-inner p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 500px; }

/* TESTIMONIALS */
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--accent); }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }

/* SERVICE AREA */
.area-content { max-width: 700px; }
.area-towns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; margin-top: 1.5rem; }
.area-town { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; color: var(--text); }
.area-town svg { color: var(--secondary); flex-shrink: 0; }

/* CTA SECTION */
.cta-section { background: var(--primary); padding: var(--section-pad) 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.cta-text h2 { color: var(--white); margin-bottom: 1rem; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.cta-contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-contact-row { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.cta-contact-row svg { flex-shrink: 0; color: var(--secondary-light); }
.cta-contact-row a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.cta-contact-row a:hover { color: var(--white); }

/* FORMS */
.quote-form { background: var(--white); border-radius: 16px; padding: 2.25rem; }
.quote-form h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.quote-form .form-note { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--border);
  border-radius: 8px; background: var(--bg); color: var(--text); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); outline: none; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success svg { margin: 0 auto 1rem; color: var(--secondary); }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--text-light); font-size: 0.95rem; }

/* MID-PAGE CTA */
.mid-cta { text-align: center; padding: 3rem 0; }
.mid-cta p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 1.25rem; }

/* GALLERY */
.gallery-hero {
  padding: calc(var(--nav-height) + 3.5rem) 0 3rem;
  text-align: center;
}
.gallery-hero .section-intro { margin: 0.5rem auto 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.gallery-item {
  aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  background: var(--bg-alt); border: 1px solid var(--border);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.82rem; gap: 0.5rem;
}
.gallery-placeholder svg { opacity: 0.3; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,56,41,0.8));
  color: var(--white); padding: 2rem 1rem 0.75rem;
  font-size: 0.82rem; font-weight: 500;
}

/* BEFORE / AFTER GALLERY */
.ba-section { margin-bottom: 3rem; }
.ba-section h3 { text-align: center; margin-bottom: 1.5rem; }
.ba-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  margin-bottom: 1.5rem; border-radius: 12px; overflow: hidden;
}
.ba-item { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.3rem 0.75rem; border-radius: 6px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.ba-label.before { background: rgba(0,0,0,0.6); color: white; }
.ba-label.after { background: var(--accent); color: white; }
@media (max-width: 480px) { .ba-pair { grid-template-columns: 1fr; } }

/* CONTACT PAGE */
.contact-hero {
  padding: calc(var(--nav-height) + 3.5rem) 0 0;
  text-align: center;
}
.contact-hero .section-intro { margin: 0.5rem auto 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3rem; align-items: start;
}
.contact-info-card {
  background: var(--bg-alt); border-radius: 16px; padding: 2.25rem;
}
.contact-info-card h3 { margin-bottom: 1.5rem; }
.contact-row {
  display: flex; align-items: start; gap: 0.75rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  color: var(--secondary); flex-shrink: 0;
}
.contact-row h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: var(--primary); margin-bottom: 0.2rem; }
.contact-row p { font-size: 0.9rem; color: var(--text-light); }
.contact-row a { color: var(--secondary); font-weight: 500; }

/* FOOTER */
.footer { background: #15291F; color: rgba(255,255,255,0.7); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; color: var(--white); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
  font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}
.footer-links a { display: block; padding: 0.3rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; margin-bottom: 0.6rem; }
.footer-contact-row svg { flex-shrink: 0; opacity: 0.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* STICKY MOBILE CTA BAR */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); padding: 0.75rem 1rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
  z-index: 998; gap: 0.75rem;
}
.mobile-cta-bar a { flex: 1; text-align: center; justify-content: center; padding: 0.75rem 1rem; font-size: 0.9rem; }

/* SCROLL ANIMATION */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  .hero { padding-top: calc(var(--nav-height) + 2.5rem); }
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .area-towns { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-pad: 2.5rem; }
  .container { padding: 0 1rem; }
  .service-card { padding: 1.25rem; }
  .quote-form { padding: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
