/* ============================================================
   STYLE.CSS — Main Stylesheet
   Duration Blog | Clean Editorial Magazine Style
   ============================================================ */

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

/* === CSS Variables === */
:root {
  --white: #ffffff;
  --off-white: #f9f8f5;
  --beige: #f2ede6;
  --beige-mid: #e8e0d5;
  --gray-light: #ede9e3;
  --gray-mid: #b8b0a6;
  --gray-dark: #7a736c;
  --charcoal: #2c2825;
  --black: #1a1714;
  --accent: #1a1714;
  --accent-warm: #c4793a;
  --accent-warm-light: #f5ede4;
  --tag-blue: #e8f0f8;
  --tag-blue-text: #2d5a8e;
  --tag-green: #e6f2ec;
  --tag-green-text: #2a6b4a;
  --tag-red: #f5e8e8;
  --tag-red-text: #8b2d2d;
  --tag-purple: #ede8f5;
  --tag-purple-text: #4a2d8b;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --nav-height: 70px;
  --max-width: 1200px;
  --transition: 0.25s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === Typography === */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.25; color: var(--black); }
p { margin-bottom: 1rem; }

/* === Layout === */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--accent-warm); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-dark);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--black); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover { background: var(--charcoal) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all var(--transition);
}

/* ============================================================
   TOP TICKER (mini article strip)
   ============================================================ */
.top-ticker {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ticker-inner::-webkit-scrollbar { display: none; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity var(--transition);
}

.ticker-item:hover { opacity: 0.7; }

.ticker-item img {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border-radius: 2px;
}

.ticker-meta { font-size: 0.6875rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.ticker-title { font-size: 0.8125rem; font-weight: 500; color: var(--charcoal); line-height: 1.3; max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero:hover img { transform: scale(1.02); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-warm);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
  color: var(--white);
}

.hero-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 600px;
}

.hero-meta { font-size: 0.75rem; color: rgba(255,255,255,0.65); }
.hero-meta span { margin: 0 6px; opacity: 0.5; }

/* ============================================================
   TODAY'S HIGHLIGHT SECTION
   ============================================================ */
.highlight-section { padding: 48px 0; border-bottom: 1px solid var(--gray-light); }
.highlight-section h2 { font-family: var(--font-heading); font-size: 1.625rem; margin-bottom: 28px; }

.highlight-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

/* Featured highlight card (left, large) */
.highlight-main {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: var(--off-white);
  border-radius: 2px;
  cursor: pointer;
  transition: box-shadow var(--transition);
}

.highlight-main:hover { box-shadow: var(--shadow-md); }

.highlight-main img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 2px;
}

.highlight-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 1px;
  margin-bottom: 8px;
}

.tag-tech { background: var(--tag-blue); color: var(--tag-blue-text); }
.tag-wellness { background: var(--tag-green); color: var(--tag-green-text); }
.tag-entertainment { background: var(--tag-red); color: var(--tag-red-text); }
.tag-lifestyle { background: var(--tag-purple); color: var(--tag-purple-text); }

.highlight-main-date { font-size: 0.6875rem; color: var(--gray-mid); margin-bottom: 6px; }
.highlight-main-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.highlight-main:hover .highlight-main-title { color: var(--accent-warm); }

.highlight-main-excerpt { font-size: 0.8125rem; color: var(--gray-dark); line-height: 1.6; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 12px;
  transition: gap var(--transition);
}
.read-more:hover { gap: 8px; color: var(--accent-warm); }

/* Right side: small cards */
.highlight-side { display: flex; flex-direction: column; gap: 0; }

.highlight-small {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
  cursor: pointer;
  transition: opacity var(--transition);
}
.highlight-small:last-child { border-bottom: none; }
.highlight-small:hover { opacity: 0.75; }

.highlight-small img {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 2px;
}

.highlight-small-date { font-size: 0.625rem; color: var(--gray-mid); margin-bottom: 4px; }
.highlight-small-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
}

/* ============================================================
   BROWSE BY TOPIC
   ============================================================ */
.topics-section { padding: 48px 0; background: var(--off-white); border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.topics-section h2 { font-family: var(--font-heading); font-size: 1.625rem; margin-bottom: 24px; }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.topic-card {
  position: relative;
  height: 120px;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.topic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.topic-card:hover img { transform: scale(1.06); }

.topic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  transition: background var(--transition);
}
.topic-card:hover .topic-overlay { background: rgba(0,0,0,0.3); }

.topic-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   LATEST POSTS GRID
   ============================================================ */
.latest-section { padding: 56px 0; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.section-header h2 { font-family: var(--font-heading); font-size: 1.625rem; }
.view-all {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-mid);
  padding-bottom: 1px;
  transition: color var(--transition);
}
.view-all:hover { color: var(--black); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  cursor: pointer;
  transition: transform var(--transition);
}
.post-card:hover { transform: translateY(-3px); }

.post-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 16px;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-img img { transform: scale(1.04); }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.post-card-date { font-size: 0.6875rem; color: var(--gray-mid); }

.post-card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.post-card:hover .post-card-title { color: var(--accent-warm); }

.post-card-excerpt { font-size: 0.8125rem; color: var(--gray-dark); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 72px 0;
  background: var(--black);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all var(--transition);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--beige); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  margin-left: 12px;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  padding: 56px 0;
  background: var(--beige);
  border-top: 1px solid var(--beige-mid);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  margin-bottom: 8px;
}
.newsletter-text p { font-size: 0.9375rem; color: var(--gray-dark); margin: 0; }

