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

:root {
  --rose:   #e8c4c0;
  --blush:  #f5e8e5;
  --cream:  #faf6f4;
  --warm:   #f0e6e2;
  --ink:    #1e1714;
  --muted:  #7a6260;
  --border: rgba(30,23,20,0.1);
  --pink-accent: #d4857c;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; border-radius: 0; box-shadow: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TICKER ── */
.ticker {
  background: var(--ink);
  color: var(--blush);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner { display: inline-block; animation: ticker 30s linear infinite; }
.ticker-inner span { margin: 0 3rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  border-bottom: 1px solid var(--border);
  background: rgba(250,246,244,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav-links { display: flex; gap: 32px; padding: 0; }
.nav-links li { display: inline; }
.nav-links a {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: transparent; }
.nav-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--ink);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--blush);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
  text-align: center;
}
.page-header .eyebrow { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink-accent); margin-bottom: 16px; }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.page-header p { margin-top: 16px; font-size: 0.88rem; color: var(--muted); max-width: 560px; margin-left: auto; margin-right: auto; text-indent: 0; }

/* ── SECTION HEAD ── */
.section-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.section-head { display: flex; align-items: center; gap: 20px; margin-bottom: 48px; }
.section-head::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--blush);
  text-align: center;
  padding: 40px 48px;
}
footer p { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,232,229,0.45); text-indent: 0; margin: 0; }
.footer-brand { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--rose); margin-bottom: 16px; display: block; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 24px; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,232,229,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--rose); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream) !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  border-radius: 0;
  font-weight: 400;
}
.btn:hover { background: var(--muted); transform: translateY(-1px); }
.btn-outline { background: transparent !important; border: 1px solid var(--ink); color: var(--ink) !important; }
.btn-outline:hover { background: var(--ink) !important; color: var(--cream) !important; }

/* ── FORMS ── */
.form-section { background: var(--blush); border-top: 1px solid var(--border); padding: 80px 48px; }
.form-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; text-align: center; margin-bottom: 8px; }
.form-section > p { text-align: center; color: var(--muted); font-size: 0.85rem; margin-bottom: 40px; text-indent: 0; }
.styled-form { max-width: 520px; margin: 0 auto; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.form-group input {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
  width: 100%;
}
.form-group input:focus { border-color: var(--pink-accent); }
.form-group input::placeholder { color: var(--muted); opacity: 0.4; }
fieldset { border: none; }
legend { display: none; }

/* ── HERO (INDEX) ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 108px); }
.hero-left { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--border); }
.hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink-accent); margin-bottom: 24px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 300; line-height: 1.08; margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--muted); }
.hero-sub { font-size: 0.85rem; line-height: 1.9; color: var(--muted); max-width: 400px; margin-bottom: 40px; }
.hero-right { overflow: hidden; background: var(--blush); }
.hero-collage { display: grid; grid-template-columns: 1fr 1fr; height: 100%; gap: 3px; }
.collage-img { overflow: hidden; }
.collage-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; border-radius: 0; box-shadow: none; }
.collage-img:hover img { transform: scale(1.04); }
.collage-img.tall { grid-row: span 2; }

/* PREVIEWS */
.previews { padding: 80px 48px; border-top: 1px solid var(--border); }
.previews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.preview-card { overflow: hidden; background: var(--blush); }
.preview-card .preview-img { aspect-ratio: 4/5; overflow: hidden; }
.preview-card .preview-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; border-radius: 0; box-shadow: none; }
.preview-card:hover .preview-img img { transform: scale(1.05); }
.preview-card .preview-info { padding: 20px; border-top: 1px solid var(--border); }
.preview-card .preview-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-accent); margin-bottom: 8px; }
.preview-card .preview-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 6px; }
.preview-card .preview-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* ── SHOP PAGE ── */
.shop-intro-section { padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; border-bottom: 1px solid var(--border); }
.shop-tag { display: inline-block; border: 1px solid var(--rose); color: var(--muted); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 14px; margin-bottom: 24px; }
.shop-intro-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.1; margin-bottom: 20px; }
.shop-intro-text p { font-size: 0.88rem; line-height: 1.9; color: var(--muted); text-indent: 0; margin: 0 0 32px; }
.shop-banner-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 0; box-shadow: none; }
.shop-why { background: var(--ink); color: var(--cream); padding: 80px 48px; text-align: center; }
.shop-why .eyebrow { color: var(--rose); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; }
.shop-why h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; margin-bottom: 24px; }
.shop-why p { font-size: 0.88rem; line-height: 1.9; color: rgba(250,246,244,0.65); max-width: 640px; margin: 0 auto; text-indent: 0; }
.products-section { padding: 80px 48px; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.product-card { background: var(--blush); overflow: hidden; }
.product-card .product-media { aspect-ratio: 3/4; overflow: hidden; }
.product-card .product-media img, .product-card .product-media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; border-radius: 0; box-shadow: none; }
.product-card:hover .product-media img, .product-card:hover .product-media video { transform: scale(1.04); }
.product-card .product-info { padding: 20px 24px; display: flex; justify-content: space-between; align-items: flex-start; border-top: 1px solid var(--border); }
.product-card .product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; }
.product-card .product-price { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.product-card .shop-link { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-accent); display: block; margin-top: 4px; transition: color 0.2s; text-align: right; }
.product-card .shop-link:hover { color: var(--ink); }
.shop-cta { padding: 60px 48px; text-align: center; border-top: 1px solid var(--border); }
.shop-cta p { font-size: 0.88rem; color: var(--muted); text-indent: 0; margin-bottom: 20px; }

