@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --pink: #fac0bb;
  --purple: #c99abd;
  --sage: #8fbbb7;
  --charcoal: #515252;
  --white: #ffffff;
  --bg: #fefcfc;
  --heading: 'Cormorant Garamond', 'Georgia', serif;
  --body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--bg);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========= TYPOGRAPHY ========= */
h1 { font-family: var(--heading); font-weight: 600; font-size: 3.8rem; line-height: 1.15; }
h2 { font-family: var(--heading); font-weight: 600; font-size: 2.8rem; line-height: 1.2; }
h3 { font-family: var(--heading); font-weight: 500; font-size: 1.8rem; line-height: 1.3; }
p  { font-size: 0.95rem; color: #777; line-height: 1.8; }

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ========= LAYOUT ========= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ========= NAVBAR ========= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

nav.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

nav.menu-open {
  background: white;
  backdrop-filter: none;
  box-shadow: none;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-box {
  width: 38px;
  height: 38px;
  background: #fff;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.logo-sig-text {
  font-family: 'Alata', sans-serif;
  font-size: 20px;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

.logo-sig-text span {
  font-size: 32px;
  color: var(--charcoal);
  line-height: 1;
  margin-right: -2px; /* Pull word body closer for tight SBC look */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100; /* Higher than nav-links */
  position: relative;
}
.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ========= HERO ========= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #fff7f6 0%, #f9f3f8 50%, #f4f9f8 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(250,192,187,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge row */
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 6px 16px;
  border: 1px solid var(--sage);
  border-radius: 50px;
}

.badge-divider {
  width: 24px;
  height: 1px;
  background: var(--sage);
  opacity: 0.4;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  line-height: 1.15;
}

.pink-letter {
  color: var(--purple);
  font-weight: 700;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1rem;
  color: #888;
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Dual CTA */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  border: 2px solid var(--charcoal);
}
.btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201,154,189,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* Hero image */
.hero-image-container { position: relative; }
.hero-image {
  width: 100%;
  border-radius: 40px 4px 40px 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

/* Float card */
.hero-float-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 18px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.float-number {
  display: block;
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.float-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #aaa;
}


/* ========= ABOUT ========= */
.about { background: var(--white); }

/* Image + Intro Card (overlapping layout) */
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: center;
  margin-bottom: 5rem;
}

.about-img-wrap {
  position: relative;
  z-index: 1;
}

.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-intro-card {
  background: var(--pink);
  color: var(--charcoal);
  padding: 3.5rem 3rem;
  border-radius: 0 24px 24px 0;
  margin-left: -40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(250,192,187,0.25);
}

.about-intro-card .section-title {
  color: var(--charcoal) !important;
}

.about-intro-card .section-tag {
  color: var(--charcoal);
  opacity: 0.8;
}

.about-intro-card .section-title {
  font-size: 2.4rem;
}

.about-intro-card p {
  font-size: 0.95rem;
  line-height: 1.9;
}

/* Stats Row */
.about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 3rem 2rem;
  margin-bottom: 5rem;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #aaa;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #eee;
}

/* Detail Cards */
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-detail-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(143, 187, 183, 0.25);
  transition: all 0.4s var(--ease);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbfb 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.about-detail-card:nth-child(1) {
  border-radius: 60px 15px 60px 15px;
  background: var(--purple);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(201,154,189,0.2);
}

.about-detail-card:nth-child(1) h3 {
  color: var(--charcoal);
}

.about-detail-card:nth-child(2) {
  border-radius: 15px 60px 15px 60px;
  background: var(--sage);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(143,187,183,0.2);
}

.about-detail-card:nth-child(2) h3 {
  color: var(--charcoal);
}

.about-detail-card:hover {
  border-color: var(--sage);
  box-shadow: 0 12px 30px rgba(143, 187, 183, 0.1);
  transform: translateY(-5px);
}

.detail-icon {
  font-size: 1.2rem;
  color: var(--pink);
  margin-bottom: 1rem;
}

.about-detail-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--sage);
  font-weight: 600;
}

