/* ================================================================
   THE RICO FAM — main.css v4
   Palette extracted from uploaded color palette image:
     #E7E2DE  linen      (backgrounds)
     #D8D2CC  linen-mid  (cards, surfaces)
     #B0A89E  linen-dark (borders, muted)
     #554E46  charcoal   (primary, buttons, nav)
     #67624F  olive      (accent, eyebrows)
     #3A352E  deep       (footer, darkest text)
     #FDFCFB  white      (pure card bg)
   ================================================================ */

/* Google Fonts loaded via wp_enqueue_style in functions.php — no @import needed */

/* ── RESET ──────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;font-family:inherit}

/* ── CSS VARIABLES ──────────────────────── */
:root {
  --linen:      #E7E2DE;
  --linen-mid:  #D8D2CC;
  --linen-dark: #B0A89E;
  --charcoal:   #554E46;
  --olive:      #67624F;
  --deep:       #3A352E;
  --white:      #FDFCFB;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
  --ease:  0.22s ease;
}

/* ── BASE ───────────────────────────────── */
html { scroll-behavior:smooth; font-size:16px; overflow-x: hidden; background: var(--white); }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--deep);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── LANGUAGE VISIBILITY ────────────────── */
/* Default: show EN, hide NL */
.trf-nl { display: none;   }
.trf-en { display: revert; }
body.lang-nl .trf-nl { display: revert; }
body.lang-nl .trf-en { display: none;   }

/* Inline elements (span/a) */
span.trf-nl, a.trf-nl, strong.trf-nl { display: none;   }
span.trf-en, a.trf-en, strong.trf-en { display: inline; }
body.lang-nl span.trf-nl, body.lang-nl a.trf-nl, body.lang-nl strong.trf-nl { display: inline; }
body.lang-nl span.trf-en, body.lang-nl a.trf-en, body.lang-nl strong.trf-en { display: none;   }



/* ── LANG BAR ───────────────────────────── */
.trf-lang-bar {
  background: var(--olive);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 48px;
  gap: 16px;
}
.trf-lang-bar__socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trf-lang-bar__social {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(176,168,158,.45);
  color: rgba(231,226,222,.6);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  flex-shrink: 0;
  line-height: 0;
}
.trf-lang-bar__social:hover {
  background: rgba(231,226,222,.15);
  border-color: rgba(231,226,222,.7);
  color: var(--linen);
  transform: translateY(-2px);
}
.trf-lang-bar__lang {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trf-lang-btn {
  background: none;
  border: none;
  color: var(--linen-dark);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  transition: color var(--ease), background var(--ease), border-color var(--ease), opacity var(--ease);
  font-weight: 400;
}
.trf-lang-btn { opacity: 0.45; }
.trf-lang-btn:hover { opacity: 1; background: rgba(231,226,222,.15); color: var(--white); }
.trf-lang-btn.is-active { opacity: 1; background: rgba(231,226,222,.25); color: var(--white); font-weight: 700; }

html.lang-nl .trf-lang-btn[data-lang="nl"],
body.lang-nl .trf-lang-btn[data-lang="nl"] { opacity: 1; background: rgba(231,226,222,.25); color: var(--white); font-weight: 700; }
html.lang-nl .trf-lang-btn[data-lang="en"],
body.lang-nl .trf-lang-btn[data-lang="en"] { opacity: 0.45; background: none !important; font-weight: 400; }
html.lang-en .trf-lang-btn[data-lang="en"],
body.lang-en .trf-lang-btn[data-lang="en"] { opacity: 1; background: rgba(231,226,222,.25); color: var(--white); font-weight: 700; }
html.lang-en .trf-lang-btn[data-lang="nl"],
body.lang-en .trf-lang-btn[data-lang="nl"] { opacity: 0.45; background: none !important; font-weight: 400; }

.trf-lang-sep { color: var(--linen-dark); opacity: .3; font-size: 11px; }

/* ── NAVIGATION ─────────────────────────── */
.trf-nav {
  position: sticky;
  top: 20px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  margin: 20px;
  border-radius: 16px 16px 0 0;
  background: var(--linen);
  transition: box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.trf-nav.is-scrolled { box-shadow: 0 4px 24px rgba(58,53,46,.1); }
.trf-nav.is-scrolled-deep,
.trf-nav.is-hidden { border-radius: 16px 16px 0 0; }
.trf-nav.is-hidden { transform: translateY(calc(-100% - 28px)); }
.trf-nav-search-btn { display: none; }

.trf-logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--deep);
  flex-shrink: 0;
}
.trf-logo em { font-style: italic; color: var(--olive); }

/* WordPress nav_menu output */
.trf-nav .menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.trf-nav .menu li a {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), background var(--ease), border-color var(--ease), opacity var(--ease);
  white-space: nowrap;
}
.trf-nav .menu li a:hover,
.trf-nav .menu li.current-menu-item > a {
  color: var(--deep);
  border-bottom-color: var(--olive);
}

.trf-nav-cta {
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--linen);
  padding: 9px 18px;
  font-weight: 400;
  transition: background var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.trf-nav-cta:hover { background: var(--deep); color: var(--linen); }

.trf-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.trf-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--deep);
  transition: transform .65s cubic-bezier(.34,1.56,.64,1), opacity .25s ease, background .25s ease;
  transform-origin: center;
}

/* ── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--linen);
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  border-radius: 100px;
  transition: background var(--ease), color .42s cubic-bezier(.25,.46,.45,.94);
}
.btn-primary:hover { background: var(--deep); color: var(--linen); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  background: none;
  border: none;
  padding: 0;
}
.btn-ghost::after { content:'→'; font-size:14px; display: inline-block; position: relative; z-index: 1; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.btn-ghost:hover::after { transform:translateX(4px); }

/* ── EYEBROW ────────────────────────────── */
.trf-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 14px;
}

/* ── SECTION HELPERS ────────────────────── */
.trf-section         { padding: 80px; background: var(--linen); }
.trf-section--white  { background: var(--linen); }
.trf-section--mid    { background: var(--linen-mid); }
.trf-section--dark   { background: var(--charcoal); }
.trf-section--deep   { background: var(--deep); }
.trf-section--olive  { background: var(--olive); }
/* ── SOCIAL GRID (About Us — trf-section--deep) ── */
.trf-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 0;
}

.trf-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-top: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--linen-mid);
}
.trf-section-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -.01em;
  color: var(--deep);
}
.trf-section-title em { font-style:italic; color:var(--charcoal); }
.trf-section-link {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
}
.trf-section-link::after { content:' →'; }
.trf-section-link:hover  { color: var(--olive); }

/* ── PAGE HEADER ────────────────────────── */
.trf-page-header {
  padding: 72px 80px 56px;
  border-bottom: 1px solid var(--linen-mid);
  background: var(--white);
}
.trf-page-title {
  font-family: var(--serif);
  font-size: clamp(36px,5vw,58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.trf-page-title em { font-style:italic; color:var(--charcoal); }
.trf-page-intro { font-size:15px; color:var(--charcoal); line-height:1.75; max-width:580px; }

/* ── HERO ───────────────────────────────── */
.trf-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 85vh;
}
.trf-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}
.trf-hero__title {
  font-family: var(--serif);
  font-size: clamp(46px,4.5vw,70px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 16px 0 24px;
}
.trf-hero__title em { font-style:italic; color:var(--charcoal); }
.trf-hero__sub {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.78;
  max-width: 420px;
  margin-bottom: 40px;
}
.trf-hero__actions { display:flex; align-items:center; gap:28px; flex-wrap:wrap; }

.trf-hero__photo {
  position: relative;
  overflow: hidden;
  background: var(--linen-mid);
  border-radius: 16px;
}
.trf-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trf-hero__placeholder {
  width:100%; height:100%; min-height:480px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:8px;
}
.trf-hero__placeholder p {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: .45;
  text-align: center;
  max-width: 220px;
}
.trf-hero__tag {
  position: absolute;
  bottom: 48px;
  left: -2px;
  background: var(--white);
  border-left: 3px solid var(--olive);
  padding: 14px 18px;
}
.trf-hero__tag-num   { font-family:var(--serif); font-size:30px; font-weight:300; color:var(--deep); line-height:1; }
.trf-hero__tag-label { font-size:9px; letter-spacing:.1em; text-transform:uppercase; color:var(--charcoal); margin-top:3px; }
.trf-hero__socials   { position:absolute; top:28px; right:20px; display:flex; flex-direction:column; gap:7px; align-items:flex-end; }
.trf-hero__chip      { background:rgba(253,252,251,.92); font-size:10px; letter-spacing:.07em; color:var(--deep); padding:5px 10px; }

/* ── NUMBERS BAR ────────────────────────── */
.trf-nums { background:var(--deep); display:flex; }
.trf-num  { flex:1; padding:26px 0; text-align:center; border-right:1px solid rgba(231,226,222,.1); }
.trf-num:last-child { border-right:none; }
.trf-num__val   { font-family:var(--serif); font-size:26px; font-weight:300; color:var(--linen); }
.trf-num__label { font-size:9px; letter-spacing:.16em; text-transform:uppercase; color:var(--linen-dark); margin-top:3px; }

/* ── DEST TABS ──────────────────────────── */
.trf-tabs {
  background:var(--white);
  display:flex;
  padding:0 80px;
  border-bottom:1px solid var(--linen-mid);
  overflow-x:auto;
  scrollbar-width:none;
}
.trf-tabs::-webkit-scrollbar { display:none; }
.trf-tab {
  font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--charcoal); padding:17px 22px; white-space:nowrap;
  border-bottom:2px solid transparent; transition:all var(--ease);
  font-weight:400;
}
.trf-tab:hover, .trf-tab.is-active { color:var(--deep); border-bottom-color:var(--olive); }
.trf-tab.is-dim { opacity:.35; pointer-events:none; }

/* ── GUIDE CARDS ────────────────────────── */
.trf-grid { display:grid; grid-template-columns:1.7fr 1fr 1fr; gap:2px; }
.trf-grid--3 { grid-template-columns:repeat(3,1fr); }

.trf-card { display:block; overflow:hidden; color:inherit; border-radius: 14px; }
.trf-card__img { background:var(--linen-mid); overflow:hidden; }
.trf-grid > .trf-card:first-child .trf-card__img { aspect-ratio:3/4.2; }
.trf-grid > .trf-card:not(:first-child) .trf-card__img { aspect-ratio:1/1; }
.trf-grid--3 .trf-card .trf-card__img { aspect-ratio:4/3; }
.trf-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.25,.46,.45,.94); }
.trf-card:hover .trf-card__img img { transform:scale(1.07); }
.trf-card__body  { padding:18px 0 0; }
.trf-card__cat   { font-size:9px; letter-spacing:.16em; text-transform:uppercase; color:var(--olive); margin-bottom:6px; font-weight:400; }
.trf-card__title { font-family:var(--serif); font-size:20px; font-weight:400; line-height:1.22; margin-bottom:7px; }
.trf-card__desc  { font-size:13px; color:var(--charcoal); line-height:1.6; }
.trf-aff-tag {
  display:inline-block; font-size:9px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--charcoal); border:1px solid var(--linen-dark); padding:3px 9px; margin-top:8px;
}
.trf-card__img-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:9px; color:var(--charcoal); opacity:.35; letter-spacing:.1em; text-transform:uppercase;
}

/* ── TILES ──────────────────────────────── */
.trf-tiles { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:2px; }
.trf-tile {
  padding:44px 40px; display:flex; flex-direction:column;
  justify-content:space-between; min-height:196px; transition:opacity var(--ease);
}
.trf-tile:hover { opacity:.88; }
.trf-tile--linen    { background:var(--linen-mid); }
.trf-tile--charcoal { background:var(--charcoal); }
.trf-tile--olive    { background:var(--olive); }
.trf-tile__label {
  font-size:9px; letter-spacing:.18em; text-transform:uppercase;
  font-weight:400; margin-bottom:10px; color:var(--charcoal);
}
.trf-tile--charcoal .trf-tile__label,
.trf-tile--olive    .trf-tile__label { color:rgba(231,226,222,.6); }
.trf-tile__name {
  font-family:var(--serif); font-size:23px; font-weight:300;
  line-height:1.18; color:var(--deep);
}
.trf-tile--charcoal .trf-tile__name,
.trf-tile--olive    .trf-tile__name { color:var(--linen); }
.trf-tile__arrow { font-size:18px; margin-top:20px; color:var(--charcoal); }
.trf-tile--charcoal .trf-tile__arrow,
.trf-tile--olive    .trf-tile__arrow { color:rgba(231,226,222,.55); }

/* ── ABOUT SPLIT ────────────────────────── */
.trf-split { display:grid; grid-template-columns:1fr 1fr; }
.trf-split__photo {
  background:var(--linen-mid); display:flex; align-items:center;
  justify-content:center; position:relative; overflow:hidden; min-height:480px;
}
.trf-split__photo img { width:100%; height:100%; object-fit:cover; }
.trf-split__photo-placeholder {
  font-size:9px; color:var(--charcoal); opacity:.38;
  letter-spacing:.12em; text-transform:uppercase; text-align:center; padding:20px;
}
.trf-float {
  position:absolute; bottom:40px; right:-18px;
  background:var(--white); padding:14px 18px;
  border:1px solid var(--linen-mid); min-width:150px;
}
.trf-float__num   { font-family:var(--serif); font-size:26px; font-weight:300; color:var(--olive); }
.trf-float__label { font-size:9px; letter-spacing:.1em; text-transform:uppercase; color:var(--charcoal); margin-top:3px; }
.trf-split__text {
  background:var(--white); padding:72px;
  display:flex; flex-direction:column; justify-content:center;
}
.trf-split__eyebrow { font-size:9px; letter-spacing:.2em; text-transform:uppercase; color:var(--olive); opacity:1; margin-bottom:20px; }
.trf-split__title { font-family:var(--serif); font-size:clamp(30px,3vw,42px); font-weight:300; line-height:1.1; color:var(--deep); margin-bottom:20px; }
.trf-split__title em { font-style:italic; color:var(--olive); }
.trf-split__body  { font-size:16px; color:var(--charcoal); line-height:1.8; margin-bottom:32px; max-width:380px; }
.trf-pills { display:flex; gap:10px; flex-wrap:wrap; }
.trf-pill  {
  border:1px solid rgba(231,226,222,.22); padding:8px 14px;
  font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--linen-dark); transition:border-color var(--ease);
}
.trf-pill:hover { border-color:var(--linen-dark); color:var(--linen); }

/* ── NEWSLETTER ─────────────────────────── */
.trf-newsletter {
  background:var(--linen-mid); padding:64px 80px;
  display:flex; align-items:center; justify-content:space-between; gap:48px;
}
.trf-newsletter__eyebrow { font-size:9px; letter-spacing:.18em; text-transform:uppercase; color:var(--olive); margin-bottom:8px; }
.trf-newsletter__title   { font-family:var(--serif); font-size:30px; font-weight:300; line-height:1.2; color:var(--deep); }
.trf-newsletter__form    { display:flex; flex:1; max-width:420px; }
.trf-newsletter__input   {
  flex:1; border:1px solid var(--linen-dark); background:transparent;
  padding:12px 16px; font-family:var(--sans); font-size:13px; color:var(--deep); outline:none;
}
.trf-newsletter__input::placeholder { color:var(--charcoal); opacity:.5; }
.trf-newsletter__input:focus { border-color:var(--charcoal); }
.trf-newsletter__btn {
  background:var(--charcoal); color:var(--linen); border:none;
  padding:12px 20px; font-family:var(--sans); font-size:10px;
  letter-spacing:.14em; text-transform:uppercase; font-weight:400;
  white-space:nowrap; transition:background var(--ease);
}
.trf-newsletter__btn:hover { background:var(--deep); }

/* ── BREADCRUMBS ────────────────────────── */
.trf-breadcrumbs { padding:13px 80px; background:var(--white); border-bottom:1px solid var(--linen-mid); font-size:11px; color:var(--charcoal); display:flex; align-items:center; flex-wrap:nowrap; overflow:hidden; white-space:nowrap; }
.trf-breadcrumbs a { color:var(--charcoal); flex-shrink:0; }
.trf-breadcrumbs a:hover { color:var(--olive); }
.trf-breadcrumbs > span[aria-hidden] { margin:0 6px; color:var(--linen-dark); flex-shrink:0; }
.trf-breadcrumbs > span[aria-current] { color:var(--linen-dark); overflow:hidden; text-overflow:ellipsis; min-width:0; }

/* ── SINGLE POST ────────────────────────── */
.trf-post-layout { display:grid; grid-template-columns:1fr 300px; gap:64px; padding:64px 80px; }

.trf-post-meta   { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:14px; }
.trf-post-cat    { font-size:9px; letter-spacing:.16em; text-transform:uppercase; color:var(--olive); background:rgba(103,98,79,.1); padding:3px 12px; font-weight:400; border-radius:100px; }
.trf-post-date   { font-size:11px; color:var(--charcoal); }
.trf-post-read   { font-size:11px; color:var(--charcoal); }

.trf-post-title  { font-family:var(--serif); font-size:clamp(30px,4vw,50px); font-weight:300; line-height:1.1; margin-bottom:14px; }
.trf-post-intro  { font-size:16px; color:var(--charcoal); line-height:1.75; border-left:3px solid var(--olive); padding-left:18px; margin-bottom:28px; }
.trf-post-hero   { width:100%; aspect-ratio:16/9; object-fit:cover; margin-bottom:44px; }

.trf-disclosure  { background:var(--linen-mid); padding:12px 18px; font-size:11px; color:var(--charcoal); border-left:3px solid var(--linen-dark); margin-bottom:16px; }
.trf-disclosure strong { color:var(--deep); }

/* Post body typography */
.trf-post-body { font-size:15px; line-height:1.85; color:var(--deep); }
.trf-post-body h2 { font-family:var(--serif); font-size:30px; font-weight:300; margin:44px 0 14px; }
.trf-post-body h3 { font-family:var(--serif); font-size:22px; font-weight:300; margin:32px 0 10px; }
.trf-post-body p  { margin-bottom:18px; }
.trf-post-body strong { font-weight:500; }
.trf-post-body a  { color:var(--olive); border-bottom:1px solid rgba(103,98,79,.3); }
.trf-post-body a:hover { border-color:var(--olive); }
.trf-post-body ul,
.trf-post-body ol { padding-left:22px; margin-bottom:18px; }
.trf-post-body li { margin-bottom:7px; }
.trf-post-body blockquote {
  border-left:3px solid var(--olive); padding:14px 22px; margin:28px 0;
  background:var(--white); font-family:var(--serif); font-size:19px;
  font-style:italic; color:var(--charcoal);
}
.trf-post-body img { width:100%; margin:28px 0; }

/* Rico/Dian note */
.trf-rico-note {
  background:var(--linen); border-left:3px solid var(--olive);
  padding:16px 20px; margin:24px 0; font-size:14px;
  color:var(--charcoal); font-style:italic; line-height:1.7;
}
.trf-rico-note strong { color:var(--deep); font-style:normal; font-weight:500; }

/* Tags */
.trf-post-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:36px; padding-top:22px; border-top:1px solid var(--linen-mid); }
.trf-post-tag  { font-size:9px; letter-spacing:.1em; text-transform:uppercase; color:var(--charcoal); border:1px solid var(--linen-dark); padding:4px 12px; border-radius:100px; }
.trf-post-tag:hover { color:var(--olive); border-color:var(--olive); }

/* Author box */
.trf-author { display:flex; gap:16px; align-items:center; margin-top:44px; padding:22px 26px; background:var(--linen); border-left:3px solid var(--olive); }
.trf-author img { border-radius:50%; width:52px; height:52px; object-fit:cover; flex-shrink:0; }
.trf-author__role { font-size:9px; letter-spacing:.1em; text-transform:uppercase; color:var(--olive); margin-bottom:2px; }
.trf-author__name { font-family:var(--serif); font-size:17px; font-weight:400; color:var(--deep); }
.trf-author__bio  { font-size:12px; color:var(--charcoal); margin-top:2px; }

/* Sidebar */
.trf-sidebar { display:flex; flex-direction:column; gap:28px; }
.trf-widget  { background:var(--white); border:1px solid var(--linen-mid); padding:22px; }
.trf-widget__title { font-size:9px; letter-spacing:.14em; text-transform:uppercase; color:var(--charcoal); margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--linen-mid); font-weight:400; }
.trf-widget a { display:block; font-size:13px; color:var(--deep); padding:7px 0; border-bottom:1px solid var(--linen-mid); }
.trf-widget a:last-child { border-bottom:none; padding-bottom:0; }
.trf-widget a:hover { color:var(--olive); }

/* ── FOOTER ─────────────────────────────── */
.trf-footer { background:var(--olive); padding:56px 80px 28px; }
.trf-footer__top {
  display:flex; justify-content:space-between; align-items:flex-start;
  padding-bottom:36px; border-bottom:1px solid rgba(231,226,222,.1); margin-bottom:22px;
}
.trf-footer__brand { font-family:var(--serif); font-size:21px; font-weight:400; letter-spacing:.07em; color:var(--linen); }
.trf-footer__brand em { font-style:italic; color:var(--linen-mid); }
.trf-footer__tagline { font-size:11px; color:var(--charcoal); margin-top:5px; }
.trf-footer__cols { display:flex; gap:48px; }
.trf-footer__col-title { font-size:9px; letter-spacing:.16em; text-transform:uppercase; color:var(--charcoal); margin-bottom:13px; font-weight:400; }
.trf-footer__col a { display:block; font-size:13px; color:var(--linen-dark); margin-bottom:8px; transition:color var(--ease); }
.trf-footer__col a:hover { color:var(--linen); }
.trf-footer__bottom { display:flex; justify-content:space-between; align-items:center; font-size:11px; color:var(--charcoal); }
/* Footer WordPress menu — strip ul/li wrapper styling */
.trf-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: inherit;
}
.trf-footer__menu li {
    margin: 0;
    padding: 0;
}
.trf-footer__menu li a {
    /* Inherits all existing .trf-footer__col a styles */
    display: block;
}
.trf-footer__menu .sub-menu {
    display: none; /* hide any sub-menus, footer is single-level */
}

/* ── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}
.trf-fade   { animation:fadeUp .65s ease both; }
.trf-fade-2 { animation:fadeUp .65s ease .12s both; }
.trf-fade-3 { animation:fadeUp .65s ease .24s both; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width:1100px) {
  .trf-nav { padding:16px 32px; }
  .trf-section { padding:64px 48px; }
  .trf-social-grid { grid-template-columns: 1fr 1fr; }
  .trf-hero { grid-template-columns:1fr; }
  .trf-hero__photo { min-height:52vw; }
  .trf-hero__content { padding:60px 48px; }
  .trf-grid { grid-template-columns:1fr 1fr; }
  .trf-grid > .trf-card:first-child { grid-column:1/-1; }
  .trf-grid > .trf-card:first-child .trf-card__img { aspect-ratio:16/7; }
  .trf-tiles { grid-template-columns:1fr 1fr; }
  .trf-split { grid-template-columns:1fr; }
  .trf-split__photo { min-height:300px; }
  .trf-split__text { padding:56px 48px; }
  .trf-newsletter { flex-direction:column; gap:24px; }
  .trf-newsletter__form { max-width:100%; }
  .trf-post-layout { grid-template-columns:1fr; gap:40px; padding:48px; }
  .trf-footer__cols { gap:28px; }
  .trf-tabs { padding:0 48px; }
  .trf-breadcrumbs { padding:13px 48px; }
}
@media (max-width:720px) {
  .trf-lang-bar { padding:7px 20px; }
  .trf-nav { padding:13px 20px; }
  .trf-nav .menu { display:none; }
  .trf-nav .menu.is-open {
    display:flex; flex-direction:column; position:absolute;
    top:100%; left:0; right:0; background:var(--linen);
    padding:18px 20px; gap:14px; border-radius: 0 0 16px 16px; z-index:999;
  }
  .trf-burger { display:flex; }
  .trf-nav-cta { display:none; }
  .trf-section { padding:48px 20px; }
  .trf-page-header { padding:44px 20px 32px; }
  .trf-tabs { padding:0 20px; }
  .trf-breadcrumbs { padding:13px 20px; }
  .trf-grid,.trf-tiles,.trf-grid--3 { grid-template-columns:1fr; }
  .trf-grid > .trf-card:first-child { grid-column:unset; }
  .trf-grid > .trf-card:first-child .trf-card__img { aspect-ratio:3/2; }
  .trf-split__text { padding:44px 20px; }
  .trf-nums { flex-wrap:wrap; }
  .trf-num { min-width:50%; border-right:none; border-bottom:1px solid rgba(231,226,222,.1); }
  .trf-footer { padding:40px 20px 20px; }
  .trf-footer__top { flex-direction:column; gap:24px; }
  .trf-footer__cols { flex-wrap:wrap; gap:20px; }
  .trf-footer__bottom { flex-direction:column; gap:6px; text-align:center; }
  .trf-newsletter { padding:44px 20px; }
  .trf-post-layout { padding:28px 20px; }
  .trf-social-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   BUTTONS — extra variants
   ================================================================ */
.btn-dark {
  display: inline-block;
  background: var(--deep);
  color: var(--linen);
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  transition: background var(--ease);
}
.btn-dark:hover { background: var(--charcoal); color: var(--linen); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--linen-dark);
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid rgba(231,226,222,.3);
  transition: border-color var(--ease), color var(--ease);
}
.btn-outline:hover { border-color: var(--linen-dark); color: var(--linen); }

/* Button language visibility — specificity fix */
button.trf-nl, input[type="submit"].trf-nl { display: inline-block; }
button.trf-en, input[type="submit"].trf-en { display: none; }
body.lang-nl button.trf-nl, body.lang-nl input[type="submit"].trf-nl { display: inline-block; }
body.lang-nl button.trf-en, body.lang-nl input[type="submit"].trf-en { display: none; }
body.lang-en button.trf-nl, body.lang-en input[type="submit"].trf-nl { display: none; }
body.lang-en button.trf-en, body.lang-en input[type="submit"].trf-en { display: inline-block; }

/* ── SECTION ALT ── */
.trf-section--alt { background: var(--linen); }

/* ================================================================
   OVER ONS PAGE
   ================================================================ */

/* ── About hero: dark left + photo right ── */
.trf-about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 70vh;
}
.trf-about-hero__dark {
  background: var(--deep);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trf-big-quote {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--linen);
  margin-bottom: 20px;
}
.trf-big-quote em { font-style: italic; color: var(--linen-mid); }
.trf-about-hero__visual {
  background: var(--linen-mid);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trf-about-hero__visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── Family strip ── */
.trf-family-strip {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--white);
  border-bottom: 1px solid var(--linen-mid);
}
.trf-family-strip::-webkit-scrollbar { display: none; }
.trf-member-card {
  flex: 0 0 200px;
  padding: 36px 28px;
  border-right: 1px solid var(--linen-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trf-member-card:last-child { border-right: none; }
.trf-member-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--linen-mid);
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.trf-member-photo img { width: 100%; height: 100%; object-fit: cover; }
.trf-member-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 4px;
}
.trf-member-role {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}
.trf-member-desc {
  font-size: 12px;
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Story split sections ── */
.trf-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.trf-story-text {
  padding: 72px 64px;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trf-story-text--dark { background: var(--charcoal); }
.trf-story-visual {
  background: var(--linen-mid);
  overflow: hidden;
}
.trf-story-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.trf-story-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 20px;
}
.trf-story-title em { font-style: italic; color: var(--charcoal); }
.trf-story-title--light { color: var(--linen); }
.trf-story-title--light em { color: var(--linen-mid); }
.trf-story-body { font-size: 14px; color: var(--charcoal); line-height: 1.85; font-weight: 300; }
.trf-story-body p { margin-bottom: 14px; }
.trf-story-body--light { color: var(--linen-dark); }
.trf-story-split--full { grid-template-columns: 1fr; }
.trf-story-split--full .trf-story-text { padding: 80px; }

/* ── Values grid ── */
.trf-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.trf-value-card {
  background: var(--linen);
  border: 1px solid var(--linen-mid);
  padding: 44px 36px;
}
.trf-value-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--linen-mid);
  line-height: 1;
  margin-bottom: 18px;
}
.trf-value-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 10px;
}
.trf-value-desc {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.72;
  font-weight: 300;
}

/* ── Over ons responsive ── */
@media (max-width: 1100px) {
  .trf-about-hero { grid-template-columns: 1fr; height: auto; }
  .trf-about-hero__dark { padding: 60px 48px; }
  .trf-about-hero__visual { height: 340px; min-height: 340px; max-height: 340px; }
  .trf-story-split { grid-template-columns: 1fr; }
  .trf-story-text { padding: 56px 48px; }
  .trf-story-split--full .trf-story-text { padding: 64px 48px; }
  .trf-values-grid { grid-template-columns: 1fr 1fr; }
  .trf-family-strip { gap: 0; }
}
@media (max-width: 720px) {
  .trf-about-hero__dark { padding: 44px 20px; }
  .trf-story-text { padding: 44px 20px; }
  .trf-story-split--full .trf-story-text { padding: 44px 20px; }
  .trf-values-grid { grid-template-columns: 1fr; }
  .trf-member-card { flex: 0 0 160px; padding: 24px 16px; }
}

/* ================================================================
   SAMENWERKEN PAGE
   ================================================================ */

/* ── Media kit hero ── */
.trf-mk-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
  padding: 80px;
  gap: 64px;
  align-items: center;
}
.trf-mk-hero > div:first-child { display: flex; flex-direction: column; gap: 0; }
.trf-mk-hero .trf-eyebrow { color: var(--linen-dark); }
.trf-mk-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--linen);
  margin-bottom: 20px;
}
.trf-mk-title em { font-style: italic; color: var(--linen-mid); }
.trf-mk-sub {
  font-size: 14px;
  color: var(--linen-dark);
  line-height: 1.78;
  max-width: 420px;
  margin-bottom: 36px;
  font-weight: 300;
}
.trf-mk-hero > div:last-child { display: flex; flex-direction: column; gap: 2px; }

/* ── Stat cards ── */
.trf-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(231,226,222,.1);
  padding: 20px 24px;
}
.trf-stat-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--linen);
  flex-shrink: 0;
  min-width: 80px;
  line-height: 1;
}
.trf-stat-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--linen-dark);
  font-weight: 400;
  margin-bottom: 3px;
}
.trf-stat-desc { font-size: 12px; color: var(--charcoal); line-height: 1.5; font-weight: 300; }

/* ── Deliverables strip ── */
.trf-demo-bar {
  display: flex;
  background: var(--charcoal);
  border-top: 1px solid rgba(231,226,222,.1);
}
.trf-demo-item {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid rgba(231,226,222,.1);
  text-align: center;
}
.trf-demo-item:last-child { border-right: none; }
.trf-demo-num { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--linen); margin-bottom: 4px; }
.trf-demo-label { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--linen-dark); font-weight: 400; }

/* ── Collab grid ── */
.trf-collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.trf-collab-card {
  background: var(--white);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--linen-mid);
}
.trf-collab-num { font-family: var(--serif); font-size: 42px; font-weight: 300; color: var(--linen-mid); line-height: 1; margin-bottom: 20px; }
.trf-collab-type { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); font-weight: 400; margin-bottom: 8px; }
.trf-collab-name { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--deep); line-height: 1.2; margin-bottom: 14px; }
.trf-collab-desc { font-size: 13px; color: var(--charcoal); line-height: 1.72; font-weight: 300; margin-bottom: 24px; }
.trf-collab-incl { flex: 1; border-top: 1px solid var(--linen-mid); padding-top: 18px; margin-bottom: 24px; }
.trf-collab-incl__title { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal); font-weight: 400; margin-bottom: 10px; }
.trf-incl-item { font-size: 12px; color: var(--charcoal); padding: 5px 0; border-bottom: 1px solid var(--linen-mid); font-weight: 300; }
.trf-incl-item::before { content: '✓  '; color: var(--olive); font-size: 10px; }
.trf-collab-price { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--deep); margin-top: auto; padding-top: 4px; }

