/* ============================================
   M&K Stone Landscaping — Stylesheet
   Forest Green + Off-White | Confident Corporate
   ============================================ */

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

:root {
  --green-900: #0d3a18;
  --green-800: #1a5c2a;
  --green-700: #227a36;
  --green-600: #2d9944;
  --green-500: #38b752;
  --green-100: #d1f5d8;
  --green-50:  #eafaf0;
  --off-white: #f5f5f0;
  --off-white-dark: #e8e8e2;
  --neutral-900: #1a1a18;
  --neutral-700: #3a3a36;
  --neutral-500: #6b6b66;
  --neutral-300: #a8a8a0;
  --neutral-200: #d4d4ce;
  --neutral-100: #eeeee8;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26,26,24,.08), 0 1px 2px rgba(26,26,24,.06);
  --shadow-md: 0 4px 16px rgba(26,26,24,.1), 0 2px 4px rgba(26,26,24,.06);
  --shadow-lg: 0 12px 40px rgba(26,26,24,.12), 0 4px 12px rgba(26,26,24,.08);
  --shadow-xl: 0 20px 60px rgba(26,26,24,.15), 0 8px 20px rgba(26,26,24,.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--neutral-700);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green-800);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { color: var(--neutral-900); font-weight: 700; line-height: 1.2; }
.text-accent { color: var(--green-700); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.938rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-800);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--green-100);
  color: var(--green-900);
}
.btn-secondary:hover {
  background: var(--green-50);
  transform: translateY(-1px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }

/* --- SECTION HEADERS --- */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-700);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  color: var(--neutral-900);
}
.section-sub {
  font-size: 1.063rem;
  color: var(--neutral-500);
  max-width: 560px;
  line-height: 1.7;
}
.section-header--center .section-sub { margin: 0 auto; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245,245,240,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(245,245,240,.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
}
.logo-accent { color: var(--green-700); }
.logo-icon { flex-shrink: 0; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list a {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--neutral-700);
  transition: var(--transition);
  position: relative;
}
.nav-list a:not(.btn):hover { color: var(--green-700); }
.nav-list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-list a:not(.btn):hover::after { width: 100%; }
.btn-nav {
  background: var(--green-800);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.btn-nav:hover {
  background: var(--green-700);
  color: var(--white) !important;
}
.btn-nav::after { display: none !important; }

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--neutral-700);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list li { border-bottom: 1px solid var(--neutral-200); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-list a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
  }
  .nav-list a::after { display: none; }
  .btn-nav {
    text-align: center;
    margin-top: 8px;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,58,24,.92) 0%,
    rgba(26,92,42,.85) 50%,
    rgba(34,122,54,.75) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 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='1'%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");
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.813rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge svg { opacity: 0.8; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating stat cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(26,26,24,.2);
}
.stat-card--1 { animation: float1 6s ease-in-out infinite; }
.stat-card--2 { animation: float2 7s ease-in-out infinite; }
.stat-card--3 { animation: float3 5.5s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(.5deg); } }
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(-.5deg); } }
@keyframes float3 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(.3deg); } }

.stat-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-700);
}
.stat-card-body { display: flex; flex-direction: column; }
.stat-card-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.2;
}
.stat-card-label {
  font-size: 0.813rem;
  color: var(--neutral-500);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 200px; }
}
@media (max-width: 480px) {
  .hero-cards { flex-direction: column; }
  .stat-card { min-width: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--neutral-200);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,.3) 0%, transparent 60%);
}
.service-card-body {
  padding: 28px;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--neutral-900);
}
.service-card-body p {
  font-size: 0.938rem;
  color: var(--neutral-500);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 72px 0; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 100px 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,58,24,.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}
.gallery-item--large { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }
  .gallery-item { height: 200px; }
  .gallery-item--large { height: 260px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large,
  .gallery-item:nth-child(n) { grid-column: span 1; }
  .gallery-item-overlay { opacity: 1; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.about-img-secondary img {
  width: 240px;
  height: 180px;
  object-fit: cover;
}
.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--green-800);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-accent-box .accent-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.about-accent-box .accent-label {
  font-size: 0.813rem;
  opacity: 0.85;
  line-height: 1.4;
}

.about-content .section-title { margin-bottom: 20px; }
.about-lead {
  font-size: 1.063rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-content > p {
  font-size: 0.938rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 32px;
}
.about-values { display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item strong {
  display: block;
  font-size: 0.938rem;
  color: var(--neutral-900);
  margin-bottom: 2px;
}
.value-item span {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { right: 16px; bottom: -24px; }
  .about-accent-box { left: 16px; top: -16px; }
}
@media (max-width: 480px) {
  .about-img-main img { height: 320px; }
  .about-img-secondary img { width: 160px; height: 120px; }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--green-900);
  color: var(--white);
}
.process .section-tag { color: var(--green-100); }
.process .section-tag::before { background: var(--green-500); }
.process .section-title { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,.6); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,.15);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-500);
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.process-step-connector { display: none; }

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--neutral-200);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--green-200);
  position: absolute;
  top: 20px;
  right: 28px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.938rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.813rem;
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--neutral-900);
}
.testimonial-location {
  font-size: 0.813rem;
  color: var(--neutral-500);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,58,24,.9) 0%, rgba(26,92,42,.85) 100%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.063rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-500);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.938rem;
  color: var(--neutral-700);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--green-700); }
.contact-hours {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--neutral-200);
}
.contact-hours strong {
  display: block;
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-500);
  margin-bottom: 8px;
}
.contact-hours span {
  font-size: 0.938rem;
  color: var(--neutral-700);
  line-height: 1.7;
}

/* Form */
.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--neutral-200);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.938rem;
  color: var(--neutral-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(56,183,82,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--neutral-300); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.813rem;
  color: var(--neutral-500);
  text-align: center;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--neutral-900);
}
.form-success p {
  font-size: 0.938rem;
  color: var(--neutral-500);
  max-width: 320px;
}
.success-icon { color: var(--green-600); margin-bottom: 8px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col strong {
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--green-500); }
.footer-address {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-col p { font-size: 0.875rem; }
.footer-col a:hover { color: var(--green-500); }

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
