/* ================================================
   İLTER SAGIRSOY — Editorial Design System
   ================================================ */

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

:root {
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --warm-white:   #f5f0e8;
  --gold:         #b8963e;
  --gold-light:   #d4af6a;
  --gold-pale:    #f0e8d0;
  --navy:         #0d1520;
  --navy-mid:     #1e2d42;
  --charcoal:     #252525;
  --gray:         #6a6a6a;
  --gray-light:   #9a9a9a;
  --border:       #ddd8ce;
  --border-light: #eee9e0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:     1200px;
  --content-w: 760px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
p  { font-size: 1.0625rem; color: var(--gray); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.thin-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

/* ─── Layout ─────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.content-container { max-width: var(--content-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(13,21,32,0.08); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  z-index: 301; position: relative;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--navy); transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-hamburger.menu-open span { background: var(--white); }
.nav-mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 300;
  background: var(--navy);
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 2.5rem 3rem;
  gap: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.45);
  padding: 0.65rem 0;
  width: 100%;
  border-bottom: none;
  background: none;
  transition: color 0.2s, padding-left 0.2s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--white); padding-left: 0.35rem; background: none; }
.nav-mobile a.active { color: var(--gold-light); }

/* ─── Hero ───────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1520 0%, #1e2d42 100%);
}
.hero::after {
  content: 'İS';
  position: absolute;
  right: -0.05em; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 30vw;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.hero-eyebrow { color: var(--gold-light); margin-bottom: 1.5rem; }
.hero-eyebrow .thin-line { background: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-meta span { display: flex; align-items: center; gap: 0.5rem; }

/* ─── Featured Article ───────────────────────── */
.featured {
  padding: 5rem 0;
  background: var(--off-white);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.featured-label { margin-bottom: 1.25rem; }
.featured-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.featured-title a { transition: color 0.2s; }
.featured-title a:hover { color: var(--gold); }
.featured-summary {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  color: var(--gray);
}
.featured-meta {
  display: flex; align-items: center; gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.featured-meta .cat-badge { color: var(--gold); font-weight: 500; }
.featured-img {
  aspect-ratio: 4/3;
  background: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem; color: var(--border);
}

/* ─── Button ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--navy); border-color: var(--navy); }
.btn svg { width: 16px; height: 16px; }

/* ─── Section Header ─────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header-row {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  flex-wrap: wrap; gap: 1rem;
}
.section-header-row h2 { margin-top: 0.75rem; }
.view-all {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
  transition: color 0.2s;
}
.view-all:hover { color: var(--navy); }

/* ─── Article Cards ──────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover {
  border-color: var(--gold-pale);
  box-shadow: 0 8px 40px rgba(13,21,32,0.08);
  transform: translateY(-3px);
}
.card-img {
  aspect-ratio: 16/9;
  background: var(--warm-white);
  overflow: hidden;
  flex-shrink: 0;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.card:hover .card-img img { transform: scale(1.03); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--border);
}
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray-light);
}
.card-cat {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  flex: 1;
}
.card-title a { transition: color 0.2s; }
.card-title a:hover { color: var(--gold); }
.card-summary {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-link {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy);
  display: flex; align-items: center; gap: 0.4rem;
  transition: all 0.2s;
  margin-top: auto;
}
.card-link:hover { color: var(--gold); gap: 0.7rem; }

/* ─── Categories Bar ─────────────────────────── */
.cats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--white);
}
.cats-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap;
}
.cat-pill {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  color: var(--gray);
  transition: all 0.2s;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ─── Article Detail ─────────────────────────── */
.article-header { padding: 5rem 0 3rem; background: var(--off-white); }
.article-cat { margin-bottom: 1.25rem; }
.article-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 720px;
}
.article-byline {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.875rem; color: var(--gray-light);
  flex-wrap: wrap;
}
.article-byline .author { color: var(--navy); font-weight: 500; }
.article-featured-img {
  aspect-ratio: 21/9;
  background: var(--warm-white);
  overflow: hidden;
  margin: 3rem 0;
}
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding-bottom: 5rem; }
.article-content {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--charcoal);
  max-width: var(--content-w);
  margin: 0 auto;

  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
}
.article-content p { margin-bottom: 1.5rem; }
.article-content h2, .article-content h3 {
  font-family: var(--font-display);
  margin-top: 2.5rem; margin-bottom: 1rem;
}
.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--warm-white);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-mid);
  line-height: 1.5;
}
.share-row {
  max-width: var(--content-w); margin: 2rem auto 3rem;
  display: flex; align-items: center; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.share-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-light);
}
.share-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: all 0.2s;
  font-size: 0.85rem;
}
.share-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.related-section { background: var(--off-white); padding: 4rem 0; }