/* ── Audience demographics ── */
.trf-audience-grid { display: grid; grid-template-columns: 1fr 1fr; }
.trf-demo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.trf-demo-row__label { font-size: 11px; color: var(--charcoal); min-width: 140px; flex-shrink: 0; font-weight: 300; }
.trf-demo-bar-wrap { flex: 1; height: 4px; background: var(--linen-mid); border-radius: 2px; overflow: hidden; }
.trf-demo-bar-fill { height: 100%; background: var(--olive); border-radius: 2px; }
.trf-demo-pct { font-size: 11px; color: var(--charcoal); min-width: 34px; text-align: right; font-weight: 400; }

/* ── Contact section ── */
.trf-contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--linen);
  padding: 80px;
  gap: 64px;
  align-items: start;
}
.trf-contact-title { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 300; line-height: 1.1; color: var(--deep); margin-bottom: 16px; }
.trf-contact-title em { font-style: italic; color: var(--charcoal); }
.trf-contact-body { font-size: 14px; color: var(--charcoal); line-height: 1.78; font-weight: 300; margin-bottom: 24px; }
.trf-contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--olive);
  border-bottom: 1px solid rgba(103,98,79,.3);
  padding-bottom: 2px;
  margin-bottom: 14px;
  transition: border-color var(--ease);
}
.trf-contact-email:hover { border-color: var(--olive); }
.trf-contact-resp { font-size: 11px; color: var(--linen-dark); letter-spacing: .06em; }

/* ── Contact form ── */
.trf-contact-form { display: flex; flex-direction: column; gap: 10px; }
.trf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.trf-form-input {
  width: 100%;
  border: 1px solid var(--linen-dark);
  background: var(--white);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--deep);
  font-weight: 300;
  outline: none;
  transition: border-color var(--ease);
  appearance: none;
}
.trf-form-input::placeholder { color: var(--charcoal); opacity: .5; }
.trf-form-input:focus { border-color: var(--charcoal); }
textarea.trf-form-input { min-height: 130px; resize: vertical; }
.trf-form-select { cursor: pointer; }

/* ── Samenwerken responsive ── */
@media (max-width: 1100px) {
  .trf-mk-hero { grid-template-columns: 1fr; padding: 64px 48px; gap: 40px; }
  .trf-collab-grid { grid-template-columns: 1fr; }
  .trf-contact-section { grid-template-columns: 1fr; padding: 64px 48px; gap: 40px; }
  .trf-demo-bar { flex-wrap: wrap; }
  .trf-demo-item { min-width: 33.33%; }
  .trf-audience-grid { grid-template-columns: 1fr; }
  .trf-audience-grid > div { padding: 48px !important; }
}
@media (max-width: 720px) {
  .trf-mk-hero { padding: 48px 20px; }
  .trf-demo-bar { flex-wrap: wrap; }
  .trf-demo-item { min-width: 50%; }
  .trf-collab-card { padding: 32px 20px; }
  .trf-contact-section { padding: 48px 20px; gap: 32px; }
  .trf-form-row { grid-template-columns: 1fr; }
  .trf-demo-row__label { min-width: 110px; }
  .trf-audience-grid > div { padding: 40px 20px !important; }
}

/* ================================================================
   2026 REDESIGN — v6 additions
   ================================================================ */

/* ── BUTTON ANIMATIONS — directional fill ── */
.btn-primary,
.btn-dark,
.btn-ghost,
.trf-recent-card__cta,
.trf-author-bio__btn,
.trf-sth__btn,
.trf-newsletter-wave__btn,
.collab-hero__cta,
.collab-tier__cta,
.collab-form__submit,
.trf-btn--primary,
.trf-btn--outline {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.btn-primary::before,
.btn-dark::before,
.btn-ghost::before,
.trf-recent-card__cta::before,
.trf-author-bio__btn::before,
.trf-sth__btn::before,
.trf-newsletter-wave__btn::before,
.trf-recent-articles__all::before,
.collab-hero__cta::before,
.collab-tier__cta::before,
.collab-form__submit::before,
.trf-btn--primary::before,
.trf-btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(var(--fill-tx, -101%), var(--fill-ty, 0%));
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}
/* Dark buttons: different-dark fill — linen text stays readable throughout */
.btn-primary::before                  { background: var(--olive); }
.btn-dark::before                     { background: var(--olive); }
.trf-recent-card__cta::before         { background: var(--olive); }
.trf-author-bio__btn--primary::before { background: var(--olive); }
.collab-hero__cta::before             { background: var(--olive); }
.trf-btn--primary::before             { background: var(--deep); }

/* Light buttons: dark fill — text flips to linen */
.btn-ghost::before                    { background: var(--charcoal); }
.trf-sth__btn::before                 { background: var(--charcoal); }
.trf-author-bio__btn--ghost::before   { background: rgba(58,53,46,.18); }
.trf-newsletter-wave__btn::before     { background: var(--olive); }
.collab-tier__cta::before             { background: var(--charcoal); }
.collab-tier--featured .collab-tier__cta::before { background: var(--olive); }
.collab-form__submit::before          { background: var(--olive); }
.trf-btn--outline::before             { background: var(--olive); }

/* Text contrast on hover — only needed for light buttons */
.btn-ghost:hover,
.trf-sth__btn:hover,
.trf-newsletter-wave__btn:hover { color: var(--linen) !important; }

.btn-primary.is-fill-active::before,
.btn-dark.is-fill-active::before,
.btn-ghost.is-fill-active::before,
.trf-recent-card__cta.is-fill-active::before,
.trf-author-bio__btn.is-fill-active::before,
.trf-sth__btn.is-fill-active::before,
.trf-newsletter-wave__btn.is-fill-active::before,
.trf-recent-articles__all.is-fill-active::before,
.collab-hero__cta.is-fill-active::before,
.collab-tier__cta.is-fill-active::before,
.collab-form__submit.is-fill-active::before,
.trf-btn--primary.is-fill-active::before,
.trf-btn--outline.is-fill-active::before {
  transform: translate(0, 0);
}

/* Ghost arrow spring */
.btn-ghost { gap: 10px; }
.btn-ghost::after {
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  font-size: 15px;
}
.btn-ghost:hover::after { transform: translateX(7px); }

/* Outline — border pulse + fill */
.btn-outline {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(231,226,222,.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77,0,.175,1);
  z-index: -1;
}
.btn-outline:hover::before { transform: scaleX(1); }

/* Nav CTA — vertical fill */
.trf-nav-cta {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.trf-nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--olive);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .38s cubic-bezier(.77,0,.175,1);
  z-index: -1;
}
.trf-nav-cta:hover::before { transform: scaleY(1); }
.trf-nav-cta:hover { background: var(--charcoal); }

/* Tile arrow spring */
.trf-tile__arrow { transition: transform .35s cubic-bezier(.22,1,.36,1); }
.trf-tile:hover .trf-tile__arrow { transform: translateX(8px); }

/* Ripple keyframe */
.trf-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  pointer-events: none;
  transform: scale(0);
  animation: trf-ripple .65s linear forwards;
}
@keyframes trf-ripple {
  to { transform: scale(4); opacity: 0; }
}

/* Section link hover underline slide */
.trf-section-link {
  position: relative;
  padding-bottom: 2px;
}
.trf-section-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--olive);
  transition: width .3s ease;
}
.trf-section-link:hover::after { width: 100%; }


/* ── EDITORIAL GUIDES GRID ── */
.trf-editorial-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.trf-editorial-grid .trf-card:first-child .trf-card__img { aspect-ratio: 3/4.2; }
.trf-editorial-grid .trf-card:not(:first-child) .trf-card__img { aspect-ratio: 16/9; }
.trf-editorial-grid .trf-card:first-child { grid-row: span 2; }
.trf-editorial-grid .trf-card__body { padding: 18px 0 0; }

/* Editorial card — large overlay variant */
.trf-card--overlay {
  position: relative;
}
.trf-card--overlay .trf-card__img {
  position: relative;
}
.trf-card--overlay .trf-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,53,46,.7) 0%, transparent 55%);
  transition: opacity .4s;
}
.trf-card--overlay:hover .trf-card__img::after { opacity: .85; }
.trf-card--overlay .trf-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 22px 24px;
  background: none;
}
.trf-card--overlay .trf-card__cat { color: rgba(231,226,222,.8); }
.trf-card--overlay .trf-card__title {
  color: var(--linen);
  font-size: 26px;
  line-height: 1.15;
}
.trf-card--overlay:hover .trf-card__title { color: var(--linen) !important; }
.trf-card--overlay .trf-card__desc { color: rgba(231,226,222,.75); font-size: 13px; margin-top: 4px; }

/* Guide eyebrow label */
.trf-guide-tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--olive);
  color: var(--linen);
  padding: 4px 10px;
  margin-bottom: 10px;
}

/* ── CONTENT DIVIDER ── */
.trf-content-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 72px 0 52px;
}
.trf-content-divider__line {
  flex: 1;
  height: 1px;
  background: var(--linen-mid);
}
.trf-content-divider__label {
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--linen-dark);
  white-space: nowrap;
}

/* ── BLOG NUMBERED ROW ── */
.trf-blog-row { display: flex; flex-direction: column; }
.trf-blog-post {
  display: grid;
  grid-template-columns: 64px 1fr 130px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--linen-mid);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding var(--ease);
}
.trf-blog-post:last-child { border-bottom: none; }
.trf-blog-post::before {
  content: '';
  position: absolute;
  inset: 0 -40px;
  background: var(--white);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
}
.trf-blog-post:hover::before { opacity: 1; }
.trf-blog-post:hover { padding-left: 8px; }

.trf-blog-idx {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--linen-dark);
  line-height: 1;
  letter-spacing: -.02em;
  transition: color .35s ease;
}
.trf-blog-post:hover .trf-blog-idx { color: var(--olive); }

.trf-blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; flex-wrap: wrap; }
.trf-blog-cat-pill {
  font-size: 8px; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(103,98,79,.12); color: var(--olive);
  padding: 3px 9px; font-weight: 400;
}
.trf-blog-readtime { font-size: 10px; color: var(--linen-dark); letter-spacing: .06em; }
.trf-blog-name {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.22;
  color: var(--deep);
  margin-bottom: 7px;
  transition: color .3s;
}
.trf-blog-post:hover .trf-blog-name { color: var(--olive); }
.trf-blog-snip { font-size: 13px; color: var(--charcoal); line-height: 1.65; }

.trf-blog-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--linen-mid);
  transition: transform .5s ease;
  display: block;
  overflow: hidden;
}
.trf-blog-post:hover .trf-blog-thumb { transform: scale(1.07); }
.trf-blog-thumb-wrap { overflow: hidden; }
.trf-blog-thumb-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--linen-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal); opacity: .4;
}

/* ── READING PROGRESS BAR ── */
.trf-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--olive);
  z-index: 1002;
  transition: width .08s linear;
  pointer-events: none;
}

/* ── DROPDOWN NAV ── */
.trf-nav .menu li.has-dropdown { position: relative; }

.trf-nav-drop-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-family: var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  padding: 0 0 3px;
  transition: color var(--ease), background var(--ease), border-color var(--ease), opacity var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.trf-nav-drop-btn:hover,
.has-dropdown.is-open .trf-nav-drop-btn {
  color: var(--deep);
  border-bottom-color: var(--olive);
}
.trf-chevron { transition: transform .22s ease; flex-shrink: 0; }
.has-dropdown.is-open .trf-chevron { transform: rotate(180deg); }

.trf-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  background: var(--white);
  border: 1px solid var(--linen-mid);
  min-width: 180px;
  box-shadow: 0 16px 48px rgba(58,53,46,.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.has-dropdown.is-open .trf-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.trf-dropdown li { border: none; }
.trf-dropdown li a {
  display: block !important;
  padding: 11px 18px !important;
  font-size: 11px !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: var(--charcoal) !important;
  border-bottom: 1px solid var(--linen-mid) !important;
  border-left: none !important;
  transition: background var(--ease), color var(--ease), padding-left var(--ease) !important;
}
.trf-dropdown li:last-child a { border-bottom: none !important; }
.trf-dropdown li a:hover {
  background: var(--linen) !important;
  color: var(--deep) !important;
  padding-left: 24px !important;
}

/* ── SCROLL REVEAL UTILITIES ── */
.trf-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.trf-reveal--left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.trf-reveal--right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.trf-reveal.is-visible,
.trf-reveal--left.is-visible,
.trf-reveal--right.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered children */
.trf-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.trf-stagger.is-visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0s; }
.trf-stagger.is-visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: .1s; }
.trf-stagger.is-visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: .2s; }
.trf-stagger.is-visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: .3s; }
.trf-stagger.is-visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: .4s; }
.trf-stagger.is-visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: .5s; }
.trf-stagger.is-visible > *:nth-child(n+7) { opacity: 1; transform: none; transition-delay: .55s; }

/* ── COUNTER ANIMATION ── */
.trf-num__val { transition: opacity .3s; }

/* ── TOC (Table of Contents) ── */
.trf-toc-wrap .trf-widget__title { cursor: default; }
.trf-toc__list { list-style: none; padding: 0; margin: 0; }
.trf-toc__list li { }
.trf-toc__list a {
  display: block;
  font-size: 12px;
  color: var(--charcoal);
  padding: 7px 0 7px 0;
  border-bottom: 1px solid var(--linen-mid);
  line-height: 1.45;
  transition: color var(--ease), padding-left var(--ease);
}
.trf-toc__list li:last-child a { border-bottom: none; }
.trf-toc__list a:hover { color: var(--olive); padding-left: 6px; }
.trf-toc__list a.is-active { color: var(--olive); font-weight: 500; padding-left: 6px; }
.trf-toc__h3 a { padding-left: 12px !important; font-size: 11px; opacity: .8; }
.trf-toc__h3 a:hover { padding-left: 18px !important; }

/* ── FLOATING SOCIAL SHARE ── */
.trf-share {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 88;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.trf-share.is-visible { opacity: 1; pointer-events: all; }
.trf-share__label {
  writing-mode: vertical-lr;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--linen-dark);
  margin-bottom: 4px;
}
.trf-share__btn {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--linen-mid);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.trf-share__btn:hover { background: var(--deep); color: var(--linen); border-color: var(--deep); }
.trf-share__line {
  width: 1px; height: 32px;
  background: var(--linen-dark); opacity: .4;
}

/* ── SCROLL TO TOP ── */
@keyframes scrollPulseUp {
  0%   { transform: translateY(100%); }
  65%  { transform: translateY(-100%); }
  100% { transform: translateY(-100%); }
}
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 32px;
  z-index: 110;
  mix-blend-mode: difference;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 360ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 360ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top__line {
  width: 1px;
  height: 48px;
  overflow: hidden;
  position: relative;
}
.scroll-top__line::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollPulseUp 2.2s linear infinite;
}
.scroll-top__label {
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transform: rotate(90deg);
  white-space: nowrap;
}
.scroll-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: -12px;
  right: -12px;
  bottom: -20px;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top__line::before, .trf-hero__scroll-line::before { animation: none; }
}
@media (max-width: 600px) {
  .scroll-top { bottom: 1.25rem; right: 20px; }
}

/* ── ENHANCED CARD HOVER ── */
.trf-card { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.trf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(58,53,46,.09);
}
.trf-card__title { transition: color var(--ease); }
.trf-card:hover .trf-card__title { color: var(--olive); }

/* ── ARCHIVE FILTER TABS ── */
.trf-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.trf-filter__btn {
  background: none;
  border: 1px solid var(--linen-dark);
  padding: 7px 16px;
  font-family: var(--sans);
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal); cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease), opacity var(--ease);
}
.trf-filter__btn:hover,
.trf-filter__btn.is-active {
  background: var(--charcoal); border-color: var(--charcoal); color: var(--linen);
}
.trf-card.is-hidden { display: none; }

/* ── TILE HOVER LIFT ── */
.trf-tile {
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.trf-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(58,53,46,.1);
  opacity: 1 !important;
}

/* ── NUMS BAR HOVER ── */
.trf-num { transition: background var(--ease); border-radius: 12px; }
.trf-num:hover { background: rgba(231,226,222,.06); border-radius: 12px; }

/* ── RESPONSIVE: editorial grid + blog row ── */
@media (max-width: 1100px) {
  .trf-editorial-grid { grid-template-columns: 1fr 1fr; }
  .trf-editorial-grid .trf-card:first-child { grid-row: auto; }
  .trf-editorial-grid .trf-card:first-child .trf-card__img { aspect-ratio: 16/9; }
  .trf-blog-post { grid-template-columns: 52px 1fr 100px; gap: 18px; }
  .trf-blog-idx { font-size: 36px; }
}

/* ── RESPONSIVE: new elements ── */
@media (max-width: 1200px) {
  .trf-share { display: none; }
}
@media (max-width: 720px) {
  .scroll-top { bottom: 1.25rem; right: 20px; }
  .trf-editorial-grid { grid-template-columns: 1fr; }
  .trf-blog-post { grid-template-columns: 40px 1fr; }
  .trf-blog-thumb-wrap { display: none; }
  .trf-blog-idx { font-size: 30px; }
  .trf-content-divider { margin: 44px 0 32px; }
  .trf-dropdown {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--linen-mid) !important;
    padding-left: 10px;
    margin-top: 6px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none;
  }
  .has-dropdown.is-open .trf-dropdown { display: block; }
  .trf-nav-drop-btn { font-size: 14px; font-weight: 400; letter-spacing: .04em; text-transform: none; padding: 0; }
}

/* ================================================================
   2026 DESIGN SWEEP — editorial refinement, UX/UI full pass
   ================================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --espresso:       #2C1810;
  --sand:           #F4F0EC;
  --shadow-sm:      0 1px 3px rgba(58,53,46,.08), 0 1px 2px rgba(58,53,46,.05);
  --shadow-md:      0 4px 16px rgba(58,53,46,.09), 0 2px 6px rgba(58,53,46,.05);
  --shadow-lg:      0 12px 40px rgba(58,53,46,.10), 0 4px 12px rgba(58,53,46,.06);
  --shadow-xl:      0 24px 64px rgba(58,53,46,.13), 0 8px 24px rgba(58,53,46,.07);
  --ease-spring:    cubic-bezier(.22,1,.36,1);
  --ease-out-expo:  cubic-bezier(.19,1,.22,1);
  --ease-in-expo:   cubic-bezier(.95,.05,.795,.035);
}

/* ── COLOR SCHEME ── */
:root { color-scheme: light; }

/* ── GRAIN TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
}

/* ── SELECTION ── */
::selection { background: rgba(103,98,79,.18); color: var(--deep); }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--linen); }
::-webkit-scrollbar-thumb { background: var(--linen-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--charcoal); }
@supports (scrollbar-width: thin) {
  html { scrollbar-width: thin; scrollbar-color: var(--linen-dark) var(--linen); }
}

/* ── FOCUS SYSTEM ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 1px;
}
.trf-section--dark :focus-visible,
.trf-section--deep :focus-visible,
.trf-split__text :focus-visible,
.trf-newsletter-wave :focus-visible,
.trf-search-overlay :focus-visible { outline-color: rgba(231,226,222,.8); }

/* ── TOUCH ACTIONS (global) ── */
button, a, [role="button"],
input[type="submit"], input[type="button"],
.trf-tab, .trf-filter__btn, .trf-lang-btn,
.trf-cat-nav__item, .trf-arc-card {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── TABULAR NUMS ── */
.trf-num__val, .trf-blog-idx, .trf-cat-hero__count-num,
.trf-stat-num, .trf-float__num, .trf-collab-num,
.trf-value-num, .trf-demo-pct { font-variant-numeric: tabular-nums; }

/* ── SCROLL MARGIN on anchors ── */
[id] { scroll-margin-top: 82px; }

/* ── TYPOGRAPHY: balance headings, pretty body ── */
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
p, li { text-wrap: pretty; }

/* ── FIX: transition:all violations → compositor-safe ── */
.trf-lang-btn       { transition: opacity var(--ease), background var(--ease), color var(--ease) !important; }
.trf-tab            { transition: color var(--ease), border-bottom-color var(--ease) !important; }
.trf-form-input     { transition: border-color var(--ease), box-shadow var(--ease) !important; }
.trf-pill           { transition: color var(--ease), border-color var(--ease) !important; }
.trf-arc-card       { transition: box-shadow .4s ease !important; }
.trf-blog-post      { transition: padding-left var(--ease) !important; }

/* ── SKIP LINK ── */
.trf-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--deep);
  color: var(--linen);
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 10000;
  transition: top .2s ease;
}
.trf-skip-link:focus-visible { top: 8px; outline: 2px solid var(--linen); outline-offset: 2px; }

/* ── NAV REFINEMENTS ── */
.trf-nav { transition: box-shadow 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1); }
.trf-nav.is-scrolled { box-shadow: 0 4px 24px rgba(58,53,46,.1); }

/* Nav link — underline slide replaces border-bottom */
.trf-nav .menu li a {
  border-bottom: none !important;
  position: relative;
  padding-bottom: 4px;
}
.trf-nav .menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s var(--ease-spring);
}
.trf-nav .menu li a:hover::after,
.trf-nav .menu li.current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Min-height touch targets */
.trf-nav-cta, .btn-primary, .btn-dark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trf-filter__btn { min-height: 44px; }
.trf-tab         { min-height: 44px; display: inline-flex; align-items: center; }

/* ── BUTTON HOVER — espresso (override fill sweep) ── */
.trf-nav-cta::before { display: none !important; }
.btn-primary:focus-visible,
.btn-dark:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }
.trf-nav-cta:hover,
.trf-nav-cta:focus-visible { background: var(--espresso) !important; color: var(--linen) !important; }
.trf-newsletter__btn:hover { background: var(--espresso) !important; }

/* ── WIDGET LINKS hover ── */
.trf-widget a:hover { color: var(--espresso) !important; }
.trf-post-tag:hover { color: var(--espresso); border-color: var(--espresso); }

/* ── SECTION ATMOSPHERICS ── */
.trf-section {
  background: linear-gradient(180deg, var(--linen) 0%, rgba(231,226,222,.95) 100%);
}
.trf-section--white {
  background: linear-gradient(180deg, var(--white) 0%, rgba(252,250,248,.97) 100%);
}

/* ── IMPROVED CARD HOVER ── */
.trf-card {
  transition: box-shadow .4s ease;
}
.trf-card:hover {
  box-shadow: var(--shadow-xl);
}

/* ── IMAGE SHIMMER LOADING ── */
@keyframes trf-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.trf-card__img-placeholder,
.trf-arc-card__placeholder,
.trf-recent-card__img-placeholder,
.trf-widget-post__thumb-placeholder,
.trf-hero__placeholder {
  background: linear-gradient(90deg, var(--linen-mid) 25%, var(--linen) 50%, var(--linen-mid) 75%);
  background-size: 200% 100%;
  animation: trf-shimmer 1.6s ease-in-out infinite;
}

/* ── HERO ATMOSPHERIC ── */
.trf-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,53,46,.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ── NUMBERS BAR ── */
.trf-nums {
  background: linear-gradient(90deg, var(--deep) 0%, var(--espresso) 100%);
}

/* ── SECTION TITLE REFINEMENTS ── */
.trf-section-title,
.trf-hero__title,
.trf-cat-hero__title,
.trf-post-title,
.trf-split__title,
.trf-mk-title,
.trf-contact-title,
.trf-big-quote,
.trf-story-title,
.trf-card__title,
.trf-arc-card__title,
.trf-recent-card__title,
.trf-newsletter-wave__title { text-wrap: balance; }

/* ── IMPROVED CARD BODIES ── */
.trf-arc-card__title { letter-spacing: -.01em; }
.trf-recent-card__title { letter-spacing: -.01em; }

/* ── IMPROVED BLOCKQUOTE ── */
.trf-post-body blockquote {
  position: relative;
  border-left: none;
  padding: 28px 32px 28px 52px;
  margin: 36px 0;
  background: var(--linen);
  border-radius: var(--radius-sm);
}
.trf-post-body blockquote::before {
  content: '\201C';
  position: absolute;
  left: 14px;
  top: 8px;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  color: var(--olive);
  opacity: .25;
  pointer-events: none;
}

/* ── DROP CAP on first paragraph ── */
.trf-post-body > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.8em;
  font-weight: 300;
  line-height: .8;
  float: left;
  margin: .06em .12em -.05em 0;
  color: var(--olive);
}

/* ── POST HERO SHADOW ── */
.trf-post-hero { box-shadow: var(--shadow-lg); }

/* ── READING WIDTH ── */
.trf-post-body { max-width: 68ch; }

/* ── IMPROVED WIDGET ── */
.trf-widget { transition: box-shadow .3s ease; }
.trf-widget:hover { box-shadow: var(--shadow-md); }

/* ── PILL HOVER ── */
.trf-pill:hover { border-color: var(--espresso) !important; color: var(--espresso) !important; }
.trf-blog-cat-pill { transition: background var(--ease), color var(--ease); }

/* ── SECTION LINK HOVER ── */
.trf-section-link { position: relative; padding-bottom: 2px; }
.trf-section-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--olive);
  transition: width .3s ease;
}
.trf-section-link:hover::after { width: 100%; }
.trf-section-link:hover { color: var(--espresso); }

/* ── FOOTER REFINEMENTS ── */
.trf-footer { background: var(--olive) !important; }
.trf-footer__col-title { color: var(--deep) !important; font-weight: 600 !important; }

/* ── PAGE ENTRANCE ANIMATION ── */
@keyframes trf-page-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trf-hero, .trf-cat-hero, .trf-page-header, .trf-post-layout, .trf-mk-hero {
  animation: trf-page-in .5s var(--ease-spring) both;
}

/* ── STAGGER NUMS (page load) ── */
.trf-nums .trf-num:nth-child(1) { animation: trf-page-in .5s var(--ease-spring) .05s both; }
.trf-nums .trf-num:nth-child(2) { animation: trf-page-in .5s var(--ease-spring) .10s both; }
.trf-nums .trf-num:nth-child(3) { animation: trf-page-in .5s var(--ease-spring) .15s both; }
.trf-nums .trf-num:nth-child(4) { animation: trf-page-in .5s var(--ease-spring) .20s both; }

/* ── NAV SEARCH TRIGGER ── */
.trf-nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.trf-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(176,168,158,.15);
  border: 1.5px solid var(--linen-dark);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.trf-search-trigger:hover { border-color: var(--charcoal); background: rgba(176,168,158,.28); color: var(--deep); }

.trf-nav-social { display: flex; align-items: center; gap: 6px; }
.trf-nav-social__icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--linen-dark); color: var(--charcoal);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  flex-shrink: 0; min-height: 34px; min-width: 34px;
}
.trf-nav-social__icon svg { width: 13px; height: 13px; }
.trf-nav-social__icon:hover { background: var(--espresso); color: var(--linen); border-color: var(--espresso); }

/* ── SEARCH OVERLAY ── */
.trf-search-overlay {
  position: fixed; inset: 0;
  background: rgba(58,53,46,.94);
  z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  overscroll-behavior: contain;
}
.trf-search-overlay.is-open { opacity: 1; pointer-events: all; }
.trf-search-overlay__inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  width: 100%; max-width: 640px; padding: 0 32px;
}
.trf-search-overlay__label {
  font-family: var(--serif);
  font-size: clamp(22px,3vw,34px);
  font-weight: 300; color: var(--linen);
  text-align: center; letter-spacing: -.01em; text-wrap: balance;
}
.trf-search-overlay__form {
  display: flex; width: 100%;
  background: var(--white); border-radius: 100px; overflow: hidden;
}
.trf-search-overlay__input {
  flex: 1; border: none; background: transparent;
  padding: 16px 20px; font-family: var(--sans);
  font-size: 15px; color: var(--deep); outline: none;
}
.trf-search-overlay__input::placeholder { color: var(--charcoal); opacity: .5; }
.trf-search-overlay__submit {
  background: var(--charcoal); border: none; color: var(--linen);
  padding: 0 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  align-self: stretch;
  transition: background var(--ease); min-width: 52px;
}
.trf-search-overlay__submit:hover { background: var(--espresso); }
.trf-search-overlay__close {
  background: none; border: 1px solid rgba(231,226,222,.3); color: var(--linen-dark);
  font-family: var(--sans); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 20px; cursor: pointer; border-radius: 20px;
  transition: border-color var(--ease), color var(--ease); min-height: 44px;
}
.trf-search-overlay__close:hover { border-color: var(--linen); color: var(--linen); }

/* ── FOOTER — SIOH 4-column ── */
.trf-footer { background: var(--olive) !important; padding: 64px 80px 32px !important; border-top: 1px solid var(--linen-mid); }
.trf-footer__top {
  display: grid !important; grid-template-columns: repeat(4,1fr) !important;
  gap: 40px !important; padding-bottom: 48px !important;
  border-bottom: 1px solid rgba(176,168,158,.4) !important;
  margin-bottom: 28px !important; align-items: start !important;
}
.trf-footer__col { display: flex; flex-direction: column; gap: 0; }
.trf-footer__col-title {
  font-size: 10px !important; letter-spacing: .18em !important;
  text-transform: uppercase !important; color: var(--deep) !important;
  margin-bottom: 18px !important; font-weight: 600 !important;
}
.trf-footer__col a {
  display: block; font-size: 13px;
  color: var(--charcoal) !important; margin-bottom: 9px;
  transition: color var(--ease); font-weight: 300;
}
.trf-footer__col a:hover { color: var(--espresso) !important; padding-left: 3px; }
.trf-footer__menu li a { color: var(--charcoal) !important; }
.trf-footer__menu li a:hover { color: var(--espresso) !important; }

.trf-footer__socials { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 16px; }
.trf-footer__social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(85,78,70,.3);
  color: var(--charcoal);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  flex-shrink: 0;
}
.trf-footer__social-icon:hover {
  background: rgba(58,53,46,.08);
  border-color: var(--charcoal);
  color: var(--deep);
  transform: translateY(-2px);
}

.trf-footer__bottom {
  display: flex !important; align-items: center !important;
  justify-content: space-between !important; font-size: 11px !important;
  color: var(--charcoal) !important; flex-wrap: wrap; gap: 10px;
}
.trf-footer__bottom-left { display: flex; align-items: center; gap: 10px; }
.trf-footer__bottom-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trf-footer__logo-inline { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--deep); letter-spacing: .06em; }
.trf-footer__logo-inline em { font-style: italic; color: var(--olive); }
.trf-footer__bottom-sep { color: var(--linen-dark); }
.trf-footer__bottom a { color: var(--charcoal); transition: color var(--ease); }
.trf-footer__bottom a:hover { color: var(--espresso); }

/* ── ABOUT AUTHOR WIDGET ── */
.trf-widget-author {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; padding: 24px;
  background: var(--white); border: 1px solid var(--linen-mid);
}
.trf-widget-author__photo {
  width: 74px; height: 74px; border-radius: 50%;
  overflow: hidden; background: var(--linen-mid); flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--linen), 0 0 0 5px var(--linen-mid);
}
.trf-widget-author__photo img { width: 100%; height: 100%; object-fit: cover; }
.trf-widget-author__role {
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--olive); font-weight: 400; margin-top: 4px;
}
.trf-widget-author__name { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--deep); line-height: 1.2; }
.trf-widget-author__bio { font-size: 12px; color: var(--charcoal); line-height: 1.7; font-weight: 300; }
.trf-widget-author__link { font-size: 11px; color: var(--charcoal); letter-spacing: .06em; margin-top: 2px; transition: color var(--ease); }
.trf-widget-author__link:hover { color: var(--espresso); }
.trf-widget-author__arrow { display: inline-block; transition: transform .2s ease; }
.trf-widget-author__link:hover .trf-widget-author__arrow { transform: translateX(5px); }
.trf-widget-author__socials { display: flex; gap: 7px; justify-content: center; margin-top: 4px; }
.trf-widget-author__social {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--linen-dark); color: var(--charcoal);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.trf-widget-author__social svg { width: 12px; height: 12px; }
.trf-widget-author__social:hover { background: var(--espresso); color: var(--linen); border-color: var(--espresso); }