.newsletter-form { display: flex; gap: 10px; }

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.875rem;
  border: 1px solid var(--beige-mid);
  background: var(--white);
  border-radius: 1px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input:focus { border-color: var(--charcoal); }
.newsletter-input::placeholder { color: var(--gray-mid); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  white-space: nowrap;
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--accent-warm); }

.footer-desc { font-size: 0.8125rem; line-height: 1.7; margin-bottom: 0; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 0.75rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
}

.page-header h1 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 8px; }
.page-header p { font-size: 1rem; color: var(--gray-dark); }

.filter-bar {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.editorial-grid-dynamic {
  grid-template-columns: repeat(2, 1fr);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--black);
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-card .read-more {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.blog-card .read-more:hover {
  color: var(--charcoal);
}

@media (max-width: 1024px) {
  .editorial-grid-dynamic {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BLOG POST DETAIL
   ============================================================ */
.post-header { padding: 48px 0 0; }
.post-header-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.post-category-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}

.post-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-dark);
  margin-bottom: 36px;
}

.post-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 56px;
}

.post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 56px;
}

.post-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.article-featured-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 24px 0;
}

.article-content {
  max-width: 760px;
  margin-top: 20px;
}

.article-content img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  margin: 24px 0;
}

.post-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.post-body em { font-style: italic; }

.related-section {
  background: var(--off-white);
  padding: 56px 0;
  border-top: 1px solid var(--gray-light);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  padding: 64px 0;
}

.contact-info h3 { font-family: var(--font-heading); font-size: 1.375rem; margin-bottom: 20px; }
.contact-info p { font-size: 0.9375rem; color: var(--gray-dark); margin-bottom: 28px; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-detail-item { font-size: 0.875rem; color: var(--charcoal); }
.contact-detail-item strong { display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-mid); font-weight: 600; margin-bottom: 2px; }

.contact-form { background: var(--off-white); padding: 40px; border-radius: 2px; }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.375rem; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 6px; }

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  border: 1px solid var(--gray-light);
  background: var(--white);
  border-radius: 1px;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus { border-color: var(--charcoal); }
.form-textarea { min-height: 140px; resize: vertical; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.consent-row input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--black); cursor: pointer; }
.consent-row label { font-size: 0.8125rem; color: var(--gray-dark); line-height: 1.5; cursor: pointer; }
.consent-row a { color: var(--charcoal); text-decoration: underline; }

.btn-submit {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.btn-submit:hover { background: var(--charcoal); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--off-white);
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-light);
}

.about-hero-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.about-hero h1 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 20px; line-height: 1.15; }
.about-hero p { font-size: 1.125rem; color: var(--gray-dark); line-height: 1.7; }

.about-body { max-width: 720px; margin: 0 auto; padding: 64px 24px; }
.about-body h2 { font-family: var(--font-heading); font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.about-body p { font-size: 1.0625rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 1.5rem; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.value-card {
  background: var(--off-white);
  padding: 28px 24px;
  border-radius: 2px;
  border-top: 3px solid var(--black);
}

.value-card h3 { font-family: var(--font-heading); font-size: 1.125rem; margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--gray-dark); margin: 0; line-height: 1.6; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-body { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-body h1 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 8px; }
.legal-body .legal-date { font-size: 0.875rem; color: var(--gray-mid); margin-bottom: 40px; }
.legal-body h2 { font-family: var(--font-heading); font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal-body p { font-size: 0.9375rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 1rem; }
.legal-body ul { padding-left: 20px; margin-bottom: 1rem; list-style: disc; }
.legal-body ul li { font-size: 0.9375rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 6px; }

/* ============================================================
   MODAL POPUP
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  width: 100%;
  max-width: 460px;
  border-radius: 2px;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--gray-mid);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--black); }

.modal h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; }
.modal p { font-size: 0.875rem; color: var(--gray-dark); margin-bottom: 24px; }

.modal-form .form-group { margin-bottom: 16px; }
.modal-form .form-input { border: 1px solid var(--gray-light); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 8000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-text { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.cookie-text a { color: var(--white); text-decoration: underline; }

.cookie-btn {
  background: var(--white);
  color: var(--black);
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 1px;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cookie-btn:hover { background: var(--beige); }

/* ============================================================
   SUCCESS TOAST
   ============================================================ */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.875rem;
  border-radius: 2px;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-lg);
}

.toast.visible { transform: translateX(0); }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 960px) {
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-side { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-full { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
  :root { --nav-height: 60px; }

  .nav-links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 16px 0; border-bottom: 1px solid var(--gray-light); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 12px 24px 0; text-align: center; }
  .nav-hamburger { display: flex; }

  .hero { height: 360px; }
  .hero-title { font-size: 1.375rem; }

  .highlight-main { grid-template-columns: 1fr; }
  .highlight-main img { width: 100%; height: 180px; }
  .highlight-side { grid-template-columns: 1fr; }

  .posts-grid { grid-template-columns: 1fr; }
  .blog-grid-full { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .newsletter-form { flex-direction: column; }

  .post-title { font-size: 1.75rem; }
  .about-hero h1 { font-size: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 1.625rem; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }

  .section { padding: 48px 0; }
}
