/*
Theme Name: T&S Haus & Garten
Theme URI: https://ts-haus-garten.de
Author: T&S Komplettservice
Author URI: https://ts-haus-garten.de
Description: Professionelles WordPress-Theme für T&S – Ihr Komplettservice für Haus & Garten. Modern, klar und kundenorientiert.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ts-haus-garten
Tags: business, services, green, modern, one-page
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --green-dark:    #2d6a2d;
  --green-mid:     #3d8b3d;
  --green-light:   #5aad5a;
  --green-accent:  #7dc67d;
  --green-pale:    #e8f5e8;
  --charcoal:      #1c2b1c;
  --slate:         #3a4a3a;
  --mist:          #f4f8f4;
  --white:         #ffffff;
  --text-body:     #2c3e2c;
  --text-light:    #5a6e5a;
  --border:        #d0e4d0;
  --shadow-sm:     0 2px 8px rgba(45,106,45,.10);
  --shadow-md:     0 6px 24px rgba(45,106,45,.14);
  --shadow-lg:     0 16px 56px rgba(45,106,45,.18);
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     28px;
  --transition:    .28s cubic-bezier(.4,0,.2,1);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-mono:     'DM Mono', monospace;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }
ul { list-style: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-body); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.75;
}

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section--alt { background: var(--mist); }
.section--dark { background: var(--charcoal); color: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }

.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--green-mid);
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.text-center .section-desc {
  margin: 0 auto;
}

/* Decorative line under headings */
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-accent));
  border-radius: 2px;
  margin-top: .6rem;
}

.text-center .section-title::after {
  margin: .6rem auto 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(45,106,45,.3);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,45,.38);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card__body { padding: 1.75rem; }
.card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.card__title { font-size: 1.1rem; margin-bottom: .5rem; }
.card__text { font-size: .93rem; color: var(--text-light); line-height: 1.6; }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.1rem 0;
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(45,106,45,.12);
  padding: .65rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 700;
}
.logo-text span {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .04em;
  font-weight: 500;
}

.logo img {
  max-width: 100px;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.site-header.scrolled .logo img {
  filter: none;
}

.site-header.scrolled .logo-text strong { color: var(--charcoal); }

/* Navigation */
.main-nav ul {
  display: flex;
  gap: .25rem;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  border-radius: 50px;
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,.14);
  color: var(--white);
}

.site-header.scrolled .main-nav a {
  color: var(--text-body);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
  background: var(--green-pale);
  color: var(--green-dark);
}

.header-cta { flex-shrink: 0; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--charcoal) 0%, #1e3a1e 55%, #2d5a2d 100%);
  padding-top: 5rem;
}

/* Subtle pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(93,173,93,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(61,139,61,.12) 0%, transparent 45%);
  pointer-events: none;
}

/* Animated floating leaves */
.hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-deco__leaf {
  position: absolute;
  font-size: 2rem;
  opacity: .07;
  animation: floatLeaf 12s ease-in-out infinite;
}
.hero-deco__leaf:nth-child(1) { top: 15%; left: 5%;  animation-delay: 0s; }
.hero-deco__leaf:nth-child(2) { top: 65%; left: 12%; animation-delay: -4s; }
.hero-deco__leaf:nth-child(3) { top: 30%; right: 8%; animation-delay: -2s; }
.hero-deco__leaf:nth-child(4) { top: 70%; right: 15%; animation-delay: -6s; }
.hero-deco__leaf:nth-child(5) { top: 50%; left: 45%; animation-delay: -8s; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(8deg); }
  66%       { transform: translateY(10px) rotate(-5deg); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero__content { color: var(--white); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--green-accent);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: normal;
  color: var(--green-accent);
}

.hero .lead { color: rgba(255,255,255,.75); margin-bottom: 2.5rem; }

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1;
}
.hero__stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}

/* Hero visual card */
.hero__visual {
  position: relative;
}

.hero__card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.hero__card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.hero__service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.hero__service-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.35;
}
.hero__service-item::before {
  content: '✓';
  color: var(--green-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

.hero__card-cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__card-cta .phone {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

.hero__card-cta .phone span {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}

/* Floating badge */
.hero__floating-badge {
  position: absolute;
  z-index: 100;
  top: -1.5rem;
  right: -1rem;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 28px rgba(45,106,45,.45);
  animation: rotateBadge 20s linear infinite;
}
@keyframes rotateBadge {
  to { transform: rotate(360deg); }
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.service-category {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-category:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-category__header {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-category__icon {
  font-size: 2rem;
  background: rgba(255,255,255,.15);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-category__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
}
.service-category__sub {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .1rem;
}

.service-category__list {
  padding: 1.5rem 1.75rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  color: var(--text-body);
  cursor: default;
  transition: color var(--transition);
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { color: var(--green-dark); }

.service-item__check {
  width: 22px;
  height: 22px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: .75rem;
  flex-shrink: 0;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.service-item:hover .service-item__check {
  background: var(--green-mid);
  color: var(--white);
}

/* =========================================================
   WHY US / USP
   ========================================================= */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.usp-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-accent);
}

.usp-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.usp-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--charcoal);
}

.usp-card__text {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0;
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 2px);
  right: calc(12.5% + 2px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-pale), var(--green-accent), var(--green-pale));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1.1rem;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-mid);
  transition: transform var(--transition), background var(--transition);
}
.process-step:hover .process-step__num {
  transform: scale(1.12);
  background: var(--green-mid);
}

.process-step__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--charcoal);
}
.process-step__text {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: .75rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--green-pale);
  line-height: 1;
  pointer-events: none;
}

.testimonial__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.testimonial__text {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.testimonial__name { font-weight: 700; font-size: .9rem; color: var(--charcoal); }
.testimonial__location { font-size: .78rem; color: var(--text-light); }

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info { }

.contact-info__item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .2rem;
}

.contact-info__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

.contact-info__value a {
  color: var(--charcoal);
}
.contact-info__value a:hover {
  color: var(--green-mid);
}

/* Contact Form */
.contact-form {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61,139,61,.12);
}

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

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
  accent-color: var(--green-mid);
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e4a1e 50%, #2d6a2d 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(122,198,122,.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.cta-banner__text { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,.5); }

.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-top: .9rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: .6rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--green-mid);
  color: var(--white);
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green-accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .65rem;
}
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: .1rem; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--green-accent); }

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

.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--green-accent); }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.4); }

/* =========================================================
   MOBILE MENU (OVERLAY)
   ========================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.mobile-menu nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
}
.mobile-menu nav a:hover { color: var(--green-accent); }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 3rem 0;
  }
  .hero__stats { justify-content: center; }
  .btn-group { justify-content: center; }
  .hero__badge { justify-content: center; }
  .hero__service-list { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .cta-banner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner .btn-group { justify-content: center; }

  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero__floating-badge { display: none; }
  .hero__card-cta { flex-direction: column; align-items: flex-start; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
  .hero__service-list { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   UTILITY — visually hidden for a11y
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* =========================================================
   WORDPRESS CORE ALIGNMENT CLASSES
   ========================================================= */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide  { width: 100%; max-width: 1320px; margin: 0 auto; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }

/* WP admin bar */
.admin-bar .site-header { top: 32px; }