/* ── WIDGET POSTS with thumbnails ── */
.trf-widget-posts { display: flex; flex-direction: column; gap: 0; }
.trf-widget-post {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--linen-mid);
  text-decoration: none; color: inherit;
  transition: background var(--ease), padding-left var(--ease);
}
.trf-widget-post:last-child { border-bottom: none; }
.trf-widget-post:hover { padding-left: 4px; }
.trf-widget-post__img {
  width: 72px; height: 56px; flex-shrink: 0;
  overflow: hidden; background: var(--linen-mid);
}
.trf-widget-post__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease-spring); }
.trf-widget-post:hover .trf-widget-post__img img { transform: scale(1.07); }
.trf-widget-post__thumb { width: 72px; height: 56px; object-fit: cover; flex-shrink: 0; background: var(--linen-mid); display: block; }
.trf-widget-post__thumb-placeholder { width: 72px; height: 56px; flex-shrink: 0; background: var(--linen-mid); display: flex; align-items: center; justify-content: center; font-size: 8px; color: var(--charcoal); opacity: .4; }
.trf-widget-post__title { font-family: var(--serif); font-size: 14px; font-weight: 400; color: var(--deep); line-height: 1.3; transition: color var(--ease); min-width: 0; }
.trf-widget-post:hover .trf-widget-post__title { color: var(--espresso); }

/* ── PINTEREST BANNER ── */
.trf-pinterest-banner {
  display: flex; align-items: center; gap: 24px;
  background: var(--white); border: 1px solid var(--linen-mid);
  border-left: 4px solid #E60023;
  padding: 22px 28px; margin: 40px 0; border-radius: 2px;
}
.trf-pinterest-banner__arrow { display: inline-block; transition: transform .2s ease; }
.trf-pinterest-banner:hover .trf-pinterest-banner__arrow { transform: translateX(5px); }
.trf-pinterest-banner__text { flex: 1; min-width: 0; }
.trf-pinterest-banner__heading {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--deep); margin-bottom: 6px; text-wrap: balance;
}
.trf-pinterest-banner__sub { font-size: 13px; color: var(--charcoal); font-weight: 300; margin-bottom: 12px; }
.trf-pinterest-banner__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E60023; color: #fff; font-family: var(--sans);
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 18px; font-weight: 400; transition: background .2s ease;
  text-decoration: none; min-height: 44px; border-radius: 100px;
}
.trf-pinterest-banner__btn:hover { background: #c0001e; }
.trf-pinterest-banner__pin {
  flex-shrink: 0; width: 80px; height: 104px;
  overflow: hidden; transform: rotate(3deg);
  box-shadow: var(--shadow-lg);
}
.trf-pinterest-banner__pin img { width: 100%; height: 100%; object-fit: cover; }

/* ── FULL SHARING SECTION ── */
.trf-post-share {
  margin-top: 32px; padding: 24px 0; border-top: 1px solid var(--linen-mid);
}
.trf-post-share__label {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--linen-dark); margin-bottom: 12px; font-weight: 400;
}
.trf-post-share__row { display: flex; gap: 10px; flex-wrap: nowrap; }
.trf-post-share__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; flex: none;
  background: var(--charcoal); border: none; color: #fff;
  cursor: pointer; border-radius: 10px;
  transition: opacity .2s ease, transform .15s ease;
}
.trf-post-share__btn:hover { opacity: .82; transform: translateY(-1px); }
.trf-post-share__btn--facebook  { background: #1877F2; }
.trf-post-share__btn--whatsapp  { background: #25D366; }
.trf-post-share__btn--twitter   { background: #000; }
.trf-post-share__btn--pinterest { background: #E60023; }
.trf-post-share__btn--copy      { background: var(--charcoal); }
.trf-post-share__btn--email     { background: var(--olive); }
.trf-post-share__btn span { display: none; }
body.lang-nl .trf-post-share__btn span { display: none !important; }
.trf-post-share__btn svg { flex-shrink: 0; }

/* ── COMMENT SECTION ── */
.trf-comments {
  margin-top: 56px; padding-top: 44px; border-top: 2px solid var(--linen-mid);
}
.trf-comments .comments-title {
  font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--deep); margin-bottom: 32px; text-wrap: balance;
}
.trf-comments .comment-list { list-style: none; padding: 0; }
.trf-comments .comment { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--linen-mid); }
.trf-comments .comment:last-child { border-bottom: none; }
.trf-comments .comment-author img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.trf-comments .comment-content { flex: 1; min-width: 0; }
.trf-comments .comment-author .fn { font-weight: 500; font-size: 13px; color: var(--deep); }
.trf-comments .comment-metadata { font-size: 11px; color: var(--linen-dark); margin: 2px 0 10px; }
.trf-comments .comment-metadata a { color: var(--linen-dark); }
.trf-comments p { font-size: 14px; color: var(--charcoal); line-height: 1.7; margin-bottom: 8px; }
.trf-comments .reply a { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); }
.trf-comments .reply a:hover { color: var(--espresso); }
.trf-comments label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; font-weight: 400; }
.trf-comments textarea,
.trf-comments input[type="text"],
.trf-comments input[type="email"],
.trf-comments input[type="url"] {
  width: 100%; border: 1px solid var(--linen-dark); background: var(--white);
  padding: 12px 16px; font-family: var(--sans); font-size: 13px;
  color: var(--deep); outline: none; transition: border-color var(--ease), box-shadow var(--ease); margin-bottom: 12px;
}
.trf-comments textarea:focus,
.trf-comments input:focus { border-color: var(--charcoal); box-shadow: 0 0 0 3px rgba(85,78,70,.1); }
.trf-comments textarea { min-height: 120px; resize: vertical; }
.trf-comments .form-submit input[type="submit"] {
  background: var(--charcoal); color: var(--linen); border: none;
  padding: 12px 28px; font-family: var(--sans); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
  transition: background var(--ease); min-height: 44px;
}
.trf-comments .form-submit input[type="submit"]:hover { background: var(--espresso); }
.trf-comments #reply-title { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--deep); margin-bottom: 20px; }
.trf-comments .comment-notes { font-size: 12px; color: var(--linen-dark); margin-bottom: 20px; }
.trf-comments #comment-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }

/* ── FLOATING SHARE ── */
.trf-share { position: fixed; left: 24px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 88; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.trf-share.is-visible { opacity: 1; pointer-events: all; }
.trf-share__label { writing-mode: vertical-lr; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: var(--linen-dark); margin-bottom: 4px; }
.trf-share__btn {
  width: 36px; height: 36px; background: var(--white);
  border: 1px solid var(--linen-mid); border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); cursor: pointer; text-decoration: none; font-size: 13px;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.trf-share__btn:hover { background: var(--espresso); color: var(--linen); border-color: var(--espresso); transform: scale(1.1); }
.trf-share__btn--pinterest:hover { background: #E60023; border-color: #E60023; color: #fff; }
.trf-share__line { width: 1px; height: 32px; background: var(--linen-dark); opacity: .4; }

/* ── TOC CHAPTERS GRID ── */
.trf-toc-wrap .trf-toc__list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 12px; }
.trf-toc-wrap .trf-toc__h3 { grid-column: 1 / -1; }
.trf-toc__list a {
  font-size: 11px; padding: 6px 0;
  display: flex; align-items: flex-start; gap: 6px;
  border-bottom: 1px solid var(--linen-mid);
  transition: color var(--ease), padding-left var(--ease);
}
.trf-toc__list li:last-child a { border-bottom: none; }
.trf-toc__list a::before { content: '§'; color: var(--linen-dark); flex-shrink: 0; font-size: 10px; opacity: .5; margin-top: 1px; transition: opacity var(--ease), color var(--ease); }
.trf-toc__list a:hover::before, .trf-toc__list a.is-active::before { opacity: 1; color: var(--olive); }
.trf-toc__list a:hover { color: var(--olive); padding-left: 4px; }
.trf-toc__list a.is-active { color: var(--olive); font-weight: 500; padding-left: 4px; }
.trf-toc__h3 a { padding-left: 12px !important; font-size: 11px; opacity: .8; }

/* ── RECENT ARTICLES ── */
.trf-recent-articles { background: linear-gradient(180deg, var(--linen) 0%, rgba(231,226,222,.95) 100%); padding: 80px; }
.trf-recent-articles__head { text-align: center; margin-bottom: 52px; }
.trf-recent-articles__eyebrow { display: block; font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--olive); margin-bottom: 12px; font-weight: 400; }
.trf-recent-articles__title { font-family: var(--serif); font-size: clamp(34px,4vw,52px); font-weight: 300; color: var(--deep); line-height: 1.08; letter-spacing: -.01em; }
.trf-recent-articles__title em { font-style: italic; color: var(--charcoal); }
.trf-recent-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 52px; }
.trf-recent-card {
  display: flex; flex-direction: column; background: var(--white);
  overflow: hidden; color: inherit;
  transition: box-shadow .4s ease;
  border: 1px solid transparent;
  border-radius: 20px;
}
.trf-recent-card:hover { box-shadow: var(--shadow-xl); border-color: var(--linen-mid); }
.trf-recent-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--linen-mid); position: relative; }
.trf-recent-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); display: block; }
.trf-recent-card:hover .trf-recent-card__img img { transform: scale(1.07); }
.trf-recent-card__img-placeholder { width: 100%; height: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--charcoal); opacity: .35; letter-spacing: .12em; text-transform: uppercase; }
.trf-recent-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.trf-recent-card__cat { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 8px; font-weight: 400; }
.trf-recent-card__title { font-family: var(--serif); font-size: clamp(18px,1.6vw,22px); font-weight: 400; line-height: 1.22; color: var(--deep); margin-bottom: 10px; transition: color var(--ease); }
.trf-recent-card:hover .trf-recent-card__title { color: var(--espresso); }
.trf-recent-card__title a { color: inherit; }
.trf-recent-card__excerpt { font-size: 13px; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; font-weight: 300; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.trf-recent-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 400; margin-top: auto;
  background: var(--linen); padding: 9px 16px;
  border: 1px solid var(--linen-mid);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  align-self: flex-start; min-height: 44px; border-radius: 100px;
}
.trf-recent-card:hover .trf-recent-card__cta,
.trf-recent-card__cta:hover { background: var(--espresso); color: var(--linen); border-color: var(--espresso); transform: translateY(-1px); }
.trf-recent-articles__footer { text-align: center; }
.trf-recent-articles__all {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--charcoal); color: var(--linen);
  font-family: var(--sans); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; padding: 14px 40px; font-weight: 400;
  min-height: 52px; border-radius: 100px;
  position: relative; z-index: 0; overflow: hidden;
  text-decoration: none;
}
.trf-recent-articles__all::before { background: var(--olive); }
.trf-recent-articles__all::after { content: '→'; font-size: 15px; }

/* ── NEWSLETTER WAVE ── */
.trf-newsletter-wave { position: relative; overflow: hidden; background: var(--charcoal); }
.trf-newsletter-wave__bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--deep) 0%, var(--charcoal) 50%, var(--olive) 100%); opacity: .9; }
.trf-newsletter-wave__blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.trf-newsletter-wave__blob--1 { width: 280px; height: 280px; background: rgba(103,98,79,.5); top: -60px; right: 20%; }
.trf-newsletter-wave__blob--2 { width: 200px; height: 200px; background: rgba(180,130,80,.3); bottom: -40px; left: 30%; }
.trf-newsletter-wave__inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 48px; padding: 28px 60px; }
.trf-newsletter-wave__content { flex: 1; }
.trf-newsletter-wave__eyebrow { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(231,226,222,.6); margin-bottom: 10px; font-weight: 400; }
.trf-newsletter-wave__title { font-family: var(--serif); font-size: clamp(28px,3.2vw,44px); font-weight: 300; color: var(--linen); line-height: 1.1; margin-bottom: 8px; letter-spacing: -.01em; }
.trf-newsletter-wave__title em { font-style: italic; color: rgba(231,226,222,.7); }
.trf-newsletter-wave__sub { font-size: 14px; color: rgba(231,226,222,.6); line-height: 1.7; font-weight: 300; margin-bottom: 0; max-width: 380px; }
.trf-newsletter-wave__form { display: flex; max-width: 400px; background: rgba(255,255,255,.1); border: 1px solid rgba(231,226,222,.2); border-radius: 100px; overflow: hidden; backdrop-filter: blur(4px); }
.trf-newsletter-wave__input { flex: 1; background: transparent; border: none; padding: 13px 20px; font-family: var(--sans); font-size: 13px; color: var(--linen); outline: none; }
.trf-newsletter-wave__input::placeholder { color: rgba(231,226,222,.45); }
.trf-newsletter-wave__btn { background: var(--charcoal); color: var(--linen); border: none; padding: 13px 22px; font-family: var(--sans); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; cursor: pointer; border-radius: 0 100px 100px 0; white-space: nowrap; transition: color .42s cubic-bezier(.25,.46,.45,.94); min-height: 50px; }
.trf-newsletter-wave__btn:hover { color: var(--linen); }
.trf-newsletter-wave__photo { flex-shrink: 0; width: 160px; height: 160px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(231,226,222,.2); box-shadow: var(--shadow-xl); }
.trf-newsletter-wave__photo img { width: 100%; height: 100%; object-fit: cover; }
.trf-newsletter-wave__photo-placeholder { width: 100%; height: 100%; background: rgba(231,226,222,.1); display: flex; align-items: center; justify-content: center; font-size: 10px; color: rgba(231,226,222,.4); letter-spacing: .1em; text-transform: uppercase; }

/* ── SECTION WHITE equal 3-col images ── */
.trf-section--white .trf-grid--3 .trf-card .trf-card__img,
.trf-section--white .trf-card .trf-card__img { aspect-ratio: 16/10 !important; }

/* ── READING PROGRESS ── */
.trf-progress { position: fixed; top: 0; left: 0; width: 0%; height: 2px; background: linear-gradient(90deg, var(--olive), var(--espresso)); z-index: 1002; transition: width .08s linear; pointer-events: none; }

/* ── PRINT STYLES ── */
@media print {
  .trf-nav, .trf-lang-bar, .trf-sidebar, .trf-share, .scroll-top,
  .trf-progress, .trf-search-overlay, .trf-pinterest-banner,
  .trf-post-share, .trf-comments .comment-form, .trf-footer,
  .trf-newsletter-wave, .trf-nums { display: none !important; }
  .trf-post-layout { grid-template-columns: 1fr; gap: 0; padding: 20px; }
  body { font-size: 11pt; color: #000; background: #fff; -webkit-print-color-adjust: exact; }
  .trf-post-body a[href]::after { content: " (" attr(href) ")"; font-size: .75em; color: #666; }
  .trf-post-title { font-size: 24pt; }
  .trf-post-body h2 { font-size: 16pt; page-break-after: avoid; }
  .trf-post-body img { max-width: 100%; page-break-inside: avoid; }
}

/* ── MOBILE UX ── */
@media (max-width: 720px) {
  .trf-nav__right { gap: 8px; }
  .trf-search-trigger span { display: none; }
  .trf-search-trigger { min-height: 44px; min-width: 44px; justify-content: center; padding: 0 10px; }
  .trf-nav-social { display: none; }
  .trf-footer { padding: 48px 20px 28px !important; }
  .trf-footer__top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .trf-footer__bottom { flex-direction: column !important; align-items: center !important; gap: 12px !important; text-align: center !important; }
  .trf-recent-articles { padding: 48px 20px; }
  .trf-recent-grid { grid-template-columns: 1fr; gap: 20px; }
  .trf-newsletter-wave__inner { flex-direction: column; padding: 28px 20px; gap: 28px; }
  .trf-newsletter-wave__photo { width: 100px; height: 100px; align-self: center; }
  .trf-newsletter-wave__form { max-width: 100%; }
  .trf-post-share__btns, .trf-post-share__row { gap: 6px; }
  .trf-post-share__btn { font-size: 9px; padding: 10px 12px; }
  .trf-pinterest-banner { flex-wrap: wrap; }
  .trf-pinterest-banner__pin { display: none; }
  .trf-comments #comment-form-fields { grid-template-columns: 1fr; }
  .trf-toc-wrap .trf-toc__list { grid-template-columns: 1fr; }
  .trf-search-overlay__inner { padding: 0 20px; }
  .trf-post-body { font-size: 16px; line-height: 1.9; }
  .scroll-top { bottom: 1.5rem; right: 20px; }
  .trf-post-body > p:first-of-type::first-letter { font-size: 3em; }
}
@media (max-width: 480px) {
  .trf-footer__top { grid-template-columns: 1fr !important; }
  .trf-recent-articles__title { font-size: 30px; }
  .trf-post-body > p:first-of-type::first-letter { float: none; font-size: 1em; margin: 0; color: inherit; }
}
@media (max-width: 1100px) {
  .trf-footer__top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .trf-recent-articles { padding: 64px 48px; }
  .trf-recent-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trf-newsletter-wave__inner { padding: 28px 48px; gap: 36px; }
  .trf-newsletter-wave__photo { width: 130px; height: 130px; }
}

/* ── PREFERS-REDUCED-MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  body::before { display: none; }
  .trf-reveal, .trf-reveal--left, .trf-reveal--right, .trf-stagger > * { opacity: 1 !important; transform: none !important; }
  .trf-cat-hero__ghost { animation: none !important; }
}

/* ── BUTTON HOVER — replace fill sweep with simple espresso ── */
.trf-nav-cta::before { display: none !important; }
.trf-nav-cta:hover,
.trf-nav-cta:focus-visible { background: var(--espresso) !important; color: var(--linen) !important; }
.trf-newsletter__btn:hover { background: var(--espresso) !important; }

/* ── WIDGET LINKS — espresso hover ── */
.trf-widget a:hover { color: var(--espresso) !important; }
.trf-post-tag:hover { color: var(--espresso); border-color: var(--espresso); }

/* ── NAV — right side: search + socials + CTA ── */
.trf-nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.trf-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(176,168,158,.15);
  border: 1.5px solid var(--linen-dark);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.trf-search-trigger:hover { border-color: var(--charcoal); background: rgba(176,168,158,.28); color: var(--deep); }
.trf-search-trigger:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; }

.trf-nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trf-nav-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--linen-dark);
  color: var(--charcoal);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  flex-shrink: 0;
}
.trf-nav-social__icon svg { width: 13px; height: 13px; }
.trf-nav-social__icon:hover { background: var(--espresso); color: var(--linen); border-color: var(--espresso); }
.trf-nav-social__icon:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; }

/* ── SEARCH OVERLAY ── */
.trf-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58,53,46,.94);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  overscroll-behavior: contain;
}
.trf-search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.trf-nav.search-open {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-110%) !important;
  box-shadow: none !important;
}
.trf-search-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 640px;
  padding: 0 32px;
}
.trf-search-overlay__label {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  color: var(--linen);
  text-align: center;
  letter-spacing: -.01em;
}
.trf-search-overlay__form {
  display: flex;
  width: 100%;
  background: var(--white);
  border-radius: 100px;
  overflow: hidden;
}
.trf-search-overlay__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--deep);
  outline: none;
}
.trf-search-overlay__input::placeholder { color: var(--charcoal); opacity: .5; }
.trf-search-overlay__submit {
  background: var(--charcoal);
  border: none;
  color: var(--linen);
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  transition: background var(--ease);
  min-width: 52px;
}
.trf-search-overlay__submit:hover { background: var(--espresso); }
.trf-search-overlay__close {
  background: none;
  border: 1px solid rgba(231,226,222,.3);
  color: var(--linen-dark);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 100px;
  transition: border-color var(--ease), color var(--ease);
}
.trf-search-overlay__close:hover { border-color: var(--linen); color: var(--linen); }

/* ── FOOTER — SIOH 4-column light redesign ── */
.trf-footer {
  background: var(--olive) !important;
  padding: 64px 80px 32px !important;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trf-footer__top {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 40px !important;
  padding-bottom: 48px !important;
  border-bottom: 1px solid rgba(255,255,255,.15) !important;
  margin-bottom: 28px !important;
  align-items: start !important;
}
.trf-footer__col { display: flex; flex-direction: column; gap: 0; }
.trf-footer__col-title {
  font-size: 9px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  margin-bottom: 16px !important;
  font-weight: 500 !important;
}
.trf-footer__col a {
  display: block;
  font-size: 13px;
  color: var(--linen) !important;
  margin-bottom: 9px;
  transition: color var(--ease);
  font-weight: 300;
}
.trf-footer__col a:hover { color: var(--white) !important; }
.trf-footer__menu li a { color: var(--linen) !important; }
.trf-footer__menu li a:hover { color: var(--white) !important; }

.trf-footer__socials {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 16px;
}
.trf-footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--linen);
  color: var(--linen);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  flex-shrink: 0;
}
.trf-footer__social-icon:hover { background: var(--white); color: var(--olive); border-color: var(--white); }
.trf-footer__social-icon:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

.trf-footer__bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 11px !important;
  color: rgba(231,226,222,.7) !important;
  flex-wrap: wrap;
  gap: 10px;
}
.trf-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trf-footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trf-footer__logo-inline {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .06em;
}
.trf-footer__logo-inline em { font-style: italic; color: var(--linen); }
.trf-footer__bottom-sep { color: rgba(255,255,255,.3); }
.trf-footer__bottom a { color: var(--linen); transition: color var(--ease); }
.trf-footer__bottom a:hover { color: var(--white); }

/* ── SINGLE POST — ABOUT AUTHOR WIDGET ── */
.trf-widget-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--linen-mid);
}
.trf-widget-author__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--linen-mid);
  flex-shrink: 0;
}
.trf-widget-author__photo img { width: 100%; height: 100%; object-fit: cover; }
.trf-widget-author__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--linen-dark);
}
.trf-widget-author__label {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 400;
}
.trf-widget-author__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.2;
}
.trf-widget-author__bio {
  font-size: 12px;
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
}
.trf-widget-author__socials {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 4px;
}
.trf-widget-author__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--linen-dark);
  color: var(--charcoal);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.trf-widget-author__social svg { width: 12px; height: 12px; }
.trf-widget-author__social:hover { background: var(--espresso); color: var(--linen); border-color: var(--espresso); }

/* ── SINGLE POST — MORE POSTS WITH THUMBNAILS ── */
.trf-widget-posts { display: flex; flex-direction: column; gap: 0; }
.trf-widget-post {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--linen-mid);
  text-decoration: none;
  color: inherit;
  transition: opacity var(--ease);
}
.trf-widget-post:last-child { border-bottom: none; }
.trf-widget-post:hover { opacity: .8; }
.trf-widget-post__thumb {
  width: 72px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--linen-mid);
  display: block;
}
.trf-widget-post__thumb-placeholder {
  width: 72px;
  height: 56px;
  flex-shrink: 0;
  background: var(--linen-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--charcoal);
  opacity: .4;
}
.trf-widget-post__title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.3;
  transition: color var(--ease);
}
.trf-widget-post:hover .trf-widget-post__title { color: var(--espresso); }

/* ── SINGLE POST — PINTEREST BANNER ── */
.trf-pinterest-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--linen-mid);
  border-left: 4px solid #E60023;
  padding: 22px 28px;
  margin: 40px 0;
  border-radius: 2px;
}
.trf-pinterest-banner__icon {
  flex-shrink: 0;
  color: #E60023;
  font-size: 22px;
}
.trf-pinterest-banner__text { flex: 1; }
.trf-pinterest-banner__heading {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 6px;
}
.trf-pinterest-banner__sub {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 12px;
}
.trf-pinterest-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E60023;
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 18px;
  font-weight: 400;
  transition: background .2s ease;
  text-decoration: none;
  border-radius: 100px;
}
.trf-pinterest-banner__btn:hover { background: #c0001e; }
.trf-pinterest-banner__pin {
  flex-shrink: 0;
  width: 80px;
  height: 104px;
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: 0 8px 24px rgba(58,53,46,.15);
}
.trf-pinterest-banner__pin img { width: 100%; height: 100%; object-fit: cover; }

/* ── SINGLE POST — FULL SHARING SECTION ── */
.trf-post-sharing {
  margin-top: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--linen-mid);
}
.trf-post-sharing__label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--linen-dark);
  margin-bottom: 14px;
  font-weight: 400;
}
.trf-post-sharing__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trf-share-full {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--linen);
  border: 1px solid var(--linen-mid);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  min-height: 44px;
}
.trf-share-full:hover { background: var(--espresso); color: var(--linen); border-color: var(--espresso); }
.trf-share-full svg { width: 14px; height: 14px; flex-shrink: 0; }
.trf-share-full--pinterest:hover { background: #E60023; border-color: #E60023; }

/* ── SINGLE POST — COMMENT SECTION ── */
.trf-comments {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 2px solid var(--linen-mid);
}
.trf-comments .comments-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 32px;
}
.trf-comments .comment-list { list-style: none; padding: 0; }
.trf-comments .comment {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--linen-mid);
}
.trf-comments .comment:last-child { border-bottom: none; }
.trf-comments .comment-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.trf-comments .comment-content { flex: 1; }
.trf-comments .comment-author .fn { font-weight: 500; font-size: 13px; color: var(--deep); }
.trf-comments .comment-metadata { font-size: 11px; color: var(--linen-dark); margin: 2px 0 10px; }
.trf-comments .comment-metadata a { color: var(--linen-dark); }
.trf-comments p { font-size: 14px; color: var(--charcoal); line-height: 1.7; margin-bottom: 8px; }
.trf-comments .reply a {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
}
.trf-comments .reply a:hover { color: var(--espresso); }
.trf-comments .comment-form-comment label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; font-weight: 400; }
.trf-comments textarea,
.trf-comments input[type="text"],
.trf-comments input[type="email"],
.trf-comments input[type="url"] {
  width: 100%;
  border: 1px solid var(--linen-dark);
  background: var(--white);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--deep);
  outline: none;
  transition: border-color var(--ease);
  margin-bottom: 12px;
}
.trf-comments textarea:focus,
.trf-comments input:focus { border-color: var(--charcoal); }
.trf-comments textarea { min-height: 120px; resize: vertical; }
.trf-comments #comment-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.trf-comments .form-submit input[type="submit"] {
  background: var(--charcoal);
  color: var(--linen);
  border: none;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease);
}
.trf-comments .form-submit input[type="submit"]:hover { background: var(--espresso); }
.trf-comments #reply-title { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--deep); margin-bottom: 20px; }

/* ── FLOATING SHARE — Pinterest button ── */
.trf-share__btn--pinterest:hover { background: #E60023; border-color: #E60023; color: #fff; }

/* ── TOC — Chapters 2-column grid redesign ── */
.trf-toc-wrap .trf-toc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
}
.trf-toc-wrap .trf-toc__h3 {
  grid-column: 1 / -1;
}
.trf-toc__list a {
  font-size: 11px;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.trf-toc__list a::before {
  content: '§';
  color: var(--linen-dark);
  flex-shrink: 0;
  font-size: 10px;
  opacity: .5;
  margin-top: 1px;
}
.trf-toc__list a:hover::before,
.trf-toc__list a.is-active::before { opacity: 1; color: var(--olive); }

/* ── HOMEPAGE — RECENT ARTICLES ── */
.trf-recent-articles {
  background: var(--linen);
  padding: 80px;
}
.trf-recent-articles__head {
  text-align: center;
  margin-bottom: 52px;
}
.trf-recent-articles__eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
  font-weight: 400;
}
.trf-recent-articles__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.08;
  letter-spacing: -.01em;
}
.trf-recent-articles__title em { font-style: italic; color: var(--charcoal); }

.trf-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.trf-recent-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  border-radius: 20px;
  color: inherit;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.trf-recent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(58,53,46,.10);
}

.trf-recent-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--linen-mid);
  position: relative;
}
.trf-recent-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  display: block;
}
.trf-recent-card:hover .trf-recent-card__img img { transform: scale(1.07); }
.trf-recent-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--charcoal); opacity: .35;
  letter-spacing: .12em; text-transform: uppercase;
}

.trf-recent-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.trf-recent-card__cat {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
  font-weight: 400;
}
.trf-recent-card__title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.22;
  color: var(--deep);
  margin-bottom: 10px;
  transition: color var(--ease);
}
.trf-recent-card:hover .trf-recent-card__title { color: var(--espresso); }
.trf-recent-card__excerpt {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
  flex: 1;
}
.trf-recent-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  margin-top: auto;
  background: var(--linen);
  padding: 9px 16px;
  border: 1px solid var(--linen-mid);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  align-self: flex-start;
}
.trf-recent-card:hover .trf-recent-card__cta,
.trf-recent-card__cta:hover {
  background: var(--espresso);
  color: var(--linen);
  border-color: var(--espresso);
}

.trf-recent-articles__footer {
  text-align: center;
}
.trf-recent-articles__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 36px;
  font-weight: 400;
  border-radius: 100px;
  position: relative; z-index: 0; overflow: hidden;
  text-decoration: none;
}
.trf-recent-articles__all::after { content: '→'; font-size: 15px; }

