/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-body); color: var(--dark);
  background: var(--light); line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
a:hover { color: var(--blush-dark); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ─── TOP BAR ──────────────────────────────────────────────────── */
.topbar { background: var(--champagne); border-bottom: 1px solid var(--champagne-mid); padding: 7px 0; }
.topbar-inner { max-width: var(--site-max); margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.topbar-links a { font-size: 11px; color: var(--muted); margin-right: 18px; letter-spacing: .1em; text-transform: uppercase; }
.topbar-links a:hover { color: var(--blush-dark); }
.topbar-date { font-size: 11px; color: var(--muted); letter-spacing: .08em; font-style: italic; font-family: var(--font-display); }

/* ─── HEADER — Centered logo, hamburger left, search right ──────── */
.site-header { background: var(--white); padding: 24px 0 0; border-bottom: none; }
.header-inner {
  max-width: var(--site-max); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 60px 1fr 60px;
  align-items: center; gap: 0;
}
.header-left  { display: flex; align-items: center; }
.header-center { display: flex; justify-content: center; align-items: center; }
.header-right { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }

/* Logo */
.site-logo {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 300;
  color: var(--dark); letter-spacing: .06em; line-height: 1;
}
.site-logo:hover { color: var(--blush-dark); }
.site-logo .logo-tagline {
  font-family: var(--font-body); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--muted); font-weight: 400; margin-top: 3px;
}
.logo-icon { width: 44px; height: 44px; background: var(--blush); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.site-logo.custom-logo-wrap { flex-direction: row; }
.site-logo.custom-logo-wrap img { width: auto; height: 60px; max-width: 240px; object-fit: contain; }

/* Search toggle */
.header-search-toggle { background: none; border: none; cursor: pointer; color: var(--muted); padding: 4px; display: flex; align-items: center; transition: color .2s; }
.header-search-toggle:hover { color: var(--blush-dark); }
.header-search-toggle svg { width: 17px; height: 17px; }

/* Slide-down search bar */
.header-search-bar {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.header-search-bar.open { max-height: 60px; }
.header-search-bar form {
  max-width: var(--site-max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 12px; height: 52px;
}
.header-search-bar input {
  flex: 1; border: none; outline: none; font-size: 14px;
  font-family: var(--font-display); color: var(--dark);
  letter-spacing: .04em; font-style: italic;
  background: transparent; border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.header-search-bar input:focus { border-bottom-color: var(--blush); }
.header-search-bar input::placeholder { color: var(--muted); }
.header-search-bar button { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.header-search-bar button:hover { color: var(--blush-dark); }

/* Hamburger */
.hamburger { background: none; border: none; cursor: pointer; padding: 6px; display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--dark); border-radius: 1px; transition: all .3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── NAV — centered links ──────────────────────────────────────── */
.site-nav {
  background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-top: 0; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(44,36,32,.04);
}
.nav-inner { max-width: var(--site-max); margin: 0 auto; padding: 0 20px; display: flex; justify-content: center; }
.nav-inner a {
  display: block; padding: 12px 18px; font-size: 10.5px; font-weight: 600;
  color: var(--mid); letter-spacing: .16em; text-transform: uppercase;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.nav-inner a:hover, .nav-inner a.active, .nav-inner a.current-menu-item { color: var(--dark); border-bottom-color: var(--blush); }

/* ─── Side drawer (mobile) ──────────────────────────────────────── */
.nav-drawer {
  position: fixed; top: 0; left: 0; width: 280px; height: 100vh;
  background: var(--white); z-index: 9999; padding: 56px 32px 32px;
  display: flex; flex-direction: column; gap: 0; overflow-y: auto;
  box-shadow: 4px 0 40px rgba(44,36,32,.15);
  transform: translateX(-100%); transition: transform .35s ease;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { display: block; padding: 13px 0; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); border-bottom: 1px solid var(--border); }
.nav-drawer a:hover { color: var(--blush-dark); }
.nav-drawer-close { position: absolute; top: 18px; right: 20px; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--muted); line-height: 1; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(44,36,32,.25); z-index: 9998; }
.nav-overlay.open { display: block; }

/* ─── TICKER ────────────────────────────────────────────────────── */
.ticker-bar { background: var(--blush-light); border-bottom: 1px solid var(--border); padding: 10px 0; }
.ticker-inner { max-width: var(--site-max); margin: 0 auto; padding: 0 20px; display: flex; gap: 28px; }
.ticker-item { display: flex; align-items: center; gap: 12px; min-width: 200px; flex: 1; }
.ticker-thumb { width: 52px; height: 52px; flex-shrink: 0; background: var(--champagne); border-radius: 50%; overflow: hidden; }
.ticker-item p { font-size: 12px; color: var(--mid); line-height: 1.4; font-style: italic; font-family: var(--font-display); }
.ticker-item p strong { display: block; font-size: 10px; color: var(--blush-dark); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; font-style: normal; font-family: var(--font-body); }

/* ─── WRAPPER ──────────────────────────────────────────────────── */
.site-wrap { max-width: var(--site-max); margin: 0 auto; padding: 0 20px; }

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero { padding: 32px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 300px 280px; gap: 0 28px; }
.hero-main { grid-row: 1 / 3; grid-column: 1 / 2; }
.hero-main .post-thumb { height: 380px; margin-bottom: 20px; background: var(--champagne); overflow: hidden; position: relative; }
.hero-main .post-thumb img { height: 100%; transition: transform .5s; }
.hero-main:hover .post-thumb img { transform: scale(1.03); }
.hero-main .cat-pill { position: absolute; bottom: 16px; left: 16px; background: rgba(255,255,255,.92); color: var(--blush-dark); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; }
.hero-main .post-title { font-family: var(--font-display); font-size: 2.1rem; font-weight: 400; line-height: 1.2; margin-bottom: 10px; letter-spacing: .01em; }
.hero-main .post-title a:hover { color: var(--blush-dark); }
.hero-main .post-excerpt { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.hero-main .read-more { display: inline-block; padding: 9px 24px; border: 1px solid var(--dark); color: var(--dark); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: all .25s; }
.hero-main .read-more:hover { background: var(--dark); color: var(--white); }
.hero-mid { grid-column: 2 / 3; display: flex; flex-direction: column; gap: 20px; }
.hero-right { grid-column: 3 / 4; display: flex; flex-direction: column; gap: 20px; }

/* ─── CARDS ─────────────────────────────────────────────────────── */
.card { display: flex; flex-direction: column; background: var(--white); transition: box-shadow .3s, transform .3s; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card .card-thumb { overflow: hidden; background: var(--champagne); flex-shrink: 0; position: relative; }
.card .card-thumb img { transition: transform .4s; }
.card:hover .card-thumb img { transform: scale(1.05); }
.card .card-body { padding: 14px 0 0; }
.card .card-date { font-size: 10px; color: var(--muted); display: block; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 5px; }
.card .card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; line-height: 1.3; margin-bottom: 6px; letter-spacing: .01em; }
.card .card-title a:hover { color: var(--blush-dark); }
.card .card-excerpt { font-size: 13px; color: var(--mid); line-height: 1.65; }
.card .card-cat { display: inline-block; font-size: 10px; font-weight: 600; color: var(--blush-dark); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.card--medium .card-thumb { height: 200px; }
.card--small { flex-direction: row; gap: 14px; background: transparent; box-shadow: none; }
.card--small:hover { box-shadow: none; transform: none; }
.card--small .card-thumb { width: 90px; height: 90px; flex-shrink: 0; border-radius: 50%; }
.card--small .card-body { padding: 0; display: flex; flex-direction: column; justify-content: center; }
.card--small .card-title { font-size: .9rem; }
.card--list { flex-direction: row; gap: 14px; background: transparent; box-shadow: none; }
.card--list:hover { box-shadow: none; transform: none; }
.card--list .card-thumb { width: 110px; height: 80px; flex-shrink: 0; }
.card--list .card-body { padding: 0; }
.card--list .card-title { font-size: .9rem; }
.card--featured { position: relative; }
.card--featured .card-thumb { height: 200px; }
.card--featured .badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--blush-dark); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 10px; border-radius: 20px; }

/* ─── SECTION HEADER ────────────────────────────────────────────── */
.section-header { display: flex; align-items: center; gap: 16px; padding-bottom: 12px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.section-header::before { content: ''; display: block; width: 28px; height: 1px; background: var(--blush); flex-shrink: 0; }
.section-header h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--dark); letter-spacing: .04em; white-space: nowrap; }
.section-header .line { flex: 1; height: 1px; background: var(--border); }
.section-header .view-all { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; white-space: nowrap; border-bottom: 1px solid var(--border); padding-bottom: 1px; }
.section-header .view-all:hover { color: var(--blush-dark); border-color: var(--blush-dark); }

/* ─── CATEGORY BLOCK BACKGROUNDS ───────────────────────────────── */
.category-block { margin-bottom: 0; padding: 36px 28px; }
.category-block:nth-child(odd)  { background: var(--bg-s1); }
.category-block:nth-child(even) { background: var(--bg-s2); }
.category-block:nth-child(3)    { background: var(--bg-s3); }
.category-block:nth-child(4)    { background: var(--bg-s4); }

/* ─── GRID LAYOUTS ──────────────────────────────────────────────── */
.travel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.travel-grid .card--medium .card-thumb { height: 240px; }
.travel-grid .right-stack { display: flex; flex-direction: column; gap: 20px; }
.travel-grid .right-stack .card--medium .card-thumb { height: 145px; }
.health-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.health-grid .card--medium .card-thumb { height: 180px; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.news-list { display: flex; flex-direction: column; gap: 20px; }
.grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 0; }
.grid-3col .card--medium .card-thumb { height: 190px; }

/* ─── PROMO BAND ────────────────────────────────────────────────── */
.promo-band { background: var(--champagne); padding: 22px 0; border-top: 1px solid var(--champagne-mid); border-bottom: 1px solid var(--champagne-mid); }
.promo-inner { max-width: var(--site-max); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: center; }
.promo-inner p { font-family: var(--font-display); color: var(--mid); font-size: 15px; font-style: italic; padding: 0 32px; border-right: 1px solid var(--champagne-mid); }
.promo-inner p:last-child { border-right: none; }
.promo-inner p a { color: var(--blush-dark); }

/* ─── EMAIL WIDGET ──────────────────────────────────────────────── */
.widget-email { background: var(--champagne); border: 1px solid var(--champagne-mid); color: var(--dark); padding: 24px 20px; text-align: center; }
.widget-email h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 6px; letter-spacing: .04em; }
.widget-email p  { font-size: 12px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.widget-email input { width: 100%; padding: 9px 12px; border: 1px solid var(--champagne-mid); background: var(--white); color: var(--dark); font-size: 12px; font-family: var(--font-body); margin-bottom: 8px; letter-spacing: .04em; }
.widget-email input:focus { outline: none; border-color: var(--blush); }
.widget-email input::placeholder { color: var(--muted); }
.widget-email button { width: 100%; padding: 10px; background: var(--dark); border: none; color: var(--white); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; cursor: pointer; transition: background .2s; }
.widget-email button:hover { background: var(--blush-dark); }
.widget-email .privacy { font-size: 11px; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.widget-email .privacy a { color: var(--blush-dark); }

/* ─── CONTENT + SIDEBAR ─────────────────────────────────────────── */
.content-sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 48px; padding: 40px 0; }
.main-content { min-width: 0; }
.sidebar { min-width: 0; }

/* ─── SIDEBAR WIDGETS ───────────────────────────────────────────── */
.widget { margin-bottom: 36px; }
.widget-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--dark); letter-spacing: .04em; border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 16px; }
.widget-popular-posts { display: flex; flex-direction: column; gap: 16px; }
.widget-categories ul li { border-bottom: 1px solid var(--border); padding: 8px 0; display: flex; justify-content: space-between; align-items: center; }
.widget-categories ul li a { font-size: 11px; color: var(--mid); letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }
.widget-categories ul li a:hover { color: var(--blush-dark); }
.widget-categories ul li .count { font-size: 11px; background: var(--champagne); color: var(--muted); padding: 2px 8px; border-radius: 10px; }
.widget-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.widget-tags a { display: inline-block; padding: 5px 12px; background: var(--white); color: var(--mid); font-size: 11px; border: 1px solid var(--border); letter-spacing: .06em; text-transform: uppercase; transition: all .2s; }
.widget-tags a:hover { background: var(--blush); color: var(--white); border-color: var(--blush); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 56px 0 0; margin-top: 0; }
.footer-inner { max-width: var(--site-max); margin: 0 auto; padding: 0 20px; }
.footer-top { text-align: center; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-logo { display: flex; flex-direction: column; align-items: center; font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--white); letter-spacing: .08em; line-height: 1; }
.footer-logo:hover { color: var(--blush); }
.footer-logo .logo-tagline { font-family: var(--font-body); font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 5px; }
.footer-logo.custom-logo-wrap { flex-direction: row; }
.footer-logo.custom-logo-wrap img { width: auto; height: 50px; max-width: 200px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-about { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: rgba(255,255,255,.4); max-width: 360px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; justify-content: center; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: all .2s; }
.footer-social a:hover { background: var(--blush); border-color: var(--blush); color: var(--white); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; padding: 40px 0; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 16px; letter-spacing: .08em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .05em; }
.footer-col ul li a:hover { color: var(--blush); }
.footer-newsletter input { width: 100%; padding: 9px 12px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: var(--white); font-size: 12px; font-family: var(--font-body); margin-bottom: 8px; letter-spacing: .04em; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter input:focus { outline: none; border-color: var(--blush); }
.footer-newsletter button { width: 100%; padding: 9px; background: var(--blush); border: none; color: var(--white); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; cursor: pointer; transition: background .2s; }
.footer-newsletter button:hover { background: var(--blush-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; font-size: 11px; color: rgba(255,255,255,.28); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; letter-spacing: .06em; }
.footer-bottom a { color: rgba(255,255,255,.38); }
.footer-bottom a:hover { color: var(--blush); }

/* ─── UTILITIES ─────────────────────────────────────────────────── */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}
.divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.ph-1{background:#f0e6e0}.ph-2{background:#e8ddd8}.ph-3{background:#dde8df}.ph-4{background:#e6ddf0}.ph-5{background:#f0e6d0}.ph-6{background:#dde6f0}

/* ─── SINGLE POST ───────────────────────────────────────────────── */
.single-post-hero { margin-bottom: 0; }
.single-post-hero img { width: 100%; height: 480px; object-fit: cover; }
.single-post-header { text-align: center; padding: 36px 80px 28px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.single-post-header .cat-label { display: inline-block; font-size: 10px; font-weight: 600; color: var(--blush-dark); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.single-post-title { font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; line-height: 1.2; margin-bottom: 18px; letter-spacing: .01em; }
.single-post-meta { font-size: 11px; color: var(--muted); display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center; letter-spacing: .08em; text-transform: uppercase; }
.single-post-meta .author-avatar { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; background: var(--champagne); flex-shrink: 0; }
.single-post-meta .author-name { font-weight: 600; color: var(--dark); }
.article-content { font-size: 15px; line-height: 1.9; color: var(--mid); max-width: 720px; margin: 0 auto; }
.article-content h2,.article-content h3,.article-content h4 { font-family: var(--font-display); color: var(--dark); font-weight: 400; margin: 36px 0 14px; line-height: 1.3; letter-spacing: .02em; }
.article-content h2{font-size:1.8rem}.article-content h3{font-size:1.4rem}
.article-content p { margin-bottom: 20px; }
.article-content ul,.article-content ol { margin: 14px 0 14px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote { border-left: 2px solid var(--blush); padding: 16px 28px; margin: 28px 0; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--mid); line-height: 1.6; background: var(--blush-light); }
.article-content a { color: var(--blush-dark); text-decoration: underline; }
.article-content img { margin: 28px 0; height: auto; }
.post-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 24px 0; border-top: 1px solid var(--border); margin-top: 36px; max-width: 720px; margin-left: auto; margin-right: auto; }
.post-tags a { padding: 5px 14px; background: var(--white); border: 1px solid var(--border); font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; transition: all .2s; }
.post-tags a:hover { background: var(--blush); color: var(--white); border-color: var(--blush); }
.author-box { display: flex; gap: 24px; background: var(--champagne); padding: 28px; border: 1px solid var(--champagne-mid); margin: 36px auto; max-width: 720px; }
.author-box .author-img { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background: var(--border); flex-shrink: 0; }
.author-box h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 4px; }
.author-box p { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ─── ARCHIVE ───────────────────────────────────────────────────── */
.archive-header { background: var(--champagne); border-bottom: 1px solid var(--champagne-mid); padding: 52px 0; margin-bottom: 40px; text-align: center; }
.archive-header-inner { max-width: var(--site-max); margin: 0 auto; padding: 0 20px; }
.archive-header h1 { font-family: var(--font-display); font-size: 2.6rem; color: var(--dark); font-weight: 400; margin-bottom: 6px; letter-spacing: .04em; }
.archive-header p { font-size: 13px; color: var(--muted); letter-spacing: .06em; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
.posts-grid .card--medium .card-thumb { height: 220px; }

/* ─── PAGINATION ────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 4px; padding: 36px 0; }
.pagination a,.pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--muted); transition: all .2s; }
.pagination a:hover,.pagination .current { background: var(--dark); border-color: var(--dark); color: var(--white); }

/* ─── CONTACT PAGE ──────────────────────────────────────────────── */
.contact-hero { background: var(--champagne); border-bottom: 1px solid var(--champagne-mid); padding: 56px 0; margin-bottom: 56px; text-align: center; }
.contact-hero h1 { font-family: var(--font-display); font-size: 2.6rem; color: var(--dark); margin-bottom: 10px; font-weight: 400; letter-spacing: .04em; }
.contact-hero p { font-family: var(--font-display); font-size: 1.1rem; color: var(--muted); font-style: italic; }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; max-width: var(--site-max); margin: 0 auto; padding: 0 20px 56px; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 24px; letter-spacing: .02em; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-group input,.form-group textarea,.form-group select { width: 100%; padding: 10px 0; border: none; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--dark); background: transparent; font-family: var(--font-body); transition: border-color .2s; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { outline: none; border-bottom-color: var(--blush-dark); }
.form-group textarea { height: 120px; resize: none; padding-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit { padding: 12px 36px; background: var(--dark); color: var(--white); border: none; cursor: pointer; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; transition: background .2s; }
.btn-submit:hover { background: var(--blush-dark); }
.contact-info h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 24px; letter-spacing: .02em; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-item .icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--champagne); border: 1px solid var(--champagne-mid); display: flex; align-items: center; justify-content: center; color: var(--blush-dark); }
.contact-info-item h4 { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 3px; }
.contact-info-item p { font-size: 13px; color: var(--muted); }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 280px; }
  .hero-right { display: none; }
  .health-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .single-post-header { padding: 28px 20px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mid { grid-column: 1; } .hero-right { display: flex; grid-column: 1; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .travel-grid,.health-grid,.news-grid { grid-template-columns: 1fr; }
  .grid-3col { grid-template-columns: 1fr 1fr; }
  .ticker-inner { gap: 14px; overflow-x: auto; } .ticker-item { min-width: 180px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .nav-inner { display: none; }
  .hero-main .post-title { font-size: 1.5rem; }
  .single-post-title { font-size: 1.8rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { gap: 20px; }
  .promo-inner { flex-direction: column; gap: 0; }
  .promo-inner p { border-right: none; padding: 12px 0; text-align: center; border-bottom: 1px solid var(--champagne-mid); }
  .promo-inner p:last-child { border-bottom: none; }
  .category-block { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .grid-3col { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .site-logo { font-size: 1.9rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-main .post-thumb { height: 260px; }
  .single-post-hero img { height: 260px; }
}
/* ─── CUSTOM LOGO ───────────────────────────────────────────────── */

/* Header logo */
.site-header .custom-logo {
  width: auto;
  height: 100px;
  object-fit: contain;
}

/* Footer logo — slightly smaller, white filter for dark background */
.site-footer .custom-logo {
  width: auto;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes any logo white on dark footer */
}

.custom-logo-wrap { display: flex; align-items: center; justify-content: center; }
.custom-logo-link { display: flex; align-items: center; line-height: 1; }
.custom-logo-wrap .custom-logo-link img { margin: 0; }
