/*
Theme Name: Lakeshore Landscaping Co.
Theme URI: https://landscape.nickelcitywebdesign.com
Author: Nickel City Web Design
Description: A LifeCare-inspired layout for Lakeshore Landscaping Co. in Erie, PA. Centered logo nav, full-bleed hero, icon feature row, service cards, testimonials, ACF Free editable.
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: business, landscaping, custom-fields, acf
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-forest:       #2D4A2D;
  --color-forest-dark:  #1E2A1E;
  --color-forest-mid:   #3A5E3A;
  --color-forest-light: #4D7A4D;
  --color-forest-pale:  #EBF0EB;
  --color-amber:        #C8922A;
  --color-amber-light:  #DBA84A;
  --color-amber-pale:   #FBF3E4;
  --color-offwhite:     #F7F4EE;
  --color-offwhite-dark:#EDE8DE;
  --color-white:        #FFFFFF;
  --color-bark:         #1E2A1E;
  --color-slate:        #5C6B5C;
  --color-slate-light:  #7A8C7A;
  --color-mist:         #D8DDD8;
  --color-text:         #2C3A2C;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;
  --radius-pill: 999px;

  --shadow-card:  0 4px 24px rgba(30,42,30,0.09);
  --shadow-hover: 0 12px 40px rgba(30,42,30,0.16);

  --max-width:    1200px;
  --nav-height:   80px;
  --section-pad:  96px 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-white);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--color-forest); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-amber); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--color-forest-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 14px; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; margin-bottom: 8px; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1em; color: var(--color-slate); }
p:last-child { margin-bottom: 0; }
p.lead { color: var(--color-text); font-size: 1.05rem; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 12px;
}

.divider {
  width: 44px;
  height: 3px;
  background: var(--color-amber);
  border-radius: 2px;
  margin: 16px 0 32px;
}
.divider-center { margin-left: auto; margin-right: auto; }
.divider-forest { background: var(--color-forest); }
.divider-white  { background: rgba(255,255,255,0.4); }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-forest {
  background: var(--color-forest);
  color: var(--color-white);
  border-color: var(--color-forest);
}
.btn-forest:hover {
  background: var(--color-forest-mid);
  border-color: var(--color-forest-mid);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,74,45,0.3);
}

.btn-amber {
  background: var(--color-amber);
  color: var(--color-white);
  border-color: var(--color-amber);
}
.btn-amber:hover {
  background: var(--color-amber-light);
  border-color: var(--color-amber-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-forest);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV  — LifeCare style: centered layout
   Logo left · Nav links center · CTA right
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-mist);
  box-shadow: 0 2px 16px rgba(30,42,30,0.06);
  height: var(--nav-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* Logo — left */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest-dark);
}

.logo-name span { color: var(--color-amber); }

.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-slate-light);
  margin-top: 2px;
}

/* Nav — center */
.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.primary-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.primary-nav a.current-menu-item {
  color: var(--color-forest);
  border-bottom-color: var(--color-amber);
}

/* CTA — right */
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.header-phone:hover { color: var(--color-amber); }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-forest-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-mist);
  padding: 20px 40px 28px;
  flex-direction: column;
  gap: 16px;
  z-index: 190;
  box-shadow: 0 8px 24px rgba(30,42,30,0.10);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-mist);
}

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

/* ============================================================
   PAGE HERO — full bleed
   ============================================================ */
.page-hero {
  background: var(--color-forest-dark);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -1px; right: -1px;
  height: 48px;
  background: var(--color-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--color-white); }
.page-hero p {
  color: rgba(255,255,255,0.68);
  margin-top: 10px;
  font-size: 1.05rem;
}

/* ============================================================
   HOME HERO — full bleed with overlay
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-forest-dark);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

/* Diagonal wave bottom */
.home-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -2%; right: -2%;
  height: 80px;
  background: var(--color-white);
  clip-path: ellipse(52% 100% at 50% 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text .section-label { color: rgba(255,255,255,0.6); }

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

.hero-text h1 em {
  color: var(--color-amber-light);
  font-style: italic;
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero image collage — right side */
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  position: relative;
}

.hero-img-slot {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.hero-img-slot:first-child {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

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

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-align: center;
  padding: 12px;
}

.hero-img-placeholder span { font-size: 1.8rem; opacity: 0.5; }

/* ============================================================
   WHY CHOOSE US — LifeCare icon feature row
   ============================================================ */
.features-section {
  padding: var(--section-pad);
  background: var(--color-white);
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 8px;
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-forest-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: background 0.2s, transform 0.2s;
}

.feature-item:hover .feature-icon-wrap {
  background: var(--color-forest);
  transform: translateY(-4px);
}

.feature-item:hover .feature-icon-wrap .fi {
  filter: brightness(0) invert(1);
}

.feature-item h3 {
  font-size: 1.05rem;
  color: var(--color-forest-dark);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--color-slate);
}

/* ============================================================
   SERVICES — LifeCare card grid
   ============================================================ */
.services-section {
  padding: var(--section-pad);
  background: var(--color-offwhite);
}

.services-header {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-forest-light);
}

.service-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--color-forest-pale);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--color-slate-light);
  font-size: 0.78rem;
}

.service-card-img-placeholder span { font-size: 2.5rem; }

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

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

.service-card-body p {
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-forest);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.2s, color 0.2s;
}

.service-card:hover .service-card-link {
  gap: 10px;
  color: var(--color-amber);
}

.service-card-link::after { content: '→'; }

/* ============================================================
   TESTIMONIALS — LifeCare large quote mark style
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--color-forest-dark);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.testimonials-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.testimonials-header h2 { color: var(--color-white); }
.testimonials-header .section-label { color: rgba(255,255,255,0.5); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

/* Large quote mark — LifeCare signature detail */
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--color-amber);
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
  font-weight: 700;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-meta strong {
  display: block;
  color: var(--color-white);
  font-size: 0.95rem;
}