/* ── NEWSLETTER — wave/blob redesign ── */
.trf-newsletter-wave {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  padding: 0;
}
.trf-newsletter-wave__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, var(--charcoal) 50%, var(--olive) 100%);
  opacity: .9;
}
.trf-newsletter-wave__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.trf-newsletter-wave__blob--1 {
  width: 280px; height: 280px;
  background: rgba(103,98,79,.5);
  top: -60px; right: 20%;
}
.trf-newsletter-wave__blob--2 {
  width: 200px; height: 200px;
  background: rgba(180,130,80,.3);
  bottom: -40px; left: 30%;
}
.trf-newsletter-wave__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 28px 60px;
}
.trf-newsletter-wave__content { flex: 1; }
.trf-newsletter-wave__eyebrow {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(231,226,222,.6);
  margin-bottom: 10px;
  font-weight: 400;
}
.trf-newsletter-wave__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.trf-newsletter-wave__title em { font-style: italic; color: rgba(231,226,222,.7); }
.trf-newsletter-wave__sub {
  font-size: 14px;
  color: rgba(231,226,222,.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0;
  max-width: 380px;
}
.trf-newsletter-wave__form {
  display: flex;
  gap: 0;
  max-width: 400px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(231,226,222,.2);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.trf-newsletter-wave__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 20px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--linen);
  outline: none;
}
.trf-newsletter-wave__input::placeholder { color: rgba(231,226,222,.45); }
.trf-newsletter-wave__btn {
  background: var(--charcoal);
  color: var(--linen);
  border: none;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0 100px 100px 0;
  white-space: nowrap;
  transition: color .42s cubic-bezier(.25,.46,.45,.94);
}
.trf-newsletter-wave__btn:hover { color: var(--linen); }
.trf-newsletter-wave__photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(231,226,222,.2);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
.trf-newsletter-wave__photo img { width: 100%; height: 100%; object-fit: cover; }
.trf-newsletter-wave__photo-placeholder {
  width: 100%; height: 100%;
  background: rgba(231,226,222,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(231,226,222,.4);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ── SECTION WHITE — equal 3-column image ratio ── */
.trf-section--white .trf-grid--3 .trf-card .trf-card__img,
.trf-section--white .trf-card .trf-card__img { aspect-ratio: 16/10 !important; }

/* ── MOBILE UX IMPROVEMENTS ── */
@media (max-width: 720px) {
  /* Nav */
  .trf-nav__right { gap: 8px; }
  .trf-search-trigger span { display: none; }
  .trf-search-trigger { min-height: 44px; min-width: 44px; justify-content: center; }
  .trf-nav-social { display: none; }

  /* Touch targets — 44px minimum */
  .trf-arc-card__cta,
  .trf-filter__btn,
  .trf-tab,
  .trf-cat-nav__item { min-height: 44px; display: inline-flex; align-items: center; }

  /* Footer mobile */
  .trf-footer { padding: 48px 20px 28px !important; }
  .trf-footer__top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .trf-footer__bottom { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }
  .trf-footer__bottom-right { flex-wrap: wrap; gap: 6px; }
  /* Touch targets — 36px min */
  .trf-footer__col a:not(.trf-footer__social-icon) { min-height: 36px; display: flex; align-items: center; margin-bottom: 0; }
  .trf-footer__social-icon { min-height: 0; width: 36px !important; height: 36px !important; flex-shrink: 0; }
  .trf-footer__bottom a, .trf-footer__bottom-left a, .trf-footer__bottom-right a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 6px; }

  /* Recent articles */
  .trf-recent-articles { padding: 48px 20px; }
  .trf-recent-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Newsletter wave */
  .trf-newsletter-wave__inner { flex-direction: column; padding: 28px 20px; gap: 28px; }
  .trf-newsletter-wave__photo { width: 100px; height: 100px; align-self: center; }
  .trf-newsletter-wave__form { max-width: 100%; }

  /* Post sharing */
  .trf-post-sharing__btns { gap: 6px; }
  .trf-share-full { font-size: 9px; padding: 10px 12px; }

  /* Pinterest banner */
  .trf-pinterest-banner { flex-wrap: wrap; }
  .trf-pinterest-banner__pin { display: none; }

  /* Comments form */
  .trf-comments #comment-form-fields { grid-template-columns: 1fr; }

  /* TOC chapters — single column on mobile */
  .trf-toc-wrap .trf-toc__list { grid-template-columns: 1fr; }

  /* Search overlay */
  .trf-search-overlay__inner { padding: 0 20px; }

  /* Bigger body text on mobile */
  .trf-post-body { font-size: 16px; line-height: 1.9; }

  /* Back to top — above mobile nav area */
  .scroll-top { bottom: 1.5rem; right: 20px; }
}

@media (max-width: 480px) {
  .trf-footer__top { grid-template-columns: 1fr !important; }
  .trf-recent-articles__title { font-size: 30px; }
}

@media (max-width: 1100px) {
  .trf-footer__top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .trf-recent-articles { padding: 64px 48px; }
  .trf-recent-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trf-newsletter-wave__inner { padding: 28px 48px; gap: 36px; }
  .trf-newsletter-wave__photo { width: 130px; height: 130px; }
}

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .trf-reveal, .trf-reveal--left, .trf-reveal--right,
  .trf-stagger > *,
  .trf-cat-hero__ghost {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .trf-arc-card__img img,
  .trf-recent-card__img img,
  .trf-card__img img { transition: none !important; }
}

/* ================================================================
   ARCHIVE / CATEGORY PAGES — 2026 REDESIGN
   ================================================================ */

/* ── Category Hero ── */
.trf-cat-hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 80px 80px 64px;
  border-bottom: 1px solid var(--linen-mid);
}

/* Ghost decorative number */
.trf-cat-hero__ghost {
  position: absolute;
  right: -0.04em;
  top: -0.18em;
  font-family: var(--serif);
  font-size: clamp(160px, 18vw, 280px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--linen-mid);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  animation: trf-ghost-in .9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes trf-ghost-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.trf-cat-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.trf-cat-hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.02em;
  color: var(--deep);
  margin: 10px 0 18px;
}

.trf-cat-hero__desc {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.78;
  margin-bottom: 28px;
  font-weight: 300;
}

.trf-cat-hero__count {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  padding: 10px 20px 10px 16px;
  background: var(--linen);
  border-left: 3px solid var(--olive);
}
.trf-cat-hero__count-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--deep);
  line-height: 1;
}
.trf-cat-hero__count-label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Per-category accent colors */
.trf-cat-hero[data-cat="blog"]         { --cat-accent: var(--olive); }
.trf-cat-hero[data-cat="plannen"]      { --cat-accent: var(--deep); }
.trf-cat-hero[data-cat="activiteiten"] { --cat-accent: #8B7355; }
.trf-cat-hero[data-cat="restaurants"]  { --cat-accent: #7A5C3B; }
.trf-cat-hero[data-cat="guides"]       { --cat-accent: var(--charcoal); }

.trf-cat-hero__count { border-left-color: var(--cat-accent, var(--olive)); }
.trf-cat-hero__count-label { color: var(--cat-accent, var(--olive)); }

/* ── Sticky Category Nav ── */
.trf-cat-nav {
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  display: flex;
  align-items: center;
}
.trf-cat-nav::-webkit-scrollbar { display: none; }
.trf-cat-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 80px;
  width: 100%;
}

.trf-cat-nav__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 11px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--linen-mid);
  background: var(--linen);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
  font-weight: 500;
}
.trf-cat-nav__item:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--linen);
}
.trf-cat-nav__item.is-active {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--linen);
  font-weight: 500;
}

.trf-cat-nav__count {
  display: none;
}

/* ── Archive Grid ── */
.trf-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--linen-mid);
  padding: 2px;
  padding-bottom: 0;
}

/* ── Archive Cards ── */
.trf-arc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  border-radius: 16px;
  color: inherit;
  transition: box-shadow .4s ease;
}
.trf-arc-card:hover {
  box-shadow: 0 16px 40px rgba(58,53,46,.1);
  z-index: 1;
  position: relative;
}

/* Hero card — first post, spans full width, horizontal layout */
.trf-arc-card--hero {
  grid-column: 1 / -1;
  flex-direction: row;
  height: 420px;
}

.trf-arc-card__img {
  position: relative;
  overflow: hidden;
  background: var(--linen-mid);
  flex-shrink: 0;
}
/* Regular card image ratio */
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__img {
  aspect-ratio: 4/3;
}
/* Hero card image fills its side */
.trf-arc-card--hero .trf-arc-card__img {
  flex: 1.5;
  aspect-ratio: unset;
}

.trf-arc-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.22,1,.36,1);
  display: block;
}
.trf-arc-card:hover .trf-arc-card__img img { transform: scale(1.07); }

.trf-arc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,53,46,.18) 0%, transparent 55%);
  pointer-events: none;
}

.trf-arc-card__cat-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(253,252,251,.95);
  color: var(--olive);
  padding: 4px 11px;
  font-weight: 400;
  backdrop-filter: blur(4px);
}

.trf-arc-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: .35;
}

/* Card body */
.trf-arc-card__body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.trf-arc-card--hero .trf-arc-card__body {
  flex: 1;
  padding: 52px 56px;
  justify-content: flex-end;
  background: var(--white);
}
.trf-arc-card--hero .trf-arc-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trf-arc-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--linen-dark);
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.trf-arc-card__dot { color: var(--linen-dark); }

.trf-arc-card__title {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.22;
  color: var(--deep);
  margin-bottom: 12px;
  transition: color var(--ease);
}
.trf-arc-card:hover .trf-arc-card__title { color: var(--olive); }

.trf-arc-card--hero .trf-arc-card__title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.trf-arc-card__excerpt {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
  font-weight: 300;
}

.trf-arc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: auto;
  font-weight: 400;
}
.trf-arc-card__arrow { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.trf-arc-card:hover .trf-arc-card__arrow { transform: translateX(5px); }

/* ── Pagination ── */
.trf-arc-pagination {
  padding: 52px 80px;
  display: flex;
  justify-content: center;
  background: var(--linen);
}
.trf-arc-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trf-arc-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--charcoal);
  border: 1px solid transparent;
  transition: color var(--ease), background var(--ease), border-color var(--ease), opacity var(--ease);
  padding: 0 8px;
}
.trf-arc-pagination .page-numbers:hover,
.trf-arc-pagination .page-numbers.current {
  background: var(--deep);
  color: var(--linen);
  border-color: var(--deep);
}
.trf-arc-pagination .page-numbers.dots {
  border: none;
  color: var(--linen-dark);
  pointer-events: none;
}
.trf-arc-pagination .page-numbers.prev,
.trf-arc-pagination .page-numbers.next {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 16px;
  min-width: auto;
}

/* Empty state */
.trf-arc-empty {
  font-size: 15px;
  color: var(--charcoal);
  text-align: center;
  padding: 80px 0;
  font-weight: 300;
}

/* ── Scroll reveal stagger on archive cards ── */
.trf-archive-grid .trf-reveal:nth-child(1)  { transition-delay: .0s; }
.trf-archive-grid .trf-reveal:nth-child(2)  { transition-delay: .08s; }
.trf-archive-grid .trf-reveal:nth-child(3)  { transition-delay: .16s; }
.trf-archive-grid .trf-reveal:nth-child(4)  { transition-delay: .0s; }
.trf-archive-grid .trf-reveal:nth-child(5)  { transition-delay: .08s; }
.trf-archive-grid .trf-reveal:nth-child(6)  { transition-delay: .16s; }
.trf-archive-grid .trf-reveal:nth-child(7)  { transition-delay: .0s; }
.trf-archive-grid .trf-reveal:nth-child(8)  { transition-delay: .08s; }
.trf-archive-grid .trf-reveal:nth-child(9)  { transition-delay: .16s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .trf-cat-hero          { padding: 60px 48px 52px; }
  .trf-cat-hero__ghost   { font-size: clamp(120px, 16vw, 200px); }
  .trf-cat-nav           { padding: 16px 0; }
  .trf-cat-nav__inner    { padding: 0 48px; }
  .trf-archive-grid      { grid-template-columns: 1fr 1fr; }
  .trf-arc-card--hero    { flex-direction: column; }
  .trf-arc-card--hero .trf-arc-card__img { min-height: 320px; }
  .trf-arc-card--hero .trf-arc-card__body { padding: 36px 40px 40px; }
  .trf-arc-pagination    { padding: 40px 48px; }
  .trf-arc-card--hero .trf-arc-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .trf-cat-hero          { padding: 44px 20px 40px; }
  .trf-cat-hero__ghost   { font-size: 100px; right: -8px; top: -10px; }
  .trf-cat-nav           { padding: 14px 0; }
  .trf-cat-nav__inner    { padding: 0 48px; }
  .trf-archive-grid      { grid-template-columns: 1fr; }
  .trf-arc-card--hero .trf-arc-card__img { min-height: 240px; }
  .trf-arc-card--hero .trf-arc-card__body { padding: 28px 24px 32px; }
  .trf-arc-card__body    { padding: 20px 20px 24px; }
  .trf-arc-pagination    { padding: 32px 20px; }
}

/* ── SINGLE POST INLINE SHARE ── */
.trf-post-share {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--linen-mid);
}
.trf-post-share__label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--linen-dark);
  margin-bottom: 12px;
  font-weight: 400;
}
.trf-post-share__row { display: flex; gap: 10px; flex-wrap: nowrap; }
.trf-post-share__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; flex: none;
  background: var(--charcoal); border: none; color: #fff;
  cursor: pointer; border-radius: 10px;
  transition: opacity .2s ease, transform .15s ease;
}
.trf-post-share__btn:hover { opacity: .82; transform: translateY(-1px); }
.trf-post-share__btn--facebook  { background: #1877F2; }
.trf-post-share__btn--whatsapp  { background: #25D366; }
.trf-post-share__btn--twitter   { background: #000; }
.trf-post-share__btn--pinterest { background: #E60023; }
.trf-post-share__btn--copy      { background: var(--charcoal); }
.trf-post-share__btn--email     { background: var(--olive); }
.trf-post-share__btn span { display: none; }
body.lang-nl .trf-post-share__btn span { display: none !important; }
.trf-post-share__btn svg { flex-shrink: 0; }

/* ── AUTHOR WIDGET LINK ── */
.trf-widget-author__role {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 400;
  margin-top: 4px;
}
.trf-widget-author__link {
  font-size: 11px;
  color: var(--charcoal);
  letter-spacing: .06em;
  margin-top: 2px;
  transition: color var(--ease);
}
.trf-widget-author__link:hover { color: var(--espresso); }

/* ── WIDGET POST IMG (used instead of thumb in more-posts) ── */
.trf-widget-post__img {
  width: 72px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--linen-mid);
}
.trf-widget-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── RECENT ARTICLES in trf-section--white context ── */
.trf-section--white .trf-recent-articles__head { margin-top: 0; }

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVE — full pass
   ================================================================ */

/* ── TABLET: 768–1100px ── */
@media (max-width: 1100px) {

  /* Nav */
  .trf-nav { padding: 16px 32px; }
  .trf-nav-social { gap: 5px; }
  .trf-nav-social__icon { width: 30px; height: 30px; }

  /* Sections */
  .trf-section { padding: 64px 48px; }
  .trf-page-header { padding: 56px 48px 44px; }
  .trf-hero { grid-template-columns: 1fr; }
  .trf-hero__photo { min-height: 52vw; }
  .trf-hero__content { padding: 60px 48px; }

  /* Grids */
  .trf-grid { grid-template-columns: 1fr 1fr; }
  .trf-grid > .trf-card:first-child { grid-column: 1/-1; }
  .trf-grid > .trf-card:first-child .trf-card__img { aspect-ratio: 16/7; }
  .trf-grid--3 { grid-template-columns: repeat(2,1fr); }
  .trf-tiles { grid-template-columns: 1fr 1fr; }
  .trf-social-grid { grid-template-columns: 1fr 1fr; }

  /* Editorial */
  .trf-editorial-grid { grid-template-columns: 1fr 1fr; }
  .trf-editorial-grid .trf-card:first-child { grid-row: auto; }
  .trf-editorial-grid .trf-card:first-child .trf-card__img { aspect-ratio: 16/9; }

  /* Blog row */
  .trf-blog-post { grid-template-columns: 52px 1fr 100px; gap: 18px; }
  .trf-blog-idx { font-size: 36px; }

  /* Split */
  .trf-split { grid-template-columns: 1fr; }
  .trf-split__photo { min-height: 300px; }
  .trf-split__text { padding: 56px 48px; }

  /* Newsletter */
  .trf-newsletter { flex-direction: column; gap: 24px; }
  .trf-newsletter__form { max-width: 100%; }

  /* Post */
  .trf-post-layout { grid-template-columns: 1fr; gap: 40px; padding: 48px; }
  .trf-post-body { max-width: 100%; }

  /* Category / archive */
  .trf-cat-hero { padding: 60px 48px 52px; }
  .trf-cat-hero__ghost { font-size: clamp(120px,16vw,200px); }
  .trf-cat-nav { top: 52px; }
  .trf-cat-nav__inner { padding: 0 48px; }
  .trf-archive-grid { grid-template-columns: 1fr 1fr; }
  .trf-arc-card--hero { flex-direction: column; }
  .trf-arc-card--hero .trf-arc-card__img { min-height: 320px; }
  .trf-arc-card--hero .trf-arc-card__body { padding: 36px 40px 40px; }
  .trf-arc-pagination { padding: 40px 48px; }

  /* Recent / newsletter wave */
  .trf-recent-articles { padding: 64px 48px; }
  .trf-recent-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trf-newsletter-wave__inner { padding: 28px 48px; gap: 36px; }
  .trf-newsletter-wave__photo { width: 130px; height: 130px; }

  /* Footer */
  .trf-footer { padding: 56px 48px 28px !important; }
  .trf-footer__top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }

  /* Misc */
  .trf-tabs { padding: 0 48px; }
  .trf-breadcrumbs { padding: 13px 48px; }
  .trf-mk-hero { grid-template-columns: 1fr; padding: 64px 48px; gap: 40px; }
  .trf-collab-grid { grid-template-columns: 1fr; }
  .trf-contact-section { grid-template-columns: 1fr; padding: 64px 48px; gap: 40px; }
  .trf-story-split { grid-template-columns: 1fr; }
  .trf-story-text { padding: 56px 48px; }
  .trf-values-grid { grid-template-columns: 1fr 1fr; }
  .trf-about-hero { grid-template-columns: 1fr; }
  .trf-about-hero__dark { padding: 60px 48px; }
  .trf-share { display: none; }
}

/* ── MOBILE: 0–767px — full treatment ── */
@media (max-width: 767px) {

  /* ── BASE FONT SCALE ── */
  html { font-size: 15px; }
  body { font-size: 15px; }

  /* ── LANG BAR ── */
  .trf-lang-bar { padding: 8px 20px; }
  .trf-lang-btn { font-size: 11px; padding: 5px 12px; min-height: 36px; }

  /* ── NAVIGATION ── */
  .trf-nav { padding: 12px 20px; }
  .trf-nav .menu { display: none; }
  .trf-nav .menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 80px 32px 48px;
    gap: 0;
    z-index: 998;
    overflow-y: auto;
  }
  .trf-nav .menu.is-open li a {
    font-size: 15px !important;
    letter-spacing: .04em !important;
    text-transform: none !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--linen-mid) !important;
    font-weight: 400 !important;
    min-height: 52px;
    display: flex !important;
    align-items: center;
  }
  .trf-nav .menu.is-open li a::after { display: none !important; }
  .trf-burger { display: flex; z-index: 999; }
  .trf-nav-cta { display: none; }
  .trf-nav-social { display: none; }
  .trf-nav__right { gap: 6px; }
  .trf-search-trigger {
    min-height: 44px; min-width: 44px;
    padding: 0 10px; border-radius: 50%;
    justify-content: center;
  }
  .trf-search-trigger span { display: none; }

  /* ── HERO ── */
  .trf-hero { grid-template-columns: 1fr; }
  .trf-hero__content { padding: 44px 20px 36px; }
  .trf-hero__title { font-size: clamp(36px,9vw,52px); }
  .trf-hero__sub { font-size: 14px; margin-bottom: 28px; }
  .trf-hero__photo { min-height: 56vw; }
  .trf-hero__tag { bottom: 28px; }

  /* ── SECTIONS ── */
  .trf-section { padding: 48px 20px; }
  .trf-section-head { flex-direction: column; gap: 12px; align-items: flex-start; margin-bottom: 32px; }
  .trf-section-title { font-size: clamp(26px,7vw,36px); }
  .trf-page-header { padding: 44px 20px 32px; }
  .trf-breadcrumbs { padding: 12px 20px; font-size: 11px; }
  .trf-tabs { padding: 0 20px; }

  /* ── GRIDS → SINGLE COLUMN ── */
  .trf-grid, .trf-tiles, .trf-grid--3 { grid-template-columns: 1fr; }
  .trf-grid > .trf-card:first-child { grid-column: unset; }
  .trf-grid > .trf-card:first-child .trf-card__img { aspect-ratio: 3/2; }
  .trf-social-grid { grid-template-columns: 1fr; }
  .trf-editorial-grid { grid-template-columns: 1fr; }

  /* Cards */
  .trf-card:hover { transform: none; box-shadow: none; }
  .trf-card__title { font-size: 18px; }

  /* ── NUMBERS ── */
  .trf-nums { flex-wrap: wrap; }
  .trf-num { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(231,226,222,.1); }
  .trf-num__val { font-size: 22px; }

  /* ── ABOUT SPLIT ── */
  .trf-split { grid-template-columns: 1fr; }
  .trf-split__photo { min-height: 60vw; }
  .trf-split__text { padding: 44px 20px; }
  .trf-split__title { font-size: clamp(26px,7vw,36px); }

  /* ── BLOG ROW ── */
  .trf-blog-post { grid-template-columns: 40px 1fr; padding: 20px 0; }
  .trf-blog-thumb-wrap { display: none; }
  .trf-blog-idx { font-size: 28px; }
  .trf-blog-name { font-size: 17px; }

  /* ── RECENT ARTICLES ── */
  .trf-recent-articles { padding: 40px 10px; }
  #recent-articles { padding: 40px 10px !important; }
  .trf-recent-grid { grid-template-columns: 1fr; gap: 16px; }
  .trf-recent-articles__title { font-size: clamp(28px,8vw,36px); }
  .trf-recent-articles__head { margin-bottom: 28px; }
  .trf-recent-card:hover { transform: none; box-shadow: none; }
  .trf-recent-card { flex-direction: column; }
  /* Override global 1/1 square — use wider landscape ratio to keep cards short */
  .trf-recent-card__img { aspect-ratio: 16/9 !important; width: 100%; }
  .trf-recent-card__body { padding: 16px 18px 20px; }
  .trf-recent-card__excerpt { -webkit-line-clamp: 2; margin-bottom: 12px; }
  .trf-recent-card__title { font-size: 17px; }
  .trf-recent-card__cta { padding: 8px 16px; font-size: 9px; min-height: 38px; }

  /* ── TILES ── */
  .trf-tiles { grid-template-columns: 1fr; }
  .trf-tile:hover { transform: none; box-shadow: none; }

  /* ── NEWSLETTER WAVE ── */
  .trf-newsletter-wave__inner { flex-direction: column; padding: 28px 20px; gap: 24px; align-items: center; }
  .trf-newsletter-wave__photo { width: 135px; height: 135px; align-self: center; }
  .trf-newsletter-wave__text { text-align: center; }
  .trf-newsletter-wave__form { max-width: 100%; flex-direction: row; border-radius: 100px; }
  .trf-newsletter-wave__input { padding: 14px 18px; }
  .trf-newsletter-wave__btn { border-radius: 0 100px 100px 0; text-align: center; padding: 14px; }
  .trf-newsletter-wave__title { font-size: clamp(26px,7vw,36px); }
  .trf-newsletter-wave__sub { font-size: 13px; }

  /* ── NEWSLETTER inline ── */
  .trf-newsletter { padding: 44px 20px; flex-direction: column; gap: 20px; }
  .trf-newsletter__form { max-width: 100%; flex-direction: column; }
  .trf-newsletter__input { border-right: 1px solid var(--linen-dark); border-bottom: none; }
  .trf-newsletter__btn { text-align: center; padding: 13px; }

  /* ── FOOTER ── */
  .trf-footer { padding: 44px 20px 24px !important; }
  .trf-footer__top { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .trf-footer__col-title { font-size: 9px !important; }
  .trf-footer__bottom { flex-direction: column !important; align-items: center !important; gap: 14px !important; text-align: center !important; }
  .trf-footer__bottom-right { flex-wrap: wrap; gap: 6px; }

  /* ── SINGLE POST ── */
  .trf-post-layout { grid-template-columns: 1fr; gap: 0; padding: 0; }
  article.trf-post-main, .trf-post-article-wrap { padding: 24px 20px 40px; }
  .trf-post-title { font-size: clamp(26px,7vw,38px); }
  .trf-post-intro { font-size: 15px; }
  .trf-post-body { font-size: 16px; line-height: 1.9; max-width: 100%; }
  .trf-post-body h2 { font-size: 24px; }
  .trf-post-body h3 { font-size: 19px; }
  .trf-post-body blockquote { padding: 20px 20px 20px 36px; font-size: 17px; }
  .trf-post-body > p:first-of-type::first-letter { font-size: 3em; }
  .trf-sidebar { padding: 0 20px 48px; }
  .trf-sidebar .trf-widget-author { display: none; }
  .trf-sidebar .trf-widget:not(.trf-widget-posts) { display: none; }

  /* Pinterest banner */
  .trf-pinterest-banner { flex-wrap: wrap; padding: 18px 20px; }
  .trf-pinterest-banner__pin { display: none; }
  .trf-pinterest-banner__heading { font-size: 16px; }

  /* Post share */
  .trf-post-share__row { gap: 6px; }
  .trf-post-share__btn { font-size: 9px; padding: 9px 12px; min-height: 44px; }

  /* Comments */
  .trf-comments { padding-top: 32px; margin-top: 36px; }
  .trf-comments .comments-title { font-size: 22px; margin-bottom: 24px; }
  .trf-comments #comment-form-fields { grid-template-columns: 1fr; }
  .trf-comments .comment { gap: 12px; }
  .trf-comments .comment-author img { width: 36px; height: 36px; }

  /* ── CATEGORY / ARCHIVE ── */
  .trf-cat-hero { padding: 40px 20px 36px; }
  .trf-cat-hero__title { font-size: clamp(32px,9vw,52px); }
  .trf-cat-hero__ghost { font-size: 90px; right: -6px; top: -8px; }
  .trf-cat-nav { padding: 12px 0; }
  .trf-cat-nav__inner { padding: 0 48px; }
  .trf-archive-grid { grid-template-columns: 1fr; padding: 0; }
  .trf-arc-card--hero .trf-arc-card__img { min-height: 56vw; }
  .trf-arc-card--hero .trf-arc-card__body { padding: 24px 20px 28px; }
  .trf-arc-card__body { padding: 18px 20px 22px; }
  .trf-arc-pagination { padding: 28px 20px; }
  .trf-arc-card:hover { box-shadow: none; }

  /* ── BACK TO TOP ── */
  .scroll-top { bottom: 1.25rem; right: 20px; mix-blend-mode: normal; }
  .scroll-top__line::before { background: var(--deep); }
  .scroll-top__label { color: var(--deep); }

  /* ── TOC ── */
  .trf-toc-wrap .trf-toc__list { grid-template-columns: 1fr; }

  /* ── SEARCH OVERLAY ── */
  .trf-search-overlay__inner { padding: 0 20px; }
  .trf-search-overlay__label { font-size: 22px; }

  /* ── ABOUT/COLLAB PAGES ── */
  .trf-about-hero__dark { padding: 44px 20px; }
  .trf-story-text { padding: 44px 20px; }
  .trf-story-split--full .trf-story-text { padding: 44px 20px; }
  .trf-values-grid { grid-template-columns: 1fr; }
  .trf-mk-hero { padding: 44px 20px; }
  .trf-collab-card { padding: 28px 20px; }
  .trf-contact-section { padding: 44px 20px; gap: 28px; }
  .trf-form-row { grid-template-columns: 1fr; }
  .trf-member-card { flex: 0 0 150px; padding: 22px 14px; }
  .trf-demo-bar { flex-wrap: wrap; }
  .trf-demo-item { min-width: 50%; }
  .trf-audience-grid { grid-template-columns: 1fr; }
}

/* ── SMALL MOBILE: 0–479px ── */
@media (max-width: 479px) {
  .trf-footer__top { grid-template-columns: 1fr !important; }
  .trf-recent-articles__all { padding: 13px 28px; font-size: 10px; }
  .trf-hero__title { font-size: clamp(30px,9vw,44px); }
  .trf-cat-hero__title { font-size: clamp(28px,9vw,42px); }
  .trf-post-body > p:first-of-type::first-letter { float: none; font-size: 1em; margin: 0; color: inherit; }
  .trf-arc-card__title { font-size: 17px; }
  .trf-newsletter-wave__form { flex-direction: row; border-radius: 100px; }
  .trf-split__text { padding: 36px 20px; }
  .trf-tiles { grid-template-columns: 1fr; }
}

/* ── HOVER ONLY (non-touch) ── */
@media (hover: none) {
  .trf-card:hover,
  .trf-arc-card:hover,
  .trf-recent-card:hover,
  .trf-tile:hover { transform: none !important; box-shadow: none !important; }
  .trf-card__img img,
  .trf-arc-card__img img,
  .trf-recent-card__img img { transform: none !important; }
  .trf-footer__social-icon:hover,
  .trf-nav-social__icon:hover { transform: none; }
}


/* ═══════════════════════════════════════════════════════════
   DESIGN ITERATION 1  ·  April 2026
   All fixes & redesigns per reference images
   ══════════════════════════════════════════════════════════= */

/* ── Footer social icon circles ── */
.trf-footer__social-icon {
  border: 1.5px solid rgba(231,226,222,.45) !important;
  color: rgba(231,226,222,.75) !important;
  width: 36px !important;
  height: 36px !important;
}
.trf-footer__social-icon:hover { background: rgba(231,226,222,.12) !important; border-color: rgba(231,226,222,.8) !important; color: var(--linen) !important; }
.trf-footer__social-icon svg { width: 13px !important; height: 13px !important; opacity: 1; }

/* ── ERROR 2: Stats section — labels readable on dark gradient bg ── */
.trf-num__val   { color: #FDFCFB !important; }
.trf-num__label { color: rgba(231,226,222,.85) !important; }

/* ── REDESIGN 3: Square aspect ratio for archive & recent grid images ── */
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__img {
  aspect-ratio: 1 / 1 !important;
}
.trf-recent-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  width: 100%;
  display: block;
}
.trf-recent-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset;
}

/* ── REDESIGN 4: Post hero — compact, doesn't dominate viewport ── */
.trf-post-hero {
  aspect-ratio: 16 / 7 !important;
  max-height: 520px;
  border-radius: 2px;
  width: 100%;
  object-fit: cover;
}

/* ── REDESIGN 6: Archive non-hero cards — text overlay bottom-left ── */
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) {
  position: relative;
  overflow: hidden;
  flex-direction: column;
}
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__img {
  width: 100%;
  flex: none;
  aspect-ratio: 1 / 1 !important;
}
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__overlay {
  background: linear-gradient(to top, rgba(44,24,16,.82) 0%, rgba(44,24,16,.22) 50%, transparent 75%);
}
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 24px;
  background: none;
}
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__meta {
  color: rgba(231,226,222,.7);
  font-size: 10px;
}
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__dot {
  color: rgba(231,226,222,.5);
}
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__title {
  color: var(--linen);
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__cta {
  color: rgba(231,226,222,.82);
  font-size: 9px;
  letter-spacing: .1em;
}

/* ── REDESIGN 6b: Editorial guides hero card — side-by-side split ── */
.trf-editorial-grid .trf-card--overlay {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr;
  min-height: 380px;
}
.trf-editorial-grid .trf-card--overlay .trf-card__img {
  position: static !important;
  height: 100%;
  min-height: 340px;
}
.trf-editorial-grid .trf-card--overlay .trf-card__img::after {
  background: linear-gradient(to right, transparent 50%, rgba(58,53,46,.06)) !important;
}
.trf-editorial-grid .trf-card--overlay .trf-card__body {
  position: static !important;
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}
.trf-editorial-grid .trf-card--overlay .trf-card__cat  { color: var(--olive) !important; }
.trf-editorial-grid .trf-card--overlay .trf-card__title { color: var(--deep) !important; font-size: 24px !important; line-height: 1.2; }
.trf-editorial-grid .trf-card--overlay .trf-card__desc  { color: var(--charcoal) !important; }
.trf-editorial-grid .trf-card--overlay .trf-guide-tag   { margin-bottom: 6px; }

/* ── REDESIGN 8: Pinterest banner — refined red accent + polaroid ── */
.trf-pinterest-banner {
  border-left: 4px solid #E60023 !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  background: var(--white) !important;
  padding: 28px 32px !important;
}
.trf-pinterest-banner__heading {
  font-family: var(--serif);
  font-size: 20px !important;
  font-weight: 400;
  color: var(--deep);
}
.trf-pinterest-banner__btn {
  padding: 11px 24px !important;
  letter-spacing: .15em !important;
  border-radius: 100px !important;
  font-weight: 400 !important;
}
.trf-pinterest-banner__pin {
  border: 4px solid var(--white) !important;
  box-shadow: 0 10px 28px rgba(58,53,46,.22) !important;
  transform: rotate(3deg) !important;
  border-radius: 2px;
}

/* ── REDESIGN 2: About split — dark text side (olive-charcoal) ── */
.trf-split__text {
  background: var(--olive) !important;
}
.trf-split__eyebrow {
  color: rgba(231,226,222,.55) !important;
  opacity: 1 !important;
}
.trf-split__title  { color: var(--linen) !important; }
.trf-split__title em { color: rgba(231,226,222,.7) !important; }
.trf-split__body   { color: rgba(231,226,222,.75) !important; }
.trf-pill { color: var(--linen); border-color: rgba(231,226,222,.3); }
.trf-pill:hover { background: rgba(231,226,222,.1); color: var(--linen); }

/* ── TEAM MEMBERS — oval clipped profile cards ── */
.trf-team-section {
  padding: 72px 80px 80px;
  background: var(--white);
}
.trf-team-section__head {
  text-align: center;
  margin-bottom: 52px;
}
.trf-team-section__eyebrow {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 10px;
}
.trf-team-section__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--deep);
  letter-spacing: -.01em;
}
.trf-team-section__title em { font-style: italic; color: var(--charcoal); }
.trf-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.trf-team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.trf-team-member__oval {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 50%;
  background: var(--linen-mid);
  transition: box-shadow .4s var(--ease-spring);
}
.trf-team-member__oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform .7s var(--ease-spring);
}
.trf-team-member:hover .trf-team-member__oval img { transform: scale(1.07); }
.trf-team-member:hover .trf-team-member__oval { box-shadow: 0 8px 24px rgba(58,53,46,.14); }
.trf-team-member__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--deep);
  letter-spacing: .01em;
  line-height: 1.2;
}
.trf-team-member__role {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: .75;
  line-height: 1.5;
}
.trf-team-member__bio {
  font-size: 12.5px;
  color: var(--charcoal);
  line-height: 1.75;
  font-weight: 300;
  text-wrap: pretty;
}

