/* ============================================================
   Gay Entertain TH — Design System
   Direction: Deep plum nav + sunset coral accent + soft blush
   Fonts: Outfit (display) + Noto Sans Thai
   ============================================================ */

/* ── 1. Design tokens ────────────────────────────────────── */
:root {
  /* Colours */
  --accent:        #FF5C8A;
  --accent-hot:    #E84393;
  --accent-soft:   #FFF0F5;
  --accent-dim:    rgba(255, 92, 138, 0.14);
  --black:         #1A0F24;
  --black-2:       #2A1538;
  --black-3:       #3D2050;
  --white:         #FFFFFF;
  --off-white:     #FBF7FA;
  --grey-1:        #F3EDF6;
  --grey-2:        #E0D4E8;
  --grey-3:        #A894B5;
  --grey-4:        #7A6888;
  --grey-5:        #4A3D55;

  /* Nav */
  --nav-bg:        #2A1538;
  --nav-text:      var(--white);
  --nav-h:         64px;

  /* Typography */
  --font-display:  'Outfit', 'Noto Sans Thai', sans-serif;
  --font:          'Outfit', 'Noto Sans Thai', sans-serif;
  --font-thai:     'Noto Sans Thai', 'Outfit', sans-serif;

  /* Sizes */
  --max:           1200px;
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-pill:   999px;

  /* Spacing scale */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   24px;
  --sp-6:   32px;
  --sp-7:   48px;
  --sp-8:   64px;
  --sp-9:   96px;
  --sp-10: 128px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-accent: 0 4px 24px rgba(255,92,138,.28);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;
}

/* ── 2. Reset / base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-thai);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent-hot); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

/* Section spacing */
.section { padding-block: var(--sp-8); }
.section--dark { background: var(--black); color: var(--white); }
.section--pink { background: var(--accent); color: var(--white); }
.section--soft { background: var(--off-white); }

/* ── 3. Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-thai);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.75; margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

.display-title {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── 4. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), color var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-hot);
  color: var(--white);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--ghost {
  background: var(--grey-1);
  color: var(--grey-5);
}
.btn--ghost:hover { background: var(--grey-2); color: var(--black); }

.btn--sm { padding: 8px 18px; font-size: 0.8rem; }
.btn--lg { padding: 16px 40px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* Icon buttons */
.btn-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--white);
  transition: background var(--t-fast), color var(--t-fast);
}
.btn-icon:hover { background: rgba(255,255,255,.12); }
.btn-icon:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── 5. Site header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  height: 100%;
}

.site-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Desktop nav */
.site-nav { flex: 1; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--t-fast), background var(--t-fast);
  letter-spacing: 0.02em;
}
.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

/* Hamburger icon */
.btn-menu { display: none; }
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }

/* Search bar */
.site-search {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: var(--sp-3);
  animation: slideDown var(--t-base) ease forwards;
}
.site-search[hidden] { display: none; }
.site-search__form {
  display: flex;
  gap: var(--sp-2);
  max-width: 640px;
}
.site-search__input {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  transition: border-color var(--t-fast);
}
.site-search__input::placeholder { color: var(--grey-3); }
.site-search__input:focus {
  outline: none;
  border-color: var(--accent);
}
.site-search__btn {
  background: var(--accent);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.site-search__btn:hover { background: var(--accent-hot); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 6. Mobile drawer ────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-drawer[aria-hidden="false"] { pointer-events: auto; }

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--t-base);
}
.mobile-drawer[aria-hidden="false"] .mobile-drawer__overlay { opacity: 1; }

.mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--black-2);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
}
.mobile-drawer[aria-hidden="false"] .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__close {
  align-self: flex-end;
  margin-bottom: var(--sp-5);
}
.mobile-drawer__list { flex: 1; }
.mobile-drawer__link {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-drawer__link:hover { color: var(--accent); padding-left: var(--sp-2); }
.mobile-drawer__divider { border-top: 1px solid rgba(255,255,255,.12); margin-block: var(--sp-3); }

/* ── 7. Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(460px, 65vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__bg--static {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 50%, #1a0a10 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,.95) 0%,
    rgba(10,10,10,.6) 45%,
    rgba(10,10,10,.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-8) var(--sp-9);
  max-width: 740px;
}
.hero__content--center {
  text-align: center;
  max-width: 100%;
  padding-block: var(--sp-9);
}

.hero__label { margin-bottom: var(--sp-3); }

.hero__cat-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.hero__cat-badge:hover { background: var(--accent-hot); color: var(--white); }

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}
.hero__title a { color: inherit; }
.hero__title a:hover { color: var(--accent-soft); }

.hero__title--display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__excerpt {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
  max-width: 540px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
}
.hero__author { font-weight: 600; color: rgba(255,255,255,.9); }
.hero__date { color: rgba(255,255,255,.5); }

/* ── 8. Section headers ──────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  gap: var(--sp-4);
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.section-title::after {
  content: '';
  display: block;
  width: 32px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.section-more:hover { color: var(--accent-hot); }

.section-cta-wrap {
  text-align: center;
  margin-top: var(--sp-7);
}

/* ── 9. Topic grid ───────────────────────────────────────── */
.topic-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--sp-3);
}

.topic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-4);
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  color: var(--black);
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast), background var(--t-fast);
}
.topic-card:hover {
  border-color: var(--cat-color, var(--accent));
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--black);
}
.topic-card__icon { font-size: 1.8rem; line-height: 1; }
.topic-card__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── 10. Post grid ───────────────────────────────────────── */
.post-grid {
  display: grid;
  gap: var(--sp-5);
}
.post-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}
.post-grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr));
}

/* ── 11. Article card ────────────────────────────────────── */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-1);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.article-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--grey-1);
}
.article-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.article-card:hover .article-card__img { transform: scale(1.04); }

.article-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  gap: var(--sp-2);
}

.article-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-card__cat:hover { color: var(--accent-hot); }

.article-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.article-card__title a { color: var(--black); }
.article-card__title a:hover { color: var(--accent); }

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--grey-4);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.article-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--grey-1);
  margin-top: auto;
}

.article-card__author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.article-card__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-card__avatar--placeholder {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.article-card__author-name { font-weight: 600; color: var(--grey-5); }
.article-card__author-name:hover { color: var(--accent); }
.article-card__meta-sep { color: var(--grey-3); }
.article-card__meta-cat { color: var(--accent); font-weight: 600; font-size: 0.78rem; }
.article-card__meta-cat:hover { color: var(--accent-hot); }

.article-card__date-time {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.78rem;
  color: var(--grey-3);
}
.article-card__read-time::before { content: '·'; margin-right: 6px; }

/* ── 12. Page header ─────────────────────────────────────── */
.page-header {
  background: var(--black);
  color: var(--white);
  padding-block: var(--sp-8) var(--sp-7);
}
.page-header--articles { padding-block: var(--sp-7); }
.page-header__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.page-header__sub {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin: 0;
}

/* ── 13. Category filter bar ─────────────────────────────── */
.cat-filter {
  background: var(--white);
  border-bottom: 1px solid var(--grey-2);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}
.cat-filter__list {
  display: flex;
  gap: var(--sp-1);
  overflow-x: auto;
  padding-block: var(--sp-3);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-filter__list::-webkit-scrollbar { display: none; }
.cat-filter__btn {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-4);
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all var(--t-fast);
  cursor: pointer;
}
.cat-filter__btn:hover { color: var(--accent); border-color: var(--accent); }
.cat-filter__btn.is-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ── 14. Articles search ─────────────────────────────────── */
.articles-search { margin-top: var(--sp-5); }
.articles-search__wrap {
  display: flex;
  gap: 0;
  max-width: 560px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255,255,255,.07);
  transition: border-color var(--t-fast);
}
.articles-search__wrap:focus-within { border-color: var(--accent); }
.articles-search__input {
  flex: 1;
  background: transparent;
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 0.95rem;
}
.articles-search__input::placeholder { color: rgba(255,255,255,.4); }
.articles-search__input:focus { outline: none; }
.articles-search__btn {
  background: var(--accent);
  color: var(--white);
  width: 48px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.articles-search__btn:hover { background: var(--accent-hot); }

/* ── 15. Breadcrumb ──────────────────────────────────────── */
.breadcrumb {
  padding-block: var(--sp-4) var(--sp-3);
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--grey-3);
}
.breadcrumb__item a { color: var(--grey-4); }
.breadcrumb__item a:hover { color: var(--accent); }
.breadcrumb__item--current span { color: var(--grey-4); font-weight: 500; }

