/* ════════════════════════════════════════════════
   AsadSnapper Custom Theme — main.css
   ════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  /* ── Bengal Sunset Palette ── */
  --white:        #FAF4ED;
  --bg:           #FAF4ED;
  --bg-card:      #F0E8DC;
  --border:       #E0D4C0;
  --border-light: #E8DDD0;
  --text-1:       #1A100A;
  --text-2:       #6B5C50;
  --text-3:       #9A8470;
  --gold:         #C8902A;
  --gold-light:   #FDF0DC;
  --gold-dark:    #A87020;
  --saffron:      #D4622A;
  --saffron-d:    #B8501E;
  --teal:         #1E6B7A;
  --teal-d:       #155662;
  --dark:         #1A100A;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm:    0 1px 3px rgba(26,16,10,.06), 0 1px 2px rgba(26,16,10,.04);
  --shadow-md:    0 4px 16px rgba(26,16,10,.08);
  --shadow-lg:    0 8px 32px rgba(26,16,10,.12);
  --max-w:        1200px;
  --pad-x:        48px;
}

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

/* ── TYPOGRAPHY ──────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; letter-spacing: -.02em; }

/* ── LAYOUT ──────────────────────────────────────── */
.site-header, .hero, section, .stats-row, .email-section,
.blog-layout, .about-strip, .page-header,
.section-cta, .site-footer { padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ── NAVBAR ──────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 0; padding-bottom: 0;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--text-1);
}
.nav-logo span { color: var(--gold); }
.nav-logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a.active { color: var(--text-1); font-weight: 500; }
.nav-cta {
  background: var(--saffron) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px !important;
  font-weight: 500 !important;
  transition: opacity .15s !important;
}
.nav-cta:hover { opacity: .85; }

/* ── Language switcher ───────────────────────────────── */
.nav-lang-switcher { display: flex; align-items: center; gap: 2px; margin-left: -12px; }
.nav-lang-switcher ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; font-size: 0; }
.nav-lang-switcher li { font-size: 1rem; list-style: none; }
.nav-lang-switcher li a,
.nav-lang-switcher li span {
  display: flex; align-items: center;
  padding: 5px 7px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  opacity: .65;
  transition: opacity .2s, border-color .2s, background .2s;
  text-decoration: none;
  background: transparent;
}
.nav-lang-switcher li a:hover {
  opacity: 1;
  background: var(--surface, #f5f5f4);
  border-color: var(--border, #e5e7eb);
}
.nav-lang-switcher li.current-lang a,
.nav-lang-switcher li.current-lang span {
  opacity: 1;
  background: var(--surface, #f5f5f4);
  border-color: var(--border, #e5e7eb);
}
.nav-lang-switcher img {
  width: 26px !important;
  height: auto !important;
  border-radius: 3px;
  display: block;
  filter: saturate(1.15);
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all .2s;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: opacity .15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: .85; color: var(--white); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-1);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: border-color .15s;
}
.btn-secondary:hover { border-color: var(--text-2); color: var(--text-1); }

/* btn-secondary on dark hero background */
.hero .btn-secondary {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
}
.hero .btn-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,.75);
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: background .15s;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── SECTION COMMONS ─────────────────────────────── */
section { padding-top: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border-light); }
section:last-of-type { border-bottom: none; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  color: var(--text-1);
  margin-bottom: 10px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.section-head { margin-bottom: 36px; }
.section-head-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-head-flex .section-title { margin-bottom: 0; }
.no-content { color: var(--text-2); font-size: 14px; padding: 24px 0; }
.no-content-full {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: var(--text-2);
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
}
.no-content-full p { margin-bottom: 6px; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  border-bottom: none;
  min-height: 520px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); }
.hero-headline {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-card);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-3);
  text-align: center;
  gap: 8px; min-height: 320px;
  padding: 24px;
}
.hero-img-placeholder strong { color: var(--gold); }
.hero-img-icon { font-size: 36px; }
.hero-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
}
.hero-badge-title { font-size: 12px; font-weight: 600; color: #1A100A; }
.hero-badge-sub   { font-size: 11px; color: rgba(26,16,10,.7); margin-top: 2px; }

/* ── ABOUT STRIP ─────────────────────────────────── */
.about-strip {
  padding-top: 36px; padding-bottom: 36px;
  display: flex;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}
.about-avatar {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; overflow: hidden;
}
.about-avatar img { width:100%; height:100%; object-fit:cover; }
.about-text { flex: 1; }
.about-name { font-family: var(--font-serif); font-size: 18px; margin-bottom: 3px; }
.about-bio  { font-size: 14px; color: var(--text-2); }
.about-link { color: var(--gold); font-size: 13px; font-weight: 500; white-space: nowrap; }
.about-link:hover { color: var(--gold-dark); }

/* ── SERVICES CARDS ──────────────────────────────── */
.section-services { padding-top: 64px; padding-bottom: 64px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-icon {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.card-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; font-family: var(--font-sans); }
.card-desc  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── PORTFOLIO GRID ──────────────────────────────── */
.section-portfolio { padding-top: 64px; padding-bottom: 64px; }
.section-portfolio--full { padding-top: 40px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.portfolio-grid--home .portfolio-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-grid--home .portfolio-item:nth-child(2) { aspect-ratio: 4/5; }
.portfolio-grid--home .portfolio-item:nth-child(3) { aspect-ratio: 4/5; }
.portfolio-grid--home .portfolio-item:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-grid--home .portfolio-item:nth-child(5),
.portfolio-grid--home .portfolio-item:nth-child(6) { aspect-ratio: 1; }
.portfolio-grid--full .portfolio-item { aspect-ratio: 4/3; }
.portfolio-grid--full .portfolio-item.is-video { aspect-ratio: 16/9; }

.portfolio-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.04); }
.portfolio-no-img {
  width: 100%; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 12px;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 16px; text-align: center;
}
.portfolio-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  transition: transform .2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.portfolio-item:hover .portfolio-play-btn { transform: translate(-50%,-50%) scale(1.1); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(28,25,23,0);
  transition: background .25s;
  display: flex; align-items: flex-end;
}
.portfolio-item:hover .portfolio-overlay { background: rgba(28,25,23,.4); }
.portfolio-overlay-content {
  padding: 14px 16px;
  opacity: 0;
  transition: opacity .25s;
  width: 100%;
}
.portfolio-item:hover .portfolio-overlay-content { opacity: 1; }
.portfolio-title { font-size: 13px; font-weight: 600; color: var(--white); }
.portfolio-cat   { font-size: 11px; color: rgba(255,255,255,.75); margin-top: 2px; text-transform: uppercase; letter-spacing: .05em; }
.portfolio-view-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.portfolio-view-link:hover { border-color: var(--gold); }
.portfolio-item.hidden { display: none; }

/* ── SINGLE PORTFOLIO PAGE ───────────────────────── */
.single-portfolio-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px var(--pad-x) 80px;
}
.single-portfolio-back {
  display: inline-block;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .15s;
}
.single-portfolio-back:hover { color: var(--gold); }