/* ── PRINCIPLES / VALUES CARDS ── */
.trf-principles-section {
  padding: 72px 80px;
  background: var(--linen);
}
.trf-principles-head { margin-bottom: 4px; }
.trf-principles-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--deep);
  letter-spacing: -.01em;
}
.trf-principles-title em { font-style: italic; }
.trf-principles-divider {
  width: 100%;
  height: 1px;
  background: var(--linen-mid);
  margin: 20px 0 32px;
}
.trf-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.trf-principle-card {
  background: #F1ECE8;
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trf-principle-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--deep);
  letter-spacing: .01em;
}
.trf-principle-card__body {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 300;
  text-wrap: pretty;
}

/* ── RESPONSIVE: new components ── */
@media (max-width: 1100px) {
  .trf-team-section { padding: 56px 48px; }
  .trf-team-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .trf-principles-section { padding: 56px 48px; }
  .trf-editorial-grid .trf-card--overlay {
    grid-template-columns: 1fr !important;
  }
  .trf-editorial-grid .trf-card--overlay .trf-card__img {
    min-height: 280px !important;
    height: 280px !important;
  }
}
@media (max-width: 767px) {
  .trf-team-section { padding: 44px 20px 52px; }
  .trf-team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trf-principles-section { padding: 44px 20px; }
  .trf-principles-grid { grid-template-columns: 1fr; }
  .trf-post-hero { aspect-ratio: 16 / 8 !important; max-height: 300px; }
  .trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__body {
    padding: 16px 18px 20px;
  }
  .trf-archive-grid .trf-arc-card:not(.trf-arc-card--hero) .trf-arc-card__title {
    font-size: 15px;
  }
}
@media (max-width: 479px) {
  .trf-team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trf-team-member__oval { aspect-ratio: 1 / 1; }
  .trf-team-member__bio { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   DESIGN ITERATION 2  ·  April 2026
   ══════════════════════════════════════════════════════════= */

/* ── Newsletter __text alias (HTML uses __text, CSS used __content) ── */
.trf-newsletter-wave__text { flex: 1; }

/* ── FIX: Nav dropdown class mismatch — HTML uses trf-nav-dropdown, CSS was trf-dropdown ── */
.trf-nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -14px;
  background: var(--white);
  border: 1px solid var(--linen-mid);
  min-width: 210px;
  box-shadow: 0 16px 48px rgba(58,53,46,.10);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 300;
  display: flex;
  flex-direction: column;
}
.trf-nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-dropdown.is-open .trf-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.trf-nav-dropdown a {
  display: block !important;
  padding: 15px 22px !important;
  font-size: 11px !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: var(--charcoal) !important;
  border-bottom: 1px solid var(--linen-mid) !important;
  transition: color .2s ease, background .2s ease;
}
.trf-nav-dropdown a:last-child { border-bottom: none !important; }
.trf-nav-dropdown a:hover { color: var(--deep) !important; background: var(--linen) !important; }
.trf-nav-dropdown__country {
    font-weight: 600 !important;
    color: var(--deep) !important;
    font-size: 10px !important;
    letter-spacing: .14em !important;
    padding-bottom: 10px !important;
    padding-top: 18px !important;
    border-bottom: none !important;
}
.trf-nav-dropdown__country:first-child { padding-top: 15px !important; }
.trf-nav-dropdown__place {
    padding: 9px 22px 9px 34px !important;
    font-size: 11px !important;
    color: var(--charcoal) !important;
    border-bottom: none !important;
}
.trf-nav-dropdown__place:last-of-type { border-bottom: 1px solid var(--linen-mid) !important; padding-bottom: 14px !important; }
.trf-nav-dropdown__all {
    font-size: 10px !important;
    color: var(--linen-dark) !important;
    letter-spacing: .12em !important;
}

/* ── FIX: Language toggle — high-specificity overrides for footer, dropdowns, etc. ── */
/* Default: show EN, hide NL */
.trf-nl,
a.trf-nl,
span.trf-nl,
button.trf-nl,
p.trf-nl,
h1.trf-nl, h2.trf-nl, h3.trf-nl,
div.trf-nl { display: none !important; }

/* When NL active: show NL, hide EN */
body.lang-nl .trf-nl  { display: revert !important; }
body.lang-nl a.trf-nl { display: block !important; }
body.lang-nl span.trf-nl,
body.lang-nl strong.trf-nl,
body.lang-nl button.trf-nl { display: inline-block !important; }

body.lang-nl .trf-en  { display: none !important; }
body.lang-nl a.trf-en { display: none !important; }
body.lang-nl span.trf-en,
body.lang-nl strong.trf-en,
body.lang-nl button.trf-en { display: none !important; }
body.lang-nl p.trf-en,
body.lang-nl h1.trf-en, body.lang-nl h2.trf-en, body.lang-nl h3.trf-en,
body.lang-nl div.trf-en { display: none !important; }

/* ── Tile arrow — updated to "Read more →" button style ── */
.trf-tile__arrow {
  display: inline-block !important;
  font-size: 9px !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  font-family: var(--sans) !important;
  font-weight: 400 !important;
  margin-top: 20px !important;
  padding: 10px 20px !important;
  background: var(--deep) !important;
  color: var(--linen) !important;
  transition: background .2s ease, transform .3s cubic-bezier(.22,1,.36,1) !important;
}
.trf-tile--charcoal .trf-tile__arrow,
.trf-tile--olive    .trf-tile__arrow {
  background: rgba(231,226,222,.15) !important;
  color: var(--linen) !important;
}
.trf-tile:hover .trf-tile__arrow { transform: translateX(4px) !important; }

/* ── READ MORE buttons — solid dark, no outline/linen ── */
.trf-recent-card__cta {
  background: var(--deep) !important;
  color: var(--linen) !important;
  border-color: var(--deep) !important;
  font-size: 9px !important;
  letter-spacing: .16em !important;
}
.trf-recent-card:hover .trf-recent-card__cta,
.trf-recent-card__cta:hover {
  background: var(--espresso) !important;
  border-color: var(--espresso) !important;
  color: var(--linen) !important;
}

/* ── NEWSLETTER — light linen background, dark text ── */
.trf-newsletter-wave--light,
.trf-newsletter-wave--light .trf-newsletter-wave__bg {
  background: var(--linen) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__bg {
  background: var(--linen) !important;
  opacity: 1 !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__blob { display: none !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__eyebrow {
  color: var(--olive) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__content {
  text-align: center;
}
.trf-newsletter-wave--light .trf-newsletter-wave__sub {
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__title {
  color: var(--deep) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__title em {
  color: var(--charcoal) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__sub {
  color: var(--charcoal) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__form {
  max-width: 520px !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__form {
  background: rgba(44,24,16,.06) !important;
  border-color: var(--linen-mid) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__input {
  color: var(--deep) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__input::placeholder {
  color: rgba(44,24,16,.38) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__btn {
  background: var(--espresso) !important;
  color: var(--linen) !important;
  font-size: 9px !important;
  letter-spacing: .16em !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__btn:hover {
  background: var(--deep) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__photo {
  border-color: var(--linen-mid) !important;
  box-shadow: 0 8px 28px rgba(44,24,16,.12) !important;
}

/* ── MOBILE NAV — language + search items ── */
.trf-mobile-only { display: none; }
.trf-mobile-divider {
  width: 100%;
  height: 1px;
  background: var(--linen-mid);
  margin: 4px 0;
}
.trf-mobile-lang-row {
  display: none;
  align-items: center;
  gap: 10px;
}
.trf-mobile-lang-row .trf-lang-btn {
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 500;
  color: var(--charcoal);
  background: transparent;
  border: none;
  padding: 6px 2px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
}
.trf-mobile-lang-row .trf-lang-btn.is-active { opacity: 1; color: var(--deep); }
.trf-mobile-lang-row .trf-lang-sep { color: var(--linen-dark); font-size: 12px; }
.trf-mobile-search-row { display: none; }
.trf-mobile-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  padding: 6px 2px;
}

@media (max-width: 720px) {
  .trf-mobile-only { display: list-item !important; }
  .trf-mobile-lang-row { display: flex !important; }
  .trf-mobile-search-row { display: none !important; }
  .trf-mobile-divider { display: list-item !important; padding: 0; }
}

/* ═══════════════════════════════════════════════════════════
   DESIGN ITERATION 3  ·  April 2026
   ══════════════════════════════════════════════════════════= */

/* ── #29 Mobile nav: burger to the right, search stays in nav bar ── */
@media (max-width: 720px) {
  .trf-nav { justify-content: flex-start; flex-wrap: nowrap; }
  .trf-logo { flex: 1; order: 1; }
  .menu.trf-nav__menu { order: 2; }
  .trf-nav__right {
    order: 3;
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .trf-nav-social { display: none !important; }
  .trf-nav-cta { display: none !important; }
  .trf-search-trigger { display: flex !important; }
  .trf-burger {
    order: 5;
    margin-left: 8px;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
  }
}

/* ── #31 Newsletter — solid dark, clearly distinct from surrounding linen ── */
.trf-newsletter-wave--light,
.trf-newsletter-wave--light .trf-newsletter-wave__bg {
  background: var(--linen) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__eyebrow { color: var(--olive) !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__title { color: var(--deep) !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__title em { color: var(--olive) !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__sub { color: var(--charcoal) !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__form {
  background: var(--white) !important;
  border-color: var(--linen-mid) !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__input { color: var(--deep) !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__input::placeholder { color: var(--linen-dark) !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__photo { border-color: var(--linen-mid) !important; box-shadow: 0 8px 28px rgba(58,53,46,.1) !important; }
/* Input width — 2026 UX: email input ≥ 2.5× button width, min 280px content area */
.trf-newsletter-wave--light .trf-newsletter-wave__form { max-width: 520px !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__input { min-width: 280px !important; }
@media (max-width: 640px) {
  .trf-newsletter-wave--light .trf-newsletter-wave__input { min-width: 0 !important; }
}

/* ── #32 Editorial hero card — text overlaid ON the image (no side-by-side) ── */
.trf-editorial-grid .trf-card--overlay {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 440px !important;
  grid-template-columns: unset !important;
}
.trf-editorial-grid .trf-card--overlay .trf-card__img {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  min-height: unset !important;
  width: 100% !important;
}
.trf-editorial-grid .trf-card--overlay .trf-card__img::after {
  content: '' !important;
  background: linear-gradient(to top, rgba(44,24,16,.9) 0%, rgba(44,24,16,.45) 50%, rgba(44,24,16,.05) 100%) !important;
  opacity: 1 !important;
}
.trf-editorial-grid .trf-card--overlay .trf-card__body {
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  background: none !important;
  padding: 36px 40px !important;
  justify-content: flex-end !important;
}
.trf-editorial-grid .trf-card--overlay .trf-card__cat { color: rgba(231,226,222,.75) !important; }
.trf-editorial-grid .trf-card--overlay .trf-card__title { color: var(--linen) !important; font-size: 26px !important; line-height: 1.2 !important; }
.trf-editorial-grid .trf-card--overlay .trf-card__desc { color: rgba(231,226,222,.8) !important; }

/* ── #33 Hero image 60% of width ── */
.trf-hero { grid-template-columns: 40% 60% !important; }

/* ── #34 Stats bar — guaranteed single solid color ── */
.trf-nums { background: var(--deep) !important; background-image: none !important; }

/* ── #35 screen-reader-text (hides newsletter label visually) ── */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ── #35 Footer social icons — centered SVG inside circle ── */
.trf-footer__social-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
}

/* ═══════════════════════════════════════════════════════════
   DESIGN ITERATION 4  ·  April 2026
   ══════════════════════════════════════════════════════════= */

/* ── Guide tag — remove green, use text-only style ── */
.trf-guide-tag {
  background: transparent !important;
  color: var(--olive) !important;
  border: 1px solid rgba(103,98,79,.4) !important;
  padding: 3px 9px !important;
}

/* ── "Why this website" — olive green background ── */
.trf-split__text {
  background: var(--olive) !important;
}
.trf-split__eyebrow { color: rgba(231,226,222,.75) !important; }
.trf-split__title   { color: var(--linen) !important; }
.trf-split__title em { color: rgba(231,226,222,.6) !important; }
.trf-split__body    { color: rgba(231,226,222,.85) !important; }
.trf-split__text .trf-pill {
  background: rgba(255,255,255,.12) !important;
  color: var(--linen) !important;
  border-color: rgba(231,226,222,.25) !important;
}
.trf-split__text .trf-pill:hover { background: rgba(255,255,255,.22) !important; }

/* ── Newsletter subscribe button — olive brand colour ── */
.trf-newsletter-wave__btn,
.trf-newsletter-wave--light .trf-newsletter-wave__btn {
  background: var(--olive) !important;
  color: var(--linen) !important;
  border-color: var(--olive) !important;
}
.trf-newsletter-wave__btn:hover,
.trf-newsletter-wave--light .trf-newsletter-wave__btn:hover {
  background: #57533F !important;
  border-color: #57533F !important;
}

/* ── Hero image — fill full height of grid row ── */
.trf-hero { align-items: stretch !important; }
.trf-hero__photo { height: 100% !important; min-height: calc(100vh - 82px) !important; align-self: stretch !important; }
.trf-hero__photo > img { height: 100% !important; width: 100% !important; object-fit: cover !important; }

/* ── Mobile nav — comprehensive fix ── */
@media (max-width: 720px) {
  /* Nav bar stays above any overlay */
  .trf-nav { position: relative !important; z-index: 1001 !important; }
  .trf-burger {
    position: relative !important;
    z-index: 1002 !important;
    order: 4 !important;
    margin-left: 8px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
  }
  /* Hide search icon from nav bar on mobile — it lives inside hamburger */
  .trf-search-trigger { display: none !important; }
  /* Keep logo + right side tidy */
  .trf-logo { flex: 1 !important; order: 1 !important; }
  .trf-nav__right { order: 3 !important; margin-left: auto !important; }
  /* Clean open state — full-screen drawer */
  .trf-nav .menu.is-open {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: var(--white) !important;
    padding: 80px 32px 48px !important;
    flex-direction: column !important;
    gap: 0 !important;
    z-index: 998 !important;
    overflow-y: auto !important;
    display: flex !important;
  }
  .trf-nav .menu.is-open li a,
  .trf-nav .menu.is-open li button.trf-nav-drop-btn {
    font-size: 16px !important;
    letter-spacing: .03em !important;
    text-transform: none !important;
    padding: 17px 0 !important;
    border-bottom: 1px solid var(--linen-mid) !important;
    font-weight: 400 !important;
    min-height: 54px !important;
    display: flex !important;
    align-items: center !important;
    color: var(--deep) !important;
    background: transparent !important;
    width: 100% !important;
  }
  .trf-nav .menu.is-open li.trf-mobile-divider { border-bottom: none !important; padding: 0 !important; height: 1px !important; background: var(--linen-mid) !important; margin: 8px 0 !important; display: block !important; }
  /* Search item inside mobile menu */
  .trf-mobile-search-item { display: list-item !important; }
  .trf-mobile-search-item button {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 16px !important;
    padding: 17px 0 !important;
    border-bottom: 1px solid var(--linen-mid) !important;
    width: 100% !important;
    background: transparent !important;
    border-top: none !important; border-left: none !important; border-right: none !important;
    color: var(--deep) !important;
    cursor: pointer !important;
    min-height: 54px !important;
  }
}

/* ── Chapters block — above post body ── */
.trf-chapters {
  background: var(--white);
  border: 1.5px solid var(--linen-mid);
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 44px;
}
.trf-chapters__tab {
  display: inline-flex;
  align-items: center;
  background: var(--deep);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 22px 10px 20px;
  border-radius: 0 0 10px 0;
  gap: 7px;
}
.trf-chapters__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.trf-chapters__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--linen-mid);
  text-decoration: none;
  color: var(--deep);
  transition: background .15s ease;
}
.trf-chapters__item:hover { background: rgba(231,226,222,.38); }
.trf-chapters__item:nth-child(odd) { border-right: 1px solid var(--linen-mid); }
.trf-chapters__item:nth-last-child(-n+2):not(:nth-child(odd):last-child) { border-bottom: none; }
.trf-chapters__item:last-child { border-bottom: none; }
.trf-chapters__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.trf-chapters__label {
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--deep);
  line-height: 1.35;
}
.trf-chapters__arrow {
  color: var(--olive);
  opacity: .55;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.trf-chapters__item:hover .trf-chapters__arrow { transform: translateX(5px); }
@media (max-width: 580px) {
  .trf-chapters__grid { grid-template-columns: 1fr; }
  .trf-chapters__item:nth-child(odd) { border-right: none; }
  .trf-chapters__item { border-bottom: 1px solid var(--linen-mid) !important; }
  .trf-chapters__item:last-child { border-bottom: none !important; }
}

/* ── Comments section ── */
.trf-comments { padding: 56px 0 0; }
.trf-comments__hd {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 36px;
  padding-bottom: 18px; border-bottom: 2px solid var(--linen-mid);
}
.trf-comments__title {
  font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--deep);
}
.trf-comments__count {
  font-family: var(--sans); font-size: 12px; color: var(--charcoal);
  background: var(--linen); padding: 3px 10px; border-radius: 20px;
}
.trf-comment-list { list-style: none; padding: 0; margin: 0 0 48px; }
.trf-comment {
  display: flex; gap: 15px; padding: 24px 0;
  border-bottom: 1px solid var(--linen-mid);
}
.trf-comment:last-child { border-bottom: none; }
.trf-comment__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--deep); color: var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; font-weight: 300;
  letter-spacing: .04em;
}
.trf-comment__body { flex: 1; min-width: 0; }
.trf-comment__meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 7px; flex-wrap: wrap;
}
.trf-comment__name {
  font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--deep);
}
.trf-comment__date {
  font-size: 11px; color: var(--charcoal); opacity: .55; letter-spacing: .04em; font-family: var(--sans);
}
.trf-comment__text {
  font-size: 14px; line-height: 1.78; color: var(--charcoal);
}
.trf-comment__actions { display: flex; gap: 14px; margin-top: 10px; }
.trf-comment__btn {
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--charcoal); opacity: .55;
  display: flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-weight: 500;
  transition: opacity .15s ease, color .15s ease;
}
.trf-comment__btn:hover { opacity: 1; color: var(--deep); }
.trf-comment__btn.is-liked { color: var(--olive); opacity: 1; }

/* Comment form */
.trf-comment-form {
  background: var(--linen);
  border-radius: 12px;
  padding: 32px 36px;
}
.trf-comment-form__title {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  color: var(--deep); margin-bottom: 6px;
}
.trf-comment-form__sub {
  font-size: 13px; color: var(--charcoal); margin-bottom: 24px;
  font-family: var(--sans);
}
.trf-comment-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;
}
.trf-comment-form__field { display: flex; flex-direction: column; gap: 5px; }
.trf-comment-form__label {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal); font-family: var(--sans); font-weight: 500;
}
.trf-comment-form__input,
.trf-comment-form__textarea {
  padding: 11px 14px; font-size: 14px; font-family: var(--sans);
  background: var(--white); border: 1.5px solid var(--linen-mid);
  color: var(--deep); border-radius: 6px;
  transition: border-color .2s ease; outline: none; width: 100%; box-sizing: border-box;
}
.trf-comment-form__input:focus,
.trf-comment-form__textarea:focus { border-color: var(--olive); }
.trf-comment-form__textarea { min-height: 108px; resize: vertical; }
.trf-comment-form__submit {
  margin-top: 16px; background: var(--deep); color: var(--linen);
  border: none; padding: 13px 32px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  font-family: var(--sans); font-weight: 500; cursor: pointer;
  border-radius: 4px; transition: background .2s ease;
}
.trf-comment-form__submit:hover { background: var(--espresso); }
.trf-comment-form__ok {
  display: none; font-size: 13px; color: var(--olive);
  margin-top: 12px; font-family: var(--sans);
}
@media (max-width: 580px) {
  .trf-comment-form { padding: 24px 20px; }
  .trf-comment-form__row { grid-template-columns: 1fr; }
}

/* ── Search results in overlay ── */
.trf-search-results {
  width: 100%; max-width: 640px; padding: 0 32px;
  max-height: 60vh; overflow-y: auto;
}
.trf-search-result {
  display: flex; flex-direction: column;
  padding: 14px 0; border-bottom: 1px solid rgba(231,226,222,.12);
  text-decoration: none; color: var(--linen);
  transition: opacity .15s;
}
.trf-search-result:hover { opacity: .75; }
.trf-search-result:last-child { border-bottom: none; }
.trf-search-result__cat {
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 4px; font-family: var(--sans);
}
.trf-search-result__title {
  font-family: var(--serif); font-size: 18px; font-weight: 300; line-height: 1.3;
}
.trf-search-result__excerpt {
  font-size: 12px; color: rgba(231,226,222,.55); line-height: 1.5; margin-top: 4px;
  font-family: var(--sans);
}
.trf-search-empty {
  font-size: 14px; color: rgba(231,226,222,.45); text-align: center;
  padding: 28px 0; font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════════
   FINAL CORRECTIONS — April 2026
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Hero image height ── */
.trf-hero__photo { height: 48vw !important; min-height: unset !important; max-height: unset !important; }
.trf-hero__photo > img { height: 100% !important; max-height: unset !important; }

/* ── 2. Newsletter input — lighter, readable ── */
.trf-newsletter-wave__form {
  background: rgba(231,226,222,.18) !important;
  border: 1px solid rgba(231,226,222,.35) !important;
}
.trf-newsletter-wave__input {
  background: rgba(231,226,222,.14) !important;
  color: var(--linen) !important;
}
.trf-newsletter-wave__input::placeholder { color: rgba(231,226,222,.65) !important; }
.trf-newsletter-wave--light .trf-newsletter-wave__form {
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(231,226,222,.4) !important;
}

/* ── 3. Pagination — clean hover / active UX ── */
.trf-arc-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
}
.trf-arc-pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--charcoal);
  background: transparent;
  border: 1.5px solid var(--linen-mid);
  border-radius: 4px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .15s ease;
  padding: 0 10px;
  text-decoration: none;
  cursor: pointer;
  outline-offset: 3px;
}
.trf-arc-pagination .page-numbers:hover {
  background: var(--linen-mid);
  color: var(--deep);
  border-color: var(--linen-mid);
  transform: translateY(-1px);
}
.trf-arc-pagination .page-numbers.current {
  background: var(--deep);
  color: var(--linen);
  border-color: var(--deep);
  font-weight: 400;
  cursor: default;
  transform: none;
}
.trf-arc-pagination .page-numbers.next,
.trf-arc-pagination .page-numbers.prev {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  min-width: auto;
  padding: 0 18px;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.trf-arc-pagination .page-numbers.next:hover,
.trf-arc-pagination .page-numbers.prev:hover {
  background: var(--charcoal);
  color: var(--linen);
  border-color: var(--charcoal);
}

/* ── 4. Mobile nav — definitive full-screen overlay ── */
@media (max-width: 720px) {
  /* Lang bar stays; nav itself is relative */
  .trf-nav { position: sticky !important; top: 0 !important; z-index: 1000 !important; }

  /* Burger visible + above overlay */
  .trf-burger { display: flex !important; position: relative; z-index: 1010 !important; }

  /* Hide search trigger in bar on mobile */
  .trf-search-trigger { display: none !important; }
  .trf-nav-social     { display: none !important; }
  .trf-nav-cta        { display: none !important; }
  .trf-nav__right     { display: none !important; }

  /* Closed state */
  .trf-nav .trf-nav__menu { display: none !important; }

  /* Full-screen drawer */
  .trf-nav .trf-nav__menu.is-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    background: var(--white) !important;
    z-index: 1005 !important;
    padding: 72px 32px 48px !important;
    overflow-y: auto !important;
    gap: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  /* All menu items */
  .trf-nav .trf-nav__menu.is-open > li { display: list-item !important; }
  .trf-nav .trf-nav__menu.is-open > li > a,
  .trf-nav .trf-nav__menu.is-open > li > button.trf-nav-drop-btn {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    font-family: var(--serif) !important;
    font-size: 22px !important;
    font-weight: 300 !important;
    letter-spacing: .01em !important;
    text-transform: none !important;
    color: var(--deep) !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--linen-mid) !important;
    background: transparent !important;
    border-top: none !important; border-left: none !important; border-right: none !important;
    border-radius: 0 !important;
    min-height: 56px !important;
    text-decoration: none !important;
    cursor: pointer !important;
  }
  .trf-nav .trf-nav__menu.is-open > li > a:hover,
  .trf-nav .trf-nav__menu.is-open > li > button:hover { color: var(--olive) !important; }

  /* Dropdown */
  .trf-nav .trf-nav__menu.is-open .has-dropdown.is-open .trf-nav-dropdown { display: flex !important; flex-direction: column !important; padding: 8px 0 8px 20px !important; gap: 0 !important; }
  .trf-nav .trf-nav__menu.is-open .trf-nav-dropdown a { font-size: 15px !important; color: var(--charcoal) !important; padding: 10px 0 !important; border-bottom: none !important; min-height: auto !important; font-family: var(--sans) !important; letter-spacing: .04em !important; display: flex !important; }
  .trf-nav .trf-nav__menu.is-open .trf-nav-dropdown a:hover { color: var(--olive) !important; }

  /* Mobile-only items */
  .trf-nav .trf-nav__menu.is-open .trf-mobile-only { display: list-item !important; }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-divider {
    display: block !important;
    height: 1px !important;
    background: var(--linen-mid) !important;
    margin: 4px 0 !important;
    padding: 0 !important;
    border: none !important;
    min-height: 0 !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-lang-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 0 !important;
    border-bottom: none !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-lang-row .trf-lang-btn {
    font-size: 13px !important;
    letter-spacing: .1em !important;
    color: var(--charcoal) !important;
    opacity: .5 !important;
    font-weight: 400 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 4px 0 !important;
    min-height: auto !important;
    font-family: var(--sans) !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-lang-row .trf-lang-btn.is-active { opacity: 1 !important; color: var(--deep) !important; font-weight: 500 !important; }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-search-item { display: list-item !important; }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-search-btn {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    letter-spacing: .04em !important;
    color: var(--charcoal) !important;
    background: transparent !important;
    border: none !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--linen-mid) !important;
    width: 100% !important;
    cursor: pointer !important;
    text-align: left !important;
    min-height: 56px !important;
    text-transform: none !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-search-btn:hover { color: var(--olive) !important; }
  .trf-nav .trf-nav__menu.is-open li > a::after { display: none !important; }
}

/* ── 5. Category nav hover — clear active/hover states ── */
.trf-cat-nav__item {
  transition: background .18s ease, border-color .18s ease, color .18s ease !important;
  border-radius: 100px !important;
}
.trf-cat-nav__item:hover:not(.is-active) {
  background: var(--deep) !important;
  border-color: var(--deep) !important;
  color: var(--linen) !important;
}
.trf-cat-nav__item.is-active {
  background: var(--deep) !important;
  border-color: var(--deep) !important;
  color: var(--linen) !important;
  font-weight: 500 !important;
}

/* ── 6. Footer / nav link text — lighter in dark context ── */
.trf-lang-bar .trf-lang-btn[data-lang] { color: rgba(231,226,222,.7) !important; }
.trf-lang-bar .trf-lang-btn.is-active,
html.lang-en .trf-lang-bar .trf-lang-btn[data-lang="en"],
html.lang-nl .trf-lang-bar .trf-lang-btn[data-lang="nl"] { color: var(--white) !important; }

/* ── 7. Privacy / Sitemap link style ── */
.trf-footer__bottom-right a {
  color: var(--linen-dark);
  transition: color .18s ease;
}
.trf-footer__bottom-right a:hover { color: var(--linen); }

/* ═══════════════════════════════════════════════════════════
   8. MOBILE NAV — definitive v4
   KEY FIX: nav gets z-index:auto on mobile so it no longer
   creates a stacking context. The fixed overlay and fixed
   burger can then stack freely in the root context.
   body.trf-nav-open is toggled by JS when menu opens.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Lang bar — bento strip above nav on mobile */
  .trf-lang-bar {
    display: flex !important;
    margin: 8px 8px 0 !important;
    border-radius: 16px !important;
    padding: 8px 12px !important;
    justify-content: flex-end !important;
    position: relative !important;
    z-index: 1000 !important;
    gap: 10px !important;
  }
  .trf-lang-bar__socials { gap: 6px !important; }
  .trf-lang-bar__social { width: 36px !important; height: 36px !important; }
  .trf-lang-bar__social svg { width: 13px !important; height: 13px !important; }

  .trf-nav {
    position: sticky !important;
    top: 8px !important;
    z-index: 999 !important;
    padding: 12px 20px !important;
    margin: 8px 8px 0 !important;
    border-radius: 16px 16px 0 0 !important;
  }
  .trf-nav.is-scrolled {
    box-shadow: 0 calc(-1 * var(--nav-top-fill, 0px)) 0 var(--nav-top-fill, 0px) var(--white), 0 4px 24px rgba(58,53,46,.1) !important;
  }
  /* Nav stays visible — th style: menu panel rolls out from under nav */
  body.trf-nav-open .trf-nav {
    visibility: visible !important;
    pointer-events: auto !important;
    border-radius: 16px 16px 0 0 !important;
    background: var(--linen) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  body.trf-nav-open .trf-nav .trf-logo { color: var(--deep) !important; }
  body.trf-nav-open .trf-nav .trf-logo__b { color: var(--deep) !important; }
  body.trf-nav-open .trf-nav .trf-burger span { background: var(--deep) !important; }
  body.trf-nav-open .trf-nav .trf-nav-search-btn { color: var(--deep) !important; }
  body.trf-nav-open .trf-mm__hdr { display: none !important; }
  /* Lock page scroll behind overlay — touch-action avoids the Safari clip-path compositing issue caused by overflow:hidden */
  body.trf-nav-open { touch-action: none; overscroll-behavior-y: none; }
  .trf-mm__panel { touch-action: pan-y; }

  /* Open-menu: show short R logo + quicklinks, hide full logo text */
  .trf-nav__quicklinks { display: none; }
  .trf-logo__short { display: none; }
  body.trf-nav-open .trf-nav .trf-logo { flex: none !important; margin-right: 20px !important; display: flex !important; align-items: center !important; min-height: 44px !important; }
  body.trf-nav-open .trf-nav .trf-logo__a,
  body.trf-nav-open .trf-nav .trf-logo__b { display: none !important; }
  body.trf-nav-open .trf-nav .trf-logo__short {
    display: inline;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    color: var(--deep);
  }
  body.trf-nav-open .trf-nav .trf-nav__quicklinks {
    display: flex;
    align-items: center;
    gap: 20px;
    order: 2;
  }
  .trf-nav__ql {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    white-space: nowrap;
  }
  .trf-nav__ql:hover { color: var(--olive); }

  /* Search icon left of burger in mobile nav bar */
  .trf-nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: currentColor;
    flex-shrink: 0;
    order: 4;
    margin-left: auto;
  }

  /* Burger: visible in normal nav flow */
  .trf-burger {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    background: none !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer !important;
    min-height: 44px !important;
    min-width: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    order: 5 !important;
  }

  /* Hide everything in nav-right on mobile */
  .trf-nav__right { display: none !important; }

  /* Menu: hidden by default */
  .trf-nav .trf-nav__menu,
  .trf-nav .menu { display: none !important; }

  /* ── MENU OPEN STATE ──
     Full-screen overlay in the ROOT stacking context (works because nav has z-index:auto).
     z-index:9998 means it covers all page content. */
  .trf-nav .trf-nav__menu.is-open,
  .trf-nav .menu.is-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: var(--white) !important;
    z-index: 9998 !important;
    padding: 80px 32px 48px !important;
    overflow-y: auto !important;
    gap: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    border: none !important;
  }

  /* All top-level menu items */
  .trf-nav .trf-nav__menu.is-open > li,
  .trf-nav .menu.is-open > li { display: list-item !important; }

  /* Links and buttons in open menu */
  .trf-nav .trf-nav__menu.is-open > li > a,
  .trf-nav .menu.is-open > li > a,
  .trf-nav .trf-nav__menu.is-open > li > button.trf-nav-drop-btn,
  .trf-nav .menu.is-open > li > button.trf-nav-drop-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    font-family: var(--serif) !important;
    font-size: 26px !important;
    font-weight: 300 !important;
    letter-spacing: .01em !important;
    text-transform: none !important;
    color: var(--deep) !important;
    padding: 18px 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    min-height: 60px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: color .18s ease !important;
  }
  .trf-nav .trf-nav__menu.is-open > li > a:hover,
  .trf-nav .menu.is-open > li > a:hover,
  .trf-nav .trf-nav__menu.is-open > li > button:hover,
  .trf-nav .menu.is-open > li > button:hover {
    color: var(--olive) !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
  }

  .trf-nav .trf-nav__menu.is-open li > a::after,
  .trf-nav .menu.is-open li > a::after { display: none !important; }

  /* Dropdown */
  .trf-nav .trf-nav__menu.is-open .has-dropdown.is-open .trf-nav-dropdown,
  .trf-nav .menu.is-open .has-dropdown.is-open .trf-nav-dropdown {
    display: flex !important;
    flex-direction: column !important;
    padding: 8px 0 8px 20px !important;
    gap: 0 !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-nav-dropdown a,
  .trf-nav .menu.is-open .trf-nav-dropdown a {
    font-size: 16px !important;
    color: var(--charcoal) !important;
    padding: 12px 0 !important;
    border: none !important;
    min-height: auto !important;
    font-family: var(--sans) !important;
    display: flex !important;
    justify-content: flex-start !important;
    text-decoration: none !important;
    transition: color .18s ease !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-nav-dropdown a:hover,
  .trf-nav .menu.is-open .trf-nav-dropdown a:hover {
    color: var(--olive) !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
  }

  /* Mobile-only items */
  .trf-nav .trf-nav__menu.is-open .trf-mobile-only,
  .trf-nav .menu.is-open .trf-mobile-only { display: list-item !important; }

  .trf-nav .trf-nav__menu.is-open .trf-mobile-divider,
  .trf-nav .menu.is-open .trf-mobile-divider { display: none !important; }

  /* Lang toggle inside menu */
  .trf-nav .trf-nav__menu.is-open .trf-mobile-lang-row,
  .trf-nav .menu.is-open .trf-mobile-lang-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 0 !important;
    border-bottom: none !important;
    min-height: auto !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-lang-row .trf-lang-btn,
  .trf-nav .menu.is-open .trf-mobile-lang-row .trf-lang-btn {
    font-size: 14px !important;
    color: var(--charcoal) !important;
    opacity: .45 !important;
    font-weight: 400 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px 12px !important;
    min-height: 44px !important;
    font-family: var(--sans) !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-lang-row .trf-lang-btn.is-active,
  .trf-nav .menu.is-open .trf-mobile-lang-row .trf-lang-btn.is-active {
    opacity: 1 !important;
    color: var(--deep) !important;
    font-weight: 500 !important;
  }

  /* Search item */
  .trf-nav .trf-nav__menu.is-open .trf-mobile-search-item,
  .trf-nav .menu.is-open .trf-mobile-search-item { display: list-item !important; }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-search-btn,
  .trf-nav .menu.is-open .trf-mobile-search-btn {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-family: var(--sans) !important;
    font-size: 15px !important;
    color: var(--charcoal) !important;
    background: transparent !important;
    border: none !important;
    padding: 18px 0 !important;
    width: 100% !important;
    cursor: pointer !important;
    text-align: left !important;
    min-height: 60px !important;
    text-transform: none !important;
    transition: color .18s ease !important;
  }
  .trf-nav .trf-nav__menu.is-open .trf-mobile-search-btn:hover,
  .trf-nav .menu.is-open .trf-mobile-search-btn:hover { color: var(--olive) !important; }
}

/* ── Footer social icons — subtle hover to match lang bar (light bg version) ── */
.trf-footer__social-icon:hover {
  background: rgba(58,53,46,.07) !important;
  border-color: rgba(85,78,70,.6) !important;
  color: var(--deep) !important;
  transform: translateY(-2px) !important;
}

/* ══════════════════════════════════════════════════════════
   SNAP SLIDER  ·  index.html category section (CSS-only)
   ══════════════════════════════════════════════════════════ */
.trf-snap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.trf-snap__track {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trf-snap__track::-webkit-scrollbar { display: none; }

.trf-snap__slide {
  flex-shrink: 0;
  width: 46vw;
  height: 400px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  text-decoration: none;
  background: var(--deep);
}
.trf-snap__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.trf-snap__slide:hover .trf-snap__img { transform: scale(1.07); }

.trf-snap__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,37,32,.9) 0%, rgba(42,37,32,.28) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.trf-snap__num {
  position: absolute;
  top: 20px; right: 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px; font-weight: 300; line-height: 1;
  color: rgba(231,226,222,.1);
  z-index: 2; pointer-events: none;
}
.trf-snap__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 28px 26px;
  z-index: 2;
}
.trf-snap__label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(231,226,222,.55); margin-bottom: 8px;
}
.trf-snap__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 400; line-height: 1.22;
  color: var(--linen); margin: 0 0 16px;
}
.trf-snap__arrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(231,226,222,.5);
  transition: color .22s;
}
.trf-snap__slide:hover .trf-snap__arrow { color: rgba(231,226,222,.9); }

@media (max-width: 900px) {
  .trf-snap__slide { width: 72vw; height: 340px; }
}
@media (max-width: 600px) {
  .trf-snap__slide { width: 88vw; height: 290px; }
  .trf-snap__title { font-size: 22px; }
  .trf-snap__body { padding: 0 20px 20px; }
}


/* ── Snap swipe cursor ── */
.trf-snap__cursor {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(253,252,251,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal);
  pointer-events: none;
  transform: translate(-50%, -62%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 10;
  user-select: none;
  will-change: left, top, opacity;
}
.trf-snap__cursor.is-visible { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .trf-snap__cursor {
    width: 94px;
    height: 94px;
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.12) 100%);
    backdrop-filter: blur(18px) saturate(1.6);
    -webkit-backdrop-filter: blur(18px) saturate(1.6);
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 4px 24px rgba(58,53,46,0.18);
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 3px rgba(58,53,46,0.3);
  }
}
@media (max-width: 900px) {
  .trf-snap__cursor {
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
    transform: translate(-50%, -62%) scale(0.7);
  }
  .trf-snap__cursor.is-visible { transform: translate(-50%, -62%) scale(1); opacity: 1; }
}

/* ── Snap slider nav arrows ── */
.trf-snap { position: relative; }
.trf-snap__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(253,252,251,.92); backdrop-filter: blur(6px);
  border: 1px solid rgba(176,168,158,.45);
  border-radius: 50%; cursor: pointer;
  font-size: 18px; color: var(--deep);
  transition: background .2s, border-color .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(58,53,46,.12);
}
.trf-snap__btn:hover {
  background: var(--linen);
  border-color: rgba(85,78,70,.55);
  transform: translateY(-50%) scale(1.07);
}
.trf-snap__btn--prev { left: 32px; }
.trf-snap__btn--next { right: 32px; }
@media (max-width: 600px) {
  .trf-snap__btn { width: 36px; height: 36px; font-size: 15px; }
  .trf-snap__btn--prev { left: 20px; }
  .trf-snap__btn--next { right: 20px; }
}
.trf-snap__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 0 80px;
}
.trf-snap__bar {
  width: 100%;
  height: 3px;
  background: var(--linen-mid);
  border-radius: 2px;
  overflow: hidden;
}
.trf-snap__bar-fill {
  height: 100%;
  width: 33.33%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: width 0.2s ease;
}
.trf-snap__dots {
  display: flex;
  gap: 8px;
}
.trf-snap__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--linen-mid);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.trf-snap__dot.is-active {
  background: var(--charcoal);
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .trf-snap__nav { padding: 0 20px; }
}

/* ══════════════════════════════════════════════════════
   COOKIE CONSENT BAR
══════════════════════════════════════════════════════ */
#trf-cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--deep);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(35,28,20,.32);
  transform: translateY(calc(100% + 28px));
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
#trf-cookie-bar.trf-cookie-bar--visible { transform: translateY(0); }
.trf-cookie-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.trf-cookie-bar__text { flex: 1; min-width: 0; }
.trf-cookie-bar__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--linen);
  margin: 0 0 4px;
  line-height: 1.2;
}
.trf-cookie-bar__desc {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(231,226,222,.72);
  margin: 0;
  line-height: 1.5;
}
.trf-cookie-bar__desc a {
  color: rgba(231,226,222,.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.trf-cookie-bar__desc a:hover { color: var(--linen); }
.trf-cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.trf-cookie-btn {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 12px 26px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  line-height: 1;
}
.trf-cookie-btn--accept {
  background: var(--olive);
  color: var(--linen);
}
.trf-cookie-btn--accept:hover {
  background: #7a7560;
  transform: translateY(-1px);
}
.trf-cookie-btn--manage {
  background: transparent;
  color: rgba(231,226,222,.78);
  border: 1.5px solid rgba(231,226,222,.45);
}
.trf-cookie-btn--manage:hover {
  color: var(--linen);
  border-color: rgba(231,226,222,.55);
}
@media (max-width: 640px) {
  #trf-cookie-bar { bottom: 12px; left: 12px; right: 12px; border-radius: 20px; }
  .trf-cookie-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 22px;
    gap: 16px;
  }
  .trf-cookie-bar__actions { width: 100%; }
  .trf-cookie-btn { flex: 1; text-align: center; padding: 13px 12px; }
}


/* Cookie preferences modal */
#trf-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(58,53,46,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
#trf-cookie-modal.trf-cookie-modal--open {
  opacity: 1;
  pointer-events: all;
}
.trf-cookie-modal__card {
  background: var(--deep);
  border: 1px solid rgba(231,226,222,.1);
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  padding: 44px 40px 36px;
}
.trf-cookie-modal__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  color: var(--linen);
  margin: 0 0 10px;
  line-height: 1.1;
}
.trf-cookie-modal__desc {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(231,226,222,.55);
  margin: 0 0 28px;
  line-height: 1.65;
}
.trf-cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(231,226,222,.07);
}
.trf-cookie-toggle-row:last-of-type {
  border-bottom: 1px solid rgba(231,226,222,.07);
  margin-bottom: 28px;
}
.trf-cookie-toggle-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 3px;
}
.trf-cookie-toggle-sub {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(231,226,222,.45);
}
.trf-cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
.trf-cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.trf-cookie-toggle__track {
  position: absolute;
  inset: 0;
  background: rgba(231,226,222,.12);
  border-radius: 11px;
  transition: background .2s;
  cursor: pointer;
}
.trf-cookie-toggle__track::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(231,226,222,.4);
  transition: transform .2s, background .2s;
}
.trf-cookie-toggle input:checked + .trf-cookie-toggle__track { background: var(--olive); }
.trf-cookie-toggle input:checked + .trf-cookie-toggle__track::after {
  transform: translateX(18px);
  background: var(--linen);
}
.trf-cookie-toggle input:disabled + .trf-cookie-toggle__track { opacity: .5; cursor: default; }
.trf-cookie-modal__actions {
  display: flex;
  gap: 10px;
}
.trf-cookie-modal__actions .trf-cookie-btn { flex: 1; text-align: center; }

