/* ══════════════════════════════════════════
   VOGUE CLONE — style.css
   结构：
   1. Reset & 全局变量
   2. 工具类
   3. 顶部栏 (Topbar)
   4. 报头 (Masthead / Logo)
   5. 主导航 (Main Nav)
   6. Sticky 导航
   7. 滚动新闻 (Ticker)
   8. Hero 区域
   9. Section 标题
   10. Fashion 网格
   11. Featured Banner
   12. Beauty 区域
   13. Runway 行
   14. Culture / Editorial 行
   15. Newsletter
   16. More Stories
   17. Footer
   18. 占位色块 (Placeholder)
   19. 响应式
══════════════════════════════════════════ */


/* ── 1. Reset & 全局变量 ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000;
  --white: #fff;
  --off-white: #f8f7f5;
  --light-gray: #e8e6e1;
  --mid-gray: #999;
  --dark-gray: #333;
  --serif: 'Playfair Display', Georgia, serif;
  --serif-alt: 'EB Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ── 2. 工具类 ── */
.label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

.label-red {
  color: #c00;
}


/* ── 3. 顶部栏 ── */
.topbar {
  border-bottom: 1px solid var(--light-gray);
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-left {
  display: flex;
  gap: 20px;
  color: var(--dark-gray);
}

.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--dark-gray);
}

.topbar a:hover {
  border-bottom: 1px solid var(--black);
}


/* ── 4. 报头 / Logo ── */
.masthead {
  text-align: center;
  padding: 24px 24px 0;
  border-bottom: 2px solid var(--black);
  position: relative;
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
}

.masthead-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  min-width: 120px;
}

.logo {
  font-family: var(--serif);
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--black);
  flex: 1;
  text-align: center;
}

.masthead-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 120px;
  justify-content: flex-end;
}

.icon-btn {
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  opacity: 1;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}


/* ── 5. 主导航 ── */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--black);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.nav-item {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.nav-item:hover,
.nav-item.active {
  border-bottom-color: var(--black);
}


/* ── 6. Sticky 导航 ── */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--black);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.sticky-nav.visible {
  transform: translateY(0);
}

.sticky-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
}

.sticky-nav-links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sticky-nav-links::-webkit-scrollbar {
  display: none;
}

/* ── 7. Ticker ── */
.ticker-wrap {
  border-bottom: 1px solid var(--light-gray);
  background: var(--black);
  overflow: hidden;
  padding: 8px 0;
}

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

.ticker-item {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
}

.ticker-dot {
  color: #888;
  padding: 0 10px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ── 8. Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--light-gray);
  min-height: 80vh;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-sidebar {
  border-right: 1px solid var(--light-gray);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-sidebar.right {
  border-right: none;
  border-left: 1px solid var(--light-gray);
}

.sidebar-article {
  border-bottom: 1px solid var(--light-gray);
  padding: 32px 24px 24px 24px;
}

.sidebar-article:first-child {
  padding-top: 32px;
}

.sidebar-article:last-child {
  border-bottom: none;
}

.sidebar-img {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--light-gray);
  overflow: hidden;
  margin-bottom: 12px;
}

.sidebar-article .label {
  margin-bottom: 8px;
  display: block;
}

.sidebar-article h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}

.sidebar-article p {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.6;
  font-family: var(--serif-alt);
}

.hero-main {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-img img {
  transition: transform 0.8s ease;
}

.hero-main:hover .hero-img img {
  transform: scale(1.03);
}

.hero-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  padding: 60px 32px 32px;
  color: var(--white);
}

.hero-caption .label {
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  display: block;
}

.hero-caption h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 10px;
  font-style: italic;
}

.hero-caption p {
  font-family: var(--serif-alt);
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 480px;
}


/* ── 9. Section 标题 ── */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 60px 20px;
  border-bottom: 2px solid var(--black);
  max-width: 1440px;
  margin: 0 auto;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-header-line {
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

.see-all {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px;
  cursor: pointer;
}


/* ── 10. Fashion 网格 ── */
.fashion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--light-gray);
  max-width: 1440px;
  margin: 0 auto;
}

.fashion-card {
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: background 0.2s;
}

.fashion-card:last-child,
.fashion-card:nth-child(4) {
  border-right: none;
}

.fashion-card:hover {
  background: #fafafa;
}

.fashion-img {
  aspect-ratio: 2/3;
  background: var(--light-gray);
  overflow: hidden;
  position: relative;
}

.fashion-img img {
  transition: transform 0.6s ease;
}

.fashion-card:hover .fashion-img img {
  transform: scale(1.05);
}