/* ─── About Page ─────────────────────────────── */
.about-hero { padding: 6rem 0; background: var(--navy); }
.about-hero .eyebrow { color: var(--gold-light); margin-bottom: 1.25rem; }
.about-hero .thin-line { background: var(--gold-light); }
.about-hero h1 { color: var(--white); margin-bottom: 1rem; }
.about-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
}
.about-body { padding: 5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}
.about-photo {
  aspect-ratio: 3/4;
  background: var(--warm-white);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  font-family: var(--font-display);
  font-size: 5rem; color: var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.about-photo-placeholder small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.about-photo-corner {
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.about-text p { margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.8; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--gray-light); letter-spacing: 0.05em; text-transform: uppercase; }

/* ─── Contact ────────────────────────────────── */
.contact-hero { padding: 5rem 0; background: var(--navy); }
.contact-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.contact-hero p { color: rgba(255,255,255,0.55); max-width: 450px; }
.contact-hero .eyebrow { color: var(--gold-light); margin-bottom: 1.25rem; }
.contact-hero .thin-line { background: var(--gold-light); }
.contact-body { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-light); margin-bottom: 0.25rem;
}
.contact-info-value { font-size: 0.9375rem; color: var(--charcoal); }
.contact-socials { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.85rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  padding: 1rem 1.25rem;
  background: var(--warm-white);
  border: 1px solid var(--gold-pale);
  color: var(--navy);
  font-size: 0.9375rem;
  display: none;
}

/* ─── Articles Page ──────────────────────────── */
.page-hero {
  padding: 5rem 0 4rem;
  background: var(--navy);
  margin-bottom: 0;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 1rem; }
.page-hero .eyebrow { color: var(--gold-light); margin-bottom: 1rem; }
.page-hero .thin-line { background: var(--gold-light); }
.articles-toolbar {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.toolbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  justify-content: space-between;
}
.search-box {
  display: flex; align-items: center;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  flex: 1; min-width: 220px; max-width: 360px;
}
.search-box input {
  flex: 1; padding: 0.7rem 1rem;
  border: none; outline: none;
  font-family: var(--font-body); font-size: 0.9rem;
}
.search-box button {
  padding: 0.7rem 1rem;
  color: var(--gray-light);
  transition: color 0.2s;
}
.search-box button:hover { color: var(--gold); }
.filter-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--gray);
  transition: all 0.2s;
  background: var(--white);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.articles-list-wrap { padding: 3rem 0 5rem; }
.article-list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}
.article-list-item:hover { background: var(--off-white); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; }
.article-list-img {
  aspect-ratio: 1;
  background: var(--warm-white);
  overflow: hidden;
  flex-shrink: 0;
}
.article-list-img img { width: 100%; height: 100%; object-fit: cover; }
.article-list-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; color: var(--border);
}
.article-list-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; font-size: 0.78rem; color: var(--gray-light); }
.article-list-cat { color: var(--gold); font-weight: 500; }
.article-list-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy); line-height: 1.3;
  margin-bottom: 0.6rem; transition: color 0.2s;
}
.article-list-title:hover { color: var(--gold); }
.article-list-summary {
  font-size: 0.9375rem; color: var(--gray); line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.no-results {
  text-align: center; padding: 5rem 2rem;
  color: var(--gray-light); font-family: var(--font-display);
  font-style: italic; font-size: 1.25rem;
}

/* ─── Footer ─────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
}
.footer-brand span { color: var(--gold-light); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-heading {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ─── Admin ──────────────────────────────────── */
.admin-login-page {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.login-card {
  background: var(--white);
  padding: 3rem;
  width: 100%; max-width: 420px;
  position: relative;
}
.login-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.login-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); text-align: center;
  margin-bottom: 0.4rem;
}
.login-logo span { color: var(--gold); }
.login-sub { text-align: center; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 2.5rem; }
.login-error {
  background: #fef2f2; border: 1px solid #fecaca;
  color: #b91c1c; padding: 0.75rem 1rem;
  font-size: 0.875rem; margin-bottom: 1.25rem; display: none;
}

