/* ==========================================================================
   Dorigine — Editorial Design System
   Black / White / Red. Swiss-inspired, magazine-grade.
   ========================================================================== */

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --off-white: #F6F5F2;
  --soft-gray: #E9E9E7;
  --text-gray: #686868;
  --line: #DCDBD7;

  --red: #D71920;
  --red-deep: #A90F16;
  --red-light: #F7E6E7;

  --font-serif: "DM Serif Display", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.005em; }
p { margin: 0 0 1.1em; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Visible focus states everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--red);
  outline-offset: 3px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 56px); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--black); color: var(--white); padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Category label */
.category-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red);
}
.category-label::before { content: ""; width: 14px; height: 2px; background: var(--red); display: inline-block; }
.category-label.on-dark { color: #ff5a60; }

h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
.lede { font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: var(--text-gray); max-width: 60ch; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; font-weight: 600; font-size: 0.92rem;
  border: 1.5px solid var(--black); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--red); border-color: var(--red); }
.btn-outline { background: transparent; color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-outline-light { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9rem; border-bottom: 1.5px solid var(--black); padding-bottom: 2px; transition: border-color 0.25s ease, color 0.25s ease; }
.text-link:hover { border-color: var(--red); color: var(--red); }
.text-link.red { color: var(--red); border-color: var(--red); }

/* ==========================================================================
   Header
   ========================================================================== */
.utility-bar { background: var(--black); color: rgba(255,255,255,0.75); font-size: 0.76rem; letter-spacing: 0.02em; }
.utility-row { display: flex; justify-content: space-between; align-items: center; padding: 8px clamp(20px,4.5vw,56px); max-width: var(--max-w); margin: 0 auto; }
.utility-row a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.utility-row a:hover { color: var(--white); }
.utility-links { display: flex; gap: 18px; }
.utility-links span { opacity: 0.4; }

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-stuck { box-shadow: 0 4px 24px rgba(10,10,10,0.06); }
.header-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px clamp(20px,4.5vw,56px);
  max-width: var(--max-w); margin: 0 auto;
}
.wordmark {
  font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 3px;
}
.wordmark .bar { width: 3px; height: 20px; background: var(--red); display: inline-block; margin-left: 2px; }
.main-nav ul { display: flex; gap: 30px; justify-content: center; }
.main-nav a {
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 6px 0; position: relative; color: var(--black);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--red); transition: width 0.3s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--red); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.icon-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.25s ease; }
.icon-btn:hover { background: var(--off-white); }
.icon-btn svg { width: 19px; height: 19px; }

.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--black); position: relative; transition: 0.3s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; width: 20px; }
.nav-toggle span::after { position: absolute; top: 6px; width: 20px; }

/* ==========================================================================
   Hero — asymmetric editorial
   ========================================================================== */
.hero-editorial { padding: 52px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 44px; }
.hero-feature { display: flex; flex-direction: column; }
.hero-feature-media { aspect-ratio: 16/10; overflow: hidden; margin-bottom: 24px; background: var(--soft-gray); }
.hero-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.hero-feature-media:hover img { transform: scale(1.035); }
.hero-feature h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin: 14px 0 14px; }
.hero-feature .lede { margin-bottom: 20px; }

.hero-side { display: flex; flex-direction: column; gap: 0; }
.hero-side-item { display: flex; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); }
.hero-side-item:first-child { border-top: none; padding-top: 0; }
.hero-side-media { width: 128px; height: 96px; flex-shrink: 0; overflow: hidden; background: var(--soft-gray); }
.hero-side-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.hero-side-item:hover .hero-side-media img { transform: scale(1.06); }
.hero-side-body h3 { font-size: 1.05rem; margin: 8px 0 4px; line-height: 1.3; }
.hero-side-body .story-num { font-size: 0.72rem; color: var(--text-gray); font-weight: 700; letter-spacing: 0.08em; }

/* ==========================================================================
   Trending strip
   ========================================================================== */