/* Hero */
.sp-hero { margin-bottom: 36px; border-radius: var(--radius-md); overflow: hidden; }
.sp-hero-img { width: 100%; height: auto; display: block; max-height: 620px; object-fit: cover; }
.sp-yt-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.sp-yt-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Header */
.sp-header { margin-bottom: 40px; }
.sp-title { font-size: clamp(22px, 4vw, 36px); font-weight: 700; color: var(--text-1); margin: 0 0 12px; line-height: 1.2; }
.sp-cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.sp-cat-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-2); background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 99px; padding: 3px 11px;
}
.sp-excerpt { font-size: 16px; color: var(--text-2); line-height: 1.7; margin: 0; max-width: 680px; }

/* Sections */
.sp-section { margin-bottom: 52px; }
.sp-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); margin: 0 0 18px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}

/* Photo gallery grid */
.sp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.sp-gallery-item {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sp-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .2s;
}
.sp-gallery-item:hover .sp-gallery-overlay { background: rgba(0,0,0,.18); }

/* Wide first photo for main gallery */
.sp-gallery:not(.sp-gallery--bts) .sp-gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* Content */
.sp-section--text .sp-content {
  font-size: 15px; line-height: 1.85; color: var(--text-1);
  max-width: 700px;
}
.sp-section--text .sp-content p { margin: 0 0 1.2em; }
.sp-section--text .sp-content h2,
.sp-section--text .sp-content h3 { margin-top: 1.8em; font-weight: 700; }

/* ── STATS ROW ───────────────────────────────────── */
.stats-row {
  display: flex;
  padding-top: 0; padding-bottom: 0;
  background: var(--dark);
  border-bottom: none;
  border-top: none;
}
.stat {
  flex: 1;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat:last-child { border-right: none; }
.stat-num   { font-family: var(--font-serif); font-size: 36px; color: var(--saffron); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); }

/* ── EMAIL CAPTURE ───────────────────────────────── */
.email-section {
  background: var(--bg);
  padding-top: 72px; padding-bottom: 72px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.email-card { max-width: 580px; margin: 0 auto; text-align: center; }
.email-desc { font-size: 14px; color: var(--text-2); margin-top: 10px; }
.email-form {
  display: flex;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 5px 5px 5px 16px;
  box-shadow: var(--shadow-sm);
}
.email-form input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-sans); font-size: 14px;
  color: var(--text-1); background: transparent;
  min-width: 0;
}
.email-form input::placeholder { color: var(--text-3); }

/* ── FLUENT FORMS SUBSCRIBE — inline pill (email + button) ── */
.ff-subscribe-inline {
  margin-top: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
/* Pill container sits on the form element */
.ff-subscribe-inline form {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 4px 4px 4px 20px;
  overflow: hidden;
}
/* Make fieldset flex (inline style has no display, so !important works) */
.ff-subscribe-inline fieldset {
  display: flex !important;
  align-items: center;
  width: 100%;
}
/* Hide labels — placeholder is sufficient */
.ff-subscribe-inline .ff-el-input--label { display: none !important; }
/* Email group takes all remaining space */
.ff-subscribe-inline .ff-el-group:not(.ff_submit_btn_wrapper) {
  flex: 1;
  min-width: 0;
  margin-bottom: 0 !important;
}
/* Bare email input — no border, transparent bg */
.ff-subscribe-inline .ff-el-form-control {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 10px 0 !important;
  background: transparent !important;
  font-size: 15px !important;
  width: 100% !important;
}
.ff-subscribe-inline .ff-el-form-control:focus {
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
/* Submit button — no full-width, pill shape */
.ff-subscribe-inline .ff_submit_btn_wrapper {
  flex-shrink: 0;
  margin-bottom: 0 !important;
}
.ff-subscribe-inline .ff-btn-submit {
  width: auto !important;
  border-radius: 7px !important;
  padding: 12px 22px !important;
  font-size: 14px !important;
  white-space: nowrap;
}
/* Error message below the pill */
.ff-subscribe-inline .ff-errors-in-stack { margin-top: 6px; font-size: 12px; }
/* Success message centered */
.ff-subscribe-inline .ff-message-success { text-align: center; margin-top: 16px; }
/* Mobile: stack */
@media (max-width: 480px) {
  .ff-subscribe-inline form { flex-direction: column; padding: 12px 12px 8px; gap: 10px; }
  .ff-subscribe-inline fieldset { flex-direction: column !important; align-items: stretch; gap: 10px; }
  .ff-subscribe-inline .ff-btn-submit { width: 100% !important; text-align: center; }
}

/* ── BLOG CONCEPT B (home.php / archive.php) ────── */
.blog-page-b {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 80px;
}

/* Category filter strip — full width bar below page-header */
.blog-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px var(--pad-x);
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
  margin-bottom: 0;
}
.blog-filter-btn-b {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.blog-filter-btn-b:hover,
.blog-filter-btn-b.active {
  background: var(--text-1);
  color: var(--white);
  border-color: var(--text-1);
}
.blog-page-b { padding-top: 40px; }

/* ── HERO CARD ── */
.blog-hero-b {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 560px;
  text-decoration: none;
  margin-bottom: 32px;
  cursor: pointer;
}
.blog-hero-b-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.blog-hero-b:hover .blog-hero-b-img { transform: scale(1.03); }
.blog-hero-b-img--empty { background: var(--bg-card); }
.blog-hero-b-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)   20%,
    rgba(0,0,0,.55) 65%,
    rgba(0,0,0,.82) 100%
  );
}
.blog-hero-b-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 40px;
}
.blog-cat-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.blog-hero-b-title {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 720px;
  font-family: var(--font-sans);
}
.blog-hero-b-excerpt {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 600px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-hero-b-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-hero-b-meta {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .04em;
}
.blog-hero-b-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.blog-hero-b:hover .blog-hero-b-cta { border-color: var(--gold); }

/* ── 2-COLUMN GRID ── */
.blog-grid-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.blog-card-b {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card-b:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card-b-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-card);
}
.blog-card-b-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-card-b:hover .blog-card-b-photo { transform: scale(1.04); }
.blog-card-b-no-img { width: 100%; height: 100%; background: var(--bg-card); }
.blog-card-b-body { padding: 22px 24px 26px; }
.blog-card-b-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-b-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.35;
  margin: 0 0 10px;
  font-family: var(--font-sans);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}
.blog-card-b:hover .blog-card-b-title { color: var(--gold); }
.blog-card-b-excerpt {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-b-meta {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: .03em;
}

/* Empty state */
.blog-empty-b {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-2);
}

/* Pagination */
.blog-pag-b { padding: 8px 0 32px; }
.blog-pag-b .nav-links { display: flex; gap: 4px; flex-wrap: wrap; }
.blog-pag-b .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 6px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  color: var(--text-2); border: 1px solid var(--border);
  transition: background .15s, color .15s, border-color .15s;
}
.blog-pag-b .page-numbers:hover,
.blog-pag-b .page-numbers.current { background: var(--text-1); color: var(--white); border-color: var(--text-1); }
.blog-pag-b .page-numbers.dots { border: none; }
.blog-pag-b .prev, .blog-pag-b .next { width: auto; padding: 0 14px; }