/* Admin Dashboard */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--navy); color: var(--white);
  padding: 0; position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 1.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo span { color: var(--gold-light); }
.sidebar-section-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 1.5rem 1.5rem 0.5rem;
}
.sidebar-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(255,255,255,0.06); color: var(--white);
}
.sidebar-nav a.active { border-left: 2px solid var(--gold-light); }
.sidebar-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-bottom {
  margin-top: auto; padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sidebar-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.sidebar-bottom a:hover { color: var(--white); }
.admin-main { background: var(--off-white); overflow-x: hidden; }
.admin-topbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10;
}
.admin-topbar h1 { font-size: 1.1rem; font-weight: 600; color: var(--navy); font-family: var(--font-body); }
.admin-topbar .user-badge {
  font-size: 0.8rem; color: var(--gray);
  display: flex; align-items: center; gap: 0.5rem;
}
.admin-content { padding: 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--border-light);
  padding: 1.5rem;
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 700; color: var(--navy); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-card-label { font-size: 0.75rem; color: var(--gray-light); letter-spacing: 0.08em; text-transform: uppercase; }
.stat-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.panel-section { background: var(--white); border: 1px solid var(--border-light); margin-bottom: 1.5rem; }
.panel-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}
.panel-header h2 { font-size: 1rem; font-weight: 600; color: var(--navy); font-family: var(--font-body); }
.panel-body { padding: 1.5rem; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.admin-form-group { margin-bottom: 1.25rem; }
.admin-form-group.full { grid-column: 1 / -1; }
.admin-label {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 0.4rem;
}
.admin-input {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
  background: var(--white);
}
.admin-input:focus { border-color: var(--gold); }
.admin-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a6a6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }
textarea.admin-input { resize: vertical; min-height: 200px; }
.admin-checkbox { display: flex; align-items: center; gap: 0.5rem; }
.admin-checkbox input { width: 16px; height: 16px; accent-color: var(--gold); }
.admin-checkbox label { font-size: 0.875rem; color: var(--gray); cursor: pointer; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th {
  text-align: left; padding: 0.75rem 1rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--charcoal);
  vertical-align: middle;
}
.admin-table tr:hover td { background: var(--off-white); }
.admin-table tr:last-child td { border-bottom: none; }
.badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}
.badge-pub { background: #f0fdf4; color: #16a34a; }
.badge-draft { background: #fefce8; color: #ca8a04; }
.badge-feat { background: var(--gold-pale); color: var(--gold); }
.action-btn {
  font-size: 0.75rem; font-weight: 500;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  color: var(--gray);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 0.25rem;
}
.action-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.action-btn.danger:hover { background: #dc2626; border-color: #dc2626; }
.admin-alert {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  display: none;
}
.admin-alert.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; }
.admin-alert.error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.admin-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.admin-tab {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--gray); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.admin-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; }
.cat-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  font-size: 0.8rem; color: var(--charcoal);
  margin: 0.25rem;
}
.cat-tag button {
  color: var(--gray-light); font-size: 1rem; line-height: 1;
  transition: color 0.2s;
}
.cat-tag button:hover { color: #dc2626; }

/* ─── Auth Modal ─────────────────────────────── */
.auth-btn {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  color: var(--gray);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-btn:hover, .auth-btn.primary {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.auth-btn.primary { margin-left: .4rem; }
.user-chip {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; color: var(--gray);
}
.user-chip .uname { font-weight: 500; color: var(--navy); }
.user-chip .logout-link {
  font-size: .72rem; color: var(--gray-light);
  text-decoration: underline; cursor: pointer;
  transition: color .2s;
}
.user-chip .logout-link:hover { color: var(--navy); }
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(13,21,32,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: var(--white);
  width: 100%; max-width: 420px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 1.25rem; color: var(--gray-light);
  cursor: pointer; transition: color .2s;
  line-height: 1;
}
.modal-close:hover { color: var(--navy); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--navy); margin-bottom: .4rem;
}
.modal-sub {
  font-size: .82rem; color: var(--gray-light);
  margin-bottom: 1.75rem;
}
.modal-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.modal-tab {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .6rem 1.25rem;
  color: var(--gray-light); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.modal-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.modal-error {
  background: #fef2f2; border: 1px solid #fecaca;
  color: #b91c1c; padding: .65rem .9rem;
  font-size: .82rem; margin-bottom: 1rem; display: none;
}
.modal-success {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  color: #15803d; padding: .65rem .9rem;
  font-size: .82rem; margin-bottom: 1rem; display: none;
}

/* ─── Comments ───────────────────────────────── */
.comments-section {
  padding: 4rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.comments-header { margin-bottom: 2rem; }
.comment-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}
.comment-form-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1.25rem;
}
.comment-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.comment-list { display: flex; flex-direction: column; gap: 1.25rem; }
.comment-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
  position: relative;
}
.comment-item::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold-pale);
}
.comment-meta {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .6rem;
  font-size: .78rem; color: var(--gray-light);
}
.comment-name { font-weight: 600; color: var(--navy); font-size: .875rem; }
.comment-body { font-size: .9375rem; line-height: 1.7; color: var(--charcoal); }
.comment-empty {
  text-align: center; padding: 2.5rem;
  font-style: italic; color: var(--gray-light);
  font-family: var(--font-display);
}

