/* ============================================
   GARRISON CITY AUTOMOTIVE — STYLESHEET
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --plum-50: #faf5f7;
  --plum-100: #f3eaf0;
  --plum-200: #e8d0df;
  --plum-300: #d4a8c0;
  --plum-400: #b87aa3;
  --plum-500: #9a5787;
  --plum-600: #7e416d;
  --plum-700: #653356;
  --plum-800: #522b47;
  --plum-900: #3f2237;
  --plum-950: #23131f;

  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;

  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-plum: 0 8px 30px rgba(63, 34, 55, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; }

ul { list-style: none; }

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--plum-900);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-size: 14px;
  font-weight: 500;
}
.skip-link:focus { top: 16px; }

/* --- Typography --- */
.text-gradient {
  background: linear-gradient(135deg, var(--plum-600) 0%, var(--plum-400) 50%, var(--amber-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--amber-500);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum-950);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-600);
  max-width: 540px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
  color: var(--plum-950);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--plum-700);
  border: 1.5px solid var(--plum-200);
}
.btn-outline:hover {
  background: var(--plum-50);
  border-color: var(--plum-400);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--neutral-200);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.95);
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo--light .logo-name,
.logo--light .logo-tag { color: #fff; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--plum-950);
}
.logo-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--plum-700); background: var(--plum-50); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber-700) !important;
  font-weight: 600 !important;
  background: var(--amber-50) !important;
  border: 1px solid var(--amber-200) !important;
}
.nav-phone:hover { background: var(--amber-100) !important; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--neutral-100); }
.nav-toggle-close { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--plum-950) 0%, var(--plum-900) 40%, var(--plum-800) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--amber-400) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--amber-400) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--amber-400) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 50px 50px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--neutral-50), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-300);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--plum-200);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

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

/* Floating Stat Cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.stat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: float-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.35s; }
.stat-card:nth-child(3) { animation-delay: 0.5s; }
.stat-card:nth-child(4) { animation-delay: 0.65s; }

@keyframes float-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.stat-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
}

.stat-card--amber .stat-card-inner {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 100%);
  color: var(--plum-950);
}
.stat-card--plum .stat-card-inner {
  background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-600) 100%);
  color: #fff;
}
.stat-card--white .stat-card-inner {
  background: #fff;
  color: var(--plum-900);
}

.stat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}
.stat-card--white .stat-icon { background: var(--plum-100); color: var(--plum-700); }
.stat-card--amber .stat-icon { background: rgba(63, 34, 55, 0.15); color: var(--plum-900); }

.stat-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.3;
}

.stat-card--wide .stat-card-inner { min-width: 280px; }
.stat-card--wide .stat-value { font-size: 16px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--neutral-100);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: 20px 0;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
}
.trust-item svg {
  color: var(--amber-500);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--neutral-50);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }

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

.service-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum-500), var(--amber-500));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--plum-200);
  box-shadow: var(--shadow-plum);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-50);
  border-radius: var(--radius-md);
  color: var(--plum-700);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--plum-100);
  transform: scale(1.05);
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--plum-950);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: #fff;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-item-marker {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  border-radius: 50%;
  color: var(--amber-700);
  margin-top: 2px;
}

.why-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

.why-us-image {
  position: relative;
}

.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 6/7;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.4;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 100px 0;
  background: var(--plum-950);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 30% 40%, var(--amber-400) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, var(--amber-400) 1px, transparent 1px);
  background-size: 50px 50px, 70px 70px;
  pointer-events: none;
}

.gallery .section-header { position: relative; z-index: 1; }
.gallery .section-title { color: #fff; }
.gallery .section-subtitle { color: var(--plum-300); }
.gallery .section-label { color: var(--amber-400); }
.gallery .section-label::before { background: var(--amber-500); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.05); }

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--neutral-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 36px;
}

.contact-detail { display: flex; gap: 14px; }

.contact-detail-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neutral-500);
  min-width: 80px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail dd {
  font-size: 1rem;
  color: var(--neutral-800);
  line-height: 1.7;
}
.contact-detail a {
  color: var(--plum-700);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--amber-600); }

/* Form */
.contact-form-wrapper {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum-950);
  margin-bottom: 6px;
}

.form-note {
  font-size: 0.9375rem;
  color: var(--neutral-500);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--neutral-900);
  background: var(--neutral-50);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}
.form-input:hover { border-color: var(--neutral-300); }
.form-input:focus {
  border-color: var(--plum-400);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(154, 87, 135, 0.1);
}
.form-input::placeholder { color: var(--neutral-400); }

.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  color: #166534;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}
.form-success svg { color: #22c55e; flex-shrink: 0; }
.form-success.visible { display: flex; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--plum-950);
  color: var(--plum-200);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--plum-300);
}
.footer-contact a { color: var(--amber-400); transition: color var(--transition); }
.footer-contact a:hover { color: var(--amber-300); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--plum-400);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { align-items: flex-start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-us-image { order: -1; max-width: 480px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-toggle { display: flex; }
  .nav-toggle-close { display: block; }
  .nav-toggle svg:first-child { display: block; }
  .nav-toggle svg:last-child { display: none; }
  .nav-toggle[aria-expanded="true"] svg:first-child { display: none; }
  .nav-toggle[aria-expanded="true"] svg:last-child { display: block; }

  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-link { padding: 14px 16px; font-size: 16px; }
  .nav-phone { justify-content: center; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { width: 100%; }
  .stat-card, .stat-card--wide { width: 100%; }
  .stat-card-inner { min-width: auto; }

  .trust-list { gap: 16px; }
  .trust-item { font-size: 13px; }

  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .why-us { padding: 60px 0; }
  .why-list { gap: 20px; }

  .gallery { padding: 60px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }
  .gallery-item--large { grid-column: 1 / 3; grid-row: 1 / 2; }

  .contact { padding: 60px 0; }
  .contact-form-wrapper { padding: 28px; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item--large { grid-column: 1; grid-row: auto; }
  .gallery-item { aspect-ratio: 16/10; }
  .gallery-item:not(.gallery-item--large) { aspect-ratio: 16/10; }
}
