/* ==========================================================================
   T&T Mowing - Professional Lawn Care, Eau Claire, WI
   Stylesheet
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Greens */
  --forest: #2d5016;
  --forest-dark: #1f3a0f;
  --forest-light: #3d6b1f;
  --leaf: #5a8f3b;
  --leaf-light: #7eb355;
  --sage: #8ba87a;
  --moss: #6b8e4e;

  /* Earth tones */
  --cream: #f6f3ec;
  --cream-dark: #ece6d5;
  --sand: #e0d9c5;
  --earth: #8b7d5b;
  --bark: #5c4a32;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafafa;
  --text: #2a2a2a;
  --text-light: #555;
  --text-muted: #888;
  --border: #e0e0e0;

  /* Layout */
  --nav-height: 80px;
  --max-width: 1200px;
  --section-pad: 100px;
  --radius: 6px;
  --radius-lg: 14px;

  /* Type */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-green: 0 4px 20px rgba(45,80,22,0.25);

  /* Transition */
  --t: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--forest);
  text-decoration: none;
  transition: color var(--t);
}

a:hover {
  color: var(--leaf);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--forest-dark);
}

ul {
  list-style: none;
}

/* ---------- Layout Helpers ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-cream {
  background: var(--cream);
}

.section-forest {
  background: var(--forest);
  color: var(--cream);
}

.section-forest h1,
.section-forest h2,
.section-forest h3 {
  color: var(--white);
}

.section-tight {
  padding: 60px 0;
}

.text-center { text-align: center; }

/* ---------- Section Heading ---------- */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.section-forest .section-head .eyebrow {
  color: var(--leaf-light);
}

.section-forest .section-head p {
  color: rgba(246,243,236,0.85);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

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

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost-light:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.btn-lg {
  padding: 17px 42px;
  font-size: 1rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--t);
}

.nav-wrap.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo .nav-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--forest);
  line-height: 1.1;
}

.nav-logo .nav-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  transition: color var(--t);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--leaf);
  transition: width var(--t);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--forest);
}

/* Exclude the CTA button from link underline animation and link hover color */
.nav-links a.btn::after {
  content: none;
}

.nav-links a.btn {
  color: var(--white);
}

.nav-links a.btn:hover {
  color: var(--white);
}

.nav-cta {
  margin-left: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--forest);
  border-radius: 2px;
  transition: all var(--t);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Hero (shared)
   ========================================================================== */
.hero {
  position: relative;
  height: 560px;
  min-height: 480px;
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,58,15,0.78) 0%, rgba(45,80,22,0.55) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 24px;
}

.hero-content .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--leaf-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero taller on home page */
.hero.hero-home {
  height: 680px;
  min-height: 580px;
}

.hero.hero-faq {
  height: 420px;
  min-height: 360px;
}

/* ==========================================================================
   Home: Services Overview Cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}

.service-card-body a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t), color var(--t);
}

.service-card-body a:hover {
  color: var(--leaf);
  gap: 12px;
}

/* ==========================================================================
   Home: About teaser (split)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 14px;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.split-content p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}

.split-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.split-feature .check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.split-feature span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

/* ==========================================================================
   Home: Service Area strip
   ========================================================================== */
.area-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.area-map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
  background: var(--cream-dark);
  position: relative;
}

.area-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.area-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ==========================================================================
   Testimonials preview
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.stars {
  color: #f0b429;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 22px;
  flex: 1;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card .author {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--forest);
  font-size: 0.95rem;
}

.testimonial-card .author-loc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: var(--forest);
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 32px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Services page: detail blocks
   ========================================================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 90px;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail.reverse .service-detail-img {
  order: 2;
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 12px;
}

.service-detail-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}

.service-detail-content > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.service-includes {
  margin-top: 8px;
}

.service-includes li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: var(--text);
}

.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--forest);
  border-radius: 50%;
}

.service-includes li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

/* Seasonal packages table */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.season-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.season-card:hover {
  border-color: var(--leaf);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.season-card .season-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--forest);
}

.season-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.season-card .season-months {
  font-size: 0.82rem;
  color: var(--leaf);
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.season-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: 320px;
  cursor: pointer;
  transition: transform var(--t);
}

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

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

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

.gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(31,58,15,0.85));
  color: var(--white);
  padding: 40px 20px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .ci-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--leaf-light);
  font-size: 1rem;
}

.contact-item .ci-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}

.contact-item .ci-value {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}

.contact-item .ci-value a {
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-form .form-sub {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 0.98rem;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--t);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--leaf);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  background: #e8f5e0;
  border: 2px solid var(--leaf);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--forest-dark);
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* Contact map placeholder */
.contact-map {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
  background: var(--cream-dark);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Service Area page
   ========================================================================== */
.town-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.town-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--t);
}

.town-card:hover {
  border-color: var(--leaf);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.town-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.town-card .town-dist {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color var(--t);
}

.faq-item.open {
  border-color: var(--leaf);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q .faq-toggle {
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--leaf);
  transition: transform var(--t);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 28px 26px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-weight: 700;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 104px;
}

.footer-logo .footer-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--t);
}

.footer-col ul li a:hover {
  color: var(--leaf-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-item strong {
  color: var(--white);
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

.footer-login-btn {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Page header (interior pages, below hero)
   ========================================================================== */
.page-intro {
  text-align: center;
  max-width: 760px;
  margin: -40px auto 0;
  position: relative;
  z-index: 10;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.page-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .town-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --nav-height: 70px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 28px;
    gap: 20px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    width: 100%;
  }

  .nav-links .nav-cta {
    width: 100%;
    margin-top: 12px;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo .nav-name {
    font-size: 1.1rem;
  }
  .nav-logo .nav-sub {
    display: none;
  }
  .nav-logo img {
    height: 44px;
  }

  .hero {
    height: 480px;
    min-height: 400px;
  }
  .hero.hero-home {
    height: 560px;
    min-height: 480px;
  }

  .split,
  .area-strip,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-detail.reverse .service-detail-img {
    order: 0;
  }

  .split-img,
  .area-map-placeholder,
  .service-detail-img {
    height: 280px;
  }

  .split-features {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .testimonials-grid,
  .gallery-grid,
  .season-grid,
  .town-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-intro {
    margin-top: -30px;
    padding: 24px 24px;
  }

  .cta-banner {
    padding: 56px 0;
  }

  .contact-info-card,
  .contact-form {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-banner-actions .btn {
    width: 100%;
  }
}