/* ══════════════════════════════════════════════════════
   AUTHOR BIO
══════════════════════════════════════════════════════ */
.trf-author-bio {
  border-left: 2px solid var(--olive);
  background: var(--linen);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 56px 0 0;
}
.trf-author-bio__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--linen);
  flex-shrink: 0;
  letter-spacing: .03em;
}
.trf-author-bio__body { flex: 1; min-width: 0; }
.trf-author-bio__label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 6px;
  display: block;
}
.trf-author-bio__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--deep);
  margin: 0 0 10px;
  line-height: 1.1;
}
.trf-author-bio__text {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.75;
  margin: 0 0 16px;
}
.trf-author-bio__links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.trf-author-bio__links a {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.trf-author-bio__links a:hover { border-color: var(--olive); }
@media (max-width: 580px) {
  .trf-author-bio {
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
  }
}

/* ══ #35 Hero scroll indicator + tag outline fix ══ */

/* Tag: outlined card style (Image #14) — replaces left-border-only */
.trf-hero__tag {
    border-left: none;
    border: 1px solid rgba(85,78,70,.14);
    box-shadow: 0 3px 18px rgba(58,53,46,.07);
}

/* Scroll indicator — center-bottom of hero */
.trf-hero { position: relative; }

/* ══ #36 Tag right-aligned ══ */
.trf-hero__tag {
    left: auto;
    right: -2px;
}

/* ══ #37 Scroll indicator — byduran-style vertical text + line ══ */
.trf-hero-outer { position: relative; }
.trf-hero__scroll-hint {
    position: absolute;
    bottom: 56px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: opacity .3s ease;
}
.trf-hero__scroll-hint:hover { opacity: 0.6; }

.trf-hero__scroll-hint span {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    transform: rotate(90deg);
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.trf-hero__scroll-line {
    width: 1px;
    height: 48px;
    overflow: hidden;
    position: relative;
}
.trf-hero__scroll-line::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollPulseDown 2.2s linear infinite;
}

@keyframes scrollPulseDown {
    0%   { transform: translateY(-100%); }
    65%  { transform: translateY(100%); }
    100% { transform: translateY(100%); }
}

@media (max-width: 720px) {
    .trf-hero__scroll-hint { display: none; }
    /* Front page fullbleed hero: keep visible on mobile */
    .trf-hero--fullbleed .trf-hero__scroll-hint { display: flex; }
}

/* ══ #43 Readability optimisations — body typography ══
   Research basis:
   - Nielsen/NNG: 16-18px body for serif, 1.5-1.8 line-height, 60-75ch measure
   - Baymard: 20-22px paragraph spacing improves comprehension 18%
   - Cormorant Garamond is a fine-stroke display serif — needs 17px+ to render crisply
   ══════════════════════════════════════════════════════════════════════════════════ */

/* Post body — bump to 17px, tighten line-height slightly for better rhythm */
.trf-post-body {
    font-size: 17px;
    line-height: 1.82;
    color: var(--charcoal); /* slightly softer than --deep; reduces eye strain on long reads */
}

/* Paragraph spacing — 22px = ~1.3em at 17px, optimal for long-form */
.trf-post-body p { margin-bottom: 22px; }

/* H2 — more breathing room below heading before body text */
.trf-post-body h2 {
    font-size: 28px;
    margin: 52px 0 18px;
    color: var(--deep);
}

/* H3 — clearer separation */
.trf-post-body h3 {
    font-size: 21px;
    margin: 36px 0 14px;
    color: var(--deep);
}

/* List spacing — each item easier to scan */
.trf-post-body li { margin-bottom: 10px; line-height: 1.7; }

/* Post intro — bump to match body */
.trf-post-intro { font-size: 17px; line-height: 1.78; }

/* Keep max-width at 68ch — already optimal (65-72ch is sweet spot) */
.trf-post-body { max-width: 68ch; }

/* Mobile: 16px is fine for smaller viewport */
@media (max-width: 720px) {
    .trf-post-body { font-size: 16px; line-height: 1.8; }
    .trf-post-body h2 { font-size: 22px; margin: 40px 0 14px; }
    .trf-post-body h3 { font-size: 19px; margin: 30px 0 12px; }
    .trf-post-intro  { font-size: 16px; }
}

/* ══ #44 SIOH-inspired post typography refinements ══
   Based on saltinourhair.com readability pattern:
   short paragraphs, prominent H2s with accent, tip callouts,
   strong intro para, clean section rhythm
   ═══════════════════════════════════════════════════════ */

/* Intro paragraph — larger lead, olive left bar (SIOH uses a similar lead-in) */
.trf-post-body > p:first-of-type {
    font-size: 18px;
    line-height: 1.78;
    color: var(--deep);
}

/* H2 — olive underline accent, more visual weight (SIOH H2 pattern) */
.trf-post-body h2 {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -.01em;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--linen-mid);
    margin: 56px 0 20px;
}

/* H3 — cleaner, no border, just spacing rhythm */
.trf-post-body h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--deep);
    margin: 38px 0 14px;
    letter-spacing: -.005em;
}

/* Tip/callout box — matches SIOH's practical info boxes */
.trf-post-body .trf-tip {
    background: var(--linen);
    border-left: 3px solid var(--olive);
    padding: 20px 24px;
    margin: 32px 0;
    border-radius: 0 4px 4px 0;
    font-size: 15.5px;
    line-height: 1.72;
    color: var(--charcoal);
}
.trf-post-body .trf-tip strong:first-child {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 8px;
    font-weight: 500;
}

/* Info/note box variant — linen-mid background */
.trf-post-body .trf-note {
    background: rgba(176,168,158,.12);
    border: 1px solid var(--linen-mid);
    padding: 18px 22px;
    margin: 28px 0;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
}

/* Content column — SIOH keeps body text ~700px wide */
.trf-post-body {
    max-width: 680px;
}

/* Paragraph rhythm — keep tight but scannable */
.trf-post-body p {
    margin-bottom: 20px;
    max-width: 65ch;
}

/* Bold lead sentence pattern (SIOH often bolds first sentence) */
.trf-post-body p > strong:first-child {
    color: var(--deep);
}

/* Lists — SIOH uses generous list spacing for scannability */
.trf-post-body ul,
.trf-post-body ol {
    margin: 4px 0 24px;
    padding-left: 24px;
}
.trf-post-body li {
    margin-bottom: 9px;
    line-height: 1.72;
    font-size: 16.5px;
}

/* Responsive */
@media (max-width: 720px) {
    .trf-post-body h2 { font-size: 21px; margin: 40px 0 16px; }
    .trf-post-body h3 { font-size: 18px; }
    .trf-post-body > p:first-of-type { font-size: 16.5px; }
    .trf-post-body { max-width: 100%; }
    .trf-post-body p { max-width: 100%; }
}

/* ══ #45 Layout width + visual weight fix vs SIOH ══
   Problem: max-width:680px on post body was artificially
   narrowing the 1fr column. SIOH lets the grid handle width.
   Also bumping font size + H2 weight to close visual gap.
   ════════════════════════════════════════════════════════ */

/* Remove the artificial column constraint — let the grid breathe */
.trf-post-body {
    max-width: none;
    font-size: 18px;
    line-height: 1.8;
}
.trf-post-body p {
    max-width: none;
}

/* H2 — heavier visual weight to close gap with SIOH's bold headings */
.trf-post-body h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -.02em;
}

/* H3 — proportionally heavier too */
.trf-post-body h3 {
    font-size: 22px;
    font-weight: 500;
}

/* Intro para — visibly larger lead */
.trf-post-body > p:first-of-type {
    font-size: 19px;
    line-height: 1.75;
}

/* Post title — bigger, more presence */
.trf-post-title {
    font-size: clamp(34px, 4.2vw, 54px);
}

/* Guide content sections — widen to match SIOH's content column */
/* guide.html inline sections use max-width:860px which is correct */
/* Bump post-layout sidebar so 1fr content gets more room */
.trf-post-layout {
    grid-template-columns: 1fr 280px;
    gap: 56px;
    padding: 56px 64px;
}

/* Mobile: restore readable sizes */
@media (max-width: 720px) {
    .trf-post-body { font-size: 17px; }
    .trf-post-body h2 { font-size: 22px; }
    .trf-post-body h3 { font-size: 19px; }
    .trf-post-body > p:first-of-type { font-size: 17.5px; }
    .trf-post-layout { padding: 28px 20px; gap: 32px; grid-template-columns: 1fr; }
}

/* ══ #46 Sidebar widget posts — SIOH scale match ══
   SIOH: ~165px thumb, 16-17px bold title, 20px item gap
   Rico Fam was: 72px thumb, 14px light title — too small
   ════════════════════════════════════════════════════ */
.trf-widget-post {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
}

.trf-widget-post__img,
.trf-widget-post__thumb {
    width: 100px !important;
    height: 76px !important;
    flex-shrink: 0 !important;
    object-fit: cover;
    overflow: hidden;
}

.trf-widget-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trf-widget-post__title {
    font-family: var(--serif) !important;
    font-size: 15.5px !important;
    font-weight: 500 !important;
    line-height: 1.38 !important;
    color: var(--deep) !important;
    align-self: center;
}

/* Widget title label — slightly larger */
.trf-widget__title {
    font-size: 10px !important;
    letter-spacing: .16em !important;
    margin-bottom: 8px !important;
}

/* ══ #47 Sidebar categories — pill tags (Image #30 style) ══ */
.trf-widget-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
}

.trf-widget-cat {
    display: inline-block;
    background: var(--linen);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 7px 14px;
    border-radius: 20px;
    text-decoration: none;
    border: none !important;
    transition: background .2s ease, color .2s ease;
    line-height: 1;
}

.trf-widget-cat:hover {
    background: var(--olive);
    color: var(--white);
}

/* Override trf-widget a rule that adds border-bottom to all links */
.trf-widget .trf-widget-cats a {
    display: inline-block;
    border-bottom: none;
    padding: 7px 14px;
}
.trf-widget .trf-widget-cats a:hover {
    color: var(--white);
}

/* ══ #48 trf-author-bio — editorial redesign ══════════════════
   Deep background card, oversized italic name, avatar + social
   column left, body + two CTA buttons right. Magazine-grade.
   ════════════════════════════════════════════════════════════ */

.trf-author-bio {
    background: var(--deep);
    border-left: none;
    border: none;
    border-radius: 20px;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 36px;
    align-items: start;
    margin: 64px 0 0;
    position: relative;
    overflow: hidden;
}

/* Subtle grain texture overlay */
.trf-author-bio::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .5;
}

/* LEFT COLUMN — avatar + socials stacked */
.trf-author-bio__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trf-author-bio__avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(231,226,222,.25);
    outline: 1px solid rgba(103,98,79,.4);
    outline-offset: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 300;
    font-style: italic;
    color: var(--linen);
    flex-shrink: 0;
    letter-spacing: .04em;
    position: relative;
    z-index: 1;
}

/* Social icons — vertical column under avatar */
.trf-author-bio__socials {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trf-author-bio__social {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(231,226,222,.08);
    border: 1px solid rgba(231,226,222,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(231,226,222,.6);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.trf-author-bio__social:hover {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--linen);
}

/* RIGHT COLUMN — body content */
.trf-author-bio__body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.trf-author-bio__label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--olive);
    margin: 0 0 10px;
    display: block;
    opacity: .85;
}

.trf-author-bio__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--linen);
    margin: 0 0 16px;
    line-height: 1.05;
    letter-spacing: -.01em;
}

.trf-author-bio__text {
    font-family: 'Jost', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(231,226,222,.72);
    line-height: 1.8;
    margin: 0 0 28px;
}

/* ACTION BUTTONS */
.trf-author-bio__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.trf-author-bio__btn {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 100px;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
    display: inline-block;
    line-height: 1;
}

.trf-author-bio__btn--primary {
    background: var(--olive);
    color: var(--linen);
    border: 1.5px solid var(--olive);
}

.trf-author-bio__btn--primary:hover {
    background: #7a7560;
    border-color: #7a7560;
    transform: translateY(-1px);
}

.trf-author-bio__btn--ghost {
    background: transparent;
    color: rgba(231,226,222,.75);
    border: 1.5px solid rgba(231,226,222,.25);
}

.trf-author-bio__btn--ghost:hover {
    border-color: rgba(231,226,222,.6);
    color: var(--linen);
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 640px) {
    .trf-author-bio {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 24px;
    }
    .trf-author-bio__left {
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }
    .trf-author-bio__avatar { width: 72px; height: 72px; font-size: 24px; }
    .trf-author-bio__name { font-size: 26px; }
    .trf-author-bio__socials { flex-direction: row; }
}

/* ══ #49 Author bio — linen background for contrast vs dark map ══ */
.trf-author-bio {
    background: var(--linen);
    border: 1px solid var(--linen-mid);
}
.trf-author-bio::before { opacity: 0; }

.trf-author-bio__avatar {
    border-color: rgba(85,78,70,.2);
    outline-color: rgba(103,98,79,.3);
    color: var(--deep);
}

.trf-author-bio__name  { color: var(--deep); }
.trf-author-bio__text  { color: var(--charcoal); }
.trf-author-bio__label { color: var(--olive); }

.trf-author-bio__social {
    background: rgba(85,78,70,.07);
    border-color: rgba(85,78,70,.15);
    color: var(--charcoal);
}

.trf-author-bio__btn--ghost {
    color: var(--deep);
    border-color: rgba(58,53,46,.35);
}
.trf-author-bio__btn--ghost:hover {
    border-color: var(--deep);
    color: var(--deep);
}

/* ── #50 AFFILIATE NOTE REDESIGN ── */
.trf-affiliate-note {
    font-family: var(--sans);
    margin: 40px 0 0;
    padding: 0;
    border: none;
    background: none;
    display: block;
}
.trf-affiliate-note__headline {
    font-size: 1.1rem;
    color: var(--deep);
    margin: 0 0 10px;
    line-height: 1.4;
}
.trf-affiliate-note__headline strong { font-weight: 700; }
.trf-affiliate-note__intro {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.65;
    margin: 0 0 20px;
}
.trf-affiliate-note__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--linen-mid);
    border-radius: 14px;
    overflow: hidden;
}
.trf-affiliate-note__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--linen-mid);
    border-right: 1px solid var(--linen-mid);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    background: var(--white);
}
.trf-affiliate-note__item:nth-child(even) { border-right: none; }
.trf-affiliate-note__item:nth-last-child(-n+2) { border-bottom: none; }
a.trf-affiliate-note__item { color: inherit; border-bottom: 1px solid var(--linen-mid); }
a.trf-affiliate-note__item:hover { background: var(--linen); border-color: var(--linen-mid); outline: none; text-decoration: none; }
a.trf-affiliate-note__item:focus, a.trf-affiliate-note__item:focus-visible { outline: none; }
.trf-affiliate-note__icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--linen);
    display: flex; align-items: center; justify-content: center;
    color: var(--charcoal);
}
.trf-affiliate-note__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trf-affiliate-note__text strong { font-size: 0.85rem; font-weight: 700; color: var(--deep); line-height: 1.3; }
.trf-affiliate-note__text span { font-size: 0.78rem; color: var(--charcoal); }
@media (max-width: 520px) {
    .trf-affiliate-note__grid { grid-template-columns: 1fr; }
    .trf-affiliate-note__item { border-right: none; }
    .trf-affiliate-note__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--linen-mid); }
    .trf-affiliate-note__item:last-child { border-bottom: none; }
}

/* #51 — trf-post-share: icon-square buttons */
.trf-post-share__row { display: flex !important; flex-wrap: nowrap !important; gap: 6px !important; justify-content: flex-start !important; }
.trf-post-share__btn {
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    width: 48px !important; height: 48px !important; padding: 0 !important; flex: none !important;
    background: var(--charcoal) !important; border: none !important; color: #fff !important;
    cursor: pointer; border-radius: 10px !important;
    transition: opacity .2s ease, transform .15s ease !important;
}
.trf-post-share__btn--facebook  { background: #1877F2 !important; }
.trf-post-share__btn--whatsapp  { background: #25D366 !important; }
.trf-post-share__btn--twitter   { background: #000 !important; }
.trf-post-share__btn--pinterest { background: #E60023 !important; }
.trf-post-share__btn--copy      { background: var(--charcoal) !important; }
.trf-post-share__btn--email     { background: var(--olive) !important; }
.trf-post-share__btn:hover { opacity: .82 !important; transform: translateY(-1px) !important; filter: none !important; }
.trf-post-share__btn span { display: none !important; }
.trf-post-share__btn svg { flex-shrink: 0; }

/* #52 — sticky chapters bar */
.trf-chapters-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
    display: flex; flex-direction: column; align-items: center;
    padding: 0 16px 14px;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s ease;
}
.trf-chapters-bar.is-visible { transform: translateY(0); pointer-events: none; }
.trf-chapters-bar.is-visible .trf-chapters-bar__wrap,
.trf-chapters-bar.is-visible .trf-chapters-panel { pointer-events: auto; }
.trf-chapters-bar__wrap { width: 100%; max-width: 680px; }
@media (max-width: 767px) {
    .trf-chapters-bar { right: 56px; }
}
@media (min-width: 1101px) {
    .trf-chapters-bar__wrap,
    .trf-chapters-panel { margin-right: 336px; }
}
.trf-chapters-bar__btn {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    height: 52px; padding: 0 24px;
    background: var(--linen); border: none; border-radius: 100px; cursor: pointer;
    font-family: var(--sans); font-size: 0.925rem; font-weight: 700; color: var(--deep);
    box-shadow: 0 4px 24px rgba(58,53,46,.2);
    transition: background 0.15s ease;
}
.trf-chapters-bar__btn:hover { background: var(--linen-mid); }
.trf-chapters-bar__chevron { transition: transform 0.25s ease; }
.trf-chapters-bar.is-open .trf-chapters-bar__chevron { transform: rotate(180deg); }
.trf-chapters-panel {
    width: 100%; max-width: 680px;
    background: var(--white);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -2px 24px rgba(58,53,46,.1);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.trf-chapters-bar.is-open .trf-chapters-panel { max-height: 520px; }
.trf-chapters-panel__hd {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px 12px;
}
.trf-chapters-panel__title {
    font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--deep);
}
.trf-chapters-panel__close {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: var(--linen); border: none; border-radius: 50%; cursor: pointer; color: var(--deep);
    flex-shrink: 0;
}
.trf-chapters-panel__close:hover { background: var(--linen-mid); }
.trf-chapters-panel__list {
    list-style: none; margin: 0; padding: 0 12px;
    overflow-y: auto; max-height: 340px;
}
.trf-chapters-panel__list li a {
    display: block; padding: 13px 8px;
    font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--deep);
    text-decoration: none; border-bottom: 1px solid var(--linen);
    border-color: var(--linen);
}
.trf-chapters-panel__list li:last-child a { border-bottom: none; }
.trf-chapters-panel__list li a:hover { color: var(--olive); border-color: var(--linen); }
.trf-chapters-panel__top {
    display: block; width: 100%; padding: 15px 20px;
    font-family: var(--sans); font-size: 0.875rem; font-weight: 600; color: var(--charcoal);
    background: var(--linen); border: none; cursor: pointer; text-align: center;
    transition: background 0.15s ease;
}
.trf-chapters-panel__top:hover { background: var(--linen-mid); }

/* ═══════════════════════════════════════════════
   SIOH SHARED COMPONENTS — chapters · intro · weather
   ═══════════════════════════════════════════════ */

/* ── Chapters chip nav ── */
.th-chapters {
    background: var(--white);
    border-bottom: 1px solid var(--linen-mid);
    padding: 24px 80px;
}
.th-chapters__grid { display: flex; flex-wrap: wrap; gap: 10px; }
.th-chapters__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid var(--linen-mid);
    border-radius: 100px;
    padding: 10px 20px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--charcoal);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}