.blog-view-all {
    text-align: center;
    padding: 8px var(--pad-x) 56px;
}

/* ── BLOG ────────────────────────────────────────── */
.section-blog { padding-top: 64px; padding-bottom: 64px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-thumb-link { display: block; overflow: hidden; height: 180px; background: var(--bg-card); }
.blog-thumb-img  { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.blog-thumb-link:hover .blog-thumb-img { transform: scale(1.04); }
.blog-thumb-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  color:var(--text-3); font-size:11px; text-transform:uppercase; letter-spacing:.06em;
}
.blog-body    { padding: 20px; }
.blog-meta    { font-size: 11px; color: var(--gold); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.blog-meta a  { color: var(--gold); }
.blog-title   { font-size: 15px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; font-family: var(--font-sans); }
.blog-title a { color: var(--text-1); }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.blog-read    { display: inline-block; font-size: 12px; color: var(--gold); font-weight: 500; margin-top: 12px; }
.blog-read:hover { color: var(--gold-dark); }

/* Blog archive page */
.blog-filter-bar {
  padding: 16px var(--pad-x);
  display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border-light);
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding-top: 48px; padding-bottom: 72px;
  align-items: start;
}
.blog-main { max-width: 100%; }
.blog-list-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.blog-list-thumb-link { flex-shrink: 0; display: block; }
.blog-list-thumb {
  width: 140px; height: 100px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border);
}
.blog-list-thumb--empty {
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 11px;
  text-transform: uppercase; letter-spacing: .05em;
}
.blog-list-meta   { font-size: 11px; color: var(--gold); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.blog-list-meta a { color: var(--gold); }
.blog-list-title  { font-size: 17px; font-weight: 600; margin-bottom: 7px; line-height: 1.35; font-family: var(--font-sans); }
.blog-list-title a:hover { color: var(--gold); }
.blog-list-excerpt{ font-size: 13.5px; color: var(--text-2); line-height: 1.65; }
.blog-pagination  { padding: 32px 0; }
.blog-pagination .nav-links { gap: 4px; }
.blog-pagination .page-numbers {
  display: inline-block; padding: 7px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text-2);
  transition: all .15s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current { background: var(--text-1); color: var(--white); border-color: var(--text-1); }

/* Blog sidebar */
.blog-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.widget-guide { background: var(--gold-light); border-color: #ddc98a; }
.widget-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.widget-title { font-family: var(--font-serif); font-size: 18px; margin-bottom: 8px; }
.widget-desc  { font-size: 13px; color: var(--text-2); margin-bottom: 16px; line-height: 1.6; }
.cat-list     { display: flex; flex-direction: column; gap: 0; }
.cat-list li  { border-bottom: 1px solid var(--border-light); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a   { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--text-1); transition: color .15s; }
.cat-list a:hover { color: var(--gold); }
.cat-count    { font-size: 12px; color: var(--text-3); }
.recent-list  { display: flex; flex-direction: column; gap: 12px; }
.recent-list li { display: flex; gap: 10px; align-items: center; }
.recent-thumb-link { flex-shrink: 0; }
.recent-thumb { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; }
.recent-title { display: block; font-size: 13px; font-weight: 500; margin-bottom: 2px; color: var(--text-1); line-height: 1.4; }
.recent-title:hover { color: var(--gold); }
.recent-date  { font-size: 11px; color: var(--text-3); }

/* ── SHOP SECTION (Home) ─────────────────────────── */
.section-shop { border-top: 1px solid var(--border-light); }
.shop-inner {
  display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
}
.shop-text { flex: 1; }
.shop-text .section-title { margin-bottom: 8px; }
.shop-text .section-desc  { margin-bottom: 0; }
.shop-items {
  display: flex; gap: 16px;
}
.shop-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  font-size: 24px;
  color: var(--text-1);
}
.shop-item span { display: block; font-size: 12px; color: var(--text-2); margin-top: 6px; }
.shop-cta { flex-shrink: 0; }

.section-shop-teaser {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.shop-teaser-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.shop-teaser-inner .section-title { margin-bottom: 6px; }
.shop-teaser-inner .section-desc  { margin-bottom: 0; }

/* ── BRANDS STRIP ────────────────────────────────── */
.section-brands {
  padding: 60px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  max-width: 960px;
  margin: 0 auto;
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .45;
  filter: grayscale(1);
  transition: opacity .25s, filter .25s;
}
.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}
.brand-logo img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}
.brand-name-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── SERVICES GRID (Work page) ───────────────────── */
.section-services--work { background: var(--bg); border-top: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--white);
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: var(--shadow-sm); }
.service-icon  {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.service-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; font-family: var(--font-sans); }
.service-desc  { font-size: 13px; color: var(--text-2); }

/* ── TESTIMONIALS ────────────────────────────────── */
.section-testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.testimonial-rating { color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.testimonial-context { font-size: 11px; color: var(--text-3); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.testimonial-text {
  font-size: 14px; color: var(--text-1); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
  border: none; padding: 0; quotes: none;
}
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; border: 1px solid var(--border);
}
.testimonial-avatar-placeholder {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: var(--gold);
  border: 1px solid var(--border);
}
.testimonial-name { font-size: 13px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-2); }

/* ── TOURS ───────────────────────────────────────── */
.section-tours { padding-top: 64px; padding-bottom: 64px; }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tour-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s;
}
.tour-card:hover { box-shadow: var(--shadow-md); }
.tour-card--featured { border-color: var(--gold); }
.tour-thumb {
  height: 200px;
  background: var(--bg-card) center/cover no-repeat;
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  border-bottom: 1px solid var(--border-light);
}
.tour-thumb-placeholder {
  padding: 20px; font-size: 14px; color: var(--text-2); align-self: center;
}
.tour-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
}
.tour-body     { padding: 22px; }
.tour-title    { font-size: 17px; font-weight: 600; margin-bottom: 6px; font-family: var(--font-sans); }
.tour-meta     { font-size: 13px; color: var(--text-2); margin-bottom: 14px; }
.tour-excerpt  { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.tour-price    { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.tour-includes { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.tour-includes li {
  font-size: 13px; color: var(--text-2);
  display: flex; align-items: center; gap: 8px;
}
.tour-includes li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* What's included grid */
.section-included { background: var(--bg); border-top: 1px solid var(--border); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.included-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.included-icon { font-size: 28px; flex-shrink: 0; }
.included-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.included-desc  { font-size: 13px; color: var(--text-2); }

/* ── CONTACT ─────────────────────────────────────── */
.section-contact { padding-top: 64px; padding-bottom: 64px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--text-2); margin-bottom: 6px;
  letter-spacing: .04em; text-transform: uppercase;
}
.req { color: var(--gold); }
.form-input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px; color: var(--text-1);
  background: var(--white);
  outline: none; transition: border-color .15s;
  resize: vertical;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-3); }
.btn-submit { margin-top: 4px; }
.form-success {
  background: #F0FBF0; border: 1px solid #A8D8A8;
  border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 14px;
  color: #2D6A2D; margin-bottom: 20px;
}
.contact-links-label {
  font-size: 12px; color: var(--text-2); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 500; margin-bottom: 14px;
}
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.contact-link-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-link-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-link-title { font-size: 14px; font-weight: 600; }
.contact-link-sub   { font-size: 12px; color: var(--text-2); }
.contact-link-arrow { margin-left: auto; color: var(--text-3); font-size: 16px; }

/* About full story */
.section-about-full {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 64px; padding-bottom: 64px;
}
.about-full-text {
  max-width: 680px;
  font-size: 15px; line-height: 1.8; color: var(--text-1);
}
.about-full-text p { margin-bottom: 1.4em; }

/* ── ABOUT PAGE ──────────────────────────────────── */
.section-about-story {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 72px var(--pad-x);
}
.about-story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-story-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-1);
}
.about-story-text p { margin-bottom: 1.5em; }
.about-story-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about-story-empty {
  color: var(--text-2);
  font-size: 14px;
}
.about-updates-divider {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px var(--pad-x);
  text-align: center;
}
.about-updates-divider .section-title { margin: 8px 0; }
.about-updates-divider .section-desc  { color: var(--text-2); max-width: 480px; margin: 0 auto; }