.trending {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-top: 52px; padding: 16px 0;
}
.trending-row { display: flex; align-items: center; gap: 26px; }
.trending-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: var(--red); flex-shrink: 0; white-space: nowrap; }
.trending-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.trending-scroll::-webkit-scrollbar { display: none; }
.trending-chip {
  white-space: nowrap; font-size: 0.85rem; font-weight: 500; color: var(--text-gray);
  padding: 7px 16px; border: 1px solid var(--line); border-radius: 999px;
  transition: all 0.25s ease; flex-shrink: 0;
}
.trending-chip:hover { border-color: var(--black); color: var(--black); }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 76px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .text-gray, .section-dark p { color: rgba(255,255,255,0.6); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .line-div { background: rgba(255,255,255,0.15); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 46px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 10px; }

/* ==========================================================================
   Editor's Picks — mixed asymmetric grid
   ========================================================================== */
.picks-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; }
.pick-feature { grid-column: span 4; }
.pick-feature .card-media { aspect-ratio: 16/10; }
.pick-feature h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.pick-medium { grid-column: span 2; }
.pick-medium .card-media { aspect-ratio: 4/3; }
.pick-compact { grid-column: span 2; }
.pick-compact .card-media { aspect-ratio: 3/2; }
.pick-compact h3 { font-size: 1.02rem; }

.card { display: flex; flex-direction: column; }
.card-media { overflow: hidden; background: var(--soft-gray); margin-bottom: 16px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-media img { transform: scale(1.045); }
.card h3 { margin: 10px 0 8px; line-height: 1.28; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card h3 a { position: relative; }
.card .card-excerpt { color: var(--text-gray); font-size: 0.94rem; margin-bottom: 10px; }
.card .card-meta { font-size: 0.78rem; color: var(--text-gray); }
.card { position: relative; }

.row-compact { display: grid; grid-template-columns: 3fr 1fr; gap: 16px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
.row-compact:first-child { border-top: none; padding-top: 0; }
.row-compact .row-media { aspect-ratio: 4/3; overflow: hidden; background: var(--soft-gray); order: 2; }
.row-compact .row-media img { width: 100%; height: 100%; object-fit: cover; }
.row-compact h4 { font-family: var(--font-sans); font-weight: 700; font-size: 0.98rem; margin: 6px 0; line-height: 1.35; }

/* ==========================================================================
   Category sections — each visually distinct
   ========================================================================== */

/* Lifestyle: large image + article list */
.lifestyle-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.lifestyle-media { aspect-ratio: 4/3; overflow: hidden; background: var(--soft-gray); }
.lifestyle-media img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-list { display: flex; flex-direction: column; }

/* Home & Living: editorial split */
.hl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
.hl-col { padding: 44px; }
.hl-col.media { padding: 0; aspect-ratio: auto; min-height: 340px; overflow: hidden; }
.hl-col.media img { width: 100%; height: 100%; object-fit: cover; }
.hl-col.text { display: flex; flex-direction: column; justify-content: center; background: var(--off-white); }

/* Technology: dark */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); }
.tech-card { background: var(--black); padding: 34px; }
.tech-card .card-media { aspect-ratio: 3/2; margin-bottom: 20px; }
.tech-card h3 { color: var(--white); }
.tech-card p { color: rgba(255,255,255,0.55); font-size: 0.92rem; }

/* Shopping: white structured cards */
.shopping-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.shopping-card { border: 1px solid var(--line); padding: 22px; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.shopping-card:hover { border-color: var(--black); box-shadow: 0 10px 30px rgba(10,10,10,0.06); }
.shopping-card .card-media { aspect-ratio: 1/1; margin-bottom: 18px; }

/* Travel: panoramic */
.travel-hero-media { aspect-ratio: 21/9; overflow: hidden; margin-bottom: 30px; background: var(--soft-gray); }
.travel-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.travel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* Wellness: minimal */
.wellness-row { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 60px; align-items: center; }
.wellness-media { aspect-ratio: 1/1; overflow: hidden; background: var(--soft-gray); }
.wellness-media img { width: 100%; height: 100%; object-fit: cover; }
.wellness-list { display: flex; flex-direction: column; gap: 0; }
.wellness-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.wellness-item:last-child { border-bottom: none; }
.wellness-item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.wellness-item p { color: var(--text-gray); font-size: 0.92rem; margin: 0; }

.line-div { height: 1px; background: var(--line); border: none; margin: 0; }
.red-rule { width: 46px; height: 3px; background: var(--red); border: none; margin: 0 0 26px; }

/* ==========================================================================
   Advertorial system
   ========================================================================== */
.ad-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-gray); background: var(--soft-gray); padding: 5px 12px; border-radius: 999px;
}
.advertorial-banner {
  background: var(--off-white); border: 1.5px solid var(--black);
  padding: 22px clamp(20px,4.5vw,40px); margin-bottom: 40px;
}
.advertorial-banner .tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.advertorial-banner .tag-row strong {
  font-family: var(--font-sans); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem;
}
.advertorial-banner p { margin: 0; color: var(--text-gray); font-size: 0.92rem; }