/* ── 16. Article detail ──────────────────────────────────── */
.article-header {
  padding-block: var(--sp-5) var(--sp-4);
  max-width: 820px;
}
.article-header__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.article-header__title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

/* Byline */
.article-byline {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--grey-2);
}
.article-byline__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-byline__avatar--placeholder {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.article-byline__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.85rem;
}
.article-byline__author { color: var(--grey-5); }
.article-byline__author a { font-weight: 700; color: var(--black); }
.article-byline__author a:hover { color: var(--accent); }
.article-byline__in { color: var(--grey-3); }
.article-byline__cat { font-weight: 600; color: var(--accent); font-size: 0.82rem; }
.article-byline__dates { color: var(--grey-3); font-size: 0.78rem; }
.article-byline__read-time {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--grey-3);
  background: var(--grey-1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Featured image */
.article-featured-img {
  margin-block: var(--sp-5);
  max-width: 900px;
}
.article-featured-img__img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* E-E-A-T strip */
.eeat-strip {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-3) var(--sp-4);
  margin-block: var(--sp-4);
  font-size: 0.85rem;
  max-width: 820px;
}
.eeat-strip__icon { font-size: 1.1rem; flex-shrink: 0; }
.eeat-strip__reviewed { color: var(--grey-5); line-height: 1.4; }
.eeat-strip__reviewed strong { color: var(--black); }

/* Article layout: content + sidebar */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-8);
  align-items: start;
  padding-bottom: var(--sp-8);
}

/* Article content prose */
.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--black);
}
.article-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--grey-1);
}
.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-3);
}
.article-content p { margin-bottom: var(--sp-4); }
.article-content ul, .article-content ol {
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-5);
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: var(--sp-2); }
.article-content a { color: var(--accent); text-decoration: underline; }
.article-content img {
  width: 100%;
  border-radius: var(--radius);
  margin-block: var(--sp-5);
}
.article-content blockquote {
  border-left: 4px solid var(--accent);
  background: var(--off-white);
  padding: var(--sp-4) var(--sp-5);
  margin-block: var(--sp-5);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--grey-5);
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--sp-5);
  font-size: 0.9rem;
}
.article-content th, .article-content td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--grey-2);
  text-align: left;
}
.article-content th { background: var(--off-white); font-weight: 700; }

/* Disclaimer */
.article-disclaimer {
  background: var(--grey-1);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.85rem;
  color: var(--grey-5);
  margin-top: var(--sp-7);
}

/* Sources */
.article-sources {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--grey-2);
}
.article-sources__title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-bottom: var(--sp-3);
}
.article-sources__list { display: flex; flex-direction: column; gap: var(--sp-1); }
.article-sources__list li { font-size: 0.85rem; }
.article-sources__list a { color: var(--accent); }

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Share box */
.share-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
}
.share-box__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-bottom: var(--sp-3);
}
.share-box__btns { display: flex; flex-direction: column; gap: var(--sp-2); }

.share-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  transition: opacity var(--t-fast), transform var(--t-fast);
  text-decoration: none;
  cursor: pointer;
  border: none;
  width: 100%;
}
.share-btn:hover { opacity: 0.85; transform: translateX(2px); }
.share-btn--fb  { background: #1877F2; color: var(--white); }
.share-btn--tw  { background: var(--black); color: var(--white); }
.share-btn--copy { background: var(--grey-1); color: var(--grey-5); }

/* Author box */
.author-box {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-block: var(--sp-7);
  border: 1px solid var(--grey-2);
}
.author-box__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box__avatar--placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.author-box__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-3);
  font-weight: 700;
  margin-bottom: 4px;
}
.author-box__name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: var(--sp-2);
}
.author-box__name:hover { color: var(--accent); }
.author-box__bio {
  font-size: 0.88rem;
  color: var(--grey-4);
  margin-bottom: var(--sp-3);
  line-height: 1.6;
}