/* ── PAGE HEADER ─────────────────────────────────── */
.page-header {
  background: var(--bg);
  padding-top: 56px; padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.page-header .section-title { font-size: 40px; }
.page-header-desc { font-size: 15px; color: var(--text-2); max-width: 560px; margin-top: 10px; line-height: 1.7; }

/* ── BLOG: FREE GUIDE CTA BOX ────────────────────── */
.post-guide-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 40px 0 32px;
}
.post-guide-cta-icon { font-size: 32px; flex-shrink: 0; }
.post-guide-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.post-guide-cta-text strong { font-size: 15px; color: var(--text-1); }
.post-guide-cta-text span   { color: var(--text-2); line-height: 1.5; }
.post-guide-cta-form { flex-shrink: 0; min-width: 260px; }
.post-guide-cta-form .ff-subscribe-inline form {
  border-color: var(--gold) !important;
}
@media (max-width: 680px) {
  .post-guide-cta { flex-direction: column; align-items: flex-start; }
  .post-guide-cta-form { width: 100%; min-width: unset; }
}

/* ── BLOG: BOTTOM CTA BANNER ─────────────────────── */
.post-bottom-cta {
  background: var(--text-1);
  color: var(--white);
  padding: 56px var(--pad-x);
  margin-top: 0;
}
.post-bottom-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.post-bottom-cta-block { flex: 1; }
.post-bottom-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.post-bottom-cta-title {
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.4;
}
.post-bottom-cta-divider {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.post-bottom-cta .btn-outline {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.post-bottom-cta .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
@media (max-width: 768px) {
  .post-bottom-cta-inner { flex-direction: column; gap: 32px; }
  .post-bottom-cta-divider { width: 100%; height: 1px; }
}

/* ── SHOP PAGE ───────────────────────────────────── */
.section-shop-page { padding-top: 56px; padding-bottom: 80px; }
.shop-page-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── SINGLE PRODUCT PAGE ─────────────────────────── */
.single-product-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--pad-x) 80px;
}
.single-product-breadcrumb {
  margin-bottom: 28px;
}
.single-product-breadcrumb a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .15s;
}
.single-product-breadcrumb a:hover { color: var(--gold); }

/* ── FILTER BAR ──────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-2);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none; display: inline-block;
}
.filter-btn.active,
.filter-btn:hover { background: var(--text-1); color: var(--white); border-color: var(--text-1); }

/* ── GUIDE QUOTE ─────────────────────────────────── */
.section-guide-quote {
  padding: 80px var(--pad-x);
  background: var(--white);
  border-top: 1px solid var(--border);
}
.guide-quote-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.guide-quote-pull {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.5;
  margin: 16px 0 20px;
  quotes: none;
}
.guide-quote-pull em {
  color: var(--gold);
  font-style: italic;
}
.guide-quote-name {
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: .04em;
}