/* ── ARTICLE PAGE ── */
.article-body { max-width: 860px; margin: 0 auto; padding: 80px 48px; }
.article-body > p { font-size: 0.92rem; line-height: 1.9; color: var(--muted); text-indent: 0; margin-bottom: 24px; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--ink); margin: 56px 0 24px; }
.article-body ul { margin-bottom: 32px; padding: 0; }
.article-body ul li { font-size: 0.88rem; line-height: 1.8; color: var(--muted); padding-left: 24px; position: relative; margin-bottom: 8px; text-indent: 0; }
.article-body ul li::before { content: '౨ৎ'; position: absolute; left: 0; color: var(--pink-accent); }
.article-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 32px 0; }
.gal-item { overflow: hidden; aspect-ratio: 2/3; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; border-radius: 0; box-shadow: none; }
.gal-item:hover img { transform: scale(1.04); }
.picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 32px 0; }
.pick-card { overflow: hidden; background: var(--blush); }
.pick-card .pick-img { aspect-ratio: 2/3; overflow: hidden; }
.pick-card .pick-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; border-radius: 0; box-shadow: none; }
.pick-card:hover .pick-img img { transform: scale(1.05); }
.pick-card .pick-label { padding: 14px 16px; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.pick-card .pick-label a { color: var(--pink-accent); font-size: 0.65rem; transition: color 0.2s; }
.pick-card .pick-label a:hover { color: var(--ink); }
.article-closing { background: var(--blush); border: 1px solid var(--border); padding: 40px; text-align: center; margin-top: 56px; }
.article-closing p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--ink); margin: 0; text-indent: 0; }
.article-gif { width: 100%; max-width: 480px; margin: 0 auto 40px; display: block; border-radius: 0; box-shadow: none; }

/* ── TREND PAGE ── */
.trend-section { padding: 80px 48px; }
.trend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-bottom: 0; }
.trend-col { padding: 48px; background: var(--blush); display: flex; flex-direction: column; align-items: center; text-align: center; }
.trend-col.timeless { background: var(--warm); }
.trend-col .col-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-accent); margin-bottom: 16px; }
.trend-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin-bottom: 24px; }
.trend-img-wrap { width: 100%; max-width: 320px; aspect-ratio: 2/3; overflow: hidden; margin-bottom: 24px; }
.trend-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; transition: transform 0.4s ease; }
.trend-col:hover .trend-img-wrap img { transform: scale(1.04); }
.trend-col > p { font-size: 0.85rem; line-height: 1.8; color: var(--muted); text-indent: 0; }
.vote-section { background: var(--ink); color: var(--cream); padding: 80px 48px; text-align: center; }
.vote-section .eyebrow { color: var(--rose); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; }
.vote-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; margin-bottom: 12px; }
.vote-section > p { color: rgba(250,246,244,0.6); font-size: 0.85rem; margin-bottom: 40px; text-indent: 0; }
.vote-options { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px; }
.vote-option input[type="radio"] { display: none; }
.vote-option label { display: inline-block; padding: 16px 40px; border: 1px solid rgba(250,246,244,0.2); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,246,244,0.6); cursor: pointer; transition: all 0.2s; }
.vote-option input:checked + label { border-color: var(--rose); color: var(--cream); background: rgba(232,196,192,0.12); }
.vote-option label:hover { color: var(--cream); border-color: rgba(250,246,244,0.4); }