/* ── 17. Related posts ───────────────────────────────────── */
.related-posts { background: var(--off-white); }

/* ── 18. Author page ─────────────────────────────────────── */
.author-hero {
  background: var(--black);
  color: var(--white);
  padding-block: var(--sp-8);
}
.author-hero__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.author-hero__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  flex-shrink: 0;
}
.author-hero__avatar--placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 3rem;
  font-weight: 800;
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 4px solid rgba(255,255,255,.2);
}
.author-hero__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.author-hero__name {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--sp-3);
}
.author-hero__bio {
  color: rgba(255,255,255,.65);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.65;
}
.author-hero__count {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: var(--sp-3);
}

/* ── 19. Trust strip ─────────────────────────────────────── */
.trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.trust-strip__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.trust-strip__text p {
  color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-5);
}
.trust-strip__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.trust-pillar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
}
.trust-pillar__icon { font-size: 1.5rem; }
.trust-pillar__label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,.85); }

/* ── 20. E-E-A-T about page ──────────────────────────────── */
.eeat-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
  margin-block: var(--sp-5);
}
.eeat-card {
  background: var(--white);
  border: 2px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.eeat-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.eeat-card__icon { font-size: 2rem; display: block; margin-bottom: var(--sp-3); }
.eeat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: var(--sp-2); }
.eeat-card p { font-size: 0.88rem; color: var(--grey-4); margin: 0; line-height: 1.6; }

/* ── 21. Static pages prose ──────────────────────────────── */
.prose { max-width: 720px; }
.prose--wide { max-width: 900px; }
.prose h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--grey-1);
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--grey-5); font-size: 0.95rem; }
.prose ul { list-style: disc; padding-left: var(--sp-5); margin-bottom: var(--sp-4); }
.prose li { margin-bottom: var(--sp-2); color: var(--grey-5); font-size: 0.95rem; }
.prose a { color: var(--accent); text-decoration: underline; }

.about-section { margin-bottom: var(--sp-8); }
.about-contact { background: var(--accent-soft); padding: var(--sp-5); border-radius: var(--radius-lg); }

/* ── 22. FAQ ─────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item__q {
  cursor: pointer;
  padding: var(--sp-4) var(--sp-5);
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: color var(--t-fast);
}
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q:hover { color: var(--accent); }
.faq-item__a {
  padding: 0 var(--sp-5) var(--sp-4);
  font-size: 0.92rem;
  color: var(--grey-4);
  line-height: 1.7;
}
.faq-cta {
  margin-top: var(--sp-7);
  font-size: 0.95rem;
  color: var(--grey-4);
}

/* ── 23. Contact page ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-8);
  align-items: start;
}
.contact-info h2 { font-size: 1.3rem; margin-bottom: var(--sp-4); }
.contact-info__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: 0.95rem;
  color: var(--grey-5);
}
.contact-info__item svg { color: var(--accent); flex-shrink: 0; }
.contact-info__response {
  font-size: 0.85rem;
  color: var(--grey-3);
  margin-top: var(--sp-4);
  font-style: italic;
}
.contact-form-wrap h2 { font-size: 1.3rem; margin-bottom: var(--sp-5); }

/* Forms */
.form-group { margin-bottom: var(--sp-4); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--grey-5);
}
.form-input {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ── 24. Privacy table ───────────────────────────────────── */
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-block: var(--sp-4);
}
.privacy-table th,
.privacy-table td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--grey-2);
  text-align: left;
}
.privacy-table th { background: var(--off-white); font-weight: 700; }
.privacy-table code {
  background: var(--grey-1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.82rem;
}

/* ── 25. Pagination ──────────────────────────────────────── */
.pagination {
  margin-top: var(--sp-8);
  display: flex;
  justify-content: center;
}
.pagination ul {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.pagination a,
.pagination .page-ellipsis {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey-4);
  border: 1.5px solid var(--grey-2);
  transition: all var(--t-fast);
}
.pagination a:hover { color: var(--accent); border-color: var(--accent); }
.pagination a.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.pagination .page-prev,
.pagination .page-next { color: var(--accent); border-color: var(--accent-soft); }
.pagination .page-ellipsis { border: none; color: var(--grey-3); }

/* ── 26. Empty state ─────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  color: var(--grey-4);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.empty-state__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--grey-3);
}

/* ── 27. 404 page ────────────────────────────────────────── */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-page__inner {
  text-align: center;
  padding-block: var(--sp-9);
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  color: var(--accent);
  line-height: 1;
  display: block;
  opacity: 0.15;
  letter-spacing: 0.05em;
}
.error-page__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: calc(var(--sp-4) * -3);
  position: relative;
  z-index: 1;
}
.error-page__body {
  color: var(--grey-4);
  margin-block: var(--sp-4) var(--sp-6);
}
.error-page__actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ── 28. Cookie bar ──────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: var(--sp-4);
  left: var(--sp-4);
  right: var(--sp-4);
  z-index: 300;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.1);
  animation: slideUp var(--t-slow) ease;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  flex-wrap: wrap;
}
.cookie-bar__text { flex: 1; font-size: 0.88rem; color: rgba(255,255,255,.8); }
.cookie-bar__text strong { color: var(--white); display: block; margin-bottom: 4px; font-size: 0.95rem; }
.cookie-bar__text p { margin: 0; font-size: 0.83rem; color: rgba(255,255,255,.65); }
.cookie-bar__link { color: var(--accent); text-decoration: underline; }
.cookie-bar__actions {
  display: flex;
  gap: var(--sp-2);
  flex-shrink: 0;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 29. Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding-top: var(--sp-9);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer__logo img { height: 32px; width: auto; margin-bottom: var(--sp-3); }
.site-footer__tagline { font-size: 0.88rem; color: rgba(255,255,255,.5); line-height: 1.5; max-width: 260px; }
.site-footer__social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: grid; place-items: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.social-link:hover { background: var(--accent); color: var(--white); }

.site-footer__links strong,
.site-footer__cats strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.site-footer__links ul,
.site-footer__cats ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.site-footer__links a,
.site-footer__cats a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}
.site-footer__links a:hover,
.site-footer__cats a:hover { color: var(--white); }