/* ── FINAL CTA ───────────────────────────────────── */
/* ── Traveler Cards ──────────────────────────────────── */
.section-travelers {
  padding: 80px var(--pad-x);
  background: var(--surface, #f9f8f6);
}
.travelers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.traveler-card {
  background: var(--white);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.traveler-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  transform: translateY(-4px);
}
.traveler-avatar {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.traveler-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.traveler-avatar-placeholder {
  width: 100%; height: 100%;
  background: var(--gold, #c9a84c);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; font-weight: 700;
  font-family: var(--font-serif);
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.traveler-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.traveler-comment {
  font-size: 13.5px;
  color: var(--text-2, #6b7280);
  font-style: italic;
  line-height: 1.65;
  margin: 0;
  quotes: none;
}
.traveler-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  font-family: var(--font-sans);
}
.traveler-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.traveler-socials a {
  color: var(--text-2, #6b7280);
  transition: color .15s;
  display: flex; align-items: center;
}
.traveler-socials a:hover { color: var(--gold, #c9a84c); }

.section-cta {
  background: var(--teal);
  padding-top: 80px; padding-bottom: 80px;
  text-align: center;
  border: none;
}
.section-cta .section-eyebrow { color: rgba(255,255,255,.55); }
.section-cta .section-title   { color: #fff; margin-bottom: 14px; font-size: 36px; }
.section-cta .section-desc    { color: rgba(255,255,255,.7); margin: 0 auto 32px; }

/* ── SINGLE POST ─────────────────────────────────── */
/* ── SINGLE POST — REDESIGN ──────────────────────── */

/* Reading progress bar */
.read-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* Hero */
.post-hero-b {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.post-hero-b-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.post-hero-b-img--empty { background: var(--bg-card); }
.post-hero-b-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.85) 100%
  );
}
.post-hero-b-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad-x) 44px;
}
.post-hero-b-back {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: color .15s;
}
.post-hero-b-back:hover { color: var(--gold); }
.post-hero-b-content .blog-cat-pill { margin-bottom: 14px; display: inline-block; }
.post-hero-b-title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 16px;
  font-family: var(--font-sans);
}
.post-hero-b-meta {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-hero-b-dot { opacity: .5; }

/* Article body */
.post-body-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px var(--pad-x) 64px;
}
.entry-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-1);
  font-family: var(--font-sans);
}
.entry-content p   { margin-bottom: 1.6em; }
.entry-content h2  {
  font-size: 26px; font-weight: 700;
  margin: 2.2em 0 .65em;
  color: var(--text-1);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: .4em;
}
.entry-content h3  { font-size: 20px; font-weight: 700; margin: 1.8em 0 .5em; }
.entry-content img {
  width: 100%; height: auto;
  border-radius: var(--radius-md);
  margin: 2em 0;
  display: block;
}
.entry-content a   { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: var(--bg-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-2);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
}
.entry-content ul,
.entry-content ol  { padding-left: 1.5em; margin-bottom: 1.6em; }
.entry-content li  { margin-bottom: .5em; }
.entry-content hr  { border: none; border-top: 1px solid var(--border); margin: 2.5em 0; }

/* ── GUTENBERG MEDIA BLOCKS IN BLOG POSTS ─────── */

/* Blog photo grid wrapper — matches updates layout, slightly larger */
.blog-media-block {
  margin: 2em 0;
}
.blog-media-caption {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* Blog-specific photo sizes (bigger than timeline cards) */
.upd-photos--blog.upd-photos--1 .upd-photo  { height: 460px; }
.upd-photos--blog.upd-photos--2 .upd-photo  { height: 300px; }
.upd-photos--blog .upd-photo--main          { height: 380px; }
.upd-photos--blog .upd-photo-col .upd-photo { min-height: 186px; }
.upd-photos--blog.upd-photos--4 .upd-photo  { height: 220px; }

/* YouTube / embed block */
.entry-content .wp-block-embed { margin: 2.5em 0; }
.entry-content .wp-block-embed figcaption {
  font-size: 12px; color: var(--text-3);
  text-align: center; margin-top: 8px; font-style: italic;
}
.entry-content .wp-block-embed__wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: var(--radius-md); background: #000;
}
.entry-content .wp-block-embed__wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* Video block */
.entry-content .wp-block-video { margin: 2em 0; }
.entry-content .wp-block-video video { width: 100%; border-radius: var(--radius-md); display: block; }

/* Pullquote block */
.entry-content .wp-block-pullquote {
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  padding: 28px 24px; margin: 2.5em 0; text-align: center;
}
.entry-content .wp-block-pullquote blockquote {
  border: none; background: none; padding: 0; border-radius: 0;
  font-size: 22px; font-style: italic; color: var(--text-1); margin: 0;
}
.entry-content .wp-block-pullquote cite {
  display: block; margin-top: 10px; font-size: 12px;
  font-style: normal; color: var(--text-3);
  letter-spacing: .06em; text-transform: uppercase;
}

/* Tags */
.post-tags-b {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.post-tag-b {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 99px;
  text-decoration: none;
  transition: all .15s;
}
.post-tag-b:hover { background: var(--text-1); color: var(--white); border-color: var(--text-1); }

/* Author box */
.post-author-b {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.post-author-b-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.post-author-b-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-1);
  margin-bottom: 5px;
}
.post-author-b-bio {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Prev / Next */
.post-nav-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.post-nav-b-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.post-nav-b-link:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.post-nav-b-link--next { text-align: right; }
.post-nav-b-dir {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.post-nav-b-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.4;
}

/* Related posts */
.post-related-b {
  background: var(--bg-2);
  border-top: 1px solid var(--border-light);
  padding: 56px var(--pad-x) 72px;
}
.post-related-b-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.post-related-b-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.post-related-b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: none;
  padding-top: 28px; padding-bottom: 28px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-logo       { font-family: var(--font-serif); font-size: 17px; color: #fff; }
.footer-logo span  { color: var(--saffron); }
.footer-links      { display: flex; gap: 20px; }
.footer-links a    { font-size: 13px; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-copy       { font-size: 12px; color: rgba(255,255,255,.25); }

/* ── MODALS ──────────────────────────────────────── */
.as-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
}
.as-modal[hidden] { display: none; }
.as-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(28,25,23,.85);
  backdrop-filter: blur(4px);
}
.as-modal-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.as-modal-video { width: min(90vw, 960px); }
.as-video-wrap  { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; border-radius: var(--radius-md); overflow: hidden; }
.as-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.as-modal-photo { max-width: 90vw; max-height: 90vh; }
.as-lb-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; display: block; }
.as-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: var(--white);
  font-size: 22px; cursor: pointer; opacity: .7;
  transition: opacity .15s; padding: 6px;
}
.as-modal-close:hover { opacity: 1; }
.as-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: var(--white);
  font-size: 36px; cursor: pointer; padding: 8px 16px;
  border-radius: var(--radius-sm); transition: background .15s;
  z-index: 2;
}
.as-lb-nav:hover { background: rgba(255,255,255,.3); }
.as-lb-prev { left: -64px; }
.as-lb-next { right: -64px; }
.as-lb-counter {
  position: absolute; bottom: -36px;
  font-size: 13px; color: rgba(255,255,255,.6);
  width: 100%; text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 560px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 26px; }
  .page-header .section-title { font-size: 30px; }
  .section-cta .section-title { font-size: 28px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
  .hero { padding-top: 48px; padding-bottom: 48px; min-height: unset; }
  .hero-image-wrap { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .portfolio-grid--home .portfolio-item:nth-child(1),
  .portfolio-grid--home .portfolio-item:nth-child(4) { grid-column: span 1; aspect-ratio: 4/3; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; }
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .about-strip { flex-wrap: wrap; }
  .shop-inner { flex-direction: column; }
  .section-head-flex { flex-direction: column; align-items: flex-start; gap: 12px; }
  .email-form { flex-direction: column; padding: 10px; gap: 8px; }
  .email-form input { width: 100%; }
  .post-nav { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .blog-layout { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .blog-hero-b { height: 400px; }
  .blog-hero-b-content { padding: 28px 24px; }
  .blog-grid-b { grid-template-columns: 1fr; gap: 16px; }
  .post-hero-b { height: 400px; }
  .post-hero-b-content { padding-bottom: 32px; }
  .post-body-wrap { padding: 36px var(--pad-x) 48px; }
  .entry-content { font-size: 16px; }
  .post-nav-b { grid-template-columns: 1fr; }
  .post-related-b-grid { grid-template-columns: 1fr; }
  .upd-photos--blog.upd-photos--1 .upd-photo { height: 280px; }
  .upd-photos--blog.upd-photos--2 .upd-photo { height: 180px; }
  .upd-photos--blog .upd-photo--main         { height: 220px; }
  .upd-photos--blog.upd-photos--4 .upd-photo { height: 140px; }
  .as-lb-prev { left: -12px; }
  .as-lb-next { right: -12px; }
  .shop-teaser-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 26px; }
  .blog-hero-b { height: 320px; }
  .blog-hero-b-content { padding: 24px 20px; }
  .blog-grid-b { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════
   UPDATES / TIMELINE
   ════════════════════════════════════════════════ */

/* ── HOME WIDGET ─────────────────────────────────── */
.section-updates-widget {
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-light);
}
.see-all-link {
  font-size: 13px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.see-all-link:hover { color: var(--gold); border-color: var(--gold); }

.upd-home-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
}
.upd-home-divider { display: none; }

.upd-home-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.upd-home-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.upd-home-content { flex: 1; min-width: 0; }
.upd-home-meta {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.upd-home-author { font-size: 14px; font-weight: 600; }
.upd-sep         { color: var(--border); font-size: 14px; }
.upd-home-time   { font-size: 12px; color: var(--text-3); }
.upd-home-loc    { font-size: 12px; color: var(--gold); }
.upd-home-text   { font-size: 14px; color: var(--text-1); line-height: 1.7; margin-bottom: 12px; }
.upd-home-text p { margin-bottom: .6em; }
.upd-home-text p:last-child { margin-bottom: 0; }
.upd-home-foot {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.upd-home-photo-count { font-size: 12px; color: var(--text-3); }
.upd-home-viewall     { font-size: 12px; color: var(--gold); font-weight: 500; }
.upd-home-viewall:hover { color: var(--gold-dark); }

/* ── UPDATE ACTION BAR ───────────────────────────── */
.upd-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px solid var(--border-light);
}
.upd-like-btn,
.upd-comment-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  font-size: 13px;
  font-family: var(--font-sans);
  padding: 0;
  text-decoration: none;
  transition: color .18s;
  line-height: 1;
}
.upd-like-btn:hover   { color: #e0435c; }
.upd-comment-btn:hover { color: var(--gold); }
.upd-like-btn.liked   { color: #e0435c; }
.upd-like-btn.liked svg { fill: #e0435c; stroke: #e0435c; }
.upd-like-btn svg,
.upd-comment-btn svg  { flex-shrink: 0; transition: fill .18s, stroke .18s; }
.upd-like-count       { min-width: 14px; }

/* ── INLINE COMMENTS (inside cards) ─────────────── */
.upd-inline-comments {
  margin-top: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.upd-inline-comment { display: flex; flex-direction: column; gap: 2px; }
.upd-inline-author  { font-size: 12px; font-weight: 600; color: var(--gold); }
.upd-inline-sep     { display: none; }
.upd-inline-date    { font-size: 11px; color: var(--text-3); }
.upd-inline-text    { font-size: 13px; color: var(--text-1); line-height: 1.6; }
.upd-inline-text p  { margin: 0; }

/* ── PHOTO GRIDS (shared home + timeline) ────────── */
.upd-photos { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 4px; cursor: pointer; }
.upd-photos--home { margin-top: 12px; }

.upd-photo {
  background-color: var(--bg-card);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.upd-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(28,25,23,0);
  transition: background .2s;
}
.upd-photos:hover .upd-photo-overlay { background: rgba(28,25,23,.12); }

/* 1 photo */
.upd-photos--1 .upd-photo { height: 300px; }
.upd-photos--home.upd-photos--1 .upd-photo { height: 260px; }

/* 2 photos */
.upd-photos--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.upd-photos--2 .upd-photo { height: 200px; }
.upd-photos--home.upd-photos--2 .upd-photo { height: 170px; }

/* 3 photos */
.upd-photos--3 { display: grid; grid-template-columns: 2fr 1fr; gap: 3px; }
.upd-photo--main { height: 240px; }
.upd-photo-col { display: flex; flex-direction: column; gap: 3px; }
.upd-photo-col .upd-photo { flex: 1; min-height: 0; }
.upd-photos--home.upd-photos--3 .upd-photo--main { height: 200px; }

/* 4+ photos */
.upd-photos--4 { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.upd-photos--4 .upd-photo { height: 150px; }
.upd-photos--home.upd-photos--4 .upd-photo { height: 130px; }

/* "+N more" overlay */
.upd-photo--more { position: relative; }
.upd-more-count {
  position: absolute; inset: 0;
  background: rgba(28,25,23,.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px; font-weight: 600;
  font-family: var(--font-sans);
}

/* ── UPDATES PAGE ────────────────────────────────── */
.updates-page { padding-bottom: 72px; }

.timeline-wrap {
  padding: 48px var(--pad-x) 0;
  max-width: 1100px;
  margin: 0 auto;
}

/* Center vertical line */
.timeline {
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: var(--border-light);
  border-radius: 2px;
}

/* Month label — centered over the line */
.timeline-group {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: start;
  margin-bottom: 32px;
  row-gap: 20px;
}
.timeline-month {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.timeline-month-label {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 3px 14px;
  font-size: 11px; font-weight: 600;
  color: var(--text-2);
  letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

/* Timeline item */
.tl-item {
  position: relative;
  margin-bottom: 0;
}

/* Left card — col 1, dot pokes right into center */
.tl-item--left {
  grid-column: 1;
  padding-right: 20px;
}
.tl-item--left .tl-dot {
  position: absolute;
  right: -26px; top: 16px;
}

/* Right card — col 3, offset down, dot pokes left into center */
.tl-item--right {
  grid-column: 3;
  padding-left: 20px;
  padding-top: 48px;
}
.tl-item--right .tl-dot {
  position: absolute;
  left: -26px; top: 64px;
}

/* Dot base styles */
.tl-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  z-index: 1;
  transition: border-color .2s;
}
.tl-dot--active,
.tl-item:hover .tl-dot { border-color: var(--gold); }
.tl-dot--active { background: var(--gold); }

/* Card styles */
.tl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.tl-card:hover { box-shadow: var(--shadow-md); }
.tl-card--text-only .tl-card-body { padding: 20px; }

.tl-card-photos { cursor: pointer; }
.tl-card-body { padding: 14px 16px; }
.tl-meta {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.tl-date        { font-size: 12px; color: var(--text-3); }
.tl-sep         { font-size: 12px; color: var(--border); }
.tl-loc         { font-size: 12px; color: var(--gold); }
.tl-photo-count { font-size: 12px; color: var(--text-3); }
.tl-caption { font-size: 14px; color: var(--text-1); line-height: 1.7; }
.tl-caption p { margin-bottom: .6em; }
.tl-caption p:last-child { margin-bottom: 0; }
.tl-card--text-only .tl-caption { font-size: 15px; color: var(--text-2); font-style: italic; }

/* Pagination */
.tl-pagination {
  display: flex; gap: 16px; align-items: center;
  justify-content: center;
  padding: 32px 0 0;
}
.tl-load-more { display: inline-block; }
.tl-newer-link { font-size: 13px; color: var(--text-2); }
.tl-newer-link:hover { color: var(--text-1); }

/* Empty state */
.tl-empty {
  text-align: center;
  padding: 80px var(--pad-x);
  color: var(--text-2);
}
.tl-empty-icon { font-size: 40px; margin-bottom: 14px; }
.tl-empty p    { margin-bottom: 6px; font-size: 15px; }
.tl-empty strong { color: var(--gold); }

/* ── SINGLE UPDATE ───────────────────────────────── */
.single-update-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px var(--pad-x) 72px;
}
.single-update-back {
  display: inline-block;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
  text-decoration: none;
}
.single-update-back:hover { color: var(--gold); }
.single-update-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}
.single-update-content { font-size: 15px; line-height: 1.75; color: var(--text-1); }
.single-update-content img { max-width: 100%; border-radius: var(--radius-sm); }
.single-update-content figure { margin: 0; }

/* Comments */
.single-update-comments { margin-top: 0; }

.as-comments-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 28px 0 14px;
}

.as-comments-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.as-comment-item { display: block; }
.as-comment {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.as-comments-list .as-comment-item:last-child .as-comment { border-bottom: none; }
.as-comment-meta {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 6px;
}
.as-comment-author { font-size: 13px; font-weight: 600; color: var(--gold); }
.as-comment-sep    { font-size: 12px; color: var(--border); }
.as-comment-date   { font-size: 12px; color: var(--text-3); }
.as-comment-text   { font-size: 14px; color: var(--text-1); line-height: 1.7; }
.as-comment-text p { margin: 0; }

/* Comment form */
.as-comment-form { margin-top: 4px; }
.as-field { margin: 0 0 10px; }
.as-field input,
.as-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-1);
  background: var(--white);
  outline: none;
  transition: border-color .18s;
  box-sizing: border-box;
}
.as-field input:focus,
.as-field textarea:focus { border-color: var(--gold); }
.as-field textarea { resize: vertical; min-height: 90px; }
.as-field input::placeholder,
.as-field textarea::placeholder { color: var(--text-3); }
.as-field--submit { margin-top: 4px; }
.as-comment-submit {
  font-size: 14px;
  padding: 10px 24px;
  cursor: pointer;
  border: none;
}

/* ── WRITE FOR US — CONTRIBUTORS ────────────────── */
.section-contributors {
  padding: 80px var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.contributors-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.contributors-header {
  text-align: center;
  margin-bottom: 52px;
}
.contributors-header--below {
  margin-bottom: 0;
  margin-top: 48px;
}
.contributors-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contributors-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 12px;
}
.contributors-desc {
  font-size: 15px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Photo-dominant card grid */
.contributors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.contributor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: default;
}
.contributor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* Full-bleed photo — takes up top 72% of card */
.contributor-photo-area {
  width: 100%;
  aspect-ratio: 4 / 5;          /* portrait ratio — taller = more photo */
  position: relative;
  background: var(--bg-card);
  overflow: hidden;
  flex-shrink: 0;
}
.contributor-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* prioritise face */
  display: block;
  transition: transform .35s ease;
}
.contributor-card:hover .contributor-avatar {
  transform: scale(1.04);
}

/* Gradient overlay at bottom of photo for name legibility */
.contributor-photo-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(28,25,23,.55) 100%
  );
  pointer-events: none;
}

/* Name on top of photo */
.contributor-photo-name {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  line-height: 1.25;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.contributor-photo-name a {
  color: var(--white);
  text-decoration: none;
}
.contributor-photo-name a:hover { color: var(--gold-light); }
.contributor-photo-name .ext-icon {
  font-size: 11px;
  opacity: .75;
  margin-left: 2px;
}

/* Initials fallback — fills the whole photo area */
.contributor-avatar-fallback {
  width: 100%;
  height: 100%;
  background: var(--text-1);
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .02em;
}

/* Compact info strip below photo */
.contributor-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.contributor-name { display: none; } /* name is now on the photo */

.contributor-bio {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}
.contributor-article-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .02em;
}
.contributor-article-link:hover { color: var(--gold-dark); }

/* ── WRITE FOR US — BLOG PAGE SECTION ───────────── */
.section-wfu-blog {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.wfu-blog-header {
  text-align: center;
  padding: 72px var(--pad-x) 48px;
}
.wfu-blog-header .section-title { margin: 8px 0; }
.wfu-blog-header .section-desc  { color: var(--text-2); max-width: 520px; margin: 0 auto; }
.section-wfu-blog .contributors-inner { padding: 0 var(--pad-x); }
.section-wfu-blog .wfu-layout   { padding: 0 var(--pad-x) 80px; }

/* ── THANK YOU POPUP ─────────────────────────────── */
#subscribe-thankyou-popup,
#wfu-thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(28,25,23,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#subscribe-thankyou-popup.wfu-popup--visible,
#wfu-thankyou-popup.wfu-popup--visible {
  opacity: 1;
  pointer-events: all;
}
.wfu-popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
#subscribe-thankyou-popup.wfu-popup--visible .wfu-popup-box,
#wfu-thankyou-popup.wfu-popup--visible .wfu-popup-box {
  transform: translateY(0);
}
.wfu-popup-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}
.wfu-popup-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 14px;
  line-height: 1.3;
}
.wfu-popup-msg {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 10px;
}
.wfu-popup-msg strong { color: var(--text-1); }
.wfu-popup-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 28px;
  font-style: italic;
}
.wfu-popup-close {
  display: inline-block;
  cursor: pointer;
  border: none;
}

