/* ============================================================
   Hugo Cars — Shared Stylesheet
   Brand: #d2091a primary red, white base, Lato + Montserrat
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --red: #d2091a;
  --red-dark: #a30714;
  --red-soft: #fdf2f3;
  --black: #1a1a1a;
  --ink: #2a2a2a;
  --gray-dark: #4a4a4a;
  --gray: #767676;
  --gray-light: #d9d9d9;
  --gray-bg: #f7f5f2;
  --gray-border: #e8e6e2;
  --white: #ffffff;
  --display: 'Montserrat', system-ui, sans-serif;
  --body: 'Lato', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 48px -12px rgba(0,0,0,0.18);
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--black);
}

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ============================================================
   Top utility bar
   ============================================================ */
.utility {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.utility-left, .utility-right {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.utility a:hover { color: var(--white); }
.utility .pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
}
.utility .pill .star { color: #ffc527; }

@media (max-width: 720px) {
  .utility-left { display: none; }
  .utility-inner { justify-content: center; }
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1;
}
.brand-mark span { color: var(--red); }
.brand-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray);
  font-weight: 600;
  border-left: 1px solid var(--gray-light);
  padding-left: 12px;
}

.primary-nav {
  display: flex;
  gap: 28px;
}
.primary-nav a {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.primary-nav a:hover { color: var(--red); }
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }
.primary-nav a.active { color: var(--red); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  text-align: right;
}
.header-phone span {
  font-family: var(--body);
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.menu-btn span { width: 22px; height: 2px; background: var(--black); position: relative; }
.menu-btn span::before, .menu-btn span::after {
  content: ''; position: absolute;
  left: 0; width: 22px; height: 2px;
  background: var(--black);
}
.menu-btn span::before { top: -7px; }
.menu-btn span::after { top: 7px; }

@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .menu-btn { display: flex; }
  .header-phone { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 24px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--gray-light);
  color: var(--black);
}
.btn-outline:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--red);
}
.btn-large { padding: 18px 36px; font-size: 15px; }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Section primitives
   ============================================================ */
section { padding: 80px 0; }

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 800px;
}
.section-lead {
  font-size: 18px;
  color: var(--gray-dark);
  max-width: 680px;
  line-height: 1.6;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
}

/* ============================================================
   Page hero (sub-pages)
   ============================================================ */
.page-hero {
  background: var(--gray-bg);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--gray-border);
}
.breadcrumbs {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs span { color: var(--gray-light); margin: 0 8px; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 800px;
}
.page-hero p {
  font-size: 18px;
  color: var(--gray-dark);
  max-width: 680px;
  line-height: 1.6;
}

/* ============================================================
   Stock cards
   ============================================================ */
.stock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stock-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .stock-grid, .stock-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px)  { .stock-grid, .stock-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .stock-grid, .stock-grid.cols-3 { grid-template-columns: 1fr; } }

.stock-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.stock-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-light);
}
.stock-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--gray-bg);
}
.stock-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.stock-card:hover .stock-image img { transform: scale(1.04); }