.site-footer__bottom {
  padding-block: var(--sp-5);
  background: rgba(0,0,0,.3);
}
.site-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.site-footer__copy, .site-footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

/* ── 30. Reveal animations ───────────────────────────────── */
/* NOTE: Never set initial opacity:0 by default — causes blank page bug */
.reveal {
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.is-hidden {
  opacity: 0;
  transform: translateY(20px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Gay Entertain TH — Home & portal overrides ──────────── */
.site-header {
  height: auto;
  flex-direction: column;
  align-items: stretch;
}
.site-header__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  min-height: 32px;
  padding: 6px clamp(16px, 4vw, 32px);
  background: var(--black-3);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header__promo p { margin: 0; text-align: center; }
.site-header__inner { height: var(--nav-h); }
.site-header__cta { display: none; }
@media (min-width: 900px) {
  .site-header__cta { display: inline-flex; }
  .btn-menu { display: none; }
}
@media (max-width: 899px) {
  .site-nav { display: none; }
  .btn-menu { display: grid; place-items: center; }
}

.hero--entertain {
  min-height: clamp(520px, 72vh, 760px);
  align-items: stretch;
}
.hero--entertain .hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #2A1538 0%, #3D2050 45%, #2A1538 100%);
}
.hero--entertain .hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,92,138,.28) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(123,94,167,.22) 0%, transparent 35%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}
.hero--entertain .hero__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
}
.hero--entertain .hero__content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--sp-7);
  align-items: center;
  padding-block: clamp(64px, 8vw, 112px);
}
.hero--entertain .hero__eyebrow {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.hero--entertain .hero__title--entertain {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: var(--sp-5);
  letter-spacing: -.01em;
}
.hero--entertain .hero__title--entertain span { display: block; }
.hero--entertain .hero__excerpt {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: var(--sp-6);
}
.hero--entertain .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  background: transparent;
}
.hero--entertain .btn--outline:hover {
  background: var(--white);
  color: var(--black-2);
}
.hero__visual--entertain {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.hero__globe {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}
.hero__globe-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255,92,138,.4);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}
.hero__globe-core {
  font-size: 4.5rem;
  filter: drop-shadow(0 8px 24px rgba(255,92,138,.35));
}
.hero__dest-chips {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}
.hero__dest-chips span {
  padding: 6px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.destination-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-lg);
  color: inherit;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.destination-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
  color: inherit;
}
.destination-card__emoji { font-size: 2rem; }
.destination-card__city {
  font-size: 1.25rem;
  color: var(--black-2);
}
.destination-card__desc {
  color: var(--grey-4);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

.newsletter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, var(--black-2), var(--black-3));
  border-radius: var(--radius-xl);
  color: var(--white);
}
.newsletter-panel h2 {
  color: var(--white);
  margin-bottom: var(--sp-3);
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.newsletter-panel p { color: rgba(255,255,255,.75); max-width: 640px; margin: 0; }
.newsletter-panel__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.newsletter-panel__note {
  font-size: .85rem;
  opacity: .65;
}

.hero--business {
  min-height: clamp(520px, 72vh, 760px);
  align-items: stretch;
}
.hero--business .hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1A1F4B 0%, #252B5C 45%, #1A1F4B 100%);
}
.hero--business .hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(229,160,40,.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(91,111,214,.2) 0%, transparent 35%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}
.hero--business .hero__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
}
.hero--business .hero__content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--sp-7);
  align-items: center;
  padding-block: clamp(64px, 8vw, 112px);
}
.hero--business .hero__eyebrow {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.hero--business .hero__title--business {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: var(--sp-5);
}
.hero--business .hero__title--business span { display: block; }
.hero--business .hero__excerpt {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: var(--sp-6);
}
.hero--business .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  background: transparent;
}
.hero--business .btn--outline:hover {
  background: var(--white);
  color: var(--black-2);
}
.hero__visual--business {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.hero__stat-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
}
.hero__stat-label {
  display: block;
  margin-top: var(--sp-2);
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(229,160,40,.35);
  border-radius: 50%;
  animation: orbitSpin 24s linear infinite;
}
.hero__orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}
.hero__orbit span:nth-child(1) { top: -6px; left: 50%; transform: translateX(-50%); }
.hero__orbit span:nth-child(2) { bottom: 20%; right: -6px; }
.hero__orbit span:nth-child(3) { bottom: 20%; left: -6px; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.intro-section { background: var(--off-white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: var(--sp-7);
  align-items: start;
}
.intro-copy p { color: var(--grey-5); margin-bottom: var(--sp-4); }
.intro-highlight {
  padding-left: var(--sp-4);
  border-left: 3px solid var(--accent);
  font-weight: 500;
  color: var(--black-2) !important;
}
.intro-stats {
  display: grid;
  gap: var(--sp-4);
}
.stat-item {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: var(--sp-1);
}
.stat-item span { font-size: .85rem; color: var(--grey-4); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-lg);
  color: inherit;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
  color: inherit;
}
.feature-card__icon { font-size: 1.75rem; }
.feature-card__title { font-size: 1.2rem; color: var(--black-2); }
.feature-card__desc { color: var(--grey-4); font-size: .95rem; flex: 1; }
.feature-card__link { color: var(--accent); font-weight: 600; font-size: .9rem; }

.section-header--light .section-title,
.section-header--light p { color: var(--white); }
.section-header--light p { opacity: .75; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin: 0;
}
.testimonial-card__quote {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.testimonial-card__author {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}
.testimonial-card__role {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, var(--black-2), var(--black-3));
  border-radius: var(--radius-xl);
  color: var(--white);
}
.cta-panel h2 { color: var(--white); margin-bottom: var(--sp-3); font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-panel p { color: rgba(255,255,255,.75); max-width: 640px; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

@media (max-width: 900px) {
  .hero--entertain .hero__content,
  .hero--business .hero__content { grid-template-columns: 1fr; }
  .hero__visual--entertain,
  .hero__visual--business { min-height: 200px; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .features-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-panel,
  .newsletter-panel { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .destinations-grid { grid-template-columns: 1fr; }
}

/* ── 32. Print ───────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .cookie-bar, .mobile-drawer,
  .article-sidebar, .share-box, .related-posts, .cat-filter { display: none; }
  body { font-size: 12pt; }
  a { color: inherit; text-decoration: underline; }
  .article-content { max-width: 100%; }
}
