:root {
  --bg: #f4f7f5;
  --bg-deep: #0b1f18;
  --surface: #ffffff;
  --ink: #12201a;
  --muted: #5a6b63;
  --line: #d7e3dc;
  --brand-red: #d22027;
  --brand-black: #111111;
  --accent: #0f8a5f;
  --accent-soft: #d9f5e9;
  --warn: #b42318;
  --shadow: 0 18px 50px rgba(11, 31, 24, 0.08);
  --radius: 18px;
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(15, 138, 95, 0.12), transparent 60%),
    radial-gradient(900px 400px at -10% 20%, rgba(225, 6, 0, 0.05), transparent 55%),
    linear-gradient(180deg, #eef5f1 0%, var(--bg) 40%, #e9f2ed 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 245, 0.85);
  border-bottom: 1px solid rgba(215, 227, 220, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 56px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
  display: block;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-mark .s {
  color: var(--brand-red);
}

.brand-mark .lm {
  color: var(--brand-black);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #0c7450;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(18, 32, 26, 0.18);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: var(--bg-deep);
  color: #fff;
}

.btn-danger {
  background: var(--warn);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 24, 18, 0.28) 0%, rgba(8, 24, 18, 0.72) 58%, rgba(8, 24, 18, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 24, 18, 0.55) 0%, rgba(8, 24, 18, 0.15) 55%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4.5rem 0 5rem;
  max-width: 760px;
  animation: riseIn 0.9s ease both;
}

.hero-brand {
  margin: 0 0 1rem;
}

.hero-brand img {
  height: clamp(72px, 14vw, 110px);
  width: auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 0.4rem 0.65rem;
}

.hero-copy-stack {
  position: relative;
  min-height: 210px;
}

.hero-copy {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
  pointer-events: none;
}

.hero-copy.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  max-width: 16ch;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-copy > p {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-call-btn {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-call-btn:hover {
  border-color: #fff;
  color: #fff;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: #fff;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2,
.page-title h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}

.section-head p,
.page-title p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.page-hero {
  padding: 3rem 0 1rem;
}

.page-title {
  max-width: 640px;
}

/* Vehicle grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: riseIn 0.7s ease both;
}

.vehicle-card:nth-child(2) { animation-delay: 0.08s; }
.vehicle-card:nth-child(3) { animation-delay: 0.16s; }
.vehicle-card:nth-child(4) { animation-delay: 0.24s; }

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11, 31, 24, 0.12);
}

.vehicle-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfece5;
}

.vehicle-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vehicle-card:hover .thumb img {
  transform: scale(1.05);
}

.vehicle-card .body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.vehicle-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.vehicle-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.vehicle-card .price {
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

/* About / content */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.feature-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.feature-list .dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.muted {
  color: var(--muted);
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.filter-chip {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
  font-size: 0.88rem;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--bg-deep);
  color: #fff;
  border-color: var(--bg-deep);
}

/* Detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}

.detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dfece5;
  min-height: 320px;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.spec {
  background: var(--bg);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.spec span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
}

.spec strong {
  font-size: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 138, 95, 0.25);
  border-color: var(--accent);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert-success {
  background: var(--accent-soft);
  color: #0a5c40;
}

.alert-error {
  background: #fde8e6;
  color: var(--warn);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* CTA band */
.cta-band {
  margin: 1rem 0 4rem;
}

.cta-band .panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, #0b1f18 0%, #145c43 100%);
  color: #fff;
  border: none;
}

.cta-band p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.84);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-legal-links a:hover {
  color: #7cffb2;
}

/* Legal pages */
.legal-section {
  padding-top: 1rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 0.45rem;
}

.legal-nav h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.legal-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.25rem 0;
}

.legal-nav a:hover {
  color: var(--accent);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
  scroll-margin-top: 100px;
}

.legal-content h2:first-of-type {
  margin-top: 1rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin: 0.6rem 0 1rem;
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.legal-callout {
  background: #fff4f3;
  border-left: 4px solid var(--brand-red);
  padding: 0.95rem 1.05rem;
  border-radius: 0 12px 12px 0;
  margin: 1rem 0;
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
}

.site-footer h3 {
  font-family: var(--font-display);
  color: #fff;
  margin: 0 0 0.8rem;
}

.site-footer a:hover {
  color: #7cffb2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-credit {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-credit:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-credit strong {
  font-weight: 800;
  color: #7cffb2;
}

.footer-credit:hover strong {
  color: #a6ffd0;
}

.footer-heart {
  color: #ff5a6a;
  display: inline-block;
  animation: footer-heart-beat 1.6s ease-in-out infinite;
}

@keyframes footer-heart-beat {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.18); }
  55% { transform: scale(1); }
}

.map-embed {
  border: 0;
  width: 100%;
  max-width: 100%;
  height: 450px;
  display: block;
  border-radius: var(--radius);
}

/* Founder */
.founder-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.25fr;
  gap: 1.5rem;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 238, 0.95)),
    radial-gradient(600px 280px at 100% 0%, rgba(15, 138, 95, 0.12), transparent 60%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.founder-photo-wrap {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #dfece5;
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.founder-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
}

.founder-place {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

.founder-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.15rem 0 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); }
.social-yt { background: #c4302b; }

.founder-quote-mobile {
  margin: 0 0 1.1rem;
  padding: 1.1rem 1.15rem;
  border-left: 4px solid var(--brand-red);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
}

.founder-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.founder-points li {
  padding-left: 1.1rem;
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.founder-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.map-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (max-width: 960px) {
  .vehicle-grid,
  .two-col,
  .detail-grid,
  .contact-grid,
  .footer-grid,
  .legal-layout,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrap {
    max-width: 420px;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    max-height: none;
  }

  .legal-nav {
    position: static;
  }

  .section-head,
  .cta-band .panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-embed {
    height: 320px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(244, 247, 245, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    height: 44px;
    max-width: min(180px, 55vw);
    width: auto;
    object-fit: contain;
  }

  .form-row,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .panel,
  .founder-card {
    padding: 1.15rem;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 3rem 0 3.5rem;
    max-width: 100%;
  }

  .hero-brand img {
    height: clamp(56px, 16vw, 84px);
    max-width: min(220px, 70vw);
    width: auto;
    object-fit: contain;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
  }

  .hero-copy > p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-copy-stack {
    min-height: 230px;
  }

  .hero-controls {
    margin-top: 1.1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .map-embed {
    height: 260px;
  }

  .detail-image {
    min-height: 220px;
  }

  .page-hero {
    padding: 2rem 0 0.5rem;
  }

  .site-footer img {
    height: 52px !important;
    max-width: 180px;
    width: auto;
    object-fit: contain;
  }

  .footer-legal-links {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-credit {
    margin-left: 0;
    align-self: flex-end;
  }

  .founder-photo-wrap {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }

  .social-btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.4rem);
  }
}