.th-chapters__item:hover,
.th-chapters__item.is-active {
    background: var(--deep);
    border-color: var(--deep);
    color: var(--linen);
}
.th-chapters__icon { font-size: 17px; line-height: 1; flex-shrink: 0; }

/* ── Intro 3-col layout ── */
.th-intro {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--white);
    border-bottom: 1px solid var(--linen-mid);
}

.th-intro__items {
    border-right: 1px solid var(--linen-mid);
    padding: 40px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-content: start;
}
.th-intro__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--linen-mid);
    text-decoration: none;
    transition: gap .25s ease;
}
.th-intro__link:last-of-type { border-bottom: none; }
.th-intro__link:hover { gap: 20px; }
.th-intro__link-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--deep);
    color: var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    transition: background .2s;
}
.th-intro__link:hover .th-intro__link-arrow { background: var(--olive); }
.th-intro__link-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--deep);
    line-height: 1.4;
}
.th-intro__quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
}
.th-intro__qcard {
    background: var(--linen);
    border-radius: 14px;
    padding: 18px 14px 36px;
    text-decoration: none;
    position: relative;
    min-height: 100px;
    transition: background .2s;
}
.th-intro__qcard:hover { background: var(--linen-mid); }
.th-intro__qcard-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--deep);
    line-height: 1.3;
    margin: 0 0 5px;
}
.th-intro__qcard-sub {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    color: var(--charcoal);
}
.th-intro__qcard-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Gallery column */
.th-intro__gallery {
    border-right: 1px solid var(--linen-mid);
    position: relative;
    overflow: hidden;
}
.th-gallery__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.th-gallery__slide {
    flex: 0 0 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.th-gallery__label {
    position: absolute;
    bottom: 52px;
    right: 14px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(42,37,32,.55);
    padding: 4px 12px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}
.th-gallery__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(253,252,251,.88);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--deep);
    font-size: 16px;
    transition: background .2s;
    backdrop-filter: blur(4px);
}
.th-gallery__btn:hover { background: var(--white); }
.th-gallery__btn--prev { left: 10px; }
.th-gallery__btn--next { right: 10px; }
.th-gallery__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.th-gallery__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(253,252,251,.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.th-gallery__dot.is-active { background: var(--white); transform: scale(1.4); }

/* Places nav column */
.th-intro__nav { padding: 40px 32px; }
.th-intro__nav-eyebrow {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--linen-dark);
    display: block;
    margin-bottom: 18px;
}
.th-intro__places { display: flex; flex-wrap: wrap; gap: 8px; }
.th-intro__place {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--deep);
    background: var(--linen);
    border: 1.5px solid var(--linen-mid);
    border-radius: 100px;
    padding: 8px 18px;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.th-intro__place:hover {
    background: var(--deep);
    border-color: var(--deep);
    color: var(--linen);
}

/* ── Weather section ── */
.th-weather {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    align-items: start;
    padding: 48px 80px;
    max-width: 1280px;
    margin: 0 auto;
    background: var(--white);
}
.th-weather__map-wrap {
    background: var(--linen-mid);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.th-weather__map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.th-weather__map-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #c8ddd5 0%, #a8c8be 40%, #88b2a8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--sans);
    color: var(--deep);
}
.th-weather__map-placeholder-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .7;
}
.th-weather__maps-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    margin-top: 14px;
    padding: 12px 16px;
    border: 1px solid var(--linen-mid);
    border-radius: 12px;
    background: var(--white);
    transition: border-color .2s;
    width: 100%;
    justify-content: flex-start;
}
.th-weather__maps-link:hover { border-color: var(--charcoal); }
.th-weather__right { padding-left: 60px; }
.th-weather__title {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    color: var(--deep);
    margin: 0 0 16px;
    letter-spacing: -.01em;
}
.th-weather__desc {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.78;
    color: var(--charcoal);
    margin: 0 0 36px;
    max-width: 560px;
}
.th-weather__legend {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: flex-end;
}
.th-weather__legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    color: var(--charcoal);
}
.th-weather__legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.th-weather__chart {
    display: flex;
    gap: 6px;
    align-items: flex-end;
}
.th-weather__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}
.th-weather__col-emoji { font-size: 16px; line-height: 1; }
.th-weather__col-temp {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    color: var(--charcoal);
    white-space: nowrap;
}
.th-weather__bar {
    width: 100%;
    border-radius: 5px 5px 0 0;
    transition: opacity .2s;
}
.th-weather__bar:hover { opacity: .8; }
.th-weather__col-month {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--linen-dark);
    margin-top: 2px;
}
.th-weather__col-now {
    display: none; position: absolute; bottom: -22px; left: 50%;
    transform: translateX(-50%); font-family: var(--sans); font-size: 8px;
    font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--olive); white-space: nowrap;
}
.th-weather__col--current { position: relative; }
.th-weather__col--current .th-weather__col-now { display: block; }
.th-weather__controls {
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
    margin-bottom: 16px; flex-wrap: wrap;
}
.th-temp-toggle {
    display: flex; align-items: center;
    background: var(--linen-mid); border: 1px solid var(--linen-dark);
    border-radius: 20px; padding: 2px; cursor: pointer; flex-shrink: 0;
}
.th-temp-toggle span {
    font-family: var(--sans); font-size: 11px; font-weight: 600;
    letter-spacing: .06em; padding: 4px 11px; border-radius: 16px;
    color: var(--charcoal); transition: background .15s, color .15s;
    user-select: none; line-height: 1;
}
.th-temp-toggle span.is-active { background: var(--charcoal); color: var(--white); }

/* ── In-content weather (inside post body) ── */
.trf-weather-inset {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 32px 0 !important;
    margin: 32px 0 !important;
}
.trf-weather-inset .th-weather__right { padding-left: 0 !important; margin-top: 20px !important; display: block !important; overflow: visible !important; }
.trf-weather-inset .th-weather__desc { max-width: none !important; }
.trf-weather-inset .th-weather__col { gap: 4px !important; }
.trf-weather-inset .th-weather__col-emoji { font-size: 13px !important; }
.trf-weather-inset .th-weather__col-temp { font-size: 8px !important; }
.trf-weather-inset .th-weather__col-month { font-size: 8px !important; }
@media (max-width: 768px) {
    .trf-weather-inset { padding: 20px 0 !important; margin: 24px 0 !important; }
    .trf-weather-inset .th-weather__col-emoji { font-size: 11px !important; }
    .trf-weather-inset .th-weather__col-temp { font-size: 7px !important; }
    .trf-weather-inset .th-weather__col-month { font-size: 7px !important; }
}

/* ── Weather tooltip ── */
.trf-wtip {
    position: fixed; z-index: 9999;
    transform: translateX(-50%) translateY(calc(-100% - 10px)) translateY(6px);
    background: var(--deep); color: var(--linen); border-radius: 10px;
    padding: 10px 13px; min-width: 150px; max-width: 190px;
    font-family: var(--sans); font-size: 11px; line-height: 1.55;
    pointer-events: none; opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
    white-space: normal; text-align: left;
    box-shadow: 0 6px 24px rgba(58,53,46,.22);
}
.trf-wtip::after {
    content: ''; position: absolute; top: 100%; left: var(--arrow-offset, 50%);
    transform: translateX(-50%); border: 6px solid transparent;
    border-top-color: var(--deep);
}
.trf-wtip.is-on { opacity: 1; transform: translateX(-50%) translateY(calc(-100% - 10px)); }
.trf-wtip__month { font-weight: 700; font-size: 12px; color: var(--white); margin-bottom: 4px; }
.trf-wtip__row { display: flex; gap: 5px; align-items: baseline; }
.trf-wtip__label { opacity: .65; }

@media (max-width: 1024px) {
    .th-chapters { padding: 20px 32px; }
    .th-intro { grid-template-columns: 1fr 1fr; }
    .th-intro__nav { grid-column: 1 / -1; border-top: 1px solid var(--linen-mid); border-right: none; }
    .th-weather { padding: 60px 32px; }
}
@media (max-width: 768px) {
    .th-chapters { padding: 16px 20px; }
    .th-intro { grid-template-columns: 1fr; }
    .th-intro__items,
    .th-intro__gallery { border-right: none; border-bottom: 1px solid var(--linen-mid); }
    .th-weather { grid-template-columns: 1fr; padding: 40px 20px; }
    .th-weather__right { padding-left: 0; margin-top: 32px; overflow: visible; display: block; }
    .th-weather__chart { gap: 3px; min-width: unset; }
    .th-weather__col-emoji { font-size: 11px; }
    .th-weather__col-temp { font-size: 7px; }
    .th-weather__col-month { font-size: 7px; letter-spacing: .03em; }
    .th-weather__col-now { font-size: 6px; bottom: -18px; }
}


/* ══ #36 Scroll indicator — bare arrows, no background, sequential light-up ══ */
.trf-hero__scroll,
.trf-hero__scroll:hover {
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    color: #fff;
    gap: 6px;
}
.trf-hero__scroll-chevron {
    animation: none !important;
    transform: none !important;
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.55));
}
.trf-hero__scroll-chevron--1 {
    animation: trf-chevron-seq 2s ease-in-out infinite !important;
}
.trf-hero__scroll-chevron--2 {
    animation: trf-chevron-seq 2s ease-in-out 0.5s infinite !important;
}
@keyframes trf-chevron-seq {
    0%   { opacity: 0.45; }
    50%  { opacity: 1; }
    100% { opacity: 0.45; }
}

/* ══ #37b btn-ghost hover ══ */
.btn-ghost {
    transition: color .2s ease;
    text-underline-offset: 3px;
}
.btn-ghost:hover {
    color: var(--deep);
    text-decoration: underline;
}

/* ══ #38 newsletter-wave input — light footer-style background ══ */
.trf-newsletter-wave__form,
.trf-newsletter-wave--light .trf-newsletter-wave__form {
    background: var(--linen) !important;
    border-color: var(--linen-mid) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.trf-newsletter-wave__input,
.trf-newsletter-wave--light .trf-newsletter-wave__input {
    background: transparent !important;
    color: var(--deep) !important;
}
.trf-newsletter-wave__input::placeholder,
.trf-newsletter-wave--light .trf-newsletter-wave__input::placeholder {
    color: var(--linen-dark) !important;
    opacity: 1 !important;
}

/* ══ #39 Where to Next — horizontal pill strip ══ */
.trf-wtn {
    background: var(--white);
    border-bottom: 1px solid var(--linen-mid);
}
.trf-wtn__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 18px 80px;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 80px;
}
.trf-wtn__title {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    color: var(--deep);
    line-height: 1.15;
    letter-spacing: -.02em;
    white-space: nowrap;
    flex-shrink: 0;
}
.trf-wtn__title em {
    font-style: normal;
    font-weight: 900;
}
.trf-wtn__scroll-wrap {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.trf-wtn__scroll-wrap::-webkit-scrollbar { display: none; }
.trf-wtn__pills {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 4px 2px;
}
.trf-wtn__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--linen);
    border: none;
    border-radius: 50px;
    padding: 5px 16px 5px 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s ease, box-shadow .18s ease;
    font-family: inherit;
    text-decoration: none;
}
.trf-wtn__pill:hover {
    background: var(--linen-mid);
    box-shadow: 0 2px 10px rgba(85,78,70,.1);
}
.trf-wtn__pill--soon {
    opacity: .42;
    cursor: default;
    pointer-events: none;
}
.trf-wtn__pill-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--linen-mid);
}
.trf-wtn__pill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.trf-wtn__pill-img--soon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--linen-mid);
}
.trf-wtn__pill-name {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--deep);
    letter-spacing: -.01em;
}

@media (max-width: 900px) {
    .trf-wtn__inner { padding: 16px 48px; gap: 20px; }
}
@media (max-width: 600px) {
    .trf-wtn__inner { padding: 14px 20px; gap: 14px; }
    .trf-wtn__title { font-size: 14px; }
    .trf-wtn__pill-img { width: 36px; height: 36px; }
    .trf-wtn__pill-name { font-size: 12px; }
}

/* ══ #40 Where to Next — scroll arrows + mobile hint ══ */
.trf-wtn__scroll-outer {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}
.trf-wtn__arrow {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--linen-mid);
    background: var(--white);
    color: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, opacity .2s ease, transform .15s ease;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 1px 6px rgba(85,78,70,.1);
}
.trf-wtn__arrow:hover {
    background: var(--linen);
    border-color: var(--linen-dark);
    transform: scale(1.07);
}
.trf-wtn__arrow--prev { margin-right: 8px; }
.trf-wtn__arrow--next { margin-left: 8px; }
.trf-wtn__arrow[hidden] { display: none; }
.trf-wtn__arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Mobile: hide arrows, show nudge hint */
@media (max-width: 768px) {
    .trf-wtn__arrow { display: none; }
    .trf-wtn__scroll-wrap.will-hint .trf-wtn__pills {
        animation: trf-wtn-nudge 1s ease 0.6s both;
    }
}
@keyframes trf-wtn-nudge {
    0%   { transform: translateX(0); }
    30%  { transform: translateX(-52px); }
    60%  { transform: translateX(-48px); }
    100% { transform: translateX(0); }
}

/* ══ #41 Pinterest Save button on post/guide images ══ */
.trf-pin-wrap {
    position: relative;
    display: block;
    line-height: 0;
}
.trf-pin-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E60023;
    color: #fff;
    border-radius: 20px;
    padding: 6px 12px 6px 8px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .01em;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.trf-pin-wrap:hover .trf-pin-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.trf-pin-btn svg { flex-shrink: 0; }

/* #42 — post-body: 100px narrower than chapters, centered — desktop only */
@media (min-width: 769px) {
    .trf-post-body {
        max-width: calc(100% - 100px);
        margin-left: auto;
        margin-right: auto;
    }
}

/* #43 — Mobile share buttons + grid overflow fix */
@media (max-width: 720px) {
    /* Prevent grid item from expanding beyond track width */
    .trf-post-layout > article,
    .trf-post-layout > aside { min-width: 0 !important; overflow: hidden !important; }
    /* Weather chart: allow flex cols to shrink */
    .trf-weather-inset .th-weather__col { min-width: 0 !important; }
    .trf-weather-inset .th-weather__col-temp { white-space: normal !important; overflow: hidden !important; }
    /* Share buttons */
    .trf-post-share__row { display: flex !important; flex-wrap: nowrap !important; gap: 4px !important; justify-content: center !important; }
    .trf-post-share__btn { width: 40px !important; height: 40px !important; flex: none !important; border-radius: 10px !important; }
    .trf-post-share__btn--pinterest { background: #E60023 !important; }
    .trf-post-share__btn--facebook  { background: #1877F2 !important; }
    .trf-post-share__btn--whatsapp  { background: #25D366 !important; }
    .trf-post-share__btn:hover { transform: none; }
    .trf-post-share__count {
        display: inline-block;
        background: rgba(0,0,0,.22);
        border-radius: 3px;
        padding: 1px 6px;
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        margin-left: 4px;
    }
}

/* #44 — removed (merged into #45) */

/* #45 — Footer: 3 cols desktop, 2+1 centered on mobile */
.trf-footer__top {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 220px)) !important;
    gap: 48px !important;
    justify-content: center !important;
}
.trf-footer__col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.trf-footer__socials { justify-content: flex-start !important; }
@media (max-width: 767px) {
    .trf-footer__top {
        grid-template-columns: max-content max-content !important;
        gap: 32px 56px !important;
        justify-content: center !important;
    }
    .trf-footer__col:last-child {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 479px) {
    .trf-footer__top {
        grid-template-columns: max-content max-content !important;
        gap: 28px 40px !important;
        justify-content: center !important;
    }
}

/* #46 — Footer socials: 1 row of 5 icons */
.trf-footer__socials {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    justify-content: start;
}

/* #47 — Newsletter form: label + error validation (matches collab-form style) */
.trf-nl-wrap { position: relative; }
.trf-nl-required { color: #B85C4A; }
.trf-nl-err {
    display: none;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    color: #C46A56;
    margin-top: 8px;
    padding-left: 4px;
    white-space: nowrap;
}
.trf-nl-err svg { flex-shrink: 0; }
.trf-nl-wrap--error .trf-newsletter-wave__form {
    border-color: #B85C4A !important;
}
.trf-nl-wrap--error .trf-newsletter-wave__input {
    border-color: #B85C4A !important;
    background: rgba(184,92,74,.07) !important;
}
.trf-nl-wrap--error .trf-nl-err { display: flex; }

/* ================================================================
   ABOUT SPLIT — PHOTO COLLAGE LAYOUT
   ================================================================ */
.trf-split--collage {
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.trf-split__collage {
  position: relative;
  background: transparent;
  min-height: 520px;
  overflow: hidden;
}
.trf-split__collage-img {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: none;
}
.trf-split__collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Large photo — left, flush to bento edge */
.trf-split__collage-img--1 {
  left: 0;
  top: 72px;
  width: 54%;
  height: 64%;
}
/* Medium photo — top-right */
.trf-split__collage-img--2 {
  right: 36px;
  top: 36px;
  width: 42%;
  height: 50%;
}
/* Small photo — centred, slides over both other images */
.trf-split__collage-img--3 img { object-position: center 20%; }
.trf-split__collage-img--3 {
  left: 26%;
  top: 50%;
  right: auto;
  bottom: auto;
  width: 52%;
  aspect-ratio: 1 / 1;
  height: auto;
  z-index: 2;
}

/* Button: don't stretch to panel width */
.trf-split--collage .trf-split__text .trf-recent-articles__all {
  align-self: flex-start;
}

/* Mobile: stack, show only primary photo */
@media (max-width: 720px) {
  .trf-split--collage {
    grid-template-columns: 1fr;
  }
  .trf-split__collage {
    min-height: 72vw;
  }
  .trf-split__collage-img--2,
  .trf-split__collage-img--3 {
    display: none;
  }
  .trf-split__collage-img--1 {
    left: 0; top: 0;
    width: 100%; height: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}

/* ================================================================
   INDEX HERO — MOBILE FULL-BLEED REDESIGN (≤720px)
   ================================================================ */
@media (max-width: 720px) {
  .trf-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    height: 100svh;
    overflow: hidden;
  }
  .trf-hero__photo {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    align-self: unset !important;
    overflow: hidden;
    background: var(--deep);
    z-index: 1;
  }
  .trf-hero__photo img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: unset !important;
    object-fit: cover;
  }
  .trf-hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(35, 28, 20, 0.90) 0%,
      rgba(35, 28, 20, 0.50) 40%,
      rgba(35, 28, 20, 0.05) 70%,
      transparent 100%
    );
    z-index: 2;
    pointer-events: none;
  }
  .trf-hero__tag     { display: none; }
  .trf-hero__socials { z-index: 3; }
  .trf-hero__content {
    position: relative;
    z-index: 10;
    padding: 0 24px 72px;
    background: transparent;
  }
  .trf-hero__content .trf-eyebrow {
    color: rgba(253, 252, 251, 0.72);
  }
  .trf-hero__title {
    color: var(--linen);
  }
  .trf-hero__title em {
    color: var(--linen-mid);
  }
  .trf-hero__sub {
    color: rgba(253, 252, 251, 0.82);
    max-width: 100%;
  }
  .trf-hero__actions {
    flex-wrap: nowrap;
    align-items: center;
  }
  .trf-hero .btn-ghost {
    color: var(--linen);
    border-color: rgba(253, 252, 251, 0.45);
    white-space: nowrap;
  }
  .trf-hero .btn-ghost:hover {
    background: rgba(253, 252, 251, 0.12);
    color: var(--white);
  }
}

/* ── Dropdown: open on hover (pointer devices only) ── */
@media (hover: hover) {
  .trf-nav .has-dropdown:hover .trf-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ── Universal image zoom — all card/post images inside main content ── */
main a img {
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
main a:hover img {
  transform: scale(1.07);
}

/* ── Editorial page content block (shared) ── */
.tips-page-content {
  max-width: 660px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.tips-page-content__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--deep);
  max-width: 700px;
  margin: 0 auto 24px;
  letter-spacing: -.01em;
}
.tips-page-content__body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto 18px;
}
.tips-page-content__body a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.tips-page-content__body a:hover { color: var(--olive); }

/* ══════════════════════════════════════════════════════════════
   BENTO LAYOUT — th-style floating rounded blocks
   Every major section floats as an inset rounded rectangle.
   Body background = grout between blocks.
   ══════════════════════════════════════════════════════════════ */

body { background: var(--white) !important; }

.trf-lang-bar {
  margin: 20px 20px 0;
  border-radius: 16px;
  overflow: hidden;
}
.trf-nav {
  margin: 20px 20px 0;
  border-radius: 16px 16px 0 0;
}

.trf-hero-outer,
.trf-hero,
.trf-nums,
.trf-wtn,
.trf-sth,
.trf-section,
.trf-budget,
.trf-split--collage {
  border-radius: 24px;
  margin: 20px;
  overflow: hidden;
}

/* Newsletter + footer share one bento block — joined at the seam */
.trf-newsletter-wave--light {
  border-radius: 24px 24px 0 0;
  margin: 20px 20px 0;
  overflow: hidden;
}
.trf-footer {
  border-radius: 0 0 24px 24px;
  margin: 0 20px 20px;
  overflow: hidden;
}

/* Compact height for stats + destination pill bars */
.trf-nums { padding: 28px 80px !important; }
.trf-wtn  { background: var(--linen) !important; border-bottom: none !important; padding: 0 !important; }

/* th-style generous internal padding on content sections */
.trf-sth { padding: 48px 80px; }
.trf-budget { padding: 64px 80px; }

/* Prevent double margin when trf-hero is inside trf-hero-outer */
.trf-hero-outer .trf-hero {
  margin: 0;
  border-radius: 0;
}


/* Guides: full-bleed editorial grid fills the block — corners clip it */
#guides {
  padding: 0 !important;
  background: var(--linen) !important;
}
#guides .trf-section-head {
  padding: 36px 64px 0;
  margin-bottom: 32px;
}
#guides .trf-editorial-grid {
  gap: 3px;
  margin: 0;
}

/* Recent articles: clear linen block with breathing room */
#recent-articles {
  padding: 36px 64px !important;
  background: var(--linen) !important;
}
#recent-articles .trf-section-head {
  padding-top: 0;
  margin-bottom: 32px;
}
#recent-articles .trf-recent-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0;
}
#recent-articles .trf-recent-card__img {
  aspect-ratio: 4 / 3;
  max-height: 200px;
}
#recent-articles .trf-recent-card__body {
  padding: 16px 18px 20px;
}
#recent-articles .trf-recent-card__title {
  font-size: clamp(14px, 1.3vw, 17px);
  margin-bottom: 6px;
}
#recent-articles .trf-recent-card__excerpt {
  -webkit-line-clamp: 2;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  #recent-articles {
    padding: 32px 16px !important;
  }
  #recent-articles .trf-recent-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  #recent-articles .trf-recent-card__img {
    max-height: 160px;
  }
  #recent-articles .trf-recent-card__body {
    padding: 12px 14px 16px;
  }
}

/* ALL DESTINATIONS bento CTA block */
.trf-bento-cta {
  padding: 0 !important;
  background: var(--linen) !important;
}
.trf-bento-cta__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 52px 80px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color .2s;
}
.trf-bento-cta__link:hover { color: var(--deep); }
.trf-bento-cta__arrow {
  font-size: 14px;
  transition: transform .2s;
}
.trf-bento-cta__link:hover .trf-bento-cta__arrow { transform: translateX(5px); }

/* Nav stays sticky on scroll — margin must not interfere */
.trf-nav {
  position: sticky;
  top: 20px;
  z-index: 100;
}

@media (max-width: 767px) {
  .trf-lang-bar,
  .trf-nav {
    margin: 6px 8px 0;
    border-radius: 16px;
  }
  .trf-hero-outer,
  .trf-nums,
  .trf-wtn,
  .trf-sth,
  .trf-section,
  .trf-budget,
  .trf-split--collage {
    margin: 6px 8px;
    border-radius: 12px;
  }
  .trf-sth { padding-left: 0 !important; padding-right: 0 !important; }
  .trf-newsletter-wave--light {
    margin: 8px 8px 0;
    border-radius: 16px 16px 0 0;
  }
  .trf-footer {
    margin: 0 8px 8px;
    border-radius: 0 0 16px 16px;
  }
}

/* Collab page bento sections */
.collab-hero,
.collab-stats,
.collab-section,
.collab-process,
.collab-form-section {
  border-radius: 24px;
  margin: 20px;
  overflow: hidden;
}

/* About page bento sections */
.trf-about-hero,
.trf-about-values,
.trf-about-cta {
  border-radius: 24px;
  margin: 20px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .collab-hero, .collab-stats, .collab-section, .collab-process, .collab-form-section,
  .trf-about-hero, .trf-about-values, .trf-about-cta {
    margin: 8px;
    border-radius: 16px;
  }
}

@media (max-width: 540px) { .tips-page-content { padding: 32px 16px !important; } }

/* ── SITEWIDE BENTO — all remaining pages ────────────────────────────────── */
/* !important needed to override page-specific inline <style> blocks          */

/* Archive / Guides pages */
.trf-cat-hero,
.trf-archive-grid,
.trf-arc-pagination,
.tips-page-content {
  border-radius: 24px !important;
  margin: 20px !important;
  max-width: none !important;
  overflow: hidden !important;
  padding: 36px 80px !important;
}
.trf-archive-grid,
.trf-arc-pagination,
.tips-page-content { background: var(--linen); }

/* Category page */
.cat-hero,
.th-intro,
.cat-content,
.cat-more,
.th-weather,
.cat-faqbook {
  border-radius: 24px !important;
  margin: 20px !important;
  max-width: none !important;
  overflow: hidden !important;
}
.th-intro,
.cat-content,
.cat-more,
.th-weather,
.cat-faqbook { background: var(--linen) !important; }

/* Destination page */
.dest-hero,
.trf-quickfacts,
.dac,
.trf-nts,
.dest-rest,
.dest-res {
  border-radius: 24px !important;
  margin: 20px !important;
  max-width: none !important;
  overflow: hidden !important;
}
.trf-quickfacts { background: var(--deep) !important; }
.dac,
.trf-nts,
.dest-rest,
.dest-res { background: var(--linen) !important; }

/* Guide / Post pages */
.trf-guide-hero,
.trf-post-layout,
.trf-guide-map,
.trf-guide-related,
.trf-share {
  border-radius: 24px !important;
  margin: 20px !important;
  overflow: hidden !important;
}
.trf-post-layout,
.trf-guide-map,
.trf-guide-related,
.trf-share { background: var(--linen); }

/* Resources page */
.res-hero {
  border-radius: 24px !important;
  margin: 20px !important;
  max-width: none !important;
  overflow: hidden !important;
  background: var(--linen) !important;
}
.res-content {
  margin: 0 !important;
  max-width: none !important;
  background: none !important;
  border-radius: 0 !important;
}
.res-section {
  border-radius: 24px !important;
  margin: 20px !important;
  padding: 56px 80px !important;
  background: var(--linen) !important;
  box-shadow: 0 2px 24px rgba(58,53,46,.07);
  scroll-margin-top: 130px !important;
}

/* Search page */
.trf-search-hero,
.trf-search-page {
  border-radius: 24px !important;
  margin: 20px !important;
  max-width: none !important;
  overflow: hidden !important;
}
.trf-search-page { background: var(--linen); }

/* Privacy / Sitemap / generic header */
.trf-page-header {
  border-radius: 24px !important;
  margin: 20px !important;
  overflow: hidden !important;
  background: var(--linen);
}

/* Tips page */
.tips-page-header {
  border-radius: 24px !important;
  margin: 20px !important;
  max-width: none !important;
  overflow: hidden !important;
  background: var(--linen);
}
.tips-body {
  margin: 0 !important;
  max-width: none !important;
  background: none !important;
  border-radius: 0 !important;
}
.tips-section {
  border-radius: 24px !important;
  margin: 20px !important;
  padding: 56px 80px !important;
  background: var(--linen) !important;
  box-shadow: 0 2px 24px rgba(58,53,46,.07);
  scroll-margin-top: 130px !important;
}

/* Bookings page — bkn-picks/bkn-section/bkn-disc are nested inside bkn-content */
.bkn-hero {
  border-radius: 24px !important;
  margin: 20px !important;
  max-width: none !important;
  overflow: hidden !important;
  background: var(--linen);
}
.bkn-tiers {
  border-radius: 24px !important;
  margin: 20px !important;
  max-width: none !important;
  overflow: hidden !important;
  background: var(--linen);
}
.bkn-content {
  margin: 0 !important;
  max-width: none !important;
  background: none !important;
  border-radius: 0 !important;
}

/* 404 page */
.trf-404 {
  border-radius: 24px !important;
  margin: 20px !important;
  overflow: hidden !important;
  background: var(--linen);
}

/* Sticky nav bars — float as pills, no bento background */
.trf-cat-nav,
.th-chapters,
.bkn-nav,
.tips-jumps {
  background: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

/* Sticky page navs — hide-on-scroll */
.tips-jumps,
.bkn-nav,
.res-nav {
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.tips-jumps.is-hidden,
.bkn-nav.is-hidden,
.res-nav.is-hidden {
  transform: translateY(calc(-100% - 28px));
}

@media (max-width: 767px) {
  .trf-cat-hero, .trf-archive-grid, .trf-arc-pagination, .tips-page-content,
  .cat-hero, .th-intro, .cat-content, .cat-more, .th-weather, .cat-faqbook,
  .dest-hero, .trf-quickfacts, .dac, .trf-nts, .dest-rest, .dest-res,
  .trf-guide-hero, .trf-post-layout, .trf-guide-map, .trf-guide-related, .trf-share,
  .res-hero, .res-section,
  .trf-search-hero, .trf-search-page,
  .trf-page-header,
  .tips-page-header, .tips-section,
  .bkn-hero, .bkn-tiers,
  .trf-404,
  .trf-cat-nav, .th-chapters, .bkn-nav, .res-nav, .tips-jumps {
    margin: 6px 8px !important;
    border-radius: 12px !important;
  }
  .tips-page-content { padding: 36px 10px !important; }
  /* quickfacts: 2 separate bento boxes on mobile */
  .trf-quickfacts {
    background: transparent !important;
    overflow: visible !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 0 !important;
  }
  .trf-quickfacts__inner {
    flex-direction: column !important;
    gap: 8px !important;
    background: transparent !important;
  }
  .trf-qf-row {
    background: var(--deep) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border-bottom: none !important;
    border-right: none !important;
  }
}

/* ── th-intro: 3 separate bento blocks side by side ── */
.th-intro {
  display: flex !important;
  gap: 20px !important;
  background: transparent !important;
  border-radius: 0 !important;
  border-bottom: none !important;
  overflow: visible !important;
  padding: 0 !important;
}
.th-intro__items,
.th-intro__gallery,
.th-intro__nav {
  border-radius: 24px;
  overflow: hidden;
  background: var(--linen);
  flex: 1;
  border-right: none !important;
}

/* ── qcard: olive background ── */
.th-intro__qcard {
  background: var(--olive) !important;
  transition: background .2s;
}
.th-intro__qcard:hover { background: var(--deep) !important; }
.th-intro__qcard-title { color: var(--linen) !important; }
.th-intro__qcard-sub { color: rgba(231,226,222,.7) !important; }
.th-intro__qcard-btn { background: var(--linen) !important; color: var(--deep) !important; }

@media (max-width: 767px) {
  .th-intro { flex-direction: column !important; gap: 8px !important; }
  .th-intro__items,
  .th-intro__gallery,
  .th-intro__nav { border-radius: 16px; }
}

/* ── Nav always in front of the white backdrop (injected via JS) ── */
.trf-nav { z-index: 2000 !important; }

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU v2 — dark top bar + tabbed overlay
   ═══════════════════════════════════════════════════════════ */

/* Quick-nav bar injected into nav when mobile menu is open */
.trf-mm-qnav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}
.trf-mm-qnav__left { display: flex; align-items: center; gap: 20px; }
.trf-mm-qnav__right { display: flex; align-items: center; gap: 14px; }
.trf-mm-qnav__link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(231,226,222,.85);
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .18s;
}
.trf-mm-qnav__link:hover { color: var(--white); }
.trf-mm-qnav__search {
  background: none;
  border: none;
  color: rgba(231,226,222,.75);
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color .18s;
}
.trf-mm-qnav__search:hover { color: var(--white); }
.trf-mm-qnav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trf-mm-qnav__lang .trf-lang-btn {
  background: none !important;
  border: none !important;
  color: rgba(231,226,222,.55) !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  padding: 4px 2px !important;
  cursor: pointer !important;
  transition: color .18s !important;
}
.trf-mm-qnav__lang .trf-lang-btn.is-active { color: var(--linen) !important; }
.trf-mm-qnav__lang-sep { color: rgba(231,226,222,.35); font-size: 11px; }