/* ── ABOUT PAGE ── */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.about-hero-text { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--border); }
.about-hero-text .eyebrow { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink-accent); margin-bottom: 20px; }
.about-hero-text h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 300; line-height: 1.1; margin-bottom: 24px; }
.about-hero-text p { font-size: 0.88rem; line-height: 1.9; color: var(--muted); text-indent: 0; }
.about-hero-img { overflow: hidden; background: var(--blush); }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; }
.inspirations-section { padding: 80px 48px; border-top: 1px solid var(--border); }
.inspirations-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 48px; text-align: center; }
.inspo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.inspo-item { overflow: hidden; }
.inspo-item .inspo-img { aspect-ratio: 3/4; overflow: hidden; }
.inspo-item .inspo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; border-radius: 0; box-shadow: none; }
.inspo-item:hover .inspo-img img { transform: scale(1.05); }
.inspo-item .inspo-label { padding: 16px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--border); background: var(--blush); }
.style-quiz { background: var(--blush); padding: 80px 48px; border-top: 1px solid var(--border); text-align: center; }
.style-quiz .eyebrow { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink-accent); margin-bottom: 16px; }
.style-quiz h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 40px; }
.quiz-form { max-width: 480px; margin: 0 auto; display: grid; gap: 20px; }
.quiz-group { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.quiz-group label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.quiz-group select { background: var(--cream); border: 1px solid var(--border); padding: 12px 16px; font-family: 'Jost', sans-serif; font-size: 0.88rem; color: var(--ink); outline: none; border-radius: 0; appearance: none; cursor: pointer; transition: border-color 0.2s; width: 100%; }
.quiz-group select:focus { border-color: var(--pink-accent); }
.quiz-result { margin-top: 24px; padding: 24px; background: var(--cream); border: 1px solid var(--border); display: none; }
.quiz-result p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; text-indent: 0; margin: 0; color: var(--ink); }

/* ── CENTERED HERO (index) ── */
.hero-centered {
  text-align: center;
  padding: 80px 48px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.hero-centered .hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-accent);
  margin-bottom: 20px;
}
.hero-centered .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero-centered .hero-title em { font-style: italic; color: var(--muted); }
.hero-centered .hero-sub {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-strip {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 56px;
}
.strip-img {
  width: 33.333%;
  max-width: 320px;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  border-radius: 0;
  box-shadow: none;
}
.strip-img:hover img { transform: scale(1.04); }

/* ── SHOP BANNER FULL (no crop) ── */
.shop-banner-full {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: var(--blush);
}

/* Fix shop intro layout when banner is tall */
.shop-intro-section {
  align-items: center;
}

/* ── HOME PHOTO GRID ── */
.home-photo-grid {
  background: var(--blush);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 3px;
  padding: 40px 48px;
}
.home-photo {
  width: 280px;
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
}
.home-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.5s ease;
}
.home-photo:hover img { transform: scale(1.04); }

/* Remove old hero-strip styles since we replaced it */
.hero-centered { padding-bottom: 80px; }

/* ══════════════════════════════
   RESPONSIVE — MOBILE & TABLET
   ══════════════════════════════ */

@media (max-width: 900px) {

  /* NAV — hide split links, center brand */
  nav {
    justify-content: center;
    padding: 0 24px;
    height: auto;
    flex-wrap: wrap;
    gap: 0;
  }
  .nav-brand {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    padding: 16px 0 8px;
    font-size: 1.8rem;
  }
  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0 12px;
    width: 100%;
  }
  .nav-links a { font-size: 0.65rem; }

  /* HERO centered */
  .hero-centered { padding: 60px 24px 60px; }
  .hero-centered .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  /* HOME PHOTO GRID — stack vertically or shrink */
  .home-photo-grid { padding: 24px; gap: 3px; }
  .home-photo { width: 100%; max-width: 100%; flex: 1; min-width: 0; }

  /* PREVIEWS — single column */
  .previews { padding: 48px 24px; }
  .previews-grid { grid-template-columns: 1fr; gap: 2px; }

  /* SHOP intro — stack */
  .shop-intro-section { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }

  /* PRODUCT GRID — single column */
  .product-grid { grid-template-columns: 1fr; }

  /* ARTICLE */
  .article-body { padding: 48px 24px; }
  .article-gallery { grid-template-columns: 1fr 1fr; }
  .picks-grid { grid-template-columns: 1fr 1fr; }

  /* TREND */
  .trend-section { padding: 48px 24px; }
  .trend-grid { grid-template-columns: 1fr; }
  .vote-section { padding: 60px 24px; }
  .vote-options { flex-direction: column; align-items: center; }
  .vote-option label { width: 200px; text-align: center; }

  /* ABOUT */
  .about-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-hero-text { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .about-hero-img { height: 300px; }
  .inspirations-section { padding: 48px 24px; }
  .inspo-grid { grid-template-columns: 1fr 1fr; }
  .style-quiz { padding: 48px 24px; }

  /* FORMS */
  .form-section { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* PAGE HEADER */
  .page-header { padding: 40px 24px; }

  /* FOOTER */
  footer { padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  /* SHOP CTA */
  .shop-cta { padding: 48px 24px; }
}

@media (max-width: 560px) {

  /* Even smaller screens */
  .home-photo-grid { flex-direction: column; align-items: center; padding: 16px; }
  .home-photo { width: 100%; max-width: 360px; aspect-ratio: 4/3; }
  .home-photo img { object-position: center; }

  .article-gallery { grid-template-columns: 1fr; }
  .picks-grid { grid-template-columns: 1fr; }
  .inspo-grid { grid-template-columns: 1fr; }

  .hero-centered .hero-sub { font-size: 0.82rem; }

  nav { padding: 0 16px; }
  .nav-links { gap: 12px; }

  .trend-col { padding: 32px 24px; }
}