/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --color-dark: #0f0f12;
  --color-dark-2: #1a1a22;
  --color-dark-3: #252530;
  --color-light: #f7f6f2;
  --color-light-2: #eeecea;
  --color-accent: #e8622a;
  --color-accent-dark: #c44d1c;
  --color-accent-light: #f0845a;
  --color-text-dark: #1a1a22;
  --color-text-mid: #4a4a5a;
  --color-text-light: #f0efe9;
  --color-text-muted-light: #b8b7b0;
  --color-text-muted-dark: #6a6a7a;

  --shadow-low: 0 1px 3px rgba(15,15,18,0.12), 0 2px 6px rgba(15,15,18,0.08);
  --shadow-mid: 0 4px 12px rgba(15,15,18,0.15), 0 8px 24px rgba(15,15,18,0.10);
  --shadow-high: 0 8px 24px rgba(15,15,18,0.20), 0 16px 48px rgba(15,15,18,0.14), 0 2px 6px rgba(15,15,18,0.10);
  --shadow-accent: 0 4px 16px rgba(232,98,42,0.30), 0 8px 32px rgba(232,98,42,0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  --header-height: 72px;

  --font-heading: 'Urbanist', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-light);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }

ul { list-style: none; }

address { font-style: normal; }

/* ===========================
   TYPOGRAPHY SCALE
   =========================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0; }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.75; color: inherit; }

/* ===========================
   GLOBAL COMPONENTS
   =========================== */


.global-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.global-eyebrow--dark {
  color: var(--color-accent);
}


.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.global-btn:hover { transform: translateY(-2px); }
.global-btn:active { transform: translateY(0); }

.global-btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.global-btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 6px 24px rgba(232,98,42,0.40), 0 12px 40px rgba(232,98,42,0.20);
}

.global-btn--ghost {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(240,239,233,0.35);
}
.global-btn--ghost:hover {
  background: rgba(240,239,233,0.10);
  border-color: rgba(240,239,233,0.60);
}

.global-btn--white {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
  box-shadow: var(--shadow-mid);
}
.global-btn--white:hover {
  background: var(--color-light-2);
  box-shadow: var(--shadow-high);
}

.global-btn--outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}
.global-btn--outline-dark:hover {
  background: var(--color-text-dark);
  color: var(--color-light);
}

/* ===========================
   GLOBAL HEADER
   =========================== */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-dark);
  height: var(--header-height);
  box-shadow: 0 2px 8px rgba(15,15,18,0.30);
  transition: box-shadow 0.3s ease;
}

.global-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(15,15,18,0.50), 0 2px 6px rgba(15,15,18,0.30);
}

.global-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.global-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.global-header__nav {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-left: auto;
  height: 100%;
}

.global-header__tab {
  display: flex;
  align-items: center;
  height: calc(var(--header-height) - 8px);
  padding: 0 1.1rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  position: relative;
  bottom: -1px;
}

.global-header__tab:hover {
  color: var(--color-text-light);
  background: rgba(255,255,255,0.06);
}

.global-header__tab--active {
  color: var(--color-text-light);
  background: rgba(232,98,42,0.12);
  border-color: rgba(232,98,42,0.25);
  border-bottom-color: var(--color-dark);
}

.global-header__tab--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px 2px 0 0;
}

.global-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.global-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===========================
   MOBILE MENU
   =========================== */
.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.global-mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.global-mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.global-mobile-menu__close:hover { background: rgba(255,255,255,0.25); }

.global-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.global-mobile-menu__link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, transform 0.2s ease;
}

.global-mobile-menu__link:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(8px);
}

/* ===========================
   GLOBAL CTA BANNER
   =========================== */
.global-cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  padding: var(--space-xl) var(--space-md);
}

