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

:root {
  --warm-white: #FAFAF8;
  --taupe: #E6E1DB;
  --charcoal: #1F1F1F;
  --olive: #6F7D68;
  --caramel: #B08968;
  --dusty-blue: #6B7C93;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: var(--font-body); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 225, 219, 0.6);
  transition: box-shadow 0.3s ease;
}
header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.logo span { color: var(--olive); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--olive);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--olive); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--charcoal);
  color: var(--warm-white) !important;
  padding: 10px 24px;
  font-size: 0.75rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--olive) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--warm-white);
  padding: 32px 24px;
  border-bottom: 1px solid var(--taupe);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--taupe);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-content { padding: 60px 0; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--olive);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: #fff;
  padding: 14px 36px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--olive);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111,125,104,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1.5px solid var(--caramel);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.btn-secondary:hover { color: var(--caramel); }

.hero-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-image-accent {
  position: absolute;
  bottom: 60px;
  left: -70px;
  width: 250px;
  height: 260px;
  object-fit: cover;
  border: 6px solid var(--warm-white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--taupe);
  padding: 40px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}
.trust-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
}
.trust-stat .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #777;
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(31,31,31,0.15);
}

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--charcoal); color: var(--warm-white); }
.section-taupe { background: var(--taupe); }
.section-white { background: var(--warm-white); }

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-dark .section-eyebrow { color: var(--caramel); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--olive);
}
.section-dark .section-title em { color: var(--caramel); }

.section-subtitle {
  font-size: 1rem;
  color: #777;
  max-width: 560px;
  line-height: 1.8;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== WHAT I CREATE (PILLARS — HORIZONTAL SCROLL) ===== */
.pillars-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}
.pillars-track::-webkit-scrollbar { height: 3px; }
.pillars-track::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 4px; }

.pillar {
  min-width: 280px;
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  padding: 36px 28px;
  border: 1px solid var(--taupe);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}
.pillar-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--taupe);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}
.about-image-stack img:first-child {
  width: 85%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
}
.about-image-stack img:last-child {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--warm-white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-highlights {
  list-style: none;
  margin: 24px 0 36px;
}
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: #555;
}
.about-highlights li i {
  color: var(--olive);
  margin-top: 4px;
  font-size: 0.8rem;
}

/* ===== BRAND DEALS ===== */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-image {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
}

.brand-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.brand-type {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-align: center;
}
.brand-type i {
  font-size: 1.4rem;
  color: var(--caramel);
  margin-bottom: 10px;
  display: block;
}
.brand-type span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.audience-stats {
  display: flex;
  gap: 28px;
  margin: 28px 0 36px;
}
.audience-stat .num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--caramel);
}
.audience-stat .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--caramel);
  color: var(--caramel);
  padding: 13px 32px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--caramel);
  color: #fff;
}

/* ===== CONTENT PREVIEW — MOSAIC ===== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
}
.mosaic-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(31,31,31,0.82));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay .plat {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 4px;
}
.mosaic-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
}
.mosaic-overlay .st {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.mosaic-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.mosaic-item:hover .mosaic-play { opacity: 1; }

/* ===== MOSAIC EMBED ===== */
.mosaic-item.mosaic-embed {
  position: relative;
  overflow: hidden;
  background: #000;
}
.mosaic-embed blockquote.tiktok-embed {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
}
.mosaic-embed iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(var(--embed-scale, 1)) !important;
  transform-origin: center center !important;
  border: none !important;
}
.mosaic-item.mosaic-yt {
  position: relative;
  overflow: hidden;
}
.mosaic-yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== SHOP / DIGITAL PRODUCTS ===== */
.shop-section { background: var(--taupe); padding: 100px 0; }

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.shop-header .section-eyebrow { margin-bottom: 10px; }

.shop-view-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1.5px solid var(--caramel);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.shop-view-link:hover { color: var(--caramel); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.shop-card {
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31,31,31,0.08);
  transition: all 0.4s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.shop-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.shop-card:nth-child(1) .shop-card-img { background: linear-gradient(135deg, #E8E3DC, #D9D3CA); }
.shop-card:nth-child(2) .shop-card-img { background: linear-gradient(135deg, #DDE4D8, #CDD6C6); }
.shop-card:nth-child(3) .shop-card-img { background: linear-gradient(135deg, #E0DAD2, #D4CCC2); }

.shop-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--olive);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

.shop-card-body { padding: 22px; }
.shop-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.35;
}
.shop-card-body p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 14px;
}
.shop-card-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--caramel);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}
.shop-card:hover .shop-card-link { gap: 9px; }

/* ===== TOOLS / REFERRALS ===== */
.tools-section {
  background: var(--warm-white);
  border-top: 1px solid rgba(31,31,31,0.08);
  padding: 100px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.tool-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--warm-white);
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.tool-card:hover {
  border-color: var(--caramel);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tool-card:nth-child(1) .tool-icon { background: rgba(111,125,104,0.12); color: var(--olive); }
.tool-card:nth-child(2) .tool-icon { background: rgba(176,137,104,0.12); color: var(--caramel); }
.tool-card:nth-child(3) .tool-icon { background: rgba(107,124,147,0.12); color: var(--dusty-blue); }
.tool-card:nth-child(4) .tool-icon { background: rgba(111,125,104,0.12); color: var(--olive); }
.tool-card:nth-child(5) .tool-icon { background: rgba(176,137,104,0.12); color: var(--caramel); }
.tool-card:nth-child(6) .tool-icon { background: rgba(107,124,147,0.12); color: var(--dusty-blue); }

.tool-card h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.tool-card p {
  font-size: 0.72rem;
  color: #777;
  margin-top: 1px;
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
  color: var(--warm-white);
  padding: 100px 0;
}

.subscribe-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-inner .section-title { color: var(--warm-white); }

.subscribe-form {
  display: flex;
  gap: 0;
  margin-top: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-form input:focus { border-color: var(--caramel); }

.subscribe-form button {
  background: var(--caramel);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.subscribe-form button:hover { background: var(--olive); }

.subscribe-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--caramel); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover { color: var(--caramel); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--olive); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item:nth-child(1) { grid-column: 1/3; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  .hero-content { padding: 100px 0 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrapper { min-height: 400px; }
  .hero-image-accent { display: none; }

  .trust-inner { gap: 32px; }
  .trust-divider { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .about-image-stack img:last-child { display: none; }
  .about-image-stack img:first-child { width: 100%; margin: 0 auto; }
  .about-highlights { display: inline-block; text-align: left; }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .brand-image { max-height: 400px; }
  .brand-types { grid-template-columns: 1fr 1fr; }
  .audience-stats { justify-content: center; }

  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item:nth-child(1) { grid-column: 1/3; }
  .mosaic-item { aspect-ratio: 16/9; }

  .shop-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .shop-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

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

  .subscribe-form { flex-direction: column; }
  .subscribe-form input, .subscribe-form button { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