.fashion-info {
  padding: 16px 20px 20px;
}

.fashion-info .label {
  margin-bottom: 8px;
  display: block;
}

.fashion-info h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
}

.fashion-info h3 em {
  font-style: italic;
}

.fashion-info .byline {
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ── 11. Featured Banner ── */
.featured-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  max-width: 1440px;
  margin: 0 auto;
}

.featured-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  cursor: pointer;
}

.featured-img-wrap img {
  transition: transform 0.8s ease;
}

.featured-img-wrap:hover img {
  transform: scale(1.04);
}

.featured-text {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
  border-left: 1px solid var(--light-gray);
}

.featured-text .label {
  margin-bottom: 20px;
  display: block;
}

.featured-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  font-style: italic;
}

.featured-text p {
  font-family: var(--serif-alt);
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 28px;
  max-width: 400px;
}

.read-more {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  cursor: pointer;
  transition: gap 0.2s;
}

.read-more:hover {
  gap: 14px;
}

.read-more::after {
  content: '→';
}


/* ── 12. Beauty ── */
.beauty-section {
  padding: 0 0 40px;
}

.beauty-section .section-header {
  max-width: 1440px;
  margin: 0 auto;
}

.beauty-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--light-gray);
  max-width: 1440px;
  margin: 0 auto;
}

.beauty-featured {
  border-right: 1px solid var(--light-gray);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.beauty-featured-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.beauty-featured-img img {
  transition: transform 0.8s ease;
}

.beauty-featured:hover .beauty-featured-img img {
  transform: scale(1.04);
}

.beauty-featured-caption {
  padding: 24px 28px;
}

.beauty-featured-caption .label {
  margin-bottom: 10px;
  display: block;
}

.beauty-featured-caption h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
  font-style: italic;
}

.beauty-featured-caption p {
  font-family: var(--serif-alt);
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
}

.beauty-list {
  display: flex;
  flex-direction: column;
}

.beauty-list-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--light-gray);
  border-left: 1px solid var(--light-gray);
  cursor: pointer;
  transition: background 0.2s;
}

.beauty-list-item:last-child {
  border-bottom: none;
}

.beauty-list-item:hover {
  background: #fafafa;
}

.beauty-list-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}

.beauty-list-text .label {
  display: block;
  margin-bottom: 6px;
}

.beauty-list-text h4 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.beauty-list-text p {
  font-size: 11px;
  color: var(--mid-gray);
  margin-top: 4px;
}


/* ── 13. Runway ── */
.runway-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  max-width: 1440px;
  margin: 0 auto;
}

.runway-card {
  border-right: 1px solid var(--light-gray);
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.runway-card:last-child {
  border-right: none;
}

.runway-card:hover {
  background: #fafafa;
}

.runway-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.runway-img img {
  transition: transform 0.6s ease;
}

.runway-card:hover .runway-img img {
  transform: scale(1.06);
}

.runway-season {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--white);
  padding: 4px 8px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
}

.runway-info {
  padding: 14px 16px;
}

.runway-info h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.runway-info p {
  font-size: 11px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ── 14. Culture / Editorial ── */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--light-gray);
  max-width: 1440px;
  margin: 0 auto;
}

.editorial-card {
  border-right: 1px solid var(--light-gray);
  padding: 32px 28px;
  cursor: pointer;
  transition: background 0.2s;
}

.editorial-card:last-child {
  border-right: none;
}

.editorial-card:hover {
  background: #fafafa;
}

.editorial-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.editorial-img img {
  transition: transform 0.7s ease;
}

.editorial-card:hover .editorial-img img {
  transform: scale(1.05);
}

.editorial-card .label {
  margin-bottom: 10px;
  display: block;
}

.editorial-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}

.editorial-card p {
  font-family: var(--serif-alt);
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.editorial-card .byline {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}


/* ── 15. Newsletter ── */
.newsletter {
  background: var(--black);
  color: var(--white);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 8px;
}

.newsletter p {
  font-family: var(--serif-alt);
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form .label {
  color: #888;
  margin-bottom: 4px;
  display: block;
}

.email-row {
  display: flex;
  border: 1px solid #444;
}

.email-row input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
}

.email-row input::placeholder {
  color: #555;
}

.email-row button {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.email-row button:hover {
  background: #ccc;
}

.newsletter-fine {
  font-size: 10px;
  color: #555;
  line-height: 1.6;
}


/* ── 16. More Stories ── */
.more-stories {
  padding: 0 0 40px;
}

.more-stories .section-header {
  max-width: 1440px;
  margin: 0 auto;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-gray);
  max-width: 1440px;
  margin: 0 auto;
}

.masonry-item {
  padding: 24px;
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: background 0.2s;
}

.masonry-item:nth-child(4n) {
  border-right: none;
}

.masonry-item:hover {
  background: #fafafa;
}

.masonry-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

.masonry-img img {
  transition: transform 0.6s ease;
}

.masonry-item:hover .masonry-img img {
  transform: scale(1.05);
}

.masonry-item .label {
  margin-bottom: 8px;
  display: block;
}

.masonry-item h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}