.global-cta-banner__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.global-cta-banner__heading {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.global-cta-banner__sub {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===========================
   GLOBAL FOOTER
   =========================== */
.global-footer {
  background: var(--color-dark);
  color: var(--color-text-light);
  padding: var(--space-xl) var(--space-md) 0;
}

.global-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(240,239,233,0.10);
}

.global-footer__logo { margin-bottom: 1rem; }

.global-footer__brand p {
  color: var(--color-text-muted-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.global-footer__address {
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  line-height: 1.8;
}

.global-footer__address a {
  color: var(--color-text-muted-light);
  transition: color 0.2s ease;
}

.global-footer__address a:hover { color: var(--color-accent-light); }

.global-footer__links h4 {
  color: var(--color-text-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.global-footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.global-footer__links a {
  color: var(--color-text-muted-light);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.global-footer__links a:hover { color: var(--color-accent-light); }

.global-footer__recent h4 {
  color: var(--color-text-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

#recentlyViewedList {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

#recentlyViewedList li a {
  color: var(--color-text-muted-light);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

#recentlyViewedList li a:hover { color: var(--color-accent-light); }

#recentlyViewedList:empty::after {
  content: 'No pages visited yet.';
  color: var(--color-text-muted-dark);
  font-size: 0.85rem;
}

.global-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.global-footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted-dark);
}

/* ===========================
   HOME HERO
   =========================== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-hero {
  padding-top: var(--header-height);
  background: var(--color-dark);
  overflow: hidden;
}

.home-hero__top {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-md);
  animation: heroFadeUp 0.8s ease both;
}

.home-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.home-hero__heading {
  color: var(--color-text-light);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.08;
  max-width: 800px;
}

.home-hero__strip {
  position: relative;
  width: 100%;
  height: clamp(200px, 30vw, 420px);
  overflow: hidden;
  animation: heroFadeUp 0.9s 0.15s ease both;
}

.home-hero__strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.72) contrast(1.08);
}

.home-hero__strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem var(--space-md);
  background: linear-gradient(to top, rgba(15,15,18,0.75) 0%, transparent 60%);
}

.home-hero__strip-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,239,233,0.75);
  border-left: 2px solid var(--color-accent);
  padding-left: 0.75rem;
}

.home-hero__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  animation: heroFadeUp 1s 0.3s ease both;
}

.home-hero__desc {
  color: var(--color-text-muted-light);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 560px;
  line-height: 1.75;
  flex: 1;
}

.home-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===========================
   HOME INTRO (DARK)
   =========================== */
.home-intro {
  background: var(--color-dark-2);
  padding: var(--space-2xl) var(--space-md);
}

.home-intro__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.home-intro__text .global-eyebrow { margin-bottom: 1.25rem; }

.home-intro__heading {
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
}

.home-intro__text p {
  color: var(--color-text-muted-light);
  margin-bottom: 1.25rem;
}

.home-intro__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-high);
  position: relative;
}

.home-intro__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,98,42,0.15);
  pointer-events: none;
}

.home-intro__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-intro__image-wrap:hover .home-intro__image { transform: scale(1.03); }

/* ===========================
   HOME TOPICS (LIGHT)
   =========================== */
.home-topics {
  background: var(--color-light);
  padding: var(--space-2xl) var(--space-md);
}

.home-topics__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-topics__heading {
  color: var(--color-text-dark);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.home-topics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.home-topics__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-low);
  border: 1px solid var(--color-light-2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.home-topics__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-high);
}

.home-topics__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,98,42,0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.home-topics__card h3 {
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.home-topics__card p {
  color: var(--color-text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.home-topics__card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.home-topics__card-link:hover { gap: 0.7rem; }

/* ===========================
   HOME FEATURED (DARK)
   =========================== */
.home-featured {
  background: var(--color-dark-3);
  padding: var(--space-2xl) var(--space-md);
}

.home-featured__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-featured__inner > .global-eyebrow { margin-bottom: 2rem; }

.home-featured__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}

.home-featured__heading {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.home-featured__content p {
  color: var(--color-text-muted-light);
  margin-bottom: 1.25rem;
}

.home-featured__content .global-btn { margin-top: 0.75rem; }

.home-featured__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-high);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}

.home-featured__image-wrap:hover { transform: rotate(0deg); }

.home-featured__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===========================
   HOME RESEARCH (LIGHT)
   =========================== */
.home-research {
  background: var(--color-light-2);
  padding: var(--space-2xl) var(--space-md);
}

.home-research__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-research__heading {
  color: var(--color-text-dark);
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.home-research__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.home-research__col h3 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.home-research__col p {
  color: var(--color-text-mid);
  margin-bottom: 1.25rem;
}

.home-research__col-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-mid);
}