.testimonial-meta span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

/* ============================================================
   UPDATES / NEWS CARDS — LifeCare editorial row
   ============================================================ */
.updates-section {
  padding: var(--section-pad);
  background: var(--color-white);
}

.updates-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.update-card {
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

.update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.update-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--color-forest-pale);
  position: relative;
}

.update-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.update-card:hover .update-card-img img { transform: scale(1.05); }

.update-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--color-slate-light);
  font-size: 0.75rem;
}

.update-card-img-placeholder span { font-size: 2rem; }

.update-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-amber);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.update-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.update-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate-light);
  margin-bottom: 8px;
}

.update-card-body h3 {
  font-size: 1.05rem;
  color: var(--color-forest-dark);
  margin-bottom: 8px;
  flex: 1;
}

.update-card-body p {
  font-size: 0.85rem;
  color: var(--color-slate);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-amber-pale);
  border-top: 1px solid var(--color-offwhite-dark);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--color-forest-dark); margin-bottom: 10px; }
.cta-banner p  { color: var(--color-slate); margin-bottom: 28px; font-size: 1.05rem; }

/* ============================================================
   INNER PAGE: SERVICES
   ============================================================ */
.services-full-section {
  padding: var(--section-pad);
  background: var(--color-white);
}

.service-full-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-mist);
}

.service-full-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-full-block.reversed { direction: rtl; }
.service-full-block.reversed > * { direction: ltr; }

.service-full-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.service-full-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-forest-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-slate-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.service-full-img-placeholder span { font-size: 3rem; }

.service-full-content .section-label { margin-bottom: 8px; }

.service-includes {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text);
}

.service-includes li::before {
  content: '✓';
  color: var(--color-forest);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding: var(--section-pad);
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.about-photo-wrap { position: relative; }

.about-photo-wrap img,
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-photo-placeholder {
  background: var(--color-forest-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-slate-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.about-photo-placeholder span { font-size: 3rem; }

/* Amber bracket accent — LifeCare corner detail */
.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  border-right: 4px solid var(--color-amber);
  border-bottom: 4px solid var(--color-amber);
  border-radius: 0 0 var(--radius-md) 0;
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.stat-box {
  background: var(--color-forest-pale);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: background 0.2s;
}

.stat-box:hover { background: var(--color-forest); }
.stat-box:hover .stat-number,
.stat-box:hover .stat-label { color: var(--color-white); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-forest);
  display: block;
  line-height: 1;
  transition: color 0.2s;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-top: 5px;
  display: block;
  transition: color 0.2s;
}

/* Location section */
.location-section {
  padding: var(--section-pad);
  background: var(--color-offwhite);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.location-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

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

.location-detail:last-child { margin-bottom: 0; }
.location-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.location-detail h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 4px;
}

.location-detail p,
.location-detail a {
  font-size: 0.93rem;
  color: var(--color-text);
  margin: 0;
}

.location-detail a:hover { color: var(--color-forest); }

.map-placeholder {
  border-radius: var(--radius-lg);
  height: 360px;
  background: var(--color-forest-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-slate-light);
  font-size: 0.88rem;
  border: 2px dashed var(--color-mist);
  text-align: center;
  padding: 24px;
}

.map-placeholder span { font-size: 2.5rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--section-pad);
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-mist);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info-item .ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.93rem;
  color: var(--color-text);
  margin: 0;
}

.contact-info-item a:hover { color: var(--color-forest); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.ll-form-wrap {
  background: var(--color-offwhite);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.ll-form-wrap h3 { margin-bottom: 6px; }
.ll-form-intro { font-size: 0.88rem; color: var(--color-slate); margin-bottom: 28px; }

.ll-form-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-forest);
  border-bottom: 1px solid var(--color-mist);
  padding-bottom: 8px;
  margin: 22px 0 14px;
  display: block;
}

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

.ll-form .form-group { margin-bottom: 14px; }

.ll-form label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 6px;
}

.ll-form input,
.ll-form select,
.ll-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid var(--color-mist);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.ll-form input:focus,
.ll-form select:focus,
.ll-form textarea:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(45,74,45,0.10);
}

.ll-form textarea { height: 120px; resize: vertical; }
.form-notice { font-size: 0.78rem; color: var(--color-slate); margin-top: 12px; }

.form-success {
  background: var(--color-forest-pale);
  border: 1px solid rgba(45,74,45,0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--color-forest-dark);
  font-size: 0.95rem;
  display: none;
}

.form-error {
  color: #cc2200;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

/* ============================================================
   FOOTER — LifeCare multi-column style
   ============================================================ */
.site-footer {
  background: var(--color-forest-dark);
  padding: 64px 0 28px;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-brand .footer-logo-name span { color: var(--color-amber); }

.footer-brand .footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 3px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

.footer-col p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  font-size: 0.88rem;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-images    { display: none; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .primary-nav  { display: none; }
  .nav-toggle   { display: flex; }

  .services-grid     { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .updates-grid      { grid-template-columns: 1fr 1fr; }
  .service-full-block{ grid-template-columns: 1fr; }
  .service-full-block.reversed { direction: ltr; }
  .about-grid        { grid-template-columns: 1fr; }
  .location-grid     { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 0; --nav-height: 68px; }

  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }

  .services-grid  { grid-template-columns: 1fr; }
  .updates-grid   { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .about-stats    { grid-template-columns: 1fr 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 32px; padding: 0 20px 40px; }
  .footer-bottom  { padding: 20px 20px 0; flex-direction: column; text-align: center; }
  .ll-form .form-row { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; }
  .updates-header { flex-direction: column; align-items: flex-start; }
}