.advertorial-archive-card { position: relative; }
.advertorial-archive-card .ad-label { position: absolute; top: 14px; left: 14px; background: var(--white); z-index: 2; }

.ad-slot {
  border: 1px dashed var(--line); background: var(--off-white);
  padding: 30px; text-align: center; margin: 40px 0;
}
.ad-slot .ad-slot-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-gray); margin-bottom: 10px; display: block; }
.ad-slot .ad-slot-note { font-size: 0.82rem; color: var(--text-gray); margin: 0; }

/* ==========================================================================
   Article page
   ========================================================================== */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--text-gray); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { opacity: 0.4; }

.article-header { padding: 40px 0 0; }
.article-header .breadcrumb { margin-bottom: 22px; }
.article-header h1 { max-width: 20ch; margin: 16px 0 20px; }
.article-byline { display: flex; align-items: center; gap: 14px; margin-top: 26px; font-size: 0.88rem; color: var(--text-gray); flex-wrap: wrap; }
.article-byline a { font-weight: 700; color: var(--black); }
.article-byline a:hover { color: var(--red); }
.article-hero-media { aspect-ratio: 16/9; overflow: hidden; margin: 34px 0 0; background: var(--soft-gray); }
.article-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-caption { font-size: 0.8rem; color: var(--text-gray); padding-top: 10px; }