/* ── Hamburger menu elements: hidden on desktop via min-width (avoids cascade conflicts) ── */
@media (min-width: 901px) {
  #trf-mm { display: none !important; }
}

@media (max-width: 900px) {
  /* Nav hidden when overlay open — overlay z-index:10000 sits above nav (9999) */
  /* Dark header bar at top of menu */
  .trf-mm__hdr {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px; background: var(--deep); flex-shrink: 0;
    min-height: 68px;
  }
  .trf-mm__hdr-left { display: flex; align-items: center; gap: 20px; }
  .trf-mm__hdr-right { display: flex; align-items: center; gap: 14px; }
  .trf-mm__social {
    display: flex;
    align-items: center;
    color: rgba(231,226,222,.55);
    transition: color 0.18s;
  }
  .trf-mm__social:hover { color: var(--linen); }
  .trf-mm__close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }
  .trf-mm__close span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 0;
    transition: transform 0.65s cubic-bezier(.34,1.56,.64,1), opacity 0.25s ease;
  }
  /* Lang bar open-state styles consolidated below near the backdrop block */
  /* Curtain overlay — sits below panel (997) and nav (999); click-to-close only */
  .trf-mm-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 996;
    pointer-events: none;
    touch-action: none;
  }
  .trf-mm-backdrop.is-active {
    display: block;
    pointer-events: auto;
  }
  /* Overlay — full-screen clip container, transparent so hero shows during animation.
     Inner element carries the white background and border-radius — no corner gaps possible. */
  #trf-mm {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    padding: 8px;
    background: var(--white);
    z-index: 997;
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }
  #trf-mm.is-open {
    transform: translateY(0);
  }
  .trf-mm__inner {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(58,53,46,.18);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  body.trf-nav-open .trf-mm__inner { border-radius: 0; }

  /* Tab bar */
  .trf-mm__tabs {
    display: flex;
    flex-shrink: 0;
    gap: 0;
    padding: 0;
  }
  .trf-mm__tab {
    flex: 1;
    padding: 15px 4px 16px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .02em;
    background: var(--olive);
    color: var(--linen);
    border: none;
    border-radius: 0;
    cursor: pointer;
    line-height: 1.35;
    transition: background .18s, color .18s;
  }
  .trf-mm__tab.is-active {
    background: var(--white);
    color: var(--deep);
    font-weight: 600;
  }

  /* Panels */
  .trf-mm__panel { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 24px 20px 48px; -webkit-overflow-scrolling: touch; }

  /* Region header */
  .trf-mm__region-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--deep);
    padding: 14px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--linen-mid);
    text-decoration: none;
  }

  /* Pills */
  .trf-mm__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .trf-mm__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--deep);
    padding: 9px 16px;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    border: 1.5px solid var(--linen-mid);
    text-decoration: none;
    transition: background .18s, border-color .18s;
  }
  .trf-mm__pill:hover { background: var(--linen); border-color: var(--linen-dark); }

  /* Bottom "All …" link */
  .trf-mm__all-link {
    display: block;
    text-align: center;
    padding: 15px 20px;
    background: var(--linen);
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--deep);
    letter-spacing: .04em;
    text-decoration: none;
  }

  /* Tips section header */
  .trf-mm__section-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--deep);
    padding: 14px 0;
    border-bottom: 1px solid var(--linen-mid);
    text-decoration: none;
    margin-bottom: 4px;
  }
  .trf-mm__section-hd-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--linen);
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
    flex-shrink: 0;
  }

  /* Tips list */
  .trf-mm__tip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--linen);
    text-decoration: none;
    color: inherit;
    transition: opacity .18s;
  }
  .trf-mm__tip-item:hover { opacity: .75; }
  .trf-mm__tip-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trf-mm__tip-item strong { display: block; font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--deep); line-height: 1.3; }
  .trf-mm__tip-item span { display: block; font-family: var(--sans); font-size: 13px; color: var(--charcoal); font-weight: 400; margin-top: 1px; }
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE TOGGLE — pill slider design
   ═══════════════════════════════════════════════════════════ */
.trf-lang-bar .trf-lang-bar__lang {
  background: rgba(0,0,0,.18);
  border-radius: 100px;
  padding: 3px;
  gap: 0;
  border: 1px solid rgba(231,226,222,.10);
}
.trf-lang-bar .trf-lang-sep { display: none !important; }
.trf-lang-bar .trf-lang-btn[data-lang] {
  padding: 4px 13px !important;
  border-radius: 100px !important;
  opacity: 1 !important;
  color: rgba(231,226,222,.42) !important;
  background: none !important;
  font-weight: 400 !important;
  transition: background .2s ease, color .2s ease !important;
}
.trf-lang-bar .trf-lang-btn[data-lang]:hover {
  color: rgba(231,226,222,.7) !important;
  background: none !important;
}
html.lang-nl .trf-lang-bar .trf-lang-btn[data-lang="nl"],
html.lang-en .trf-lang-bar .trf-lang-btn[data-lang="en"],
body.lang-nl .trf-lang-bar .trf-lang-btn[data-lang="nl"],
body.lang-en .trf-lang-bar .trf-lang-btn[data-lang="en"],
.trf-lang-bar .trf-lang-btn.is-active {
  background: rgba(231,226,222,.20) !important;
  color: var(--linen) !important;
  font-weight: 500 !important;
}

/* ── Quicklinks: hidden globally, shown only inside open mobile menu ── */
.trf-nav__quicklinks { display: none !important; }
body.trf-nav-open .trf-nav .trf-nav__quicklinks { display: flex !important; }

/* ── Short R logo: hidden globally, shown only inside open mobile menu ── */
.trf-logo__short { display: none !important; }
body.trf-nav-open .trf-nav .trf-logo__short { display: inline !important; }

/* ── Nav: all corners round at top, animate to 0 on scroll ── */
.trf-nav.nav-has-round {
  border-radius: 16px !important;
  transition: border-radius 0.35s ease,
              box-shadow 0.35s ease,
              transform 0.35s ease !important;
}
.trf-nav.nav-has-round.is-scrolled {
  border-radius: 16px 16px 0 0 !important;
}

/* ── Floating label — newsletter input ── */
.trf-nl-label-wrap {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
}
.trf-newsletter-wave__btn {
  flex-shrink: 0;
}
.trf-nl-label-wrap .trf-newsletter-wave__input {
  flex: none;
  width: 100%;
}
.trf-nl-field-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(231,226,222,.55);
  pointer-events: none;
  transition: top .2s ease, transform .2s ease, font-size .2s ease, color .2s ease, letter-spacing .2s ease;
  line-height: 1;
  z-index: 1;
  white-space: nowrap;
}
.trf-newsletter-wave--light .trf-nl-field-label {
  color: rgba(44,24,16,.38);
}
/* Allow floating label to cut through top border (dark variant) */
.trf-newsletter-wave__form:has(.trf-nl-label-wrap) { overflow: visible; }
/* Light variant: form stays overflow:hidden — label lives in nl-wrap, not form */
.trf-newsletter-wave--light .trf-newsletter-wave__form { overflow: hidden !important; }
/* Floated state — sits on top border line (matches contact form style) */
.trf-nl-label-wrap.is-focused .trf-nl-field-label,
.trf-nl-label-wrap.has-value .trf-nl-field-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(231,226,222,.85);
  padding: 0 5px;
  left: 16px;
}
/* Light variant: label lives in nl-wrap — use nl-wrap state classes */
.trf-newsletter-wave--light .trf-nl-field-label {
  top: 25px; /* vertical centre of the 50px-tall pill */
}
.trf-newsletter-wave--light .trf-nl-wrap.nl-is-focused .trf-nl-field-label,
.trf-newsletter-wave--light .trf-nl-wrap.nl-has-value .trf-nl-field-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--linen);
  border-radius: 3px;
  padding: 0 5px;
  left: 16px;
  z-index: 2;
}
/* Placeholder always hidden — floating label replaces it (dark variant) */
.trf-nl-label-wrap .trf-newsletter-wave__input::placeholder {
  color: transparent !important;
}
/* Light variant — expand on focus, floating label slides up */
.trf-newsletter-wave--light .trf-nl-wrap {
  width: min(245px, 100%);
  transition: width .36s cubic-bezier(.22,1,.36,1);
}
.trf-newsletter-wave--light .trf-nl-wrap:focus-within {
  width: min(520px, 100%);
}
.trf-newsletter-wave--light .trf-newsletter-wave__form {
  width: 100% !important;
  max-width: 100% !important;
}
.trf-newsletter-wave--light .trf-newsletter-wave__input {
  min-width: 0 !important;
  flex: 1 1 0 !important;
}
/* Override Chrome autofill blue background — dark newsletter variant */
.trf-newsletter-wave__input:-webkit-autofill,
.trf-newsletter-wave__input:-webkit-autofill:hover,
.trf-newsletter-wave__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #3A352E inset !important;
  -webkit-text-fill-color: #E7E2DE !important;
  transition: background-color 5000s ease-in-out 0s;
}
/* Light newsletter variant */
.trf-newsletter-wave--light .trf-newsletter-wave__input:-webkit-autofill,
.trf-newsletter-wave--light .trf-newsletter-wave__input:-webkit-autofill:hover,
.trf-newsletter-wave--light .trf-newsletter-wave__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #E7E2DE inset !important;
  -webkit-text-fill-color: #3A352E !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* ── Newsletter success state ── */
.trf-nl-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 0;
}
.trf-nl-success__tag {
  display: inline-block;
  background: var(--deep);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
}
.trf-newsletter-wave--light .trf-nl-success__tag {
  background: var(--olive);
}
.trf-nl-success__msg {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0;
}
.trf-newsletter-wave:not(.trf-newsletter-wave--light) .trf-nl-success__msg {
  color: var(--linen);
}

/* ── Uniform 36px bento-top — resources, tips, bookings ── */
.res-section { padding-top: 0 !important; }
.res-section__head { padding-top: 36px; }

.tips-section { padding-top: 0 !important; }
.tips-section__head { padding-top: 36px; }

.bkn-picks { padding-top: 0 !important; }
.bkn-picks__hd { padding-top: 36px; }

.bkn-section { padding-top: 0 !important; }
.bkn-section__hd { padding-top: 36px; }

/* ── #about: left collage transparent, right text as own bento ── */
#about {
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
  gap: 20px;
}
#about .trf-split__collage {
  background: transparent !important;
}
#about .trf-split__text {
  border-radius: 24px;
  overflow: hidden;
}

/* ── #about mobile: one unified bento (image + text) ── */
@media (max-width: 767px) {
  #about {
    overflow: hidden !important;
    border-radius: 16px !important;
    background: var(--olive) !important;
    gap: 0 !important;
    margin: 8px !important;
  }
  #about .trf-split__collage {
    background: transparent !important;
    min-height: 54vw;
    padding: 12px 12px 0;
  }
  #about .trf-split__collage-img--1 {
    left: 0; top: 0;
    width: 100%; height: 100%;
    box-shadow: none;
    border-radius: 12px 12px 0 0;
  }
  #about .trf-split__text {
    border-radius: 0 !important;
    overflow: visible !important;
  }
}

/* ─── Essential Guides: editorial magazine card redesign ─── */
#guides .trf-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 480px;
  gap: 3px;
  margin: 0;
}

/* Hero card spans both rows */
#guides .trf-card--overlay { grid-row: span 2; }

/* All cards: white paper tiles */
#guides .trf-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
}

/* Image container */
#guides .trf-card .trf-card__img {
  overflow: hidden;
  aspect-ratio: unset !important;
  flex-shrink: 0;
}
#guides .trf-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
#guides .trf-card:hover .trf-card__img img { transform: scale(1.05); }

/* ── Hero: image fills all remaining space, body pinned at bottom ── */
#guides .trf-card--overlay .trf-card__img { flex: 1; min-height: 0; }
#guides .trf-card--overlay .trf-card__body {
  position: static !important;
  background: var(--white) !important;
  padding: 22px 28px !important;
  border-top: 1px solid var(--linen-mid);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* Kill overlay gradient */
#guides .trf-card--overlay::before,
#guides .trf-card--overlay .trf-card__body::before {
  display: none !important;
  background: none !important;
}

/* ── Small cards: horizontal (image left, text right) ── */
#guides .trf-card:not(.trf-card--overlay) { flex-direction: row; }
#guides .trf-card:not(.trf-card--overlay) .trf-card__img {
  width: 46%; flex-shrink: 0;
}
#guides .trf-card:not(.trf-card--overlay) .trf-card__body {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px 28px;
  border-left: 1px solid var(--linen-mid);
  gap: 8px;
}

/* ── Typography ── */
#guides .trf-guide-tag { display: none; }

#guides .trf-card__cat {
  font-family: var(--sans) !important;
  font-size: 8px !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--olive) !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

#guides .trf-card__title {
  font-family: var(--serif) !important;
  font-size: 17px !important;
  font-weight: 300 !important;
  color: var(--deep) !important;
  line-height: 1.3 !important;
  letter-spacing: -.01em !important;
  margin: 0 !important;
}
#guides .trf-card--overlay .trf-card__title {
  font-size: clamp(18px, 2vw, 22px) !important;
}

#guides .trf-card__desc {
  font-family: var(--sans) !important;
  font-size: 12px !important;
  color: var(--charcoal) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  opacity: .65;
}
/* Hide desc on compact horizontal cards — no space */
#guides .trf-card:not(.trf-card--overlay) .trf-card__desc { display: none; }

/* Hover: editorial title underline */
#guides .trf-card:hover .trf-card__title {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--linen-dark);
  text-decoration-thickness: 1px;
}

/* ─── Essential Guides: overlay hero + vertical side cards (rev 2) ─── */

/* Grid: left wider, right narrower */
#guides .trf-editorial-grid {
  grid-template-columns: 5fr 3fr;
}

/* ── Hero: full image fill + gradient overlay ── */
#guides .trf-card--overlay {
  position: relative;
  flex-direction: column;
}
#guides .trf-card--overlay .trf-card__img {
  position: absolute !important;
  inset: 0;
  overflow: hidden;
  flex: none !important;
  height: 100% !important;
  width: 100%;
}
/* Bottom-weighted gradient */
#guides .trf-card--overlay::before {
  display: block !important;
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(20,17,14,0) 20%,
    rgba(20,17,14,.52) 52%,
    rgba(20,17,14,.88) 100%);
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(to bottom,
    rgba(20,17,14,0) 20%,
    rgba(20,17,14,.52) 52%,
    rgba(20,17,14,.88) 100%) !important;
}
/* Guide tag — top-left pill on card */
#guides .trf-guide-tag {
  display: block !important;
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  background: rgba(44,39,34,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}
/* Overlay body — pinned at bottom */
#guides .trf-card--overlay .trf-card__body {
  position: absolute !important;
  inset: auto 0 0 0;
  background: none !important;
  border-top: none !important;
  padding: 36px 32px 36px !important;
  z-index: 2;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
#guides .trf-card--overlay .trf-card__cat {
  color: rgba(231,226,222,.62) !important;
  font-size: 9px !important;
  letter-spacing: .2em !important;
  margin: 0 !important;
}
#guides .trf-card--overlay .trf-card__title {
  font-size: clamp(22px, 2.6vw, 30px) !important;
  color: var(--linen) !important;
  line-height: 1.18 !important;
}
#guides .trf-card--overlay .trf-card__desc {
  display: block !important;
  color: rgba(231,226,222,.72) !important;
  font-size: 13px !important;
  opacity: 1 !important;
  margin-top: 2px !important;
}

/* ── Right small cards: vertical (image top, text below) ── */
#guides .trf-card:not(.trf-card--overlay) {
  flex-direction: column;
}
#guides .trf-card:not(.trf-card--overlay) .trf-card__img {
  width: 100%;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: unset !important;
}
#guides .trf-card:not(.trf-card--overlay) .trf-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  border-left: none;
  border-top: 1px solid var(--linen-mid);
  gap: 6px;
}

/* ─── Guides: breathing room + mobile layout ─── */
#guides .trf-editorial-grid {
  padding: 0 20px 20px;
  gap: 12px;
}

@media (max-width: 767px) {
  #guides .trf-editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 0 12px 12px;
    gap: 8px;
  }
  #guides .trf-card--overlay {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
  #guides .trf-card:not(.trf-card--overlay) .trf-card__img {
    height: 110px;
  }
}

/* ── Photo gallery: bento-style parallax slider ── */
.trf-gallery {
  margin: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
#galleryPrev, #galleryNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.40);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s, border-color .2s;
}
#galleryPrev:hover, #galleryNext:hover {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
#galleryPrev { left: 16px; }
#galleryNext { right: 16px; }
.trf-gallery__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--linen);
  border: 1px solid var(--linen-mid);
  color: var(--charcoal);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.trf-gallery__btn:hover {
  background: var(--charcoal);
  color: var(--linen);
  border-color: var(--charcoal);
}
/* gallery arrow buttons override — glass only, no black fill */
#galleryPrev.trf-gallery__btn:hover,
#galleryNext.trf-gallery__btn:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.trf-gallery__viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 21/9;
  position: relative;
}
.trf-gallery__track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform .72s cubic-bezier(.25,.46,.45,.94);
}
.trf-gallery__slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.trf-gallery__slide img {
  position: absolute;
  top: 0; left: -15%;
  width: 130%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform .72s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
@media (max-width: 767px) {
  .trf-gallery { margin: 8px; gap: 10px; }
  .trf-gallery__btn { width: 40px; height: 40px; }
  .trf-gallery__viewport { aspect-ratio: 4/3; border-radius: 14px; }
}

/* ── Gallery: multi-slide view (2 visible + peek of 3rd) ── */
.trf-gallery__viewport {
  aspect-ratio: unset !important;
  height: 300px;
}
.trf-gallery__track {
  gap: 16px;
}
.trf-gallery__slide {
  min-width: 46%;
}
@media (max-width: 767px) {
  .trf-gallery__viewport { height: 200px; }
  .trf-gallery__slide { min-width: 80%; }
}

/* ── Gallery: bento tiles — rounded edges, 8px gap ── */
.trf-gallery__track { gap: 8px !important; }
.trf-gallery__slide {
  border-radius: 16px;
  overflow: hidden;
}

/* ── Gallery: fix gaps + all-corner rounding ── */
.trf-gallery__viewport {
  border-radius: 0 !important;   /* slides control their own corners */
  overflow: hidden;
}
.trf-gallery__track {
  gap: 6px !important;
  align-items: stretch;
}
.trf-gallery__slide {
  min-width: unset !important;   /* JS sets exact px width */
  border-radius: 16px !important;
  overflow: hidden;
}

/* ── Gallery: landscape tiles, all corners rounded, 8px gap ── */
.trf-gallery__viewport {
  padding: 0 !important;
  height: 320px !important;
  overflow: hidden;
  border-radius: 0 !important;
  box-sizing: border-box;
}
.trf-gallery__track {
  gap: 8px !important;
  height: 100%;
}
.trf-gallery__slide {
  flex: 0 0 calc(50% - 24px) !important;
  width: calc(50% - 24px) !important;
  min-width: 0 !important;
  height: 100%;
  border-radius: 16px !important;
  overflow: hidden !important;
}
@media (max-width: 767px) {
  .trf-gallery__slide { flex: 0 0 calc(85% - 4px) !important; width: calc(85% - 4px) !important; }
}
.trf-gallery__slide img {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  object-fit: cover !important;
  will-change: auto !important;
}

/* ── trf-nums: refined stats bar ── */
.trf-nums {
  background: var(--deep) !important;
  display: flex !important;
  align-items: stretch !important;
  min-height: 112px !important;
}
.trf-num {
  flex: 1 !important;
  padding: 32px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  position: relative !important;
  transition: background .2s !important;
  border-right: none !important;
  border-bottom: none !important;
}
.trf-num:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 22%; height: 56%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(231,226,222,.14) 35%, rgba(231,226,222,.14) 65%, transparent);
}
.trf-num:hover { background: rgba(253,252,251,.04) !important; }
.trf-num__val {
  font-family: var(--serif) !important;
  font-size: 46px !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--linen) !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
}
.trf-num__val--sm {
  font-size: 26px !important;
  letter-spacing: .06em !important;
  font-style: normal !important;
}
.trf-num__sup {
  font-size: .48em;
  vertical-align: super;
  font-style: normal;
  line-height: 0;
  opacity: .75;
}
.trf-num__label {
  font-family: var(--sans) !important;
  font-size: 8.5px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--linen-dark) !important;
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .trf-nums { flex-wrap: nowrap !important; min-height: auto !important; padding: 20px 0 !important; }
  .trf-num {
    min-width: 0 !important;
    flex: 1 !important;
    padding: 16px 4px !important;
    border-bottom: none !important;
  }
  .trf-num:not(:last-child)::after { display: block; }
  .trf-num__val { font-size: 18px !important; }
  .trf-num__val--sm { font-size: 13px !important; }
  .trf-num__label { font-size: 7px !important; letter-spacing: .10em !important; }
}

/* ── trf-dests: destinations bar ── */
.trf-dests {
  background: var(--linen);
  margin: 20px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 108px;
  position: relative;
  gap: 0;
}
.trf-dests__intro {
  flex-shrink: 0;
  padding: 0 32px 0 36px;
  border-right: 1px solid var(--linen-mid);
  align-self: stretch;
  display: flex;
  align-items: center;
}
.trf-dests__q {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 0;
  white-space: nowrap;
}
.trf-dests__q em { font-style: normal; }
.trf-dests__track {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 22px 28px 22px 32px;
}
.trf-dests__track::-webkit-scrollbar { display: none; }
.trf-dest-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  scroll-snap-align: start;
  flex-shrink: 0;
  padding: 6px 14px 6px 6px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.trf-dest-pill:hover {
  border-color: var(--linen-dark);
  background: rgba(176,168,158,.12);
}
.trf-dest-pill__img {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.trf-dest-pill__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.trf-dest-pill__name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  white-space: nowrap;
}
/* Right fade */
.trf-dests__btn {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--linen);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 2;
  transition: background .2s, transform .2s;
  position: relative;
}
.trf-dests__btn--prev { margin-left: 16px; }
.trf-dests__btn--next { margin-right: 16px; }
.trf-dests__btn--prev:hover { background: var(--olive); transform: translateX(-2px); }
.trf-dests__btn--next:hover { background: var(--olive); transform: translateX(2px); }
@media (max-width: 767px) {
  .trf-dests { margin: 8px; border-radius: 16px; min-height: auto; flex-wrap: wrap; align-items: center; }
  .trf-dests__intro { width: 100%; flex-shrink: 0; padding: 14px 20px 12px; border-right: none; border-bottom: 1px solid var(--linen-mid); align-self: auto; display: flex; align-items: center; }
  .trf-dests__q { font-size: 14px; white-space: nowrap; }
  .trf-dests__q br { display: none; }
  .trf-dests__q em { padding-left: 4px; }
  .trf-newsletter-wave__input,
  .trf-newsletter__input { font-size: 16px !important; }
  .trf-post-body { padding-left: 20px !important; padding-right: 20px !important; }
  .trf-dests__track { padding: 14px 8px; gap: 4px; flex: 1; }
  .trf-dest-pill__img { width: 52px; height: 52px; }
}

/* ── Hero: full-bleed bento redesign ── */
.trf-hero-outer {
  margin: -66px 20px 20px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.trf-hero--fullbleed {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  grid-template-columns: none !important;
  height: calc(100dvh - 120px) !important;
  min-height: 480px !important;
  max-height: 1000px !important;
  position: relative !important;
  overflow: hidden !important;
  background: var(--deep) !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.trf-hero__img {
  position: absolute;
  inset: 0;
  background-image: url('../images/rosaliacactuswide.webp');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.04);
  animation: heroZoom 14s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.trf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42,37,32,.92) 0%,
    rgba(42,37,32,.5) 45%,
    rgba(42,37,32,.15) 100%
  );
}
.trf-hero__bg-title {
  position: absolute;
  top: -.12em;
  left: -.02em;
  font-family: var(--serif);
  font-size: clamp(160px, 28vw, 380px);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(231,226,222,.07);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  letter-spacing: -.04em;
  animation: heroFadeUp .9s .2s ease both;
}
.trf-hero--fullbleed .trf-hero__content {
  position: relative;
  z-index: 2;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 0 80px 64px !important;
  animation: heroFadeUp .9s .35s ease both;
  max-width: 680px;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trf-hero__eyebrow {
  font-family: var(--sans) !important;
  font-size: 10px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: rgba(231,226,222,.55) !important;
  margin-bottom: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.trf-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(231,226,222,.35);
  flex-shrink: 0;
}
.trf-hero--fullbleed .trf-hero__title {
  color: var(--linen) !important;
  font-size: clamp(48px, 7.5vw, 96px) !important;
  margin: 0 0 24px !important;
}
.trf-hero--fullbleed .trf-hero__title em { color: rgba(231,226,222,.7) !important; }
.trf-hero--fullbleed .trf-hero__sub {
  color: rgba(231,226,222,.72) !important;
  max-width: 480px !important;
  margin-bottom: 40px !important;
}
/* Keep buttons readable on dark */
.trf-hero--fullbleed .btn-primary {
  background: var(--linen) !important;
  color: var(--deep) !important;
}
.trf-hero--fullbleed .btn-primary:hover { color: var(--linen) !important; }
.trf-hero--fullbleed .btn-ghost {
  color: rgba(231,226,222,.8) !important;
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: .13em !important;
  padding-top: 13px !important;
  padding-bottom: 13px !important;
  padding-right: 20px !important;
  padding-left: 8px !important;
}
.trf-hero--fullbleed .btn-ghost:hover {
  text-decoration: none !important;
  color: var(--white) !important;
}
.trf-hero--fullbleed .btn-ghost:hover::after {
  transform: translateX(7px) !important;
}
@media (max-width: 767px) {
  .trf-hero-outer { margin: -56px 8px 8px; border-radius: 16px; }
  .trf-hero--fullbleed { height: calc(100dvh - 72px) !important; }
  .trf-hero--fullbleed { min-height: 80vh !important; }
  .trf-hero--fullbleed .trf-hero__content { padding: 0 28px 48px !important; }
  .trf-hero__bg-title { font-size: 38vw; }
}

@media (max-width: 767px) {
  #recent-articles { padding: 40px 10px !important; }
}

@media (max-width: 767px) {
  .trf-hero__scroll-line { height: 36px; }
  .trf-hero__img { animation: none; transform: none; }
}

/* ── Mobile menu: country tabs + destination accordion ── */
.trf-mm__ctabs {
  display: flex; gap: 8px; overflow-x: auto; padding: 0 0 12px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--linen-mid); margin-bottom: 16px;
}
.trf-mm__ctabs::-webkit-scrollbar { display: none; }
.trf-mm__ctab {
  flex-shrink: 0; padding: 9px 18px; border-radius: 100px;
  border: 1.5px solid var(--linen-mid); background: transparent;
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  color: var(--charcoal); cursor: pointer; transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.trf-mm__ctab.is-active {
  background: var(--deep); border-color: var(--deep); color: var(--linen);
}
.trf-mm__dest-group { border-bottom: 1px solid var(--linen-mid); }
.trf-mm__dest-group:last-child { border-bottom: none; }
.trf-mm__dest-hd { width: 100%; background: none; border: none; cursor: pointer; }
.trf-mm__dest-arrow { display: inline-block; transition: transform .2s ease; }


@media (max-width: 1366px) and (orientation: landscape),
       (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .trf-newsletter-wave__inner {
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    gap: 20px;
  }
  .trf-newsletter-wave__photo { width: 100px; height: 100px; align-self: center; }
  .trf-newsletter-wave__text { text-align: center; }
  .trf-newsletter-wave__form { max-width: 100%; flex-direction: row; border-radius: 100px; }
  .trf-newsletter-wave__btn { border-radius: 0 100px 100px 0; }
}

/* ── AFFILIATE DISCLOSURE + QUICK BOOK BLOCK ── */
.trf-disclosure {
    background: #fdfcfa;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 40px 0;
    border-left: none !important;
    border: none !important;
}
.trf-disclosure__intro {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--charcoal);
    margin: 0 0 20px;
    opacity: 0.8;
}
.trf-disclosure__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.trf-disclosure__card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.trf-disclosure__card:hover { background: #f5f2ed; }
.trf-disclosure__ico {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex-shrink: 0;
    background: var(--linen);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    overflow: hidden;
}
.trf-disclosure__ico svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    display: block;
    flex-shrink: 0;
}
.trf-disclosure__name {
    display: block;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}
.trf-disclosure__via {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    color: var(--charcoal);
    opacity: 0.55;
}
@media (max-width: 767px) {
    .trf-disclosure { padding: 20px; margin: 28px 0; }
    .trf-disclosure__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .trf-disclosure__grid { grid-template-columns: 1fr; }
}

/* ── GYG ACTIVITIES WIDGET — bento block ── */
.trf-gyg-outer {
    background: var(--charcoal);
}
.trf-gyg-bento {
    background: var(--linen);
    border-radius: 24px;
    margin: 20px;
    overflow: hidden;
    padding: 48px 56px;
}
.trf-gyg-bento__title {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 28px;
}
/* Constrain GYG card image height so full widget fits in viewport */
.trf-gyg-bento [data-gyg-widget] img,
.trf-gyg-bento [class*="gyg"] img {
    max-height: 140px !important;
    object-fit: cover !important;
}
/* Hide GYG powered-by footer text */
.trf-gyg-bento [class*="powered"],
.trf-gyg-bento [class*="footer"],
.trf-gyg-bento [class*="attribution"],
.trf-gyg-bento a[href*="travel-affiliate"],
.trf-gyg-bento p:last-of-type:has(a[href*="getyourguide"]) {
    display: none !important;
}
@media (max-width: 767px) {
    .trf-gyg-bento {
        margin: 6px 8px;
        border-radius: 12px;
        padding: 32px 20px;
    }
}


/* ── Custom field validation ── */
.trf-field-error {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: #9B3A2E;
  margin-top: 6px;
  padding-left: 2px;
  animation: trf-err-in .18s ease;
}
@keyframes trf-err-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trf-field-invalid {
  border-color: #C4503F !important;
  outline: none;
}

/* ── SEARCH OVERLAY — mobile keyboard fix ── */
@media (max-width: 767px) {
  .trf-search-overlay {
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .trf-search-overlay__inner {
    padding-top: max(env(safe-area-inset-top, 0px) + 48px, 80px);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    gap: 12px;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
  }
  .trf-search-overlay__label { display: none; }
  .trf-search-overlay__input { font-size: 16px !important; }
  .trf-search-results {
    max-height: 50vh;
    max-height: 50dvh;
    padding: 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .trf-search-overlay__close { align-self: center; margin-top: 4px; }
}

/* ── Image protection: thehurtados.co ── */

.wp-block-image,
.gallery-item,
figure.aligncenter,
figure.alignleft,
figure.alignright {
  position: relative;
}

.wp-block-image::after,
.gallery-item::after,
figure.aligncenter::after,
figure.alignleft::after,
figure.alignright::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: default;
  pointer-events: none;
}

.entry-content img,
.wp-block-image img,
.gallery-icon img,
.wp-post-image {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
