/* ============================================================
   Gabriel Steak House – Custom Stylesheet
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --primary:    #c4451c;
  --secondary:  #e8874a;
  --accent:     #f4c430;
  --background: #fff8f0;
  --text:       #2d1810;
  --text-light: #6b3a28;
  --white:      #ffffff;
  --dark:       #1a0a05;
  --card-bg:    #fff3e6;
  --border:     rgba(196, 69, 28, 0.15);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;

  --max-w: 1180px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(44, 24, 16, 0.10);
  --shadow-lg: 0 12px 48px rgba(44, 24, 16, 0.18);

  --transition: 0.3s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
}

em { font-style: italic; color: var(--primary); }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 90px 0; }
.section-alt { background: var(--card-bg); }

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

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 69, 28, 0.35);
}
.btn-primary:hover { background: #a83818; box-shadow: 0 6px 28px rgba(196, 69, 28, 0.45); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-gold {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(244, 196, 48, 0.4);
}
.btn-gold:hover { background: #e0b020; }

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

.btn-full { width: 100%; text-align: center; padding: 16px; }

.btn-claim {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-claim:hover { background: #e0b020; transform: translateY(-1px); }

/* ── Disclaimer Bar ─────────────────────────────────────────── */
.disclaimer-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.75rem;
  padding: 8px 16px;
  line-height: 1.4;
  z-index: 200;
  position: relative;
}

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--primary); background: rgba(196,69,28,0.07); }
.nav-claim { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196, 69, 28, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(232, 135, 74, 0.4) 0%, transparent 55%),
    linear-gradient(160deg, #1a0a05 0%, #2d1810 40%, #3d1e10 70%, #1a0a05 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(244,196,48,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(244,196,48,0.06) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 780px;
  animation: fadeUp 0.9s ease both;
}

.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 900;
  line-height: 1.1;
}
.hero-title em { color: var(--accent); font-style: italic; }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.80);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-illustration {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #fff3e6 0%, #ffe8cc 100%);
  aspect-ratio: 1;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-number { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-text { display: block; font-size: 0.75rem; opacity: 0.9; margin-top: 4px; }

.about-content .section-label { display: block; margin-bottom: 10px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fff3e6, #ffe8cc);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-detail {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(196,69,28,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.gallery-item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-visual {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-item--large .gallery-visual { min-height: 420px; }

.gv-1 { background: linear-gradient(135deg, #1a0a05, #2d1810); }
.gv-2 { background: linear-gradient(135deg, #2d1810, #1a0a05); }
.gv-3 { background: linear-gradient(135deg, #0d0603, #1a0a05); }
.gv-4 { background: linear-gradient(135deg, #12080a, #1a0a05); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.testimonial-stars {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-info strong { display: block; font-family: var(--font-heading); font-size: 1rem; }
.author-info span { font-size: 0.82rem; color: var(--text-light); }

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.t-prev, .t-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 1.1rem;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.t-prev:hover, .t-next:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.t-dot.active { background: var(--primary); transform: scale(1.25); }

/* ── Hours ──────────────────────────────────────────────────── */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hours-content .section-label { display: block; margin-bottom: 10px; }
.hours-content .section-title { margin-bottom: 32px; }

.hours-table { display: flex; flex-direction: column; gap: 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hours-row:not(.highlight):hover { background: rgba(196,69,28,0.05); }
.hours-row + .hours-row { border-top: 1px solid var(--border); }

.hours-row.highlight {
  background: rgba(196,69,28,0.06);
}

.hours-day { font-weight: 500; color: var(--text); }
.hours-time { font-weight: 600; color: var(--primary); font-family: var(--font-heading); }

.hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 12px 16px;
  background: rgba(196,69,28,0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.location-map {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0e8d8;
}
.location-map svg { width: 100%; height: 100%; }

.location-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-item svg { flex-shrink: 0; margin-top: 2px; }
.location-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); margin-bottom: 2px; }
.location-item span { font-size: 0.9rem; color: var(--text-light); }

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

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

input, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--background);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: #b09080; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 69, 28, 0.12);
}
textarea { resize: vertical; }

.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}
.form-success.visible {
  display: block;
  background: rgba(106, 170, 100, 0.12);
  color: #3a7a35;
  border: 1px solid rgba(106, 170, 100, 0.3);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail svg { flex-shrink: 0; margin-top: 3px; }
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 4px; }
.contact-detail p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 69, 28, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(232, 135, 74, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, #1a0a05 0%, #2d1810 50%, #1a0a05 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-content h2 em { color: var(--accent); }

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 20px 48px;
}

.footer-brand .logo-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.footer-claim {
  display: inline-block;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact a { color: var(--secondary); transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.powered-by { color: rgba(255,255,255,0.5) !important; }
.powered-by strong { color: var(--accent); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-illustration { max-width: 320px; margin: 0 auto; }
  .about-badge { right: 20px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .hours-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 700px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 5, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,0.85); font-size: 1.1rem; padding: 10px 20px; }
  .nav-links a:hover { color: var(--accent); background: transparent; }

  .hero-title { font-size: 2.4rem; }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-column: 1; grid-row: auto; }
  .gallery-item--large .gallery-visual { min-height: 240px; }

  .testimonial-card { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 20px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

@media (max-width: 420px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat:last-child { grid-column: 1 / -1; }
}