.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: 1.55rem; margin-top: 1.8em; }
.article-body h3 { font-size: 1.2rem; margin-top: 1.5em; }
.article-body p { font-size: 1.05rem; color: #262626; }
.article-body ul, .article-body ol { margin: 1.2em 0; padding-left: 1.4em; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.6em; color: #262626; }
.article-inline-media { margin: 2.2em 0; }
.article-inline-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.article-inline-media figcaption { font-size: 0.82rem; color: var(--text-gray); padding-top: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--red); margin: 2em 0; padding: 0.2em 0 0.2em 24px;
  font-family: var(--font-serif); font-size: 1.3rem; line-height: 1.4;
}

.related-section h2 { margin-bottom: 8px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Sidebar layout (used on some article variants / desktop) */
.article-with-rail { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.rail-ad {
  position: sticky; top: 100px;
}

/* ==========================================================================
   About / Contact / Legal
   ========================================================================== */
.page-header { padding: 60px 0 20px; }
.page-header .breadcrumb { margin-bottom: 20px; }
.page-header h1 { max-width: 22ch; }

.legal-shell { max-width: 760px; }
.legal-meta { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.35rem; margin-top: 2em; }
.legal-content h3 { font-size: 1.08rem; margin-top: 1.5em; }
.legal-content p, .legal-content li { color: #333; }
.legal-content ul { margin: 1em 0; padding-left: 1.4em; list-style: disc; }
.legal-content li { margin-bottom: 0.5em; }
.legal-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.toc { background: var(--off-white); border: 1px solid var(--line); padding: 26px 30px; margin-bottom: 44px; }
.toc strong { display: block; margin-bottom: 12px; font-family: var(--font-sans); }
.toc a { display: block; color: var(--text-gray); font-size: 0.9rem; padding: 5px 0; }
.toc a:hover { color: var(--red); }

.info-card-grid { display: grid; gap: 18px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line); padding: 22px; }
.info-card strong { display: block; margin-bottom: 3px; font-size: 0.95rem; }
.info-card span, .info-card a { color: var(--text-gray); font-size: 0.9rem; }
.info-card a:hover { color: var(--red); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 2px;
  background: var(--white); color: var(--black); transition: border-color 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { resize: vertical; min-height: 130px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; font-size: 0.85rem; color: var(--text-gray); }
.consent-row input { margin-top: 3px; }
.form-status { display: none; padding: 14px 18px; margin-top: 16px; font-size: 0.9rem; border: 1px solid var(--line); }
.form-status.success { display: block; background: var(--off-white); }

/* Author page */
.author-header { display: flex; gap: 26px; align-items: center; }
.author-avatar {
  width: 84px; height: 84px; border-radius: 50%; background: var(--off-white);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.8rem; color: var(--red); flex-shrink: 0;
}
.author-note {
  border: 1px dashed var(--line); background: var(--off-white); padding: 16px 20px; font-size: 0.85rem; color: var(--text-gray); margin: 24px 0 0;
}

/* Search page */
.search-hero { text-align: center; padding: 70px 0 40px; }
.search-input-wrap { max-width: 640px; margin: 0 auto; position: relative; }
.search-input-wrap input {
  width: 100%; padding: 20px 60px 20px 24px; font-size: 1.15rem; font-family: var(--font-serif);
  border: none; border-bottom: 2px solid var(--black); background: transparent;
}
.search-input-wrap input:focus { outline: none; border-color: var(--red); }
.search-input-wrap button { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; }
.search-results-list { display: flex; flex-direction: column; }
.search-result-row { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); align-items: start; }
.search-result-row:first-child { border-top: none; }
.search-result-media { aspect-ratio: 4/3; overflow: hidden; background: var(--soft-gray); }
.search-result-media img { width: 100%; height: 100%; object-fit: cover; }
.search-empty { text-align: center; padding: 60px 0; color: var(--text-gray); }
.search-empty .big { font-family: var(--font-serif); font-size: 2rem; color: var(--black); margin-bottom: 10px; }

/* Cookie notice */
.cookie-notice {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 500;
  max-width: 560px; margin: 0 auto;
  background: var(--black); color: var(--white);
  padding: 22px 26px; display: none; align-items: flex-start; gap: 20px;
  border: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap;
}
.cookie-notice.is-visible { display: flex; }
.cookie-notice p { margin: 0; font-size: 0.86rem; color: rgba(255,255,255,0.75); flex: 1 1 260px; }
.cookie-notice .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-notice a { color: var(--white); text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 80px 0 0; margin-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand .wordmark { color: var(--white); margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.92rem; max-width: 30ch; font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.5; }
.footer-col h4 { font-family: var(--font-sans); color: var(--white); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-col a:hover { color: #ff5a60; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 30px 0; font-size: 0.82rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 16px;
}
.footer-bottom-addr { line-height: 1.7; }
.footer-bottom-addr a { color: rgba(255,255,255,0.6); }
.footer-bottom-addr a:hover { color: #ff5a60; }

/* ==========================================================================
   404
   ========================================================================== */
.error-shell { text-align: center; padding: 130px 0 110px; }
.error-code { font-family: var(--font-serif); font-size: clamp(5rem, 13vw, 8.5rem); color: var(--red); line-height: 1; margin-bottom: 12px; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* Mobile nav */
@media (max-width: 900px) {
  .header-row { grid-template-columns: auto 1fr auto; }
  .main-nav { position: fixed; inset: 118px 0 0 0; background: var(--white); display: none; flex-direction: column; padding: 10px clamp(20px,4.5vw,56px) 40px; z-index: 199; overflow-y: auto; }
  body.nav-open .main-nav { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--line); }
  .main-nav a { display: block; padding: 16px 0; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .utility-links a:first-child { display: none; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
  .pick-feature { grid-column: span 2; }
  .pick-medium, .pick-compact { grid-column: span 1; }
  .lifestyle-split, .hl-split, .wellness-row { grid-template-columns: 1fr; }
  .hl-col.media { min-height: 260px; }
  .tech-grid, .shopping-grid, .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .article-with-rail { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 54px 0; }
  .picks-grid, .tech-grid, .shopping-grid, .travel-grid, .related-grid { grid-template-columns: 1fr; }
  .pick-feature { grid-column: span 1; }
  .row-compact { grid-template-columns: 1fr; }
  .row-compact .row-media { order: 0; aspect-ratio: 16/9; }
  .search-result-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .utility-row { font-size: 0.7rem; }
  .hero-side-item { flex-direction: column; }
  .hero-side-media { width: 100%; height: 180px; }
}
