/* ============================================
   ALEJANDRO GEEK HOUSE — CSS
   Mobile-first, custom design system
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary:    #1a1a1a;
  --secondary:  #555555;
  --accent:     #0066ff;
  --accent-dark:#0050cc;
  --accent-glow:rgba(0,102,255,0.25);
  --background: #ffffff;
  --text:       #111111;
  --text-muted: #666666;
  --surface:    #f4f6fa;
  --surface-dark: #111827;
  --border:     #e2e8f0;
  --dark-bg:    #0d0f14;
  --dark-surface:#161b27;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.14);
  --shadow-accent: 0 8px 32px rgba(0,102,255,0.25);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Nunito', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::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);
  background: var(--background);
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-dark {
  background: var(--dark-bg);
  color: #e8eaf0;
}
.section-dark .section-title { color: #f0f2ff; }
.section-dark .section-tag { color: var(--accent); border-color: rgba(0,102,255,0.3); background: rgba(0,102,255,0.08); }
.section-dark .section-desc { color: #9ba3b8; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.2);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.accent-text { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,102,255,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn-claim {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
}
.btn-claim:hover, .btn-claim:focus-visible {
  background: var(--accent);
  color: #fff;
}
.btn-full { width: 100%; }
.btn-lg { font-size: 1.05rem; padding: 0.9rem 2rem; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- Disclaimer Banner ---------- */
.disclaimer-banner {
  background: var(--primary);
  color: #cdd0d8;
  font-size: 0.78rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1000;
}

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--accent); background: rgba(0,102,255,0.06); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-shape-1 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -15vw; right: -10vw;
}
.hero-shape-2 {
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  bottom: 0; left: -5vw;
  opacity: 0.2;
}
.hero-shape-3 {
  width: 20vw; height: 20vw;
  background: radial-gradient(circle, #60a5fa 0%, transparent 70%);
  top: 40%; left: 40%;
  opacity: 0.15;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #f0f4ff;
  padding: 6rem 1.25rem 4rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,102,255,0.15);
  border: 1px solid rgba(0,102,255,0.35);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #9ba3c0;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.1rem; }
.stat-number {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: #6b7a9b; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  width: 24px;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-visual {
  display: flex;
  justify-content: center;
}
.about-card-bg {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);
  border: 1px solid rgba(0,102,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.8);
}
.about-svg { width: 100%; height: auto; }
.about-badge-float {
  margin-top: 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: var(--shadow-accent);
}
.about-badge-float span { font-size: 0.78rem; opacity: 0.85; }
.about-badge-float strong { font-family: var(--font-head); font-size: 1rem; }
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-text p { color: var(--text-muted); }
.about-text p strong { color: var(--text); }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0 1.5rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
}
.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.feature-icon svg { width: 100%; height: 100%; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,102,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,102,255,0.3); box-shadow: 0 0 0 1px rgba(0,102,255,0.2), var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; margin-bottom: 1.25rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0f2ff;
  margin-bottom: 0.6rem;
}
.service-card p { color: #7a839e; font-size: 0.95rem; line-height: 1.65; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--primary);
}
.gallery-item--large {
  grid-column: 1 / -1;
}
.gallery-visual {
  width: 100%;
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:not(.gallery-item--large) .gallery-visual {
  aspect-ratio: 1 / 1;
}
.gallery-visual svg { width: 100%; height: 100%; object-fit: cover; }
.gv-1 { background: linear-gradient(135deg, #0d0d2b 0%, #001040 100%); }
.gv-2 { background: linear-gradient(135deg, #0d0d2b 0%, #060618 100%); }
.gv-3 { background: linear-gradient(135deg, #0a0a1a 0%, #050510 100%); }
.gv-4 { background: linear-gradient(135deg, #050515 0%, #020208 100%); }
.gv-5 { background: linear-gradient(135deg, #080820 0%, #040410 100%); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,102,255,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { color: #d0d4e0; }
.contact-info p { color: #9ba3b8; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,102,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-detail strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7a9b; margin-bottom: 0.2rem; }
.contact-detail span { color: #d0d4e0; font-size: 0.95rem; }
.contact-form-wrap {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #9ba3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: #f0f2ff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a5270; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-status {
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.success { display: block; background: rgba(34,197,94,0.15); color: #4ade80; }
.form-status.error { display: block; background: rgba(239,68,68,0.15); color: #f87171; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050a1f 0%, #0a0f28 100%);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0,102,255,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.cta-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
}
.cta-icon svg { width: 100%; height: 100%; }
.cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta p {
  color: #8a95b8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Hours ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hours-text { color: #d0d4e0; }
.hours-text p { color: #9ba3b8; margin-top: 1rem; }
.hours-table-wrap { background: var(--dark-surface); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-xl); padding: 1.5rem 2rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  color: #c8cfe0;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 600; color: #e0e4f0; }
.hours-table td:last-child { text-align: right; }
.hours-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}
.hours-badge.open { background: rgba(34,197,94,0.15); color: #4ade80; }
.hours-badge.varied { background: rgba(251,191,36,0.15); color: #fbbf24; }
.hours-note { margin-top: 1.25rem; font-size: 0.8rem; color: #4a5270; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(0,102,255,0.2); }
.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card blockquote p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  color: #9ba3b8;
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}
.footer-logo { color: #e0e4f0; margin-bottom: 0.25rem; }
.footer-logo span { color: var(--accent); }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e0e4f0;
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
}
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-bottom {
  padding: 1.25rem 0;
  font-size: 0.82rem;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}
.powered-by { color: #4a5270; }
.powered-by strong { color: var(--accent); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE — Tablet (≥640px)
   ============================================ */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }
  .gallery-item--large { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — Desktop (≥1024px)
   ============================================ */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border: none;
    gap: 0.25rem;
  }
  .about-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
  .hours-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .gallery-item--large { grid-column: 1 / 3; }
}

/* ============================================
   RESPONSIVE — Mobile nav
   ============================================ */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
  .btn-claim { align-self: flex-start; margin-top: 0.5rem; }
  .hero-content { padding: 5rem 1.25rem 3rem; }
}

/* ============================================
   RESPONSIVE — Large screens (≥1280px)
   ============================================ */
@media (min-width: 1280px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item--large { grid-column: 1 / 3; }
}

/* ---------- Focus & Accessibility ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