.stock-photos {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.stock-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 3px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stock-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.stock-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.stock-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
  flex: 1;
}
.stock-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid var(--gray-border);
}
.stock-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.stock-monthly {
  text-align: right;
  font-size: 11px;
  color: var(--gray);
}
.stock-monthly strong {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-brand .brand-mark {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
}
.foot-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}
.foot-brand .foot-address {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
}
.foot-h {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.foot-list { list-style: none; }
.foot-list li { margin-bottom: 10px; }
.foot-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.foot-list a:hover { color: var(--white); }
.foot-hours li {
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.foot-hours .day { color: var(--white); font-weight: 600; }

.foot-bot {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.foot-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-legal a:hover { color: var(--white); }

@media (max-width: 920px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Forms (shared)
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-field textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   Cards (services / features)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: var(--display);
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ============================================================
   MOBILE REFINEMENTS — tighter spacing, type, layouts on phones
   ============================================================ */
@media (max-width: 720px) {
  /* Sections */
  section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; gap: 16px; }
  .section-title { font-size: 26px !important; line-height: 1.2; }
  .section-lead { font-size: 15px; }
  .eyebrow { font-size: 11px; margin-bottom: 12px; }

  /* Header */
  .header-inner { padding: 14px 0; gap: 16px; }
  .brand-mark { font-size: 22px; }
  .brand-tag { display: none; }

  /* Utility bar */
  .utility { padding: 8px 0; font-size: 12px; }
  .utility-inner { gap: 10px; justify-content: center; }
  .utility-right { gap: 10px; }
  .utility .pill { padding: 3px 8px; font-size: 11px; }

  /* Buttons */
  .btn { padding: 12px 18px; font-size: 13px; }
  .btn-large { padding: 14px 22px; font-size: 13.5px; }

  /* HOMEPAGE — Hero */
  .hero { padding: 32px 0 40px !important; }
  .hero-grid { gap: 32px !important; }
  .hero h1 { font-size: 34px !important; line-height: 1.05; }
  .hero-sub { font-size: 15.5px !important; margin-bottom: 24px !important; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 28px !important; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 20px; padding-top: 20px !important; }
  .trust-stars .stars { font-size: 16px; }
  .trust-stars .label { font-size: 12.5px; }
  .hero-image { aspect-ratio: 4/3 !important; }

  /* HOMEPAGE — Quick search: stack fully */
  .qs-inner { grid-template-columns: 1fr !important; gap: 1px; }
  .qs-field { padding: 12px 16px; }
  .qs-btn { padding: 14px !important; }

  /* HOMEPAGE — Why cards */
  .why-card { padding: 24px 22px !important; }
  .why-card h3 { font-size: 20px; }
  .why-card p { font-size: 14px; }

  /* HOMEPAGE — Included strip: 2 col */
  .included-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; margin-top: 32px !important; }
  .included-item { padding: 14px 10px; }
  .included-item .check { font-size: 18px; margin-bottom: 4px; }
  .included-item .label { font-size: 11.5px; }

  /* HOMEPAGE — Reviews */
  .reviews-summary { padding: 22px !important; gap: 20px !important; flex-direction: column; align-items: flex-start; }
  .rs-score .num { font-size: 48px !important; }
  .rs-score .stars { font-size: 16px; }
  .rs-text { font-size: 15px; min-width: 0 !important; }
  .review-card { padding: 22px !important; }
  .review-card .body { font-size: 14px; }

  /* HOMEPAGE — Services strip */
  .services-strip .ss-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; margin-top: 28px !important; }
  .ss-item { padding: 18px 16px !important; }
  .ss-item h4 { font-size: 15px; }
  .ss-item p { font-size: 13px; margin-bottom: 12px; }

  /* HOMEPAGE — Sell banner */
  .sell-banner { padding: 40px 0 !important; }
  .sb-inner { gap: 20px !important; }
  .sb-inner h2 { font-size: 26px !important; }
  .sb-inner p { font-size: 15px; }
  .sb-cta .btn { width: 100%; }

  /* SUB-PAGE — Page hero */
  .page-hero { padding: 40px 0 32px !important; }
  .page-hero h1 { font-size: 28px !important; }
  .page-hero p { font-size: 15px; }
  .breadcrumbs { font-size: 12px; margin-bottom: 14px; }

  /* SELL YOUR CAR */
  .sell-hero { padding: 40px 0 !important; }
  .sell-hero-grid { gap: 28px !important; }
  .sell-hero h1 { font-size: 28px !important; }
  .sell-hero p { font-size: 15px !important; }
  .valuation-card { padding: 22px !important; }
  .valuation-card h2 { font-size: 22px; }
  .reg-input input { font-size: 18px; padding: 14px 16px; }
  .reg-flag { width: 42px; font-size: 14px; }
  .steps-section { padding: 48px 0 !important; }
  .step-card { padding: 24px 22px !important; padding-top: 56px !important; }
  .step-card::before { font-size: 26px; top: 18px; left: 22px; }
  .step-card h3 { font-size: 19px; }
  .step-card p { font-size: 14px; }
  .why-sell { padding: 48px 0 !important; }
  .ws-grid { gap: 28px !important; }
  .ws-list li { padding: 14px 0; }
  .ws-icon { width: 32px; height: 32px; font-size: 14px; }
  .seller-reviews { padding: 48px 0 !important; }
  .sr-card { padding: 22px !important; }
  .sr-card .body { font-size: 14.5px; }

  /* SERVICES */
  .service-section { padding: 48px 0 !important; }
  .service-row { gap: 28px !important; }
  .service-text h2 { font-size: 26px !important; }
  .service-text > p { font-size: 15px !important; margin-bottom: 18px !important; }
  .service-list li { font-size: 14px; padding: 8px 0; }
  .booking-cta { padding: 40px 0 !important; }
  .booking-cta h2 { font-size: 26px !important; }
  .booking-cta p { font-size: 15px; }
  .booking-cta div { gap: 8px !important; }
  .booking-cta .btn { width: 100%; }

  /* FINANCE */
  .finance-grid { gap: 24px !important; margin-top: 32px !important; }
  .calc-card, .apply-card { padding: 22px !important; }
  .calc-card h3, .apply-card h3 { font-size: 19px; }
  .calc-field { margin-bottom: 18px; }
  .calc-field-top .value { font-size: 18px; }
  .calc-result { padding: 18px !important; }
  .calc-result .big { font-size: 38px !important; }
  .feature-card { padding: 24px 22px !important; }
  .feature-card h3 { font-size: 18px; }
  .feature-card p { font-size: 14px; }
  .faq-list { margin-top: 28px !important; }
  .faq-q { padding: 16px 18px !important; font-size: 14.5px !important; }
  .faq-a-inner { padding: 0 18px 18px !important; font-size: 14px; }

  /* ABOUT */
  .story { padding: 48px 0 !important; }
  .story-grid { gap: 28px !important; }
  .story-text h2 { font-size: 26px !important; }
  .story-text p { font-size: 15px; }
  .numbers-strip { padding: 40px 0 !important; }
  .ns-grid { gap: 20px !important; }
  .ns-item .num { font-size: 36px !important; }
  .ns-item .label { font-size: 11.5px; }
  .team { padding: 48px 0 !important; }
  .team-card { padding: 22px 18px !important; }
  .team-mono { width: 60px !important; height: 60px !important; font-size: 24px !important; margin-bottom: 12px !important; }
  .team-name { font-size: 18px !important; }
  .team-role { font-size: 11px !important; }
  .team-quote { font-size: 13px !important; }
  .contact { padding: 48px 0 !important; }
  .contact-grid { gap: 28px !important; }
  .map-wrap { aspect-ratio: 1/1 !important; }
  .contact-info { padding: 24px !important; }
  .contact-info h3 { font-size: 19px; }
  .contact-block { padding: 12px 0; }
  .contact-block .value { font-size: 15px; }
  .contact-form-section { padding: 48px 0 !important; }
  .cf-wrap { padding: 28px 22px !important; }
  .cf-wrap h2 { font-size: 22px; }

  /* USED CARS — listing */
  .listing-layout { padding: 32px 0 48px !important; gap: 24px !important; }
  .filter-block { margin-bottom: 12px; }
  .filter-block h4 { padding: 14px 18px; font-size: 12px; }
  .filter-block .body { padding: 14px 18px; }
  .listing-top { gap: 12px; margin-bottom: 16px; }
  .listing-count { font-size: 14px; }
  .sort-bar select { padding: 8px 12px; font-size: 13px; }
  .pagination { margin-top: 32px !important; }
  .pagination a { width: 36px; height: 36px; font-size: 13px; }

  /* Stock cards everywhere */
  .stock-grid, .stock-grid.cols-3 { gap: 14px !important; }
  .stock-card { border-radius: 4px; }
  .stock-body { padding: 14px 16px 16px !important; }
  .stock-title { font-size: 16px !important; margin-bottom: 2px; }
  .stock-desc { font-size: 12.5px !important; margin-bottom: 12px !important; }
  .stock-price { font-size: 19px !important; }
  .stock-monthly { font-size: 10.5px; }
  .stock-monthly strong { font-size: 12px !important; }
  .stock-row { padding-top: 12px; }

  /* Footer */
  .site-footer { padding: 44px 0 24px !important; }
  .foot-grid { gap: 24px !important; margin-bottom: 28px !important; }
  .foot-brand .brand-mark { font-size: 26px !important; margin-bottom: 12px !important; }
  .foot-brand p { font-size: 13px; margin-bottom: 14px; }
  .foot-h { font-size: 12px; margin-bottom: 14px; }
  .foot-list a { font-size: 13.5px; }
  .foot-bot { padding-top: 20px; font-size: 11px; gap: 10px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 30px !important; }
  .sell-hero h1, .page-hero h1 { font-size: 24px !important; }
  .section-title { font-size: 22px !important; }
  .header-inner { gap: 8px; }
  .brand-mark { font-size: 20px; }
  .menu-btn { width: 40px; height: 40px; }
  .ns-item .num { font-size: 30px !important; }
}