/* ===========================
   HOME RECENT (DARK)
   =========================== */
.home-recent {
  background: var(--color-dark);
  padding: var(--space-2xl) var(--space-md);
}

.home-recent__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-recent__heading {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.home-recent__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.home-recent__post {
  background: var(--color-dark-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(240,239,233,0.07);
  box-shadow: var(--shadow-low);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-recent__post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-high);
  border-color: rgba(232,98,42,0.20);
}

.home-recent__post-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.home-recent__post-title {
  color: var(--color-text-light);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.home-recent__post p {
  color: var(--color-text-muted-light);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.home-recent__post-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.home-recent__post-link:hover { gap: 0.7rem; }

/* ===========================
   WRONG PAGE
   =========================== */
.wrong-hero {
  background: var(--color-dark);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.wrong-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  animation: heroFadeUp 0.8s ease both;
}

.wrong-hero__heading {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.wrong-hero__sub {
  color: var(--color-text-muted-light);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 600px;
}

.wrong-main {
  background: var(--color-light);
  padding: var(--space-2xl) var(--space-md);
}

.wrong-main__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.wrong-main__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
}

.wrong-main__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wrong-main__image-wrap:hover .wrong-main__image { transform: scale(1.03); }

.wrong-main__content h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.wrong-main__content p {
  color: var(--color-text-mid);
  margin-bottom: 1.25rem;
}

.wrong-mistakes {
  background: var(--color-dark-2);
  padding: var(--space-2xl) var(--space-md);
}

.wrong-mistakes__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.wrong-mistakes__heading {
  color: var(--color-text-light);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.wrong-mistakes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.wrong-mistakes__item {
  background: var(--color-dark-3);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(240,239,233,0.06);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.wrong-mistakes__item:hover {
  border-color: rgba(232,98,42,0.25);
  transform: translateY(-4px);
}

.wrong-mistakes__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(232,98,42,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.wrong-mistakes__item h3 {
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.wrong-mistakes__item p {
  color: var(--color-text-muted-light);
  font-size: 0.9rem;
}

.wrong-research {
  background: var(--color-light-2);
  padding: var(--space-2xl) var(--space-md);
}

.wrong-research__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: var(--space-xl);
  align-items: start;
}

.wrong-research__content .global-eyebrow { margin-bottom: 1.25rem; }

.wrong-research__content h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.wrong-research__content p {
  color: var(--color-text-mid);
  margin-bottom: 1.25rem;
}

.wrong-research__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wrong-research__callout {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-low);
  border-left: 3px solid var(--color-accent);
}

.wrong-research__callout i {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.wrong-research__callout h3 {
  color: var(--color-text-dark);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.wrong-research__callout p {
  color: var(--color-text-mid);
  font-size: 0.875rem;
}

/* ===========================
   TOPICS PAGE
   =========================== */
.topics-hero {
  background: var(--color-light);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--color-light-2);
}

.topics-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  animation: heroFadeUp 0.8s ease both;
}

.topics-hero__heading {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.topics-hero__sub {
  color: var(--color-text-mid);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 580px;
}

.topics-area {
  padding: var(--space-2xl) var(--space-md);
}

.topics-area--dark {
  background: var(--color-dark-2);
}

.topics-area--light {
  background: var(--color-light);
}

.topics-area__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.topics-area__header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.topics-area__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  color: rgba(232,98,42,0.20);
  flex-shrink: 0;
  width: 120px;
  text-align: right;
}

.topics-area__num--dark {
  color: rgba(232,98,42,0.18);
}

.topics-area__heading {
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.topics-area__heading--dark { color: var(--color-text-dark); }

.topics-area__intro {
  color: var(--color-text-muted-light);
  font-size: 1rem;
}

.topics-area__intro--dark { color: var(--color-text-mid); }

.topics-area__body {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: var(--space-xl);
  padding-left: calc(120px + 2rem);
}

.topics-area__text p {
  color: var(--color-text-muted-light);
  margin-bottom: 1.25rem;
}

.topics-area__text--dark p { color: var(--color-text-mid); }

.topics-area__posts h3 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.topics-area__posts--dark h3 { color: var(--color-accent); }

.topics-area__post-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.topics-area__post-list li a {
  color: var(--color-text-muted-light);
  font-size: 0.875rem;
  line-height: 1.5;
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.topics-area__post-list li a:hover {
  color: var(--color-accent-light);
  border-left-color: var(--color-accent);
  background: rgba(232,98,42,0.06);
}

.topics-area__posts--dark li a {
  color: var(--color-text-mid);
}

.topics-area__posts--dark li a:hover {
  color: var(--color-accent);
}

/* ===========================
   POSTS PAGE
   =========================== */
.posts-hero {
  background: var(--color-dark);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.posts-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  animation: heroFadeUp 0.8s ease both;
}

.posts-hero__heading {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.posts-hero__sub {
  color: var(--color-text-muted-light);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.posts-featured {
  background: var(--color-light);
  padding: var(--space-2xl) var(--space-md);
}

.posts-featured__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.posts-featured__card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-high);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.posts-featured__card-image {
  overflow: hidden;
}

.posts-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.posts-featured__card:hover .posts-featured__img { transform: scale(1.04); }

.posts-featured__card-content {
  padding: 3rem 2.5rem;
}

.posts-featured__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(232,98,42,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.posts-featured__title {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.posts-featured__card-content p {
  color: var(--color-text-mid);
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.posts-featured__card-content .global-btn { margin-top: 0.75rem; }

.posts-grid-section {
  background: var(--color-dark);
  padding: var(--space-2xl) var(--space-md);
}

.posts-grid-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.posts-grid__post {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(240,239,233,0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.posts-grid__post.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.posts-grid__post:first-child { padding-top: 0; }

.posts-grid__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.posts-grid__title {
  color: var(--color-text-light);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.posts-grid__post p {
  color: var(--color-text-muted-light);
  margin-bottom: 1rem;
  max-width: 840px;
  font-size: 0.95rem;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-hero {
  background: var(--color-dark);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.contact-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  animation: heroFadeUp 0.8s ease both;
}

.contact-hero__heading {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.contact-hero__sub {
  color: var(--color-text-muted-light);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.contact-form-section {
  background: var(--color-light);
  padding: var(--space-2xl) var(--space-md);
}

.contact-form-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-section__left h2 {
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.contact-form-section__left > p {
  color: var(--color-text-mid);
  margin-bottom: 2.5rem;
}


.contact-chat-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-chat-form__exchange {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-chat-form__question {
  display: flex;
  justify-content: flex-start;
}

.contact-chat-form__bubble {
  display: inline-block;
  padding: 0.75rem 1.1rem;
  border-radius: 18px 18px 18px 4px;
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 80%;
}

.contact-chat-form__bubble--them {
  background: var(--color-dark-2);
  color: var(--color-text-light);
  box-shadow: var(--shadow-low);
}

.contact-chat-form__answer {
  display: flex;
  justify-content: flex-end;
}

.contact-chat-form__input,
.contact-chat-form__textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1.1rem;
  border-radius: 18px 18px 4px 18px;
  border: 2px solid var(--color-light-2);
  background: #fff;
  color: var(--color-text-dark);
  width: 85%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-low);
  outline: none;
}

.contact-chat-form__textarea {
  resize: vertical;
  min-height: 100px;
  border-radius: 18px 4px 18px 18px;
}

.contact-chat-form__input:focus,
.contact-chat-form__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.12), var(--shadow-low);
}

.contact-form-section:has(.contact-chat-form__input:focus) {
  background: var(--color-light);
}

.contact-chat-form__privacy {
  padding: 0.5rem 0;
}

.contact-chat-form__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-text-mid);
  cursor: pointer;
}

.contact-chat-form__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  margin-top: 2px;
  cursor: pointer;
}

.contact-chat-form__privacy-label a {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact-chat-form__submit-row {
  display: flex;
  justify-content: flex-end;
}

.contact-chat-form__send-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.contact-chat-form__send-btn:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,98,42,0.40);
}


.contact-info-card {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-mid);
}

.contact-info-card h3 {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.contact-info-card__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-card__list li i {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.contact-info-card__list li span,
.contact-info-card__list li a {
  color: var(--color-text-muted-light);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-info-card__list li a:hover { color: var(--color-accent-light); }


.contact-booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  border: 1px solid var(--color-light-2);
}

.contact-booking-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.contact-booking-card__content {
  padding: 1.75rem;
}

.contact-booking-card__content h3 {
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.contact-booking-card__content p {
  color: var(--color-text-mid);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.contact-booking-card__content .global-btn { margin-top: 0.5rem; }


.contact-map-section {
  background: var(--color-dark-2);
  padding: var(--space-xl) var(--space-md);
}

.contact-map-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-map-section__inner h2 {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.contact-map-section__inner > p {
  color: var(--color-text-muted-light);
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
}

.contact-map-section__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-high);
}

.contact-map-section__map iframe {
  display: block;
  width: 100%;
}

/* ===========================
   THANKS PAGE
   =========================== */
.thanks-main {
  min-height: calc(100vh - var(--header-height) - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  background: var(--color-dark);
}

.thanks-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,98,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.thanks-card {
  background: var(--color-dark-2);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-high), 0 0 60px rgba(232,98,42,0.08);
  border: 1px solid rgba(232,98,42,0.12);
  position: relative;
  z-index: 1;
  animation: heroFadeUp 0.7s ease both;
}

.thanks-card__icon {
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.thanks-card__heading {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.thanks-card__text {
  color: var(--color-text-muted-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-main {
  padding-top: var(--header-height);
  background: var(--color-light);
  min-height: 100vh;
}

.legal-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.legal-sidebar__toc-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--color-dark);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.legal-sidebar__nav {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-low);
  border: 1px solid var(--color-light-2);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.legal-sidebar__link {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-mid);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.legal-sidebar__link:hover {
  color: var(--color-text-dark);
  background: var(--color-light-2);
}

.legal-sidebar__link.is-active {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  background: rgba(232,98,42,0.06);
  font-weight: 500;
}

.legal-content__header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-light-2);
}

.legal-content__header h1 {
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.legal-content__date {
  font-size: 0.85rem;
  color: var(--color-text-muted-dark);
  margin-bottom: 0.75rem;
}

.legal-content__intro {
  color: var(--color-text-mid);
  font-size: 0.95rem;
}

.legal-content__section {
  margin-bottom: var(--space-lg);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-content__section h2 {
  color: var(--color-text-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-light-2);
}

.legal-content__section h3 {
  color: var(--color-text-dark);
  font-size: 1rem;
  margin: 1.25rem 0 0.6rem;
}

.legal-content__section p {
  color: var(--color-text-mid);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-content__section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content__section ul li {
  color: var(--color-text-mid);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.legal-content__section a {
  color: var(--color-accent);
  text-decoration: underline;
}

.legal-content__section a:hover { color: var(--color-accent-dark); }

code {
  font-family: monospace;
  font-size: 0.85em;
  background: var(--color-light-2);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  color: var(--color-accent-dark);
}


.legal-cookie-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-light-2);
  margin: 1.25rem 0;
}

.legal-cookie-table__row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
}

.legal-cookie-table__row--header {
  background: var(--color-dark);
}

.legal-cookie-table__row--header span {
  color: var(--color-text-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
}

.legal-cookie-table__row:not(.legal-cookie-table__row--header) {
  border-top: 1px solid var(--color-light-2);
}

.legal-cookie-table__row:not(.legal-cookie-table__row--header):nth-child(even) {
  background: var(--color-light-2);
}

.legal-cookie-table__row:not(.legal-cookie-table__row--header) span {
  color: var(--color-text-mid);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--color-light-2);
}

.legal-cookie-table__row:not(.legal-cookie-table__row--header) span:last-child {
  border-right: none;
}

/* ===========================
   COOKIE CONSENT
   =========================== */
.cookie-link-wrap {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 800;
}

.cookie-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted-light);
  background: rgba(15,15,18,0.85);
  border: 1px solid rgba(240,239,233,0.15);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-link-btn:hover {
  background: rgba(15,15,18,0.95);
  color: var(--color-text-light);
}

.cookie-link-btn.is-pulsing {
  animation: cookiePulse 2s ease 0.5s 3;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,98,42,0); }
  50% { box-shadow: 0 0 0 6px rgba(232,98,42,0.25); }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15,15,18,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.cookie-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--color-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-high);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.cookie-modal-overlay.is-open .cookie-modal {
  transform: scale(1);
}

.cookie-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: var(--color-light-2);
  border: none;
  border-radius: 50%;
  color: var(--color-text-mid);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cookie-modal__close:hover { background: var(--color-light-2); color: var(--color-text-dark); }

.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.cookie-modal > p {
  font-size: 0.875rem;
  color: var(--color-text-mid);
  margin-bottom: 1.75rem;
}

.cookie-modal__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.cookie-modal__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-light-2);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.cookie-modal__option:hover:not(.cookie-modal__option--required) {
  border-color: var(--color-accent);
}

.cookie-modal__option--required {
  opacity: 0.7;
  cursor: default;
}

.cookie-modal__option-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cookie-modal__option-info strong {
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.cookie-modal__option-info span {
  font-size: 0.78rem;
  color: var(--color-text-muted-dark);
}

.cookie-modal__option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.cookie-modal__save { width: 100%; justify-content: center; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .global-header__nav { display: none; }
  .global-header__burger { display: flex; }

  .home-hero__bottom {
    flex-direction: column;
    gap: var(--space-md);
  }

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

  .home-intro__inner,
  .home-featured__layout,
  .home-research__cols {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .home-featured__image-wrap {
    transform: none;
  }

  .wrong-main__inner {
    grid-template-columns: 1fr;
  }

  .wrong-research__inner {
    grid-template-columns: 1fr;
  }

  .topics-area__body {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .topics-area__header {
    flex-direction: column;
    gap: 1rem;
  }

  .topics-area__num {
    width: auto;
    text-align: left;
    font-size: 3.5rem;
  }

  .posts-featured__card {
    grid-template-columns: 1fr;
  }

  .posts-featured__card-image {
    aspect-ratio: 16/9;
    max-height: 280px;
  }

  .contact-form-section__inner {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar__toc-toggle {
    display: flex;
  }

  .legal-sidebar__nav {
    display: none;
  }

  .legal-sidebar__nav.is-open {
    display: flex;
  }

  .global-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .global-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 5.5rem;
  }

  .home-hero__ctas {
    flex-direction: column;
  }

  .home-hero__ctas .global-btn {
    text-align: center;
    justify-content: center;
  }

  .home-topics__grid {
    grid-template-columns: 1fr;
  }

  .home-recent__grid {
    grid-template-columns: 1fr;
  }

  .wrong-mistakes__grid {
    grid-template-columns: 1fr;
  }

  .contact-chat-form__input,
  .contact-chat-form__textarea {
    width: 100%;
    border-radius: var(--radius-md);
  }

  .contact-chat-form__bubble {
    max-width: 100%;
  }

  .global-footer__inner {
    grid-template-columns: 1fr;
  }

  .legal-cookie-table__row {
    grid-template-columns: 1fr;
  }

  .legal-cookie-table__row span {
    border-right: none !important;
    border-bottom: 1px solid var(--color-light-2);
  }

  .legal-cookie-table__row span:last-child {
    border-bottom: none !important;
  }

  .thanks-card {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 480px) {
  .home-hero__heading {
    font-size: 2.2rem;
  }

  .topics-area__num {
    font-size: 2.5rem;
  }

  .cookie-modal {
    padding: 1.75rem 1.25rem;
  }

  .global-footer__inner {
    padding-bottom: var(--space-md);
  }
}