/* ── WRITE FOR US — HOW TO SUBMIT STEPS ─────────── */
.section-wfu-steps {
  background: var(--surface);
  padding: 56px var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.wfu-steps-inner {
  max-width: 900px;
  margin: 0 auto;
}
.wfu-steps-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 36px;
  text-align: center;
}
.wfu-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.wfu-steps-grid::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--border);
}
.wfu-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
}
.wfu-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--text-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-sans);
  position: relative;
  z-index: 1;
}
.wfu-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}
.wfu-step-body strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}
.wfu-step-body span {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.wfu-step-body a {
  color: var(--gold, #c9a84c);
  text-decoration: none;
  font-weight: 500;
}
.wfu-step-body a:hover { text-decoration: underline; }

/* ── WRITE FOR US PAGE ───────────────────────────── */
.section-wfu {
  padding: 64px var(--pad-x);
  max-width: 1200px;
  margin: 0 auto;
}
.wfu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.wfu-guidelines {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wfu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
}
.wfu-card--dark {
  background: var(--text-1);
  border-color: var(--text-1);
  padding: 28px 32px;
}
.wfu-card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 14px;
}
.wfu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wfu-list li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.wfu-list li strong { color: var(--text-1); }
.wfu-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin: 0 0 12px;
}
.wfu-quote-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.wfu-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}
.wfu-form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 24px;
}

