/* ============================================================
   Great Outdoors Landscaping & Design Company
   Brand: Forest Green #2D5A3D | Stone #C9B8A3 | White #FFFFFF
   Fonts: Playfair Display (headings) | Inter (body)
   ============================================================ */

:root {
  --green:       #2D5A3D;
  --green-dark:  #1e3d2a;
  --green-light: #4a7c5f;
  --stone:       #C9B8A3;
  --stone-light: #f0ebe3;
  --white:       #ffffff;
  --off-white:   #f8f6f2;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --border:      #e5e0d8;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --radius:      8px;
  --transition:  0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text);
}

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

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

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--stone-light); }

/* ── Section headings ── */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--green);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 14px; font-family: 'Playfair Display', serif;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; line-height: 1.2; }
.nav-logo-sub { font-size: 11px; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0; transition: all 0.3s;
}
.mobile-menu {
  display: none; background: white;
  border-top: 1px solid var(--border); padding: 16px 24px;
}
.mobile-menu a {
  display: block; padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500; color: var(--text);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }

/* ── HERO ── */
.hero {
  background: var(--off-white);
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,90,61,0.08); color: var(--green);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
.hero-title span { color: var(--green); }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); }
.hero-image { position: relative; }
.hero-image img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.hero-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: white; border-radius: 12px; padding: 16px 20px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero-badge-icon {
  width: 40px; height: 40px; background: var(--green);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.hero-badge-text { font-size: 13px; font-weight: 600; }
.hero-badge-sub { font-size: 11px; color: var(--text-muted); }

/* ── SERVICES ── */
.services { padding: 96px 0; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.service-card {
  padding: 36px 28px; border: 1px solid var(--border);
  border-radius: 12px; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--green);
  transform: scaleY(0); transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--green); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px; background: rgba(45,90,61,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ── PORTFOLIO ── */
.portfolio { padding: 96px 0; background: var(--off-white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.portfolio-card {
  position: relative; border-radius: 12px; overflow: hidden;
  cursor: pointer; group: true;
}
.portfolio-card img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.portfolio-category {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 6px;
}
.portfolio-title { font-size: 1.3rem; color: white; font-family: 'Playfair Display', serif; }
.portfolio-location { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ── ABOUT STRIP ── */
.about-strip { padding: 96px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 16px; }
.about-content .section-label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.about-value {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--off-white); border-radius: 8px;
}
.about-value-icon { font-size: 20px; flex-shrink: 0; }
.about-value h4 { font-size: 0.9rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 2px; }
.about-value p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 96px 0; background: var(--green); }
.testimonials .section-label { color: var(--stone); }
.testimonials .section-title { color: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 32px;
}
.testimonial-stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; }
.testimonial-quote { color: rgba(255,255,255,0.9); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
}
.testimonial-name { font-weight: 600; color: white; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--stone-light) 0%, var(--off-white) 100%);
  text-align: center;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact { padding: 96px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 44px; height: 44px; background: rgba(45,90,61,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail-value { font-weight: 600; font-size: 0.95rem; }
.contact-form { background: var(--off-white); border-radius: 16px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 15px;
  background: white; color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; background: #d1fae5; border: 1px solid #6ee7b7;
  color: #065f46; padding: 16px; border-radius: var(--radius);
  margin-bottom: 20px; font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: #0f1f16; color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin: 16px 0 24px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon {
  width: 36px; height: 36px; background: var(--green);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 13px;
}
.footer-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; color: white; font-size: 0.95rem; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--stone); }
.footer-col h4 { color: white; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-col ul li a:hover { color: var(--stone); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--stone); }

/* ── GALLERY PAGE ── */
.gallery-hero { background: var(--green); padding: 80px 0; text-align: center; }
.gallery-hero h1 { color: white; font-size: clamp(2.5rem, 5vw, 4rem); }
.gallery-hero p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 1.1rem; }
.gallery-filters { padding: 40px 0 0; background: var(--white); }
.filter-tabs { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.filter-tab {
  padding: 10px 22px; border-radius: 100px;
  border: 2px solid var(--border); background: white;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active { background: var(--green); color: white; border-color: var(--green); }
.gallery-grid-section { padding: 48px 0 96px; background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative; border-radius: 10px; overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.35); }
.gallery-item-overlay span {
  color: white; font-size: 28px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay span { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.9); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: white; font-size: 36px; cursor: pointer; background: none; border: none;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 32px; cursor: pointer; background: none; border: none;
  padding: 16px;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ── SERVICES PAGE ── */
.page-hero { background: var(--green); padding: 80px 0; }
.page-hero h1 { color: white; font-size: clamp(2.5rem, 5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 12px; font-size: 1.1rem; max-width: 560px; }
.services-detail { padding: 96px 0; }
.service-detail-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-bottom: 80px; padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.service-detail-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-card img { width: 100%; height: 360px; object-fit: cover; border-radius: 12px; }
.service-detail-content .section-label { margin-bottom: 12px; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 20px; }
.service-features { margin: 24px 0; }
.service-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.service-feature:last-child { border-bottom: none; }
.service-feature::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--off-white); padding: 80px 0; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
.about-hero p { color: var(--text-muted); font-size: 1.1rem; }
.about-hero img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; }
.about-story { padding: 96px 0; }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story img { width: 100%; height: 480px; object-fit: cover; border-radius: 12px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 64px 0; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--green); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }
.team-section { padding: 0 0 96px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--stone-light); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--green);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ── CONTACT PAGE ── */
.contact-page { padding: 96px 0; }
.contact-page-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }

/* ── ALERT MESSAGES ── */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.alert-error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── ADMIN ── */
.admin-login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
}
.admin-login-card {
  background: white; border-radius: 16px; padding: 48px;
  width: 100%; max-width: 420px; box-shadow: var(--shadow);
}
.admin-login-logo { text-align: center; margin-bottom: 32px; }
.admin-login-logo .nav-logo-icon { width: 56px; height: 56px; font-size: 18px; margin: 0 auto 12px; }
.admin-login-logo h1 { font-size: 1.5rem; }
.admin-login-logo p { color: var(--text-muted); font-size: 0.9rem; }
.admin-nav {
  background: var(--green); padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-nav h1 { color: white; font-size: 1.2rem; }
.admin-nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.admin-nav a:hover { color: white; }
.admin-body { padding: 40px; max-width: 1200px; margin: 0 auto; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.admin-stat-card {
  background: white; border: 1px solid var(--border); border-radius: 10px;
  padding: 24px; text-align: center;
}
.admin-stat-card .num { font-size: 2rem; font-weight: 700; color: var(--green); font-family: 'Playfair Display', serif; }
.admin-stat-card .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.admin-table-wrap { background: white; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.admin-table-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-table-header h2 { font-size: 1.1rem; }
table { width: 100%; border-collapse: collapse; }
th { background: var(--off-white); padding: 12px 16px; text-align: left; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--off-white); }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-contacted { background: #fef3c7; color: #92400e; }
.badge-closed { background: #d1fae5; color: #065f46; }
.admin-actions { display: flex; gap: 8px; }
.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: 6px; }
.btn-danger { background: #fee2e2; color: #991b1b; border: none; cursor: pointer; }
.btn-danger:hover { background: #fca5a5; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner, .about-inner, .about-story-inner, .contact-inner,
  .about-hero-inner, .contact-page-inner, .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .hero-image { order: -1; }
  .hero-image img { height: 360px; }
  .hero-badge { left: 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 48px 0 0; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .filter-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
}
