/* ============================================
   RED RUBY CLEANING CO. — Cambridge, UK
   Vintage & Funky | Black, Red, White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Bebas+Neue&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --ruby-red: #C41E3A;
  --ruby-bright: #E8192C;
  --ruby-dark: #8B0000;
  --ruby-glow: #FF2D4B;
  --black: #0A0A0A;
  --black-light: #141414;
  --black-card: #1A1A1A;
  --white: #FFFFFF;
  --cream: #F5F0EB;
  --gold: #D4A853;
  --grey: #888888;
  --grey-dark: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.script-font { font-family: 'Playfair Display', serif; font-style: italic; }

a { color: var(--ruby-red); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--ruby-bright); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--ruby-dark);
  padding: 6px 0;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar span { margin: 0 15px; opacity: 0.9; }
.top-bar .divider { color: var(--ruby-bright); }

/* ── HEADER / NAV ── */
header {
  background: rgba(10,10,10,0.97);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--ruby-red);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav ul li { position: relative; }

nav ul li > a {
  display: block;
  padding: 25px 18px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

nav ul li > a:hover,
nav ul li > a.active {
  color: var(--ruby-bright);
  border-bottom-color: var(--ruby-bright);
}

/* Dropdown */
.dropdown-trigger { cursor: pointer; }

.dropdown-trigger::after {
  content: ' ▾';
  font-size: 0.7em;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-card);
  border: 1px solid var(--ruby-dark);
  border-top: 3px solid var(--ruby-red);
  min-width: 580px;
  padding: 25px 30px;
  display: none;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.dropdown-trigger:hover .mega-dropdown { display: block; }

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 30px;
}

.mega-dropdown a {
  display: block;
  padding: 8px 12px;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: none;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.mega-dropdown a:hover {
  background: rgba(196,30,58,0.15);
  color: var(--ruby-bright);
  border-left-color: var(--ruby-red);
  padding-left: 18px;
}

.mega-dropdown-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--ruby-red);
  padding: 8px 12px 4px;
  text-transform: uppercase;
  border-bottom: none;
}

/* Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.95) 100%);
  pointer-events: none;
}

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

.hero-logo {
  width: min(500px, 80vw);
  margin-bottom: 30px;
  animation: floatIn 1.2s ease-out;
  filter: drop-shadow(0 0 60px rgba(196,30,58,0.4));
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 10px;
  animation: fadeUp 1s 0.3s both;
}

.hero-tagline .red { color: var(--ruby-bright); }

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--grey);
  margin-bottom: 35px;
  animation: fadeUp 1s 0.5s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.7s both;
}

.badge {
  background: rgba(196,30,58,0.15);
  border: 1px solid var(--ruby-dark);
  padding: 8px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon { font-size: 1.1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--ruby-red);
  color: var(--white);
  border: 2px solid var(--ruby-red);
}

.btn-primary:hover {
  background: var(--ruby-bright);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,30,58,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 80px 20px;
}

.section-dark { background: var(--black-light); }
.section-red { background: var(--ruby-dark); }

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 { margin-bottom: 10px; }

.section-heading .line {
  width: 80px;
  height: 3px;
  background: var(--ruby-red);
  margin: 15px auto;
}

.section-heading p {
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── CAMBRIDGE MARQUEE ── */
.marquee-strip {
  overflow: hidden;
  background: var(--ruby-dark);
  padding: 14px 0;
  border-top: 1px solid var(--ruby-red);
  border-bottom: 1px solid var(--ruby-red);
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-track .dot {
  color: var(--ruby-bright);
  padding: 0 5px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ruby-red), var(--ruby-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: var(--ruby-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(196,30,58,0.15);
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card .card-link {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--black-card);
  border-top: 1px solid var(--grey-dark);
  border-bottom: 1px solid var(--grey-dark);
  padding: 40px 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-icon { font-size: 2rem; }

.trust-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--ruby-red);
  line-height: 1;
  margin-bottom: 10px;
}

.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--grey); font-size: 0.95rem; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--black-card);
  border-left: 3px solid var(--ruby-red);
  padding: 30px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 15px;
  line-height: 1.7;
}