/* ── CONVERSATIONAL FORM ─────────────────────────── */
/* Progress bar */
.wfu-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.wfu-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.wfu-progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  transition: background .3s;
}
.wfu-progress-step.done:not(:last-child)::after,
.wfu-progress-step.active:not(:last-child)::after {
  background: var(--gold);
}
.wfu-progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  position: relative;
  z-index: 1;
  transition: all .25s;
}
.wfu-progress-step.active .wfu-progress-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.wfu-progress-step.done .wfu-progress-dot {
  background: var(--text-1);
  border-color: var(--text-1);
  color: var(--white);
}
.wfu-progress-step.done .wfu-progress-dot::after {
  content: '✓';
  font-size: 12px;
}
.wfu-progress-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 6px;
  text-align: center;
  transition: color .25s;
}
.wfu-progress-step.active .wfu-progress-label { color: var(--gold); }
.wfu-progress-step.done .wfu-progress-label  { color: var(--text-1); }

/* Step heading */
.wfu-step-heading {
  margin-bottom: 20px;
}
.wfu-step-heading h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 4px;
}
.wfu-step-heading p {
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
}

/* Step content */
.wfu-conv-step { display: none; }
.wfu-conv-step.is-active { display: block; }

/* Navigation buttons */
.wfu-conv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}
.wfu-btn-back {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--text-2);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.wfu-btn-back:hover { border-color: var(--text-1); color: var(--text-1); }
.wfu-btn-next {
  background: var(--text-1);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--white);
  cursor: pointer;
  transition: background .15s, transform .1s;
  margin-left: auto;
}
.wfu-btn-next:hover { background: var(--gold); transform: translateY(-1px); }
.wfu-field-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: block;
}
/* Hide original FF title on this form */
.wfu-form-wrap .wfu-form-title { display: none; }

