/* ===========================
   ROOT & RESET
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #3a2430;
  --white: #ffffff;
  --cream: #fff8fb;
  --accent: #c9849a;
  --accent-dark: #ad6880;
  --gray-light: #fdeef4;
  --gray-mid: #f0d4de;
  --gray-text: #9a7080;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-text);
}

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.center { text-align: center; }

.section-intro {
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
  transition: all var(--transition);
  cursor: pointer;
}

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

.btn-outline {
  background: transparent;
  color: var(--black);
}

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

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-mid);
}

.header-inner {
  max-width: 100%;
  padding: 0 2rem 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--black);
  transition: color var(--transition);
}

.scrolled .logo {
  color: var(--black);
}

/* Nav på hero */
.hero-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  transition: opacity 0.3s ease;
  margin-right: 0.5rem;
}

.hero-nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
  opacity: 0.7;
}

.hero-nav a:hover {
  opacity: 1;
}

.hero-nav a:hover {
  color: var(--accent);
}

/* När scrollad: dölj hero-nav, visa hamburgare */
.scrolled .hero-nav {
  display: none;
}

/* Hamburger knapp — dold på hero, synlig när scrollad */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.35s ease;
  transform-origin: center;
}

.scrolled .hamburger span {
  background: var(--black);
}

.scrolled .hamburger {
  display: flex;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--white) !important;
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--white) !important;
}

/* ===========================
   MENU OVERLAY
   =========================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #0f0a0d;
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 2rem 2.5rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
  padding-bottom: 2rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
  font-family: var(--font-sans);
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--white);
}

.menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color var(--transition);
}

.menu-close:hover {
  color: var(--white);
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex: 1;
}

.overlay-link {
  display: inline-block;
  padding: 0.9rem 3rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.25s, background 0.25s;
}

.menu-overlay.is-open .overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.is-open .overlay-link:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.is-open .overlay-link:nth-child(2) { transition-delay: 0.1s; }
.menu-overlay.is-open .overlay-link:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay.is-open .overlay-link:nth-child(4) { transition-delay: 0.2s; }
.menu-overlay.is-open .overlay-link:nth-child(5) { transition-delay: 0.25s; }

.overlay-link:hover {
  border-color: var(--accent);
  background: rgba(201,132,154,0.08);
  color: var(--accent);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 2.5rem 2.5rem;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image:empty {
  background: linear-gradient(160deg, #f9eef4 0%, #f0d4e2 50%, #e8c0d4 100%);
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fdeef4 0%, #f8d6e3 50%, #f0c0d4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-text);
  font-size: 0.9rem;
}

.hero-placeholder small {
  font-size: 0.75rem;
  opacity: 0.7;
  font-family: monospace;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(58,36,48,0.70) 0%,
    rgba(58,36,48,0.15) 45%,
    rgba(0,0,0,0) 70%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 4rem 3.5rem 2.5rem;
  width: 100%;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 12vw, 11rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0;
}

/* ===========================
   BRAND TICKER
   =========================== */
.brand-ticker {
  background: var(--gray-light);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  overflow: hidden;
  padding: 1.1rem 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.ticker-item {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gray-text);
  padding: 0 2.5rem;
}

.ticker-sep {
  color: var(--accent);
  font-size: 0.55rem;
  opacity: 0.7;
  flex-shrink: 0;
}


/* ===========================
   VIDEO CAROUSEL
   =========================== */
.video-section {
  background: var(--white);
  overflow: hidden;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.video-section .label {
  color: var(--accent);
}

.video-section h2 {
  color: var(--black);
  margin-bottom: 3rem;
}

.video-header {
  padding-bottom: 0;
}

.video-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.video-track-outer {
  overflow: hidden;
  flex: 1;
}

.video-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.video-card {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3.4);
  min-width: 0;
}

.video-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--gray-light);
  border-radius: 12px;
}

.video-inner video,
.video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  object-fit: cover;
}

/* TikTok-stil stats – höger sida */
.tt-stats {
  position: absolute;
  right: 10px;
  bottom: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}

.tt-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tt-stat svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

.tt-stat span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  letter-spacing: 0.02em;
}

/* Klickbar overlay → TikTok */
.tt-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  text-decoration: none;
}

.tt-link-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tt-link-hint svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.video-card:hover .tt-link-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Varumärkeslabel under videon */
.video-brand {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}

/* Platshållar-kort */
.tt-placeholder-card .video-inner {
  background: var(--gray-light);
}

.tt-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gray-light);
  color: var(--gray-mid);
}

.tt-empty svg {
  width: 36px;
  height: 36px;
  color: var(--gray-mid);
  opacity: 0.8;
}

.tt-empty p {
  font-size: 0.82rem;
  color: var(--gray-text);
}

.tt-empty small {
  font-size: 0.68rem;
  color: var(--gray-mid);
  font-family: monospace;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.video-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Nav arrows */
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-btn:disabled {
  opacity: 0.2;
  cursor: default;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Video responsive */
@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc((100% - 1.25rem) / 2.3);
  }
}

@media (max-width: 640px) {
  .video-carousel-wrap {
    padding: 0 1rem;
  }

  .video-card {
    flex: 0 0 calc((100% - 1.25rem) / 1.2);
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }
}

/* ===========================
   OM MOA
   =========================== */
.om-section {
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.om-image img,
.img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.img-placeholder {
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-text);
  font-size: 0.85rem;
}

.img-placeholder small {
  font-size: 0.72rem;
  opacity: 0.6;
  font-family: monospace;
}

.om-text p {
  margin-bottom: 1.25rem;
}

/* ===========================
   STATISTIK
   =========================== */
.stats-section {
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.stats-section .label {
  color: var(--accent);
}

.stats-section h2 {
  color: var(--black);
  margin-bottom: 3.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
}

.stat-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.stat-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,132,154,0.15);
  z-index: 1;
}

.stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-name {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.75rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray-text);
}

/* ===========================
   SAMARBETEN
   =========================== */
.collab-section {
  background: var(--white);
  position: relative;
  z-index: 1;
}

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

.collab-card {
  background: var(--white);
  padding: 2rem 2rem;
  transition: background var(--transition);
}

.collab-card:hover {
  background: var(--cream);
  border-left: 2px solid var(--accent);
}

.collab-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.collab-icon svg {
  width: 100%;
  height: 100%;
}

.collab-card h3 {
  margin-bottom: 0.75rem;
}

/* ===========================
   TIDIGARE SAMARBETEN
   =========================== */
.prev-section {
  background: var(--cream);
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.logo-placeholder {
  height: 60px;
  min-width: 140px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  padding: 0 2rem;
  flex: 1;
  max-width: 200px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.logo-placeholder:hover {
  background: var(--cream);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201,132,154,0.15);
}

/* ===========================
   KONTAKT
   =========================== */
.contact-section {
  background: var(--white);
  position: relative;
  z-index: 1;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-text h2 {
  margin-bottom: 1rem;
}

.contact-text p {
  margin-bottom: 2rem;
}

.contact-email {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.contact-email:hover {
  color: var(--accent-dark);
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-socials a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color var(--transition);
}

.contact-socials a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}

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

.form-note {
  font-size: 0.72rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 0.5rem;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--gray-light);
  border-top: 1px solid var(--gray-mid);
  color: var(--black);
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ===========================
   MOBILE MENU
   =========================== */
@media (max-width: 900px) {
  .hero-nav {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 3rem 2rem;
    gap: 2rem;
    z-index: 99;
  }

  .main-nav.is-open a {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .collab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .om-image {
    max-width: 340px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .collab-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 3rem;
  }
}
