/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cinzel:wght@400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== VARIABLES ===== */
:root {
  --red: #c0272d;
  --red-dark: #a01f24;
  --dark: #111111;
  --charcoal: #2a2a2a;
  --mid: #6b6b6b;
  --light: #f5f5f5;
  --lighter: #fafafa;
  --border: #e8e8e8;
  --white: #ffffff;
  --max: 1200px;
  --section-gap: 96px;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.section { padding: var(--section-gap) 0; }
.section--gray { background: var(--lighter); }
.section--dark { background: var(--dark); }
.text-center { text-align: center; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cinzel', Georgia, serif;
  line-height: 1.15;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
p { margin-bottom: 18px; color: #444; font-size: 0.96rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.lead { font-size: 1.1rem; line-height: 1.8; color: #555; max-width: 680px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover { background: var(--light); }

/* Text link style */
.link-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 14px; }
.link-arrow.light { color: var(--white); }

/* ===== NAV ===== */
.site-nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px 0;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex-shrink: 0;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }

.nav-links .nav-cta > a {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  margin-left: 8px;
  white-space: nowrap;
}
.nav-links .nav-cta > a:hover { background: var(--red-dark); }

/* Dropdown */
.nav-dropdown-toggle::after { content: ' ↓'; font-size: 0.6rem; opacity: 0.5; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: #1e1e1e;
  border-top: 2px solid var(--red);
  min-width: 210px;
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, padding-left 0.15s;
}
.nav-dropdown-menu li:last-child a { border-bottom: none; }
.nav-dropdown-menu li a:hover { color: var(--white); padding-left: 28px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.4rem;
  padding: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.55) 55%, rgba(8,8,8,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: 28px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 44px;
  width: 100%;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.breadcrumb {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span::before { content: ' / '; }

/* ===== BRAND TICKER ===== */
.brand-ticker-wrap {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0 28px;
  overflow: hidden;
}

.brand-ticker-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 20px;
}

.brand-ticker-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brand-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 32s linear infinite;
  animation-delay: -8s;
  width: max-content;
}

.brand-ticker-track:hover { animation-play-state: paused; }

.ticker-word {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 28px;
  transition: color 0.2s;
}
.ticker-word:hover { color: rgba(255,255,255,0.95); }

.ticker-sep {
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

@media (max-width: 768px) {
  .ticker-word { font-size: 0.75rem; padding: 0 18px; }
}

/* ===== ABOUT / INTRO ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-copy .eyebrow { margin-bottom: 20px; }

.about-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 28px;
  line-height: 1.2;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-card {
  background: var(--white);
  padding: 32px 28px;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ===== SERVICES INDEX PAGE ===== */
.services-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.services-brand-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: background 0.25s;
  text-decoration: none;
  color: inherit;
}
.services-brand-card:hover { background: var(--lighter); }
.services-brand-card:hover .link-arrow { gap: 14px; }

.services-brand-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.services-brand-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.services-brand-card:hover .services-brand-card-img img { transform: scale(1.04); }

.services-brand-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services-brand-card-logo {
  height: 32px;
  margin-bottom: 20px;
}
.services-brand-card-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0);
  opacity: 0.7;
}
.services-brand-card-logo.ticker-badge-inline img {
  filter: none;
  opacity: 0.75;
}

.services-brand-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.services-brand-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--mid);
  flex: 1;
  margin-bottom: 20px;
}
.services-brand-card .link-arrow { margin-top: auto; font-size: 0.72rem; }

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.25s;
}
.service-card:hover { background: var(--lighter); }

.service-card-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 20px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--mid);
}

/* ===== BRANDS / CAR GRID ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
  display: block;
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.brand-card:hover img { opacity: 0.65; transform: scale(1.06); }

.brand-card-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}

.brand-card-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.brand-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.brand-card-link::after { content: '→'; }
.brand-card:hover .brand-card-link { color: var(--white); gap: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}
.testimonial-card:last-child { border-right: none; }

.testimonial-card p {
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}

/* Testimonials page — full list */
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonials-list .testimonial-card { border-right: none; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--dark);
  padding: var(--section-gap) 0;
}

.cta-strip h2 { color: var(--white); font-weight: 400; margin-bottom: 20px; }
.cta-strip p { color: rgba(255,255,255,0.6); max-width: 520px; margin-bottom: 36px; }
.cta-strip a { color: var(--white); }

/* ===== DIVIDER ===== */
.section-divider {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 32px;
}
.section-divider.left { margin: 0 0 32px; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.contact-detail-text span,
.contact-detail-text a { font-size: 0.92rem; color: var(--dark); }
.contact-detail-text a:hover { color: var(--red); }

form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-bottom: 1px solid #bbb;
  font-size: 0.94rem;
  font-family: inherit;
  background: var(--white);
  color: var(--dark);
  border-radius: 0;
  transition: border-color 0.2s;
  margin-bottom: 24px;
  -webkit-appearance: none;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
}

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

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

/* ===== PHILOSOPHY ===== */
.philosophy-grid { display: grid; gap: 0; }

.philosophy-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}
.philosophy-section:first-child { padding-top: 0; }

.philosophy-section h3 {
  font-size: 1.1rem;
  font-weight: 500;
  padding-top: 4px;
}

.philosophy-section p { font-size: 0.94rem; }

/* ===== TEAM PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.team-card {
  background: var(--white);
  padding: 48px 36px;
  text-align: left;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 28px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card h3 { margin-bottom: 4px; }

.team-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.team-card p { font-size: 0.88rem; color: var(--mid); }

.team-placeholder-note {
  background: #fdf9f0;
  border-left: 2px solid var(--red);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #7a6020;
  margin-bottom: 40px;
}

/* ===== PHOTOS PAGE ===== */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}

.photo-item { aspect-ratio: 4/3; overflow: hidden; background: var(--light); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-item:hover img { transform: scale(1.04); }
.photo-item--tall { aspect-ratio: unset; grid-row: span 2; }
.photo-item--wide { aspect-ratio: unset; grid-column: span 2; min-height: 280px; }

/* ===== SERVICE PAGE ===== */
.service-page-content { max-width: 680px; }
.service-page-content p { font-size: 1rem; line-height: 1.85; }
.service-page-content a:not(.btn):not(.link-arrow) { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.service-page-content strong { color: var(--dark); }

.service-links {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img { max-width: 180px; margin-bottom: 20px; opacity: 0.9; }

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-line { font-size: 0.88rem; margin-bottom: 10px; }
.footer-contact-line a { color: rgba(255,255,255,0.55); }
.footer-contact-line a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.footer-social a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  :root { --section-gap: 64px; }
  .container { padding: 0 28px; }

  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-brand-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .philosophy-section { grid-template-columns: 1fr; gap: 12px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid,
  .testimonials-list { grid-template-columns: 1fr; }
  .testimonial-card { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--dark);
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 28px; }
  .nav-dropdown-menu { position: static; border-top: none; background: rgba(255,255,255,0.03); }
  .nav-dropdown-menu { display: block; }
  .nav-dropdown-toggle::after { display: none; }
  .nav-links .nav-cta > a { margin: 8px 28px 0; display: block; text-align: center; }
  .nav-toggle { display: block; }
  .nav-logo-img { height: 32px; }
  .container { padding: 0 20px; }

  .hero { min-height: 500px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-brand-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