/* ─── Utility ────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-gray { color: var(--gray); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }

/* ─── Animations ─────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s var(--ease) forwards; }
.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ─── Responsive ─────────────────────────────── */

/* Prevent horizontal overflow globally */
html { overflow-x: clip; }
body { overflow-x: hidden; }

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-img { order: -1; aspect-ratio: 16/7; }
  .about-grid { grid-template-columns: 260px 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .admin-layout { grid-template-columns: 200px 1fr; }
}

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

  /* Hero */
  .hero { padding: 4rem 0 3.5rem; }
  .hero::after { display: none; }
  .hero-meta { gap: 1.25rem; flex-wrap: wrap; }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .section-alt { padding: 3.5rem 0; }

  /* Articles grid */
  .articles-grid { grid-template-columns: 1fr; }

  /* Featured */
  .featured { padding: 3rem 0; }
  .featured-grid { gap: 2rem; }
  .featured-img { aspect-ratio: 16/8; }
  .featured-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { aspect-ratio: 4/5; max-height: 480px; }
  .about-photo img { object-position: center top; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-body { padding: 3rem 0; }
  .about-hero { padding: 4rem 0; }

  /* Contact */
  .contact-hero { padding: 3.5rem 0; }
  .contact-body { padding: 3rem 0; }
  .contact-grid { gap: 2.5rem; }

  /* Article detail */
  .article-header { padding: 3rem 0 2rem; }
  .article-byline { gap: 0.75rem; flex-wrap: wrap; }
  .article-content { font-size: 1rem; }
  .share-row { gap: 0.5rem; padding-top: 1.5rem; }
  .share-btn { width: 34px; height: 34px; font-size: 0.8rem; }

  /* Articles list page */
  .page-hero { padding: 3.5rem 0 3rem; }
  .articles-list-wrap { padding: 2rem 0 4rem; }
  .article-list-item { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.75rem 0; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-desc { max-width: 100%; }
  .footer { padding: 3rem 0 1.5rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Admin */
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed; left: -240px; z-index: 200;
    height: 100vh; width: 240px;
    transition: left 0.3s var(--ease);
  }
  .admin-sidebar.open { left: 0; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-table { font-size: 0.8rem; }
  .admin-table th:nth-child(3),
  .admin-table td:nth-child(3) { display: none; }
  .admin-content { padding: 1.25rem; }

  /* Mobile nav auth — styled for dark overlay */
  .mob-auth-bar {
    display: flex; gap: 1rem;
    padding: 2.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1.5rem;
    background: none;
    width: 100%;
  }
  .mob-auth-bar .auth-btn {
    flex: 1; text-align: center; padding: 0.75rem 1rem;
    font-size: 0.75rem; letter-spacing: 0.12em;
    border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
  }
  .mob-auth-bar .auth-btn.primary {
    background: var(--gold); border-color: var(--gold); color: var(--navy);
  }
  .mob-auth-user {
    display: flex; align-items: center; justify-content: space-between;
    padding: 2rem 0 0; margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem; color: rgba(255,255,255,0.55);
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Containers */
  .container, .content-container { padding: 0 1.25rem; }

  /* Hero */
  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-meta { font-size: 0.72rem; gap: 0.75rem; }
  .hero-divider { margin-bottom: 1.5rem; }

  /* Featured */
  .featured-summary { font-size: 0.9375rem; }
  .featured-meta { flex-wrap: wrap; gap: 0.6rem; font-size: 0.75rem; }

  /* About */
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .stat-num { font-size: 2rem; }
  .about-text p { font-size: 0.9375rem; }
  .about-hero { padding: 3rem 0; }
  .about-hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* Contact */
  .contact-hero { padding: 2.5rem 0; }
  .contact-info-item { gap: 0.75rem; }
  .contact-icon { width: 36px; height: 36px; font-size: 0.875rem; }
  .contact-socials { gap: 0.6rem; }
  .social-btn { width: 38px; height: 38px; }

  /* Article detail */
  .article-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .article-body { padding-bottom: 3rem; }
  .comments-section { padding: 3rem 0; }
  .comment-form-row { grid-template-columns: 1fr; }
  .comment-form-wrap { padding: 1.25rem; }

  /* Articles page */
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* Admin */
  .stats-grid { grid-template-columns: 1fr; }
  .admin-content { padding: 1rem; }
  .stat-card { padding: 1.25rem; }
  .stat-card-num { font-size: 1.75rem; }

  /* Footer */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-top { gap: 1.5rem; }
  .footer-brand { font-size: 1.25rem; }

  /* Buttons */
  .btn { padding: 0.75rem 1.5rem; font-size: 0.75rem; }
  .auth-btn { padding: 0.4rem 0.75rem; font-size: 0.72rem; }

  /* Nav */
  .nav-inner { height: 60px; }
  .nav-logo { font-size: 1.1rem; }

  /* Modal */
  .modal-card { padding: 1.75rem 1.5rem; }
}

@media (max-width: 360px) {
  .container, .content-container { padding: 0 1rem; }
  .hero h1 { font-size: 1.9rem; }
  .about-stats { grid-template-columns: 1fr; }
  .al-filter-btn { padding: 1rem 1rem; font-size: 0.65rem; }
}

/* ─── Social Media Section ───────────────────── */
.social-section {
  background: var(--navy);
  padding: 5rem 0;
}
.social-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.social-section-header h2 {
  color: var(--white);
  margin-top: 0.75rem;
}
.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.social-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.social-card.instagram::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.tiktok::before   { background: linear-gradient(90deg, #69C9D0, #010101, #EE1D52); }
.social-card.youtube::before  { background: #ff0000; }
.social-card:hover {
  border-color: rgba(184,150,62,0.3);
  transform: translateY(-3px);
}
.social-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-platform-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-platform-icon.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-platform-icon.tiktok   { background: #010101; }
.social-platform-icon.youtube  { background: #ff0000; }
.social-platform-icon svg { width: 24px; height: 24px; fill: #fff; }
.social-platform-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.social-platform-handle {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 0.2rem;
}
.social-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
}
.social-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
}
.social-follow-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
/* ── YouTube video list ── */
.yt-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.yt-video-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem;
  border-radius: 3px;
  transition: background 0.18s;
  text-decoration: none;
}
.yt-video-item:hover { background: rgba(255,255,255,0.05); }
.yt-thumb {
  width: 80px;
  height: 52px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.07);
}
.yt-video-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-video-date {
  font-size: 0.7rem;
  color: var(--gray-light);
  margin-top: 0.25rem;
}
.yt-placeholder {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  padding: 1rem 0;
  text-align: center;
  flex: 1;
}
/* ── Instagram & TikTok preview grid ── */
.social-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  flex: 1;
}
.social-preview-cell {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .social-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .social-section { padding: 3rem 0; }
  .social-section-header { margin-bottom: 2.5rem; }
  .social-card { padding: 1.5rem; }
  .social-cards { max-width: 100%; gap: 1rem; }
}

/* ═══════════════════════════════════════════════
   PREMIUM MOBILE OVERHAUL
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hero: editorial, breathable ── */
  .hero { padding: 5rem 0 4rem; }
  .hero-eyebrow { margin-bottom: 1.5rem; }
  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .hero-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 100%;
    color: var(--gray);
  }
  .hero-meta {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    gap: 1.5rem;
  }
  .hero-divider { width: 60px; margin: 1.75rem 0; }

  /* ── Featured article: full editorial panel ── */
  .featured { padding: 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
  .featured .container { padding: 0; }
  .featured-grid {
    display: block;
    padding: 2.5rem 1.5rem 3rem;
    position: relative;
  }
  .featured-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }
  .featured-label { margin-bottom: 1.25rem; }
  .featured-title {
    font-size: clamp(1.55rem, 5.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }
  .featured-title a { color: var(--navy); }
  .featured-meta {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
  }
  .featured-summary {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 2rem;
  }

  /* ── Section headings ── */
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.6rem, 5vw, 2rem); }

  /* ── Article cards ── */
  .articles-grid { gap: 0; border-top: 1px solid var(--border-light); }
  .article-card {
    border-bottom: 1px solid var(--border-light);
    border-left: none; border-right: none;
    padding: 1.75rem 0;
    background: var(--white);
  }
  .card-body { padding: 0 1.5rem; }
  .card-meta { margin-bottom: 0.6rem; }
  .card-title { font-size: 1.1rem; line-height: 1.3; }
  .card-excerpt { font-size: 0.875rem; line-height: 1.65; }
  .card-footer { padding: 0 1.5rem; margin-top: 1rem; }

  /* ── Article list items ── */
  .article-list-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  .article-list-meta { font-size: 0.7rem; }
  .article-list-title { font-size: 1rem; line-height: 1.35; }

  /* ── About page ── */
  .about-hero { padding: 4rem 0 3rem; text-align: left; }
  .about-hero h1 { font-size: clamp(2.2rem, 7vw, 2.8rem); letter-spacing: -0.02em; }
  .about-body { padding: 3rem 0; }
  .about-grid { gap: 3rem; }
  .about-photo { border: 4px solid var(--white); box-shadow: 0 12px 40px rgba(13,21,32,0.12); }
  .about-text p { font-size: 0.9375rem; line-height: 1.8; }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    margin-top: 2.5rem;
    overflow: hidden;
  }
  .about-stats > div {
    padding: 1.25rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border-light);
  }
  .about-stats > div:last-child { border-right: none; }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.08em; }

  /* ── Contact page ── */
  .contact-hero { padding: 3.5rem 0 2.5rem; }
  .contact-hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); letter-spacing: -0.02em; }
  .contact-grid { gap: 3rem; }
  .contact-info-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  .contact-info-item:first-child { padding-top: 0; }
  .contact-socials { gap: 0.75rem; margin-top: 0.5rem; }
  .social-btn { width: 44px; height: 44px; }

  /* ── Footer ── */
  .footer { padding: 3rem 0 2rem; }
  .footer-top { gap: 2rem; }
  .footer-brand { font-size: 1.3rem; }
  .footer-desc { font-size: 0.875rem; margin-top: 0.5rem; }
  .footer-bottom { font-size: 0.75rem; }

  /* ── Social media section ── */
  .social-section-header h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
  .social-section { padding: 3.5rem 0; }

  /* ── Page transitions: fade-in more visible ── */
  .fade-in { animation-duration: 0.5s; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 4.5rem 0 3.5rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-meta { gap: 1rem; }

  /* Nav */
  .nav-inner { height: 60px; }
  .nav-logo { font-size: 1.05rem; }

  /* Featured */
  .featured-grid { padding: 2rem 1.25rem 2.5rem; }
  .featured-title { font-size: clamp(1.4rem, 6vw, 1.75rem); }

  /* About stats: horizontal scroll strip */
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .about-stats > div { min-width: 90px; }

  /* Buttons */
  .btn { padding: 0.8rem 1.75rem; font-size: 0.72rem; letter-spacing: 0.1em; }

  /* Contact form */
  .form-group { margin-bottom: 1.25rem; }
  .form-control { font-size: 16px; /* prevent iOS zoom */ }
  textarea.form-control { min-height: 120px; }

  /* Cards */
  .card-body { padding: 0 1.25rem; }
  .card-footer { padding: 0 1.25rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}