.testimonial-author {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  color: var(--ruby-red);
  font-size: 0.9rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--ruby-dark), var(--ruby-red));
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
  position: relative;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ── ABOUT PAGE ── */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.value-card {
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
  padding: 30px;
  text-align: center;
}

.value-card .value-icon { font-size: 2.5rem; margin-bottom: 15px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--grey); font-size: 0.95rem; }

/* ── SERVICE PAGE ── */
.service-hero {
  padding: 100px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(196,30,58,0.12) 0%, transparent 100%);
}

.service-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.service-body p { margin-bottom: 20px; color: var(--cream); font-size: 1.05rem; }

.service-body h3 { color: var(--ruby-bright); margin: 30px 0 15px; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.checklist li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--cream);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ruby-bright);
  font-weight: 700;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

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

.contact-info { padding: 20px 0; }

.contact-info h3 { margin-bottom: 20px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail .ci-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 3px; }
.contact-detail h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-detail p { color: var(--grey); font-size: 0.9rem; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-related-back {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: var(--ruby-dark);
  transform: translateY(-3px);
}

.blog-card-full-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card-full-link:hover {
  color: inherit;
}

.blog-card-full-link:focus-visible {
  outline: 2px solid var(--ruby-bright);
  outline-offset: 2px;
}

.blog-card-full-link:hover h3 {
  color: var(--ruby-bright);
}

.blog-card-full-link .card-link {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--ruby-red);
}

.blog-card-full-link:hover .card-link {
  color: var(--ruby-bright);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--ruby-dark), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body { padding: 25px; }

.blog-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--ruby-red);
  margin-bottom: 8px;
}

.blog-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.blog-card p { color: var(--grey); font-size: 0.9rem; margin-bottom: 15px; }

.blog-post-hero-content {
  width: 80%;
  max-width: 980px;
  margin: 0 auto;
}

.blog-post-page .service-hero h1 {
  font-size: clamp(2rem, 4.7vw, 3.8rem);
  line-height: 1.05;
}

.blog-post-page .service-hero p {
  line-height: 1.35;
}

.blog-post-featured-image {
  margin: 0 0 32px;
  border: 1px solid var(--grey-dark);
  background: var(--black-card);
}

.blog-post-featured-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.blog-post-page .service-body h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.blog-post-page .service-body h3 {
  margin: 28px 0 12px;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.14;
}

.blog-post-page .service-body p,
.blog-post-page .service-body li {
  line-height: 1.58;
}

.pagination-nav {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--grey-dark);
  color: var(--white);
  background: var(--black-card);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}

.pagination-link:hover {
  border-color: var(--ruby-red);
  color: var(--white);
  transform: translateY(-1px);
}

.pagination-active {
  background: var(--ruby-red);
  border-color: var(--ruby-red);
}

.pagination-disabled {
  color: var(--grey);
  opacity: 0.5;
  pointer-events: none;
}

.pagination-prev,
.pagination-next {
  min-width: 72px;
}

/* ── FOOTER ── */
footer {
  background: var(--black-light);
  border-top: 3px solid var(--ruby-red);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img { height: 80px; margin-bottom: 15px; }

.footer-brand p {
  color: var(--grey);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--ruby-red);
  margin-bottom: 15px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: var(--grey);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--grey-dark);
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey);
}

.footer-bottom a { color: var(--ruby-red); }

/* ── BRITISH FLAG ACCENT ── */
.union-jack-strip {
  height: 4px;
  background: linear-gradient(90deg,
    #012169 0%, #012169 33%,
    #C8102E 33%, #C8102E 66%,
    #FFFFFF 66%, #FFFFFF 100%
  );
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    border-bottom: 2px solid var(--ruby-red);
  }

  nav ul.open { display: flex; }

  nav ul li > a { padding: 15px 20px; border-bottom: 1px solid var(--grey-dark); }

  .mega-dropdown {
    position: static;
    transform: none;
    min-width: 100%;
    border: none;
    border-top: 1px solid var(--grey-dark);
    box-shadow: none;
    padding: 10px 20px;
  }

  .mega-dropdown-grid { grid-template-columns: 1fr; }

  .hero-logo { width: min(350px, 85vw); }

  .footer-main { grid-template-columns: 1fr; }
  
  .hero-badges { gap: 8px; }
  .badge { font-size: 0.75rem; padding: 6px 12px; }
}
