/* ============================================================
   MITORAHUB — Design System
   mitorahub.com | Hidden Japan for the World
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --black:       #0d0d0d;
  --white:       #fafaf8;
  --gold:        #c9a84c;
  --gold-dark:   #a8893a;
  --gold-light:  #f0e4b8;
  --cream:       #f5f0e8;
  --dark:        #1a1a1a;
  --text:        #2a2a2a;
  --text-mid:    #555555;
  --text-muted:  #888888;
  --border:      #e8e0d0;
  --bg-soft:     #f8f5f0;
  --green-dark:  #1a2e1a;
  --radius:      4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.14);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max:         1200px;
  --nav-h:       72px;
  --transition:  0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Typography ──────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }
.display {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
}
.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 600;
}
.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.3;
  font-weight: 600;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
.btn-outline {
  border: 1.5px solid currentColor;
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.btn-outline-dark {
  border: 1.5px solid var(--text);
  color: var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-arrow::after { content: ' →'; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--black) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine { 0%,100% { opacity:0.3; transform:scaleY(0.5); } 50% { opacity:1; transform:scaleY(1); } }

/* ── Section Headers ─────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin-top: 16px; }
.section-header.center { text-align: center; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ── Category Cards ──────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.cat-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}
.cat-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: background var(--transition);
}
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%); }
.cat-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.cat-card-icon { font-size: 1.75rem; margin-bottom: 8px; }
.cat-card-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.cat-card-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}
.cat-card-arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateX(0); }

/* ── Article Cards ───────────────────────────────────────── */
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.article-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.article-card:hover .article-card-img::after { background: rgba(0,0,0,0.08); }
.article-card-body { padding: 24px; }
.article-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.article-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--dark);
}
.article-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.article-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}
.article-card-link:hover { text-decoration: underline; }

/* ── Featured Section ────────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2px;
  height: 540px;
}
.featured-main, .featured-side { position: relative; overflow: hidden; }
.featured-side { display: grid; grid-template-rows: 1fr 1fr; gap: 2px; }
.featured-item {
  position: relative;
  overflow: hidden;
  background: var(--black);
  cursor: pointer;
}
.featured-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.6s;
}
.featured-item:hover .featured-item-bg { opacity: 0.5; transform: scale(1.05); }
.featured-item-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.featured-main .featured-item-body { padding: 40px; }
.featured-item-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
  border-radius: 2px;
}
.featured-item-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
.featured-main .featured-item-title { font-size: 2rem; }
.featured-side .featured-item-title { font-size: 1.2rem; }
.featured-item-meta { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* ── Banner / CTA Strip ──────────────────────────────────── */
.cta-strip {
  background: var(--green-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-text .eyebrow { margin-bottom: 12px; }
.cta-strip-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-strip-text p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 480px; }
.cta-strip-action { flex-shrink: 0; display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Guide Cards ─────────────────────────────────────────── */
.guide-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: var(--black);
  cursor: pointer;
}
.guide-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  transition: opacity 0.4s, transform 0.6s;
}
.guide-card:hover .guide-card-bg { opacity: 0.45; transform: scale(1.06); }
.guide-card-body {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
}
.guide-card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  width: fit-content;
}
.guide-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.guide-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 20px;
}
.guide-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.guide-card:hover .guide-card-link { gap: 14px; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 3px solid var(--gold);
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-from { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }

/* ── Stats ───────────────────────────────────────────────── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* ── LP Sections ─────────────────────────────────────────── */
.lp-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,46,26,0.75) 100%);
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 680px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img { height: 240px; background-size: cover; background-position: center; }
.product-card-body { padding: 28px; }
.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 20px; }
.product-card-price { font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 16px; }
.product-card-price small { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }

/* ── About ───────────────────────────────────────────────── */
.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Page Hero (category/guide pages) ───────────────────── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: transform 8s ease;
}
.page-hero.loaded .page-hero-bg { transform: scale(1.03); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 70%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px 56px;
  width: 100%;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter {
  background: var(--cream);
  padding: 72px 0;
  border-top: 3px solid var(--gold);
}
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter h2 { margin-bottom: 12px; }
.newsletter p { color: var(--text-mid); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 0; border-radius: 2px; overflow: hidden; box-shadow: var(--shadow); }
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-right: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold);
  color: var(--black);
  padding: 16px 28px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-dark); }
.newsletter-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.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.08);
}
.footer-brand-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--gold); }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Utilities ───────────────────────────────────────────── */
.bg-dark { background: var(--dark); color: var(--white); }
.bg-black { background: var(--black); color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-soft { background: var(--bg-soft); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.divider { width: 48px; height: 2px; background: var(--gold); }
.divider-center { margin: 0 auto; }
.tag-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tag-food { background: #fff3e0; color: #e65100; }
.tag-travel { background: #e3f2fd; color: #1565c0; }
.tag-culture { background: #f3e5f5; color: #6a1b9a; }
.tag-property { background: #e8f5e9; color: #2e7d32; }

/* ── Animations ──────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid { grid-template-columns: 1fr; height: auto; }
  .featured-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .featured-main { height: 380px; }
  .featured-side > * { height: 220px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card { height: 260px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.5rem; }
  .nav-hamburger { display: flex; z-index: 1001; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-action { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-md); overflow: visible; }
  .newsletter-form input { border-right: 1.5px solid var(--border); border-radius: var(--radius); }
  .newsletter-form button { border-radius: var(--radius); padding: 14px; }
  .stats-row { gap: 40px; }
  .featured-side { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}