.about-detail-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
}

/* Brand Tagline */
.brand-tagline {
  text-align: center;
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--purple);
  padding: 2rem 0 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-intro-card { margin-left: 0; border-radius: 0 0 24px 24px; margin-top: -24px; }
  .about-photo { height: 300px; border-radius: 24px 24px 0 0; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .about-details { grid-template-columns: 1fr; }
  .brand-tagline { font-size: 1.2rem; }
}

/* ========= CATEGORIES ========= */
.categories .section-desc {
  margin-left: 0;
  margin-right: auto;
}
.categories { background: var(--bg); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bento-card {
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  background: var(--white);
  border: 1px solid #f0f0f0;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.card-content {
  padding: 1.5rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.bento-card:hover .card-img {
  transform: scale(1.08);
}

.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  font-family: var(--heading);
}

.bento-card p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
}

.card-1 { background: var(--charcoal); } 
.card-1 h3, .card-1 p { color: var(--white); }
.card-2 { background: var(--charcoal); } 
.card-2 h3, .card-2 p { color: var(--white); }
.card-3 { background: var(--charcoal); } 
.card-3 h3, .card-3 p { color: var(--white); }
.card-4 { background: var(--charcoal); }
.card-4 h3, .card-4 p { color: var(--white); }

/* ========= TOGGLE SECTION ========= */
.toggle-section {
  background: var(--white);
  padding: 120px 0;
  text-align: center;
}

.toggle-wrapper {
  max-width: 440px;
  margin: 0 auto 4rem;
  background: #f8f8f8;
  padding: 6px;
  border-radius: 100px;
  display: flex;
  position: relative;
  border: 1px solid #f0f0f0;
}

.toggle-btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: #888;
  z-index: 2;
  transition: color 0.3s;
}

.toggle-btn.active { color: var(--white); }

.toggle-slider {
  position: absolute;
  top: 6px; left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  border-radius: 100px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.toggle-wrapper[data-mode="retail"] .toggle-slider {
  background: var(--purple);
  box-shadow: 0 8px 20px rgba(201,154,189,0.3);
  transform: translateX(0);
}

.toggle-wrapper[data-mode="wholesale"] .toggle-slider {
  background: var(--sage);
  box-shadow: 0 8px 20px rgba(143,187,183,0.3);
  transform: translateX(100%);
}

.service-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 3rem;
  border-radius: 40px;
  border: none;
  transition: all 0.5s var(--ease);
  color: var(--white);
}

.service-card[data-mode="retail"] {
  background: var(--purple);
  box-shadow: 0 20px 60px rgba(201,154,189,0.25);
}

.service-card[data-mode="wholesale"] {
  background: var(--sage);
  box-shadow: 0 20px 60px rgba(143,187,183,0.25);
}

.service-icon {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 2rem;
}

.service-card h3 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  margin: 0 auto;
}

#service-content {
  transition: all 0.4s var(--ease);
}