/* Submit button inside the nav — right-aligned, matches Next style */
.wfu-conv-nav .ff_submit_btn_wrapper { margin-left: auto; display: flex; }
.wfu-conv-nav .ff-btn-submit {
  background: var(--text-1) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: var(--font-sans, Inter, sans-serif) !important;
  cursor: pointer !important;
  transition: background .15s, transform .1s !important;
  width: auto !important;
}
.wfu-conv-nav .ff-btn-submit:hover {
  background: var(--gold) !important;
  transform: translateY(-1px) !important;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .upd-home-feed { grid-template-columns: 1fr; }
  .upd-home-card { flex-direction: column; gap: 12px; }
  .upd-home-avatar { display: none; }

  /* Timeline: revert to single left-side column on mobile */
  .timeline-wrap { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .timeline { padding-left: 36px; }
  .timeline::before { left: 10px; transform: none; }
  .timeline-group { display: block; }
  .tl-item {
    display: block;
    position: relative;
    margin-bottom: 20px;
  }
  .tl-item--left,
  .tl-item--right {
    grid-column: unset;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .tl-dot,
  .tl-item--left .tl-dot,
  .tl-item--right .tl-dot {
    position: absolute;
    left: -27px; top: 16px;
    right: unset;
  }
  .timeline-month { justify-content: flex-start; }
  .timeline-month-label {
    position: absolute; left: -36px; top: 2px;
    font-size: 10px; padding: 2px 8px;
  }
  .upd-photos--1 .upd-photo { height: 220px; }
  .upd-photos--3 .upd-photo--main { height: 180px; }

  /* Contributors */
  .section-contributors { padding: 48px var(--pad-x); }
  .contributors-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contributors-title { font-size: 22px; }
  .contributor-avatar-fallback { font-size: 36px; }
  .contributor-photo-name { font-size: 13px; bottom: 10px; left: 10px; right: 10px; }

  /* Write for Us */
  .wfu-layout { grid-template-columns: 1fr; gap: 32px; }
  .wfu-form-wrap { position: static; padding: 24px 20px; }
  .section-wfu { padding: 40px var(--pad-x); }
  .section-wfu-steps { padding: 40px var(--pad-x); }
  .wfu-steps-title { font-size: 20px; margin-bottom: 24px; }
}

/* ── 404 PAGE ────────────────────────────────────────────────── */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--pad-x);
  text-align: center;
}
.page-404-inner { max-width: 480px; }
.page-404-eyebrow {
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}
.page-404-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--text-1);
  margin: 0 0 12px;
}
.page-404-desc {
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 32px;
}
.page-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FLUENTCART SHOP — BENGAL SUNSET OVERRIDES ───────────────────
   FluentCart loads its own CSS with cold blue-gray defaults.
   We override its CSS variables + specific rules to match the palette.
──────────────────────────────────────────────────────────────── */

/* 1. CSS variable overrides (highest-specificity root for fct scope) */
.fct-products-wrapper,
.fct-product-card,
.fct-single-product-wrap {
  --fct-card-bg:                var(--bg-card);
  --fct-card-border-color:      var(--border);
  --fct-card-primary-text-color: var(--text-1);
  --fct-card-text-color:        var(--text-2);
  --fct-card-btn-bg-color:      var(--saffron);
  --fct-card-btn-text-color:    #fff;
  --fct-heading-color:          var(--text-1);
  --fct-add-to-cart-btn-bg-color:       var(--saffron);
  --fct-add-to-cart-btn-hover-bg-color: var(--saffron-d);
  --fct-add-to-cart-btn-text-color:     #fff;
  --fct-add-to-cart-btn-border-color:   var(--saffron);
}

/* 2. Product card shell */
.fct-product-card {
  background-color: var(--bg-card) !important;
  border-color:     var(--border)  !important;
}

/* 3. Product image placeholder area — replace cold gray SVG with warm version */
.fct-product-card-image-wrap,
.fct-product-card .fct-product-card-image-wrap {
  background-color: var(--border-light) !important;
}
/* When product has no image, FluentCart shows placeholder.svg (cold blue-gray).
   We hide it and show our warm placeholder as a background instead. */
.fct-product-card-image[src*="placeholder.svg"] {
  opacity: 0 !important;
  position: relative;
}
.fct-product-card-image-wrap:has(.fct-product-card-image[src*="placeholder.svg"]) {
  background-image: url('/wp-content/themes/asadsnapper/assets/images/shop-placeholder.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 4. Product title — use serif font */
.fct-product-card h3,
.fct-product-card .fct-product-card-title,
.fct-product-card h3 a,
.fct-product-card .fct-product-card-title a {
  font-family: var(--font-serif) !important;
  color: var(--text-1) !important;
  text-decoration: none !important;
}

/* 5. Product excerpt */
.fct-product-card .fct-product-card-excerpt {
  color: var(--text-2) !important;
  font-size: 13px;
}

/* 6. Prices */
.fct-product-card .fct-item-price {
  color: var(--saffron) !important;
  font-weight: 600;
}
.fct-product-card .fct-compare-price,
.fct-product-card del,
.fct-product-card del * {
  color: var(--text-3) !important;
}

/* 7. Add To Cart button (inside card — uses gradient+variable background) */
.fct-product-card button,
.fct-product-card button.fluent-cart-add-to-cart-button {
  background: var(--saffron) !important;
  color: #fff !important;
  border: none !important;
  font-family: var(--font-sans) !important;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: none;
  box-shadow: none !important;
}
.fct-product-card button:hover,
.fct-product-card button.fluent-cart-add-to-cart-button:hover {
  background: var(--saffron-d) !important;
  color: #fff !important;
}

/* 8. Standalone Add To Cart button (single-product page) */
.fluent-cart-add-to-cart-button {
  background-color: var(--saffron) !important;
  border-color:     var(--saffron) !important;
  color: #fff !important;
}
.fluent-cart-add-to-cart-button:hover {
  background-color: var(--saffron-d) !important;
  border-color:     var(--saffron-d) !important;
}

/* 9. View-product button (same treatment as add-to-cart) */
.fct-product-view-button {
  background: var(--saffron) !important;
  color: #fff !important;
  border: none !important;
}
.fct-product-view-button:hover {
  background: var(--saffron-d) !important;
}

/* 10. Grid/List view switcher icons */
.fct-shop-view-switcher button {
  color: var(--text-3) !important;
  background: transparent !important;
  border-color: var(--border) !important;
}
.fct-shop-view-switcher button.active {
  color: var(--text-1) !important;
  background: var(--bg-card) !important;
  border-color: var(--border) !important;
}

/* 11. Single product page */
.fct-single-product-wrap {
  background: transparent;
}
.fct-single-product-title,
.fct-single-product-wrap h1 {
  font-family: var(--font-serif) !important;
  color: var(--text-1) !important;
}
.fct-single-product-wrap .fct-item-price {
  color: var(--saffron) !important;
  font-weight: 700;
}
.fct-single-product-wrap .fct-compare-price,
.fct-single-product-wrap del {
  color: var(--text-3) !important;
}

/* 12. Cart / checkout panel */
.fct-cart-item-title { color: var(--text-1) !important; }
.fct-cart-item-price { color: var(--saffron) !important; font-weight: 600; }