.masonry-item .byline {
  font-size: 10px;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ── 17. Footer ── */
.footer {
  border-top: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 48px 0 0;
  border-bottom: 1px solid #222;
}

.footer-col {
  padding: 0 28px 40px;
  border-right: 1px solid #222;
}

.footer-col:last-child {
  border-right: none;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  display: block;
}

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

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

.footer-col a {
  font-family: var(--sans);
  font-size: 12px;
  color: #ccc;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-logo-row {
  text-align: center;
  padding: 32px;
  border-bottom: 1px solid #222;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.footer-bottom p {
  font-size: 10px;
  color: #555;
  letter-spacing: 0.06em;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
}


/* ── 18. 占位色块 (替换为真实图片后可删除) ── */
.ph-fashion  { background: linear-gradient(135deg, #d4c4b0 0%, #a89880 100%); }
.ph-beauty   { background: linear-gradient(135deg, #e8d5c4 0%, #c4a882 100%); }
.ph-culture  { background: linear-gradient(135deg, #c8d4d8 0%, #8aacb8 100%); }
.ph-runway   { background: linear-gradient(135deg, #2c2c2c 0%, #555 100%); }
.ph-lifestyle{ background: linear-gradient(135deg, #d8ccc0 0%, #b8a898 100%); }
.ph-cover    { background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%); }
.ph-cover2   { background: linear-gradient(160deg, #2d1b1b 0%, #4a2c2c 40%, #6b3a3a 100%); }
.ph-light    { background: linear-gradient(135deg, #f5ede3 0%, #e8d5c2 100%); }
.ph-dark     { background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%); }
.ph-pink     { background: linear-gradient(135deg, #f0d0d8 0%, #d8a0b0 100%); }
.ph-green    { background: linear-gradient(135deg, #c8d8c0 0%, #8ab08a 100%); }
.ph-gold     { background: linear-gradient(135deg, #e8d48a 0%, #c4a840 100%); }

.ph-cover::after,
.ph-cover2::after,
.ph-fashion::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 90%;
  background: rgba(255,255,255,0.06);
  border-radius: 50% 50% 0 0;
}


/* ── 19. 响应式 ── */
@media (max-width: 1024px) {
  .hero               { grid-template-columns: 1fr; }
  .hero-sidebar       { display: none; }
  .fashion-grid       { grid-template-columns: repeat(2, 1fr); }
  .beauty-grid        { grid-template-columns: 1fr; }
  .runway-row         { grid-template-columns: repeat(3, 1fr); }
  .editorial-row      { grid-template-columns: 1fr 1fr; }
  .footer-top         { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid       { grid-template-columns: repeat(2, 1fr); }
  .hero, .section-header, .fashion-grid, .featured-banner,
  .beauty-grid, .runway-row, .editorial-row, .newsletter, .masonry-grid {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .logo               { font-size: 48px; }
  .featured-banner    { grid-template-columns: 1fr; }
  .featured-text      { padding: 36px 28px; border-left: none; border-top: 1px solid var(--light-gray); }
  .runway-row         { grid-template-columns: repeat(2, 1fr); }
  .editorial-row      { grid-template-columns: 1fr; }
  .newsletter         { grid-template-columns: 1fr; gap: 28px; padding: 40px 28px; }
  .masonry-grid       { grid-template-columns: 1fr 1fr; }
  .footer-top         { grid-template-columns: 1fr 1fr; }
  .topbar             { display: none; }
  .hero, .section-header, .fashion-grid, .featured-banner,
  .beauty-grid, .runway-row, .editorial-row, .newsletter, .masonry-grid {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .fashion-grid       { grid-template-columns: 1fr; }
  .masonry-grid       { grid-template-columns: 1fr; }
  .footer-top         { grid-template-columns: 1fr; }
  .runway-row         { grid-template-columns: repeat(2, 1fr); }
  .logo               { font-size: 36px; }
  .hero, .section-header, .fashion-grid, .featured-banner,
  .beauty-grid, .runway-row, .editorial-row, .newsletter, .masonry-grid {
    padding: 0 16px;
  }
}