.fade-in {
  animation: fadeInDown 0.6s var(--ease) forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========= CONTACT + MAP ========= */
.contact-section { background: var(--bg); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: #888;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.contact-list { margin-bottom: 2.5rem; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--purple);
  display: grid;
  place-items: center;
  color: var(--purple);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-item p { font-size: 0.88rem; margin-bottom: 0; }

.social-row { margin-top: 1rem; }
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  display: grid;
  place-items: center;
  color: var(--purple);
  transition: all 0.3s;
}
.social-icons a:hover {
  background: #fdf5fa;
  border-color: var(--purple);
}

.map-card {
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

/* ========= FOOTER ========= */
footer {
  padding: 100px 0 60px;
  background: var(--white);
  text-align: center;
  color: var(--charcoal);
  border-top: 1px solid #f5f5f5;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-title-sig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  font-family: 'Alata', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--charcoal);
}

.footer-top-row, .footer-sub-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-inline {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.sig-main-line, .sig-sub-line {
  font-size: 36px;
  line-height: normal; /* Better for vertical centering with different font sizes */
}

.sig-main-line span, .sig-sub-line span {
  font-size: 60px;
  margin-right: -4px;
}

.footer-tagline {
  color: var(--pink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 3rem;
  font-weight: 700;
}

.footer-keywords {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.fk-line {
  width: 60px;
  height: 1px;
  background: #eee;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 60px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  transition: all 0.3s;
}

.footer-nav a:hover {
  color: var(--charcoal);
  letter-spacing: 0.15em;
}

.footer-hr {
  display: none; /* Already have border-top on footer */
}

.footer-copyright {
  font-size: 0.85rem;
  color: #ccc;
}

/* ========= ANIMATIONS ========= */
.reveal {
  opacity: 1; /* Always visible by default for stability */
  transform: none;
  transition: transform 1s var(--ease), opacity 1s var(--ease);
}

/* Only apply the 'hidden' state if we are purposely waiting to animate */
.reveal:not(.active) {
  opacity: 0.3; /* Subtle ghost state instead of total invisibility */
  transform: translateY(20px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========= RESPONSIVE ========= */

/* Tablets landscape / small laptops */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  .section-title { font-size: 2.4rem; }
  .hero-content { gap: 40px; }
  .about-grid { gap: 40px; }
  .contact-split { gap: 40px; }
}

/* Tablets portrait */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    visibility: hidden;
  }
  .nav-links.active { 
    transform: translateX(0); 
    visibility: visible;
  }
  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s 0.2s;
  }
  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }
  /* Animation delay for each item */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
  
  .nav-links a {
    font-size: 1.4rem;
    color: var(--charcoal);
    font-weight: 500;
  }
  
  .logo-text {
    position: relative;
    z-index: 1100;
  }
  .mobile-toggle { display: flex; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-image-container { max-width: 480px; margin: 0 auto; }
  .hero-badge-row { justify-content: center; }
  .hero-line { margin: 0 auto 1.5rem; }
  .hero-actions { justify-content: center; }
  .hero-float-card { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-block { height: 240px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card { min-height: 200px; }

  .contact-split { grid-template-columns: 1fr; }
  .map-card { height: 350px; }

  .footer-nav { gap: 1.5rem; }
}

/* Small phones */
@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2, .section-title { font-size: 2rem; }
  section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .toggle-btn { padding: 10px 20px; font-size: 0.75rem; }
  
  /* Brand Scaling for Mobile */
  .logo-sig-text { font-size: 12px; }
  .logo-sig-text span { font-size: 18px; }
  .nav-logo-box { width: 28px; height: 28px; gap: 8px; }
  .logo-text { gap: 8px; }

  /* Footer Brand Scaling (Mobile) */
  .footer-title-sig { 
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns the S and C edge-to-edge */
    width: fit-content;
    margin: 0 auto 1.5rem; /* Centers the whole aligned block */
    gap: 0; /* Removing the vertical gap between lines */
  }
  .footer-top-row { 
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0; /* Removing extra row margin */
  }
  .footer-sub-row {
    padding-left: 52px; /* Indent to skip the logo area (Logo 40px + Gap 12px) */
    margin-top: -8px; /* Slightly tighten the line height gap */
  }
  .sig-main-line, .sig-sub-line { font-size: 22px; }
  .sig-main-line span, .sig-sub-line span { 
    font-size: 34px; 
    margin-right: -3px;
  }
  .footer-logo-inline { 
    height: 40px; 
    width: auto;
  }

  .footer-keywords { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .fk-line { display: none; }
  .footer-nav { flex-direction: column; gap: 1rem; }
  
  /* Categories Mobile */
  .bento-grid { gap: 1rem; }
  .card-img { height: 200px; }
}
