/* =========================================
   ROOT AND VINE THERAPIES
   Main Stylesheet
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --green-dark:    #3a6349;
  --green-mid:     #4a7c59;
  --green-light:   #8db89a;
  --green-pale:    #d4e6da;
  --cream:         #f9f5ef;
  --cream-dark:    #efe9df;
  --text-dark:     #2c2c2c;
  --text-mid:      #5a5a5a;
  --text-light:    #8a8a8a;
  --white:         #ffffff;

  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', sans-serif;

  --radius:        4px;
  --radius-lg:     12px;
  --shadow:        0 2px 16px rgba(58, 99, 73, 0.10);
  --shadow-lg:     0 8px 40px rgba(58, 99, 73, 0.15);
  --transition:    all 0.25s ease;

  --max-width:     1100px;
  --section-pad:   80px;
}

/* --- 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-dark);
  background: var(--white);
  line-height: 1.7;
  font-weight: 300;
}

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

a { color: var(--green-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase; }

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

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

.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--green-pale { background: var(--green-pale); }
.section--dark { background: var(--green-dark); color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

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

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(249, 245, 239, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
  transition: var(--transition);
}

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

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.2;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--green-dark);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__dropdown-toggle svg {
  width: 12px; height: 12px;
  transition: var(--transition);
}

.nav__dropdown.open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown.open .nav__dropdown-toggle {
  color: var(--green-dark);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-mid);
  border-radius: var(--radius);
  text-transform: none;
  letter-spacing: 0;
}

.nav__dropdown-menu a:hover {
  background: var(--cream);
  color: var(--green-dark);
}

.nav__dropdown-menu a::after { display: none; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

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

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--cream-dark);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 300;
}

.nav__mobile a:last-child { border-bottom: none; }

.nav__mobile-group-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 0 4px;
}

/* --- Hero --- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(141, 184, 154, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(212, 230, 218, 0.4) 0%, transparent 50%);
}

.hero__decoration {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(141, 184, 154, 0.3);
  pointer-events: none;
}

.hero__decoration::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(141, 184, 154, 0.2);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green-mid);
}

.hero h1 { margin-bottom: 20px; color: var(--text-dark); }

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.hero__reassurance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--green-mid);
  margin-bottom: 36px;
  font-weight: 400;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--cream);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--cream-dark);
}

.page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green-mid);
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; }

/* --- Who I Help --- */
.who-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1rem;
  color: var(--text-mid);
}

.who-list li:last-child { border-bottom: none; }

.who-list__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  margin-top: 8px;
  flex-shrink: 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* --- Trust Points --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.trust-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.trust-item p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--green-pale);
  position: absolute;
  top: 12px;
  left: 24px;
  font-weight: 300;
}

.testimonial-card p {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-card__author {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* --- Locations Strip --- */
.locations-strip {
  background: var(--green-dark);
  padding: 40px 0;
  text-align: center;
}

.locations-strip p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.locations-strip__towns {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

/* --- Pricing Table --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.95rem;
}

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table tr:nth-child(even) td { background: var(--cream); }

.pricing-table td:last-child {
  font-weight: 400;
  color: var(--text-mid);
}

/* Full pricing table (all services) */
.pricing-table--full th:first-child,
.pricing-table--full td:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

/* --- Service Page --- */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.service-list li:last-child { border-bottom: none; }

.service-list__check {
  color: var(--green-mid);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-variant {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
}

.service-variant h3 { margin-bottom: 12px; }
.service-variant p { margin: 0; }

/* --- Process Steps --- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  counter-reset: steps;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.process-step:last-child { border-bottom: none; }

.process-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 500;
}

.process-step__content h4 {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.process-step__content p { font-size: 0.92rem; margin: 0; }

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

.location-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

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

.location-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}

.location-card__pin {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-card h3 { font-size: 1.4rem; margin: 0; }

.location-card__detail {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.location-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0;
}

.location-card__tag {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
}

.location-card__price {
  font-size: 0.88rem;
  color: var(--green-mid);
  font-weight: 500;
  margin-top: 12px;
}

/* --- FAQs --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--green-dark); }

.faq-question svg {
  width: 20px; height: 20px;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-question.open svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
}

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

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-method:hover {
  border-color: var(--green-pale);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.contact-method__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method__icon--whatsapp { background: #dcf8e9; }
.contact-method__icon--phone { background: var(--green-pale); }
.contact-method__icon--email { background: var(--cream-dark); }

.contact-method__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-method__value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
}

.contact-step:last-child { border-bottom: none; }

.contact-step__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green-pale);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.contact-step__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-top: 4px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--green-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* --- Footer --- */
.footer {
  background: #1e3d28;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  max-width: 280px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer__registration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--green-light);
  background: rgba(141,184,154,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(141,184,154,0.2);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-green { color: var(--green-mid); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.note {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  :root { --section-pad: 60px; }

  .nav__links,
  .nav__cta { display: none; }

  .nav__hamburger { display: flex; }

  .hero { min-height: 85vh; }
  .hero__decoration { display: none; }

  .service-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --section-pad: 48px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
}
