/* ============================================================
   soyqirim-v2.css — CLEANED & REFACTORED
   ============================================================ */

/* ------------------------------------------------------------
   1. ROOT VARIABLES (consolidated — single source of truth)
   ------------------------------------------------------------ */
:root {
  --container: 1280px;
  --header-h: 112px;

  /* Fonts */
  --ui-font: "Noto Sans", "Noto Sans Arabic", "Segoe UI", Arial, Helvetica, sans-serif;
  --az-font: "Noto Sans", "Segoe UI", Arial, Helvetica, sans-serif;

  /* Radii */
  --sqv2-radius-sm: 12px;
  --sqv2-radius-md: 18px;
  --sqv2-radius-lg: 26px;
  --sqv2-radius-xl: 34px;

  /* Palette */
  --sqv2-dark: #1A1A1A;
  --sqv2-light: #FCFBF9;
  --sqv2-light-alt: #f4f1ea;
  --sqv2-milk: #FCFBF9;
  --sqv2-milk-2: #f4f1ea;
  --sqv2-secondary-light: #f4f1ea;
  --sqv2-gold: #98721f;
  --sqv2-gold-dark: #8c7326;
  --sqv2-gold-bright: #d4af37;
  --sqv2-paper: #fcfbf9;
  --sqv2-ink: #171717;
  --sqv2-line: #e3d8c7;
  --sqv2-soft-line: #e3d8c7;
  --sqv2-gold-dark-bg: #D4AF37;
  --sqv2-gold-light-bg: #98721F;

  --black: #1A1A1A;
  --ink: #1A1A1A;
  --gold: #D4AF37;
  --gold-dark: #98721F;
  --stone: #FCFBF9;
  --muted: #666666;
  --line: #e3d8c7;
}

/* ------------------------------------------------------------
   2. BASE / RESET
   ------------------------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  font-family: var(--ui-font);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.container {
  width: min(100% - 64px, var(--container));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.serif {
  font-family: "Playfair Display", Georgia, serif;
}

.gold {
  color: var(--gold);
}

/* ------------------------------------------------------------
   3. SQV2 GLOBAL TYPOGRAPHY & FONT SCOPE
   ------------------------------------------------------------ */
html.sqv2-html,
body.sqv2-body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.sqv2-html,
.sqv2-body,
.sqv2-body *:not(svg):not(path):not(.hero-year):not(.timeline-year):not(.side-year) {
  font-family: var(--ui-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sqv2-body {
  font-weight: 400;
  font-variant-ligatures: none;
}

.sqv2-body h1,
.sqv2-body h2,
.sqv2-body h3,
.sqv2-body h4,
.sqv2-body .nav-link,
.sqv2-body .section-action,
.sqv2-body .text-link,
.sqv2-body .sqv2-more-link,
.sqv2-body .news-date,
.sqv2-body .eyebrow,
.sqv2-body strong,
.sqv2-body b {
  font-weight: 700;
}

.sqv2-body .hero-year,
.sqv2-body .timeline-year,
.sqv2-body .side-year {
  font-family: Georgia, "Times New Roman", serif;
}

html[lang="az"] .sqv2-body,
html[lang="az"] .sqv2-body *:not(.hero-year):not(.timeline-year):not(.side-year) {
  font-family: var(--az-font);
}

html[lang="ar"] .sqv2-body,
html[lang="ar"] .sqv2-body *:not(.hero-year):not(.timeline-year):not(.side-year) {
  font-family: Tahoma, Arial, sans-serif;
}

.eyebrow {
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-dark);
  margin: 0 0 12px;
  font-size: 10.5px;
  letter-spacing: .22em;
}

.section-title {
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 760;
  color: var(--ink);
  margin: 0;
}

.section-intro {
  font-size: 14.5px;
  line-height: 1.62;
  max-width: 600px;
  color: #5f6870;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-action {
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
  letter-spacing: .14em;
}

.section-action:hover {
  color: var(--gold-dark);
}

.section-kicker {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 900;
  margin: 0 0 8px;
}

/* ------------------------------------------------------------
   4. HEADER / NAV
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: #050505;
  color: #fff;
  border-bottom: 1px solid rgba(212, 175, 55, .18);
}

.sqv2-body .site-header {
  max-width: 100vw;
  background: #050505;
}

.admin-spacer {
  height: 0;
}

.topbar {
  height: 32px;
  background: #111;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, .18);
}

.topbar-inner {
  width: min(100% - 64px, var(--container));
  max-width: var(--container);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  letter-spacing: .02em;
}

.topbar-contact a:hover {
  color: var(--gold);
}

.sep {
  width: 1px;
  height: 12px;
  background: rgba(212, 175, 55, .35);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.lang-switcher a {
  color: rgba(255, 255, 255, .62);
  transition: .2s;
  position: relative;
  z-index: 2;
}

.lang-switcher a.active,
.lang-switcher a:hover {
  color: var(--gold);
}

.lang-switcher span {
  color: rgba(255, 255, 255, .18);
}

.navbar {
  height: 80px;
  background: #1A1A1A;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: min(100% - 64px, var(--container));
  max-width: var(--container);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  height: 64px;
  width: 120px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .055em;
  white-space: nowrap;
  transition: .2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  line-height: 1;
  vertical-align: middle;
  opacity: .72;
}

.chev svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke-width: 2.8;
}

.nav-link:hover .chev,
.nav-link.active .chev {
  opacity: 1;
  color: var(--gold);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #1A1A1A;
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .22s ease;
  border-radius: var(--sqv2-radius-md);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: .2s;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  z-index: 100001;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}

.menu-toggle span:before,
.menu-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: .3s;
}

.menu-toggle span:before {
  top: -7px;
}

.menu-toggle span:after {
  top: 7px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span:before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header.scrolled .navbar {
  height: 66px;
}

.site-header.scrolled .nav-item {
  height: 66px;
}

.site-header.scrolled .brand img {
  height: 46px;
}

/* Header search */
.sqv2-header-search {
  width: 46px;
  height: 46px;
  min-width: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  padding: 0;
  margin-left: 8px;
  line-height: 1;
  aspect-ratio: 1/1;
  background: #090909;
  border: 1px solid rgba(212, 175, 55, .52);
  color: #fff;
}

.sqv2-header-search svg {
  width: 20px;
  height: 20px;
  display: block;
}

.sqv2-header-search:hover {
  background: rgba(212, 175, 55, .12);
  color: var(--gold);
}

/* ------------------------------------------------------------
   5. MOBILE MENU
   ------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 112px;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  background: #070707;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s cubic-bezier(.19, 1, .22, 1), opacity .32s ease, visibility .32s;
  overflow: auto;
  pointer-events: none;
  z-index: 99998;
  box-sizing: border-box;
  overscroll-behavior: contain;
  border-radius: var(--sqv2-radius-md);
}

body.menu-open .mobile-menu,
.mobile-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.mobile-menu-inner {
  padding: 34px 24px 60px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}

.mobile-menu a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .06em;
}

.sqv2-body .mobile-menu a.active,
.sqv2-body .mobile-parent-link.active {
  color: var(--gold);
}

.sqv2-body .mobile-parent-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.sqv2-body .mobile-parent-row.open {
  border-bottom-color: rgba(212, 175, 55, .28);
}

.sqv2-body .mobile-parent-link {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0;
  border: 0;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.sqv2-body .mobile-parent-toggle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 58px;
  border: 0;
  background: transparent;
  color: var(--gold);
  padding: 0;
  cursor: pointer;
}

.sqv2-body .mobile-parent-toggle span:before {
  content: "+";
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.sqv2-body .mobile-parent-toggle.open span:before {
  content: "-";
}

.sqv2-body .mobile-parent {
  display: none;
}

.mobile-sub {
  display: none;
  padding: 8px 0 12px 18px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .025);
}

.mobile-sub.is-open {
  display: block;
}

.mobile-sub a {
  border: 0;
  padding: 10px 0;
  font-size: 13px;
  text-transform: none;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
}

html[dir="rtl"] .sqv2-body .mobile-sub {
  padding-left: 0;
  padding-right: 18px;
}

.mobile-search-open {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
}

.mobile-search-open svg {
  width: 22px;
  height: 22px;
}

/* ------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------ */
.hero {
  margin-top: 112px;
  position: relative;
  height: calc(100vh - 112px);
  min-height: 650px;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.25s ease, transform 1.6s ease;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, .72), rgba(5, 5, 5, .45) 42%, rgba(5, 5, 5, .88)), radial-gradient(ellipse at center, rgba(0, 0, 0, .12), rgba(0, 0, 0, .75) 78%);
}

.hero-main {
  position: relative;
  z-index: 3;
  height: calc(100% - 132px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px 20px;
}

.hero-center {
  width: min(850px, 72vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity .45s ease, transform .45s ease;
}

.hero-center.is-changing {
  opacity: 0;
  transform: translateY(16px);
}

.hero-counter {
  font-size: 13px;
  letter-spacing: .3em;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 24px;
}

.hero-counter span {
  color: var(--gold);
  margin: 0 10px;
}

.hero-counter b {
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}

.hero-label {
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 22px;
  max-width: min(90vw, 760px);
  margin-inline: auto;
}

.hero-year {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(74px, 9vw, 124px);
  line-height: .82;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 20px 45px rgba(0, 0, 0, .65);
  margin: 0 0 30px;
}

.hero-desc {
  margin: 0 auto 34px;
  max-width: 760px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  font-weight: 600;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .9);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 34px;
  border: 1px solid rgba(212, 175, 55, .58);
  background: rgba(10, 10, 10, .42);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: .25s;
  border-radius: 999px;
}

.hero-cta:hover {
  background: var(--gold);
  color: #1A1A1A;
}

.hero-social {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  transition: .2s;
}

.icon-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.side-year {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.7vw, 37px);
  line-height: .82;
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
  transition: .25s;
}

.side-year:hover {
  color: #fff;
}

.side-prev {
  left: 6vw;
}

.side-next {
  right: 6vw;
}

.hero-timeline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 132px;
  padding: 0 6vw 30px;
  background: linear-gradient(to top, #050505 0%, rgba(5, 5, 5, .75) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.timeline-wrap {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .16);
}

.timeline-progress {
  position: absolute;
  left: 0;
  bottom: 40px;
  height: 1px;
  background: var(--gold);
  transition: width .5s ease;
}

.timeline-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .48);
  min-width: 74px;
  cursor: pointer;
}

.timeline-thumb {
  width: 82px;
  height: 52px;
  overflow: hidden;
  opacity: .45;
  transition: .3s;
  border: 1px solid rgba(255, 255, 255, .08);
}

.timeline-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
  transition: .3s;
}

.timeline-year {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 12px;
  letter-spacing: .16em;
}

.timeline-node.active .timeline-thumb {
  opacity: 1;
  border-color: rgba(212, 175, 55, .85);
  transform: translateY(-6px);
}

.timeline-node.active .timeline-dot {
  background: var(--gold);
  transform: scale(1.45);
}

.timeline-node.active .timeline-year {
  color: var(--gold);
  font-weight: 600;
}

.timeline-node:hover .timeline-thumb {
  opacity: .8;
}

/* ------------------------------------------------------------
   7. INFO CARDS
   ------------------------------------------------------------ */
.info-cards {
  background: var(--stone);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 50px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: .28s;
  min-height: 205px;
  padding: 24px 24px 22px;
}

.info-card:hover {
  border-color: rgba(140, 115, 38, .35);
  box-shadow: 0 16px 34px rgba(30, 24, 12, .08);
  transform: translateY(-4px);
}

.info-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #fffdf6, #eadfbf);
  box-shadow: 0 18px 40px rgba(140, 115, 38, .13), inset 0 1px 0 rgba(255, 255, 255, .94);
  border: 1px solid rgba(140, 115, 38, .32);
  color: #8c7326;
}

.info-icon svg {
  display: block;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 8px rgba(140, 115, 38, .18));
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
}

.info-card p {
  color: var(--muted);
  margin: 0 0 16px;
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
}

.sqv2-body .info-card-static {
  cursor: default;
}

.sqv2-body .info-card-static:hover {
  transform: none;
}

.sqv2-body .info-card .text-link-muted {
  opacity: 0;
  pointer-events: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8c6a1f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.text-link:hover {
  color: #6a561c;
}

.sqv2-body .info-card-directions {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.sqv2-body .info-card-directions:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 4px;
}

.sqv2-body .info-card-directions .sqv2-directions-trigger.text-link,
.sqv2-body .sqv2-directions-trigger.text-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: auto;
  color: #98721F;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: inherit;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.sqv2-body .info-card-directions:hover .sqv2-directions-trigger {
  color: #6a561c;
}

html[dir="rtl"] .sqv2-body .sqv2-directions-trigger {
  text-align: right;
}

/* ------------------------------------------------------------
   8. HOME NEWS / DISTRICT SECTIONS (Airbnb carousel)
   ------------------------------------------------------------ */
.home-news {
  background: #fff;
  overflow: hidden;
}

.home-news .container {
  width: min(100% - 64px, var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.sqv2-body .home-news,
.sqv2-body .district-section {
  padding: 72px 0 86px;
  background: #f4f1ea;
  border-top: 1px solid rgba(152, 114, 31, .10);
  border-bottom: 1px solid rgba(152, 114, 31, .10);
  border-color: #f4f1ea;
  overflow-x: clip;
}

.sqv2-body .home-news .section-head,
.sqv2-body .district-section .section-head {
  display: grid;
  grid-template-columns: minmax(0, 680px) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.sqv2-body .home-news .section-head>div:first-child,
.sqv2-body .district-section .section-head>div:first-child {
  max-width: 680px;
  width: 100%;
}

.sqv2-body .home-news .section-title,
.sqv2-body .home-news .section-title-gold,
.sqv2-body .district-section .section-title,
.sqv2-body .district-section .section-title-gold {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 2.15vw, 34px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -.035em;
  color: var(--sqv2-gold);
  margin: 0;
  max-width: none;
}

.sqv2-body .home-news .section-intro,
.sqv2-body .district-section .section-intro {
  font-size: 15px;
  line-height: 1.65;
  color: #5c6570;
  margin: 16px 0 0;
  max-width: 620px;
}

.home-news .eyebrow,
.district-section .eyebrow {
  display: none;
}

.news-airbnb-actions,
.area-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.sqv2-body .news-airbnb-actions,
.sqv2-body .area-controls {
  justify-content: flex-end;
  width: auto;
  align-self: end;
  white-space: nowrap;
}

.sqv2-body .section-action,
.sqv2-body .news-airbnb-actions .section-action,
.sqv2-body .area-controls .section-action,
.sqv2-body .district-see-all {
  min-height: 44px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid #171717;
  background: transparent;
  color: #171717;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  white-space: nowrap;
  border-radius: 999px;
}

.sqv2-body .section-action:hover,
.sqv2-body .district-see-all:hover {
  background: var(--sqv2-gold);
  border-color: var(--sqv2-gold);
  color: #fff;
}

.sqv2-body .round-btn,
.sqv2-body .news-airbnb-actions .round-btn,
.sqv2-body .area-controls .round-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1px solid var(--sqv2-line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171717;
}

.sqv2-body .round-btn:hover {
  background: var(--sqv2-gold);
  border-color: var(--sqv2-gold);
  color: #fff;
}

.sqv2-body .round-btn svg {
  width: 13px;
  height: 13px;
  display: block;
  margin: 0;
}

.news-prev svg,
.area-prev svg {
  transform: rotate(180deg);
}

html[dir="rtl"] .news-prev svg,
html[dir="rtl"] .area-prev svg {
  transform: none;
}

html[dir="rtl"] .news-next svg,
html[dir="rtl"] .area-next svg {
  transform: rotate(180deg);
}

.news-airbnb-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  outline: none;
}

.news-airbnb-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 14px;
}

.news-airbnb-track::-webkit-scrollbar {
  display: none;
}

.sqv2-body .news-airbnb-card {
  flex: 0 0 calc((100% - 48px)/3);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(140, 115, 38, .16);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(20, 16, 8, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.sqv2-body .news-airbnb-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140, 115, 38, .34);
  box-shadow: 0 24px 56px rgba(26, 26, 26, .12);
}

.sqv2-body .news-airbnb-media {
  position: relative;
  height: 230px;
  min-height: 230px;
  overflow: hidden;
  background: #e8e2d8;
  border-radius: 18px 18px 0 0;
}

.sqv2-body .news-airbnb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .7s ease;
}

.sqv2-body .news-airbnb-card:hover .news-airbnb-media img {
  transform: scale(1.055);
}

.sqv2-body .news-airbnb-body {
  min-height: 132px;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
}

.news-date {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .16em;
  color: #8c6a1f;
  font-weight: 900;
  margin-bottom: 10px;
}

.sqv2-body .news-airbnb-card h3 {
  font-size: 19px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.035em;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.sqv2-body .news-airbnb-card p {
  display: none;
}

.news-chip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 5;
  border-radius: 999px;
  background: rgba(26, 26, 26, .58);
  color: #fff;
  backdrop-filter: blur(10px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 9px;
  padding: 6px 10px;
}

/* Quote */
.quote-section {
  padding: 96px 0;
  background: #1A1A1A;
  color: #fff;
  text-align: center;
  border-color: rgba(212, 175, 55, .18);
}

.sqv2-body .home-news+.quote-section {
  border-top: 1px solid rgba(140, 115, 38, .12);
}

.quote-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 76px;
  line-height: .8;
  color: var(--gold);
  opacity: .55;
}

.quote-text {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  max-width: 980px;
  margin: 18px auto 34px;
  letter-spacing: -.055em;
}

.quote-line {
  width: 54px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
}

.quote-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin: 0;
}

.quote-role {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  margin-top: 8px;
}

.sqv2-body .quote-section .eyebrow {
  color: #D4AF37;
}

/* ------------------------------------------------------------
   9. DISTRICT SECTION (carousel + list + detail)
   ------------------------------------------------------------ */
.sqv2-body .district-section {
  background: #f4f1ea;
  padding: 88px 0 104px;
  overflow: hidden;
}

.sqv2-body .district-section .container {
  overflow: hidden;
}

.sqv2-body .district-section .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.sqv2-body .district-section .section-title,
.sqv2-body .district-section .section-title-gold {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
}

.district-section .section-intro {
  max-width: 690px;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6472;
}

.sqv2-body .district-section .container>.district-strip {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0 18px;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  display: flex;
}

.district-strip::-webkit-scrollbar {
  display: none;
}

.sqv2-body .district-section .district-card {
  flex: 0 0 calc((100% - 72px)/4);
  width: calc((100% - 72px)/4);
  min-width: 0;
  max-width: none;
  aspect-ratio: 4/5;
  height: auto;
  min-height: 390px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #1A1A1A;
  border: 0;
  box-shadow: 0 24px 56px rgba(30, 24, 12, .12);
}

.sqv2-body .district-section .district-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.district-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, .9), rgba(26, 26, 26, .25) 60%, rgba(26, 26, 26, 0));
}

.district-card .area-info {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 4;
  padding: 30px;
  pointer-events: none;
}

.sqv2-body .district-section .area-info h3 {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}

.district-card .area-info p:not(.area-kicker) {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.7;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: .35s;
}

.district-card:hover .area-info p:not(.area-kicker) {
  max-height: 92px;
  opacity: 1;
  margin-bottom: 16px;
}

.area-kicker {
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 850;
  margin: 0 0 10px;
  letter-spacing: .18em;
}

.sqv2-body .district-section .area-info .area-kicker {
  display: none;
}

.district-card .area-info .text-link {
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: .35s;
  font-size: 11px;
  pointer-events: auto;
}

.district-card:hover .area-info .text-link {
  opacity: 1;
  transform: translateY(0);
}

.district-card:hover img {
  transform: scale(1.045);
}

.district-card img {
  transition: transform .7s;
  filter: saturate(.92) contrast(.98);
}

/* District list page */
.sqv2-body .district-list-page {
  background: #fcfbf9;
  padding: 70px 0 100px;
}

.sqv2-body .district-list-page .container {
  width: min(100% - 56px, 1240px);
  margin-inline: auto;
}

.sqv2-body .district-list-page .district-intro {
  display: none;
}

.districts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.district-page-card {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #fff;
  border: 1px solid var(--sqv2-line);
  text-decoration: none;
  color: #1A1A1A;
  transition: .24s ease;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(30, 24, 12, .08);
  min-height: 360px;
}

.sqv2-body .district-page-card {
  min-height: 360px;
  background: #fff;
  border: 1px solid var(--sqv2-line);
  box-shadow: none;
}

.district-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(30, 24, 12, .1);
  border-color: rgba(140, 115, 38, .35);
}

.sqv2-body .district-page-card:hover {
  box-shadow: 0 18px 42px rgba(30, 24, 12, .08);
}

.district-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.district-page-card:hover img {
  transform: scale(1.035);
}

.district-page-card .areas-page-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 52px;
}

.sqv2-body .district-page-card .areas-page-info h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.04em;
  margin: 0 0 16px;
  color: #1A1A1A;
  font-size: clamp(24px, 2.4vw, 34px);
}

.district-page-card .areas-page-info p:not(.area-kicker) {
  color: #5b554d;
  line-height: 1.75;
  margin: 0 0 24px;
}

.sqv2-body .district-page-card .area-kicker {
  color: var(--sqv2-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.district-page-card:nth-child(even) {
  grid-template-columns: 58% 42%;
}

.district-page-card:nth-child(even) img {
  order: 2;
}

html[dir="rtl"] .district-page-card:nth-child(even) img {
  order: 0;
}

/* District detail */
.sqv2-body .district-detail-shell {
  margin-top: 112px;
  background: var(--stone);
  max-width: 100vw;
  overflow-x: hidden;
}

.sqv2-body .district-detail-shell .container {
  max-width: min(100% - 40px, 1240px);
}

.district-detail-hero {
  background: #191919;
  color: #fff;
  border-bottom: 1px solid rgba(212, 175, 55, .22);
  padding: 56px 0;
}

.district-detail-hero .breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.district-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44%;
  gap: 56px;
  align-items: center;
  min-width: 0;
}

.district-detail-copy h1 {
  letter-spacing: -.06em;
  line-height: .98;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
}

.district-detail-copy p[data-district-summary] {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.75;
}

.district-detail-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.district-detail-media {
  margin: 0;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(212, 175, 55, .25);
  aspect-ratio: 16/9;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(30, 24, 12, .12);
}

.district-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.district-detail-body {
  padding: 76px 0 110px;
  overflow-x: clip;
}

.district-article-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 850px);
  gap: 60px;
  align-items: start;
  min-width: 0;
}

.sqv2-body .district-detail-copy,
.sqv2-body .district-article,
.sqv2-body .district-detail-media {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.district-side-nav {
  position: sticky;
  top: 140px;
  background: #fff;
  border: 1px solid var(--sqv2-line);
  padding: 26px;
  border-radius: 22px;
  overflow: visible;
  max-width: 100%;
  box-sizing: border-box;
}

.district-side-nav span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold-dark);
  font-weight: 850;
  margin-bottom: 16px;
}

.sqv2-body .district-side-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #5f5a50;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.sqv2-body .district-side-nav a+a {
  margin-top: 6px;
}

.sqv2-body .district-side-nav a.active {
  background: #f4f1ea;
  color: #98721F;
  border-left: 3px solid #98721F;
  padding-left: 13px;
  box-shadow: inset 0 0 0 1px rgba(152, 114, 31, .12);
}

.sqv2-body .district-side-nav a:hover {
  background: var(--sqv2-gold);
  color: #fff;
  border-color: var(--sqv2-gold);
}

.district-article {
  background: #fff;
  border: 1px solid var(--sqv2-line);
  padding: 48px 56px;
  font-size: 17px;
  line-height: 1.9;
}

.district-article .lead {
  font-size: 21px;
  line-height: 1.65;
  color: #1A1A1A;
  font-weight: 700;
  margin: 0 0 30px;
}

.district-article p {
  font-size: 17px;
  line-height: 1.9;
  color: #464137;
  margin: 0 0 26px;
}

.district-article h2,
.district-article h3 {
  letter-spacing: -.035em;
  color: #1A1A1A;
}

.district-article img,
.district-article .gallery,
.district-article figure {
  display: none;
}

.sqv2-body .district-article :where(p, h1, h2, h3, h4, li, blockquote) {
  overflow-wrap: anywhere;
  word-break: normal;
}

.source-note {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--sqv2-line);
  font-size: 14px;
  color: var(--muted);
}

.source-note a {
  color: var(--gold-dark);
  font-weight: 800;
}

.district-detail-shell .primary-btn {
  background: var(--gold);
  color: #141414;
}

.district-detail-shell .primary-btn:hover {
  background: #fff;
  color: #141414;
}

/* ------------------------------------------------------------
   10. PAGE HEROES / BREADCRUMBS
   ------------------------------------------------------------ */
.page-hero {
  margin-top: var(--header-h);
  background: #1A1A1A;
  color: #fff;
  text-align: center;
  padding: 54px 24px 64px;
  border-bottom: 1px solid rgba(140, 115, 38, .25);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 28px;
}

.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0 auto;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  font-size: 15px;
  max-width: 680px;
}

.sqv2-body :where(.page-hero, .figma-article-head, .sqv2-about-hero, .sqv2-about-top-hero) :where(.eyebrow, .breadcrumbs span, .breadcrumbs a, .article-meta-line span, .hero-label, .hero-counter span) {
  color: #D4AF37;
}

.page-body {
  background: var(--stone);
  padding: 56px 0 96px;
  overflow: hidden;
}

/* ------------------------------------------------------------
   11. FILTERS / NEWS GRID / PAGINATION
   ------------------------------------------------------------ */
.filters {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 46px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  z-index: 1;
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 0;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.chip {
  padding: 9px 14px;
  background: #fff;
  color: #666;
  font-size: 14px;
}

.chip.active,
.chip:hover {
  background: var(--gold-dark);
  color: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: .25s;
}

.news-card:hover {
  border-color: rgba(140, 115, 38, .4);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .07);
}

.news-card .media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f4f0e7;
}

.news-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .7s;
}

.news-card:hover .media img {
  transform: scale(1.06);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.news-card .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 12px;
}

.news-card .meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dark);
}

.news-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 820;
  letter-spacing: -.03em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card p {
  color: var(--muted);
  flex: 1;
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination,
.sqv2-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.page-num {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border-radius: 999px;
}

.page-num.active,
.page-num:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

.sqv2-body .sqv2-pagination .page-num.active,
.sqv2-body .pagination .page-num.active {
  background: #fff8e8;
  border-color: var(--gold-dark);
  color: #171717;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(140, 115, 38, .28);
}

.sqv2-body .sqv2-pagination .page-num,
.sqv2-body .pagination .page-num {
  color: #3b3b3b;
  text-decoration: none;
}

.live-loading,
.live-error {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px;
  border: 1px dashed var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.live-error a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
}

.empty-state {
  border: 1px dashed var(--line);
  padding: 34px;
  text-align: center;
  color: var(--muted);
}

/* ------------------------------------------------------------
   12. NEWS PAGE (SQV2) — hero, filter tabs, compact grid
   ------------------------------------------------------------ */
.sqv2-body .sqv2-news-page {
  background: var(--sqv2-paper);
  position: relative;
  z-index: 10;
  padding-top: 44px;
  overflow-x: clip;
}

.sqv2-body .sqv2-news-hero {
  margin-top: 112px;
  background: #1A1A1A;
  color: #fff;
  text-align: center;
  padding: 70px 24px 128px;
  border-bottom: 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.sqv2-body .sqv2-news-hero .breadcrumbs {
  margin-bottom: 26px;
  color: var(--sqv2-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.sqv2-body .sqv2-news-hero .breadcrumbs a {
  color: var(--sqv2-gold-bright);
}

.sqv2-body .sqv2-news-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px;
}

.sqv2-body .sqv2-news-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.7;
}

.sqv2-body .sqv2-news-page>.container {
  width: min(100% - 56px, 1240px);
  margin-inline: auto;
  position: relative;
  z-index: 12;
  overflow: visible;
}

.sqv2-body .sqv2-news-page .filters.sqv2-news-filter-tabs {
  position: relative;
  z-index: 30;
  min-height: 74px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid var(--sqv2-line);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 0 auto 60px;
  transform: none;
  width: min(100%, 1240px);
  border-radius: 22px;
}

.sqv2-body .sqv2-news-page .sqv2-news-filter-tabs .filter-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 24px 0 6px;
  border-right: 1px solid var(--sqv2-line);
  color: #1A1A1A;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sqv2-body .sqv2-news-page .sqv2-news-filter-tabs .filter-title:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 62% 48%, 62% 100%, 38% 100%, 38% 48%);
  opacity: .9;
}

.sqv2-body .sqv2-news-page .sqv2-news-filter-tabs .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: transparent;
  color: #57524b;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  text-decoration: none;
  border-radius: 999px;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.sqv2-body .sqv2-news-page .sqv2-news-filter-tabs .chip:hover,
.sqv2-body .sqv2-news-page .sqv2-news-filter-tabs .chip.active,
.sqv2-body .district-side-nav a:hover,
.sqv2-body .district-side-nav a.active {
  background: var(--sqv2-gold);
  border-color: var(--sqv2-gold);
  color: #fff;
  box-shadow: none;
  transform: none;
}

.sqv2-news-page.is-filter-loading .news-grid,
.sqv2-news-page.is-filter-loading .sqv2-pagination,
.sqv2-news-page.is-filter-loading .sqv2-news-grid-empty {
  opacity: .42;
  pointer-events: none;
  transition: opacity .16s ease;
}

.sqv2-news-page.is-filter-loading .filters:after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(140, 115, 38, .18);
  border-top-color: var(--gold-dark);
  margin-left: auto;
  animation: sqv2spin .75s linear infinite;
}

@keyframes sqv2spin {
  to {
    transform: rotate(360deg)
  }
}

.sqv2-body .sqv2-news-grid-compact.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.sqv2-body .sqv2-news-card-compact.news-card {
  background: #fff;
  border: 1px solid var(--sqv2-line);
  color: #1A1A1A;
  box-shadow: none;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sqv2-body .sqv2-news-card-compact.news-card:hover {
  border-color: rgba(140, 115, 38, .45);
  box-shadow: 0 18px 42px rgba(30, 24, 12, .08);
  transform: translateY(-3px);
}

.sqv2-body .sqv2-news-card-compact .news-card-media {
  aspect-ratio: 4/3;
  height: auto;
  background: #eee;
  overflow: hidden;
}

.sqv2-body .sqv2-news-card-compact .news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sqv2-body .sqv2-news-card-compact .news-card-body {
  min-height: 238px;
  padding: 24px;
}

.sqv2-body .sqv2-news-card-compact .news-date {
  display: block;
  color: var(--sqv2-gold);
  letter-spacing: .16em;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-size: 10.5px;
}

.sqv2-body .sqv2-news-card-compact h3 {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 850;
  letter-spacing: -.025em;
  color: #171717;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: 3.72em;
}

.sqv2-body .sqv2-news-card-compact p {
  font-size: 14px;
  line-height: 1.58;
  color: #666;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.sqv2-body .sqv2-news-card-compact:hover h3 {
  color: var(--sqv2-gold);
}

.sqv2-body .sqv2-news-card-compact .sqv2-more-link {
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sqv2-body .sqv2-news-card-compact:hover .sqv2-more-link {
  color: var(--sqv2-gold);
}

.sqv2-more-link {
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 700;
}

/* Topic / Heydar cards */
.sqv2-topic-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sqv2-body .sqv2-topic-card,
.sqv2-body .sqv2-heydar-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  border-radius: 16px;
}

.sqv2-body .sqv2-topic-card-media,
.sqv2-body .sqv2-heydar-grid .sqv2-heydar-media,
.sqv2-body .sqv2-heydar-grid .news-card-media,
.sqv2-body .sqv2-topic-card .news-card-media {
  aspect-ratio: 5/4;
  height: auto;
  min-height: 0;
  background: #f0ede5;
  overflow: hidden;
  flex: 0 0 auto;
}

.sqv2-body .sqv2-topic-card-media img,
.sqv2-body .sqv2-heydar-grid .sqv2-heydar-media img,
.sqv2-body .sqv2-heydar-grid .news-card-media img,
.sqv2-body .sqv2-topic-card .news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.sqv2-body .sqv2-topic-card .news-card-body,
.sqv2-body .sqv2-heydar-card .news-card-body {
  flex: 1;
  background: #fff;
  min-height: 168px;
}

.sqv2-topic-card h3 {
  font-size: 18px;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0 0 10px;
}

.sqv2-topic-card p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}

.sqv2-topic-article,
.sqv2-topic-hero p {
  display: block;
}

.sqv2-body .sqv2-topic-hero p {
  display: none;
}

/* ------------------------------------------------------------
   13. ARTICLE HEAD / BODY (shared by News + Science + History + Opening)
   ------------------------------------------------------------ */
.sqv2-body .sqv2-single-news,
.sqv2-body .sqv2-science-single {
  background: #fff;
}

.sqv2-body .sqv2-article-head-light,
.sqv2-body .figma-article-head {
  margin-top: var(--header-h);
  color: #1A1A1A;
  text-align: center;
  background: #fcfbf9;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 38px 0 40px;
  overflow: visible;
}

.sqv2-body .sqv2-article-head-light .article-container,
.sqv2-body .figma-article-head .article-container {
  width: min(100% - 56px, 920px);
  margin-inline: auto;
  overflow: visible;
}

.sqv2-body .sqv2-article-head-light .breadcrumbs,
.sqv2-body .sqv2-article-head-light .article-meta-line,
.sqv2-body .figma-article-head .breadcrumbs,
.sqv2-body .figma-article-head .article-meta-line {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--sqv2-gold);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sqv2-body .sqv2-article-head-light .breadcrumbs a,
.sqv2-body .figma-article-head .breadcrumbs a {
  color: var(--sqv2-gold);
}

.sqv2-body .sqv2-article-head-light h1,
.sqv2-body .figma-article-head h1 {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.13;
  font-weight: 700;
  letter-spacing: -.045em;
  max-width: 760px;
  margin: 0 auto;
  color: #1A1A1A;
}

.article-meta-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.article-meta-line i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.figma-article-body,
.sqv2-body .figma-article-body {
  background: #fff;
  padding: 36px 0 78px;
  overflow-x: hidden;
}

.article-container {
  width: min(100% - 48px, 980px);
  margin-inline: auto;
  box-sizing: border-box;
}

.sqv2-body .article-container {
  width: min(100% - 56px, 920px);
}

.figma-article-layout {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.figma-article-image {
  overflow: hidden;
  margin: 0 0 42px;
  background: #eee;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 8.2;
}

.figma-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

.article-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.article-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  border: 0;
}

.share-rail {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  justify-items: center;
}

.share-rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 800;
  letter-spacing: .2em;
  color: #9a948b;
  text-transform: uppercase;
  font-size: 9.5px;
}

.share-rail a,
.share-rail button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #595650;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  padding: 0;
}

.share-rail a:hover,
.share-rail button:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.share-rail button.copied {
  background: var(--gold);
  color: #1A1A1A;
}

.sqv2-body .figma-article-content {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.82;
  color: #333;
}

.sqv2-body .figma-article-content * {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.figma-article-content>*:first-child {
  margin-top: 0;
}

.figma-article-content>p:first-child,
.sqv2-body .figma-article-content>p:first-child {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  color: #1A1A1A;
}

.figma-article-content p {
  margin: 0 0 20px;
}

.figma-article-content strong {
  font-weight: 700;
}

.figma-article-content h1,
.figma-article-content h2,
.figma-article-content h3,
.figma-article-content h4 {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  color: #1A1A1A;
  line-height: 1.2;
  margin: 44px 0 18px;
  letter-spacing: -.04em;
}

.figma-article-content img,
.figma-article-content blockquote {
  display: none;
}

.figma-article-content iframe,
.figma-article-content video {
  max-width: 100%;
}

.original-link-wrap {
  margin-top: 36px;
}

/* Related news */
.sqv2-related-news {
  width: 100%;
  max-width: 920px;
  box-sizing: border-box;
  margin: 54px auto 86px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.sqv2-related-news .section-head {
  margin-bottom: 28px;
  padding-bottom: 0;
  border-bottom: 0;
}

.sqv2-related-news .section-kicker {
  display: none;
}

.sqv2-related-news h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: 0;
  color: var(--gold-dark);
}

.sqv2-related-grid,
.related .related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sqv2-related-card {
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: #1A1A1A;
  overflow: hidden;
  transition: .22s ease;
}

.sqv2-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(30, 24, 12, .09);
  border-color: rgba(140, 115, 38, .35);
}

.sqv2-related-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #eee;
}

.sqv2-related-card span {
  display: block;
  margin: 18px 20px 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 850;
}

.sqv2-related-card h3 {
  margin: 0 20px 22px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: 3.75em;
}

.sqv2-body .sqv2-article-nav {
  display: none;
}

/* ---- Article head: light variant for ALL single article types
        (News + Science + History + Opening) — IDENTICAL styling ---- */
.sqv2-body .sqv2-single-news .figma-article-head.sqv2-article-head-light,
.sqv2-body .sqv2-history-article .figma-article-head.sqv2-article-head-light,
.sqv2-body .sqv2-opening-page .figma-article-head.sqv2-article-head-light,
.sqv2-body .sqv2-science-single .figma-article-head.sqv2-article-head-light {
  padding-top: 72px;
  padding-bottom: 60px;
  background: #FCFBF9;
  border-bottom: 1px solid #f4f1ea;
}

.sqv2-body .sqv2-single-news .figma-article-head.sqv2-article-head-light .breadcrumbs,
.sqv2-body .sqv2-history-article .figma-article-head.sqv2-article-head-light .breadcrumbs,
.sqv2-body .sqv2-opening-page .figma-article-head.sqv2-article-head-light .breadcrumbs,
.sqv2-body .sqv2-science-single .figma-article-head.sqv2-article-head-light .breadcrumbs {
  margin-top: 0;
  margin-bottom: 26px;
  color: #98721F;
}

.sqv2-body .sqv2-single-news .figma-article-head.sqv2-article-head-light .breadcrumbs a,
.sqv2-body .sqv2-single-news .figma-article-head.sqv2-article-head-light .breadcrumbs span,
.sqv2-body .sqv2-history-article .figma-article-head.sqv2-article-head-light .breadcrumbs a,
.sqv2-body .sqv2-history-article .figma-article-head.sqv2-article-head-light .breadcrumbs span,
.sqv2-body .sqv2-opening-page .figma-article-head.sqv2-article-head-light .breadcrumbs a,
.sqv2-body .sqv2-opening-page .figma-article-head.sqv2-article-head-light .breadcrumbs span,
.sqv2-body .sqv2-science-single .figma-article-head.sqv2-article-head-light .breadcrumbs a,
.sqv2-body .sqv2-science-single .figma-article-head.sqv2-article-head-light .breadcrumbs span {
  color: #98721F;
}

.sqv2-body .sqv2-single-news .figma-article-head.sqv2-article-head-light .article-meta-line,
.sqv2-body .sqv2-history-article .figma-article-head.sqv2-article-head-light .article-meta-line,
.sqv2-body .sqv2-opening-page .figma-article-head.sqv2-article-head-light .article-meta-line,
.sqv2-body .sqv2-science-single .figma-article-head.sqv2-article-head-light .article-meta-line {
  margin-bottom: 24px;
  color: #98721F;
}

.sqv2-body .sqv2-single-news .figma-article-head.sqv2-article-head-light h1,
.sqv2-body .sqv2-history-article .figma-article-head.sqv2-article-head-light h1,
.sqv2-body .sqv2-science-single .figma-article-head.sqv2-article-head-light h1 {
  color: #1A1A1A;
  font-size: 22px;
  line-height: 1.18;
  max-width: 760px;
  font-weight: 760;
  letter-spacing: -.035em;
}

/* Hide embeds inside single article content (News + Science identical) */
.sqv2-single-news .figma-article-content iframe,
.sqv2-single-news .figma-article-content object,
.sqv2-single-news .figma-article-content embed,
.sqv2-single-news .figma-article-content .wp-embedded-content,
.sqv2-single-news .figma-article-content blockquote.wp-embedded-content,
.sqv2-science-single .figma-article-content iframe,
.sqv2-science-single .figma-article-content object,
.sqv2-science-single .figma-article-content embed,
.sqv2-science-single .figma-article-content .wp-embedded-content,
.sqv2-science-single .figma-article-content blockquote.wp-embedded-content {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

.sqv2-single-news .figma-article-content>p:empty,
.sqv2-single-news .figma-article-content>div:empty,
.sqv2-science-single .figma-article-content>p:empty,
.sqv2-science-single .figma-article-content>div:empty {
  display: none;
}

.sqv2-body .figma-article-content a.more-link,
.sqv2-body .figma-article-content .more-link,
.sqv2-body .sqv2-opening-content a.more-link,
.sqv2-body .sqv2-opening-content .more-link,
.sqv2-body .sqv2-opening-content p:has(a.more-link) {
  display: none;
}

.sqv2-body .figma-article-content,
.sqv2-body .sqv2-opening-content {
  max-height: none;
  overflow: visible;
}

/* Article meta gold + hide meta trailing duplicate for all light heads */
.sqv2-body .figma-article-head .breadcrumbs.light span:last-child:not(:first-child) {
  color: var(--gold);
}

.sqv2-body .figma-article-head .article-meta-line span:last-child:not(:first-child) {
  display: none;
}

.sqv2-body .figma-article-head .article-meta-line i:has(+ span:last-child) {
  display: none;
}

@media (max-width:760px) {

  .sqv2-body .sqv2-single-news .figma-article-head.sqv2-article-head-light,
  .sqv2-body .sqv2-history-article .figma-article-head.sqv2-article-head-light,
  .sqv2-body .sqv2-opening-page .figma-article-head.sqv2-article-head-light,
  .sqv2-body .sqv2-science-single .figma-article-head.sqv2-article-head-light {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .sqv2-body .sqv2-single-news .figma-article-head.sqv2-article-head-light h1,
  .sqv2-body .sqv2-history-article .figma-article-head.sqv2-article-head-light h1,
  .sqv2-body .sqv2-science-single .figma-article-head.sqv2-article-head-light h1 {
    font-size: 22px;
  }
}

/* ------------------------------------------------------------
   14. LIBRARY / OPENING / HISTORY TIMELINES
   ------------------------------------------------------------ */
.sqv2-opening-head {
  margin-top: var(--header-h);
  background: #fcfbf9;
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 54px 0 62px;
}

.sqv2-opening-head h1 {
  font-size: clamp(26px, 2.75vw, 38px);
  line-height: 1.13;
  letter-spacing: -.055em;
  margin: 0 auto 18px;
  max-width: 860px;
  font-weight: 780;
}

.sqv2-opening-head p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.sqv2-opening-content {
  margin-inline: auto;
}

.sqv2-body .sqv2-opening-content,
.sqv2-body .sqv2-opening-content * {
  max-height: none;
  overflow: visible;
}

.sqv2-history-alternating {
  background: #f7f2e8;
  padding: 74px 0 100px;
}

.sqv2-timeline-modern {
  position: relative;
  display: grid;
  gap: 48px;
}

.sqv2-timeline-modern:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(140, 115, 38, .32);
  transform: translateX(-50%);
}

.sqv2-timeline-modern-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  scroll-margin-top: 110px;
}

.sqv2-timeline-modern-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.sqv2-timeline-modern-marker span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 46px;
  background: #151515;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .1em;
  border: 1px solid rgba(212, 175, 55, .45);
}

.sqv2-timeline-modern-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(30, 24, 12, .06);
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 260px;
}

.sqv2-timeline-modern-item.is-left .sqv2-timeline-modern-card {
  grid-column: 1;
}

.sqv2-timeline-modern-item.is-right .sqv2-timeline-modern-card {
  grid-column: 2;
}

.sqv2-timeline-modern-media {
  min-height: 260px;
  overflow: hidden;
  background: #eee;
}

.sqv2-timeline-modern-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sqv2-timeline-modern-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sqv2-timeline-modern-copy h2 {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0 0 12px;
  color: #1A1A1A;
  font-weight: 850;
}

.sqv2-timeline-modern-copy p:not(.eyebrow) {
  line-height: 1.68;
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.sqv2-timeline-modern-copy .sqv2-more-link {
  display: none;
}

/* Library book grid */
.sqv2-library-page {
  background: #f4efe5;
  padding: 72px 0 108px;
  overflow: visible;
}

.sqv2-library-page .container {
  max-width: 1320px;
}

.sqv2-library-hero {
  background: #1d1a22;
  color: #fff;
}

.sqv2-library-hero p {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .78);
}

.sqv2-books-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 42px;
  align-items: start;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
}

.sqv2-book-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 270px;
  padding: 0 0 6px;
  text-decoration: none;
  color: #1d1a22;
  perspective: 1300px;
  outline: none;
}

.sqv2-book-visual {
  position: relative;
  display: block;
  width: min(100%, 250px);
  aspect-ratio: 3/4;
  margin: 0 auto 20px;
  transform-style: preserve-3d;
}

.sqv2-book-visual::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 7px;
  top: 11px;
  bottom: 10px;
  border-radius: 4px 12px 12px 4px;
  background: #fff;
  box-shadow: 10px 12px 0 rgba(255, 255, 255, .86), 15px 18px 26px rgba(24, 20, 14, .10);
  z-index: 0;
  transform: translateX(5px);
  pointer-events: none;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}

.sqv2-book-visual::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -14px;
  height: 16px;
  border-radius: 999px;
  background: rgba(24, 20, 14, .14);
  filter: blur(14px);
  opacity: .55;
  z-index: -1;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.sqv2-book-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  border-radius: 4px 13px 13px 4px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(24, 20, 14, .16);
  transform-origin: left center;
  transition: transform .52s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, filter .35s ease;
  backface-visibility: hidden;
}

.sqv2-book-cover::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(90deg, rgba(0, 0, 0, .24), rgba(255, 255, 255, .12) 42%, rgba(0, 0, 0, 0));
  z-index: 3;
  pointer-events: none;
}

.sqv2-book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(20, 20, 20, .08);
  border-left-color: rgba(20, 20, 20, .18);
  border-radius: inherit;
  z-index: 4;
  pointer-events: none;
}

.sqv2-book-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform .52s cubic-bezier(.2, .8, .2, 1);
}

.sqv2-book-card:hover .sqv2-book-cover,
.sqv2-book-card:focus-visible .sqv2-book-cover {
  transform: translateY(-6px) rotateY(-20deg);
  box-shadow: 20px 26px 48px rgba(24, 20, 14, .18);
}

.sqv2-book-card:hover .sqv2-book-cover img,
.sqv2-book-card:focus-visible .sqv2-book-cover img {
  transform: scale(1.025);
}

.sqv2-book-card:hover .sqv2-book-visual::before,
.sqv2-book-card:focus-visible .sqv2-book-visual::before {
  transform: translateX(12px);
  box-shadow: 8px 10px 0 rgba(255, 255, 255, .9), 13px 16px 24px rgba(24, 20, 14, .11);
}

.sqv2-book-card:hover .sqv2-book-visual::after,
.sqv2-book-card:focus-visible .sqv2-book-visual::after {
  opacity: .32;
  transform: translateY(5px) scale(.88);
}

.sqv2-book-copy {
  display: block;
  text-align: center;
  max-width: 286px;
  margin: 0 auto;
}

.sqv2-book-copy strong {
  display: block;
  min-height: 44px;
  margin: 0 0 12px;
  color: #1d1a22;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 850;
  letter-spacing: -.012em;
}

.sqv2-book-copy em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(140, 115, 38, .30);
  background: #fffaf0;
  color: #8c7326;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sqv2-book-card:hover .sqv2-book-copy em,
.sqv2-book-card:focus-visible .sqv2-book-copy em {
  background: #d5af32;
  border-color: #d5af32;
  color: #14110b;
}

.sqv2-library-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 58px auto 0;
  padding: 0;
}

.sqv2-library-pagination a,
.sqv2-library-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(140, 115, 38, .28);
  background: #fffaf0;
  color: #1d1a22;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  border-radius: 999px;
}

.sqv2-library-pagination .current {
  background: #d5af32;
  border-color: #d5af32;
  color: #111;
  box-shadow: 0 12px 28px rgba(177, 144, 42, .24);
}

.sqv2-library-pagination a:hover {
  background: #1d1a22;
  border-color: #1d1a22;
  color: #fff;
}

.sqv2-library-reader-page,
.sqv2-library-legacy-page {
  background: #f4efe5;
  padding: 44px 0;
}

.sqv2-library-reader {
  background: #fff;
  border: 1px solid rgba(140, 115, 38, .2);
  padding: 22px;
  min-height: 460px;
  box-shadow: 0 24px 70px rgba(24, 20, 14, .08);
  overflow: hidden;
}

.sqv2-video-stack {
  display: grid;
  gap: 22px;
  margin: 0 0 34px;
}

.sqv2-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
  border: 1px solid rgba(140, 115, 38, .22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.sqv2-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ------------------------------------------------------------
   15. ABOUT (native kh-shell)
   ------------------------------------------------------------ */
.sqv2-body .sqv2-about-page-native {
  margin-top: 0;
  background: #f6f1e8;
  padding: 0;
}

.sqv2-body .sqv2-about-top-hero {
  margin-top: 112px;
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 66px 24px 78px;
  border-bottom: 1px solid rgba(157, 123, 31, .28);
}

.sqv2-body .sqv2-about-top-hero .container {
  max-width: 980px;
  margin: 0 auto;
}

.sqv2-body .sqv2-about-top-hero .breadcrumbs {
  justify-content: center;
  margin: 0 0 22px;
  color: var(--gold);
}

.sqv2-body .sqv2-about-top-hero .breadcrumbs span {
  color: var(--gold);
  opacity: .78;
}

.sqv2-body .sqv2-about-top-hero .eyebrow {
  display: none;
}

.sqv2-body .sqv2-about-top-hero h1 {
  margin: 0 auto 18px;
  color: #fff;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  letter-spacing: -.055em;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.08;
  max-width: 980px;
}

.sqv2-body .sqv2-about-top-hero p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.7;
}

.sqv2-body .sqv2-about-content-native {
  width: 100%;
  margin: 0;
  padding: 0 0 96px;
  background: #f6f1e8;
}

.sqv2-body .sqv2-about-content-native>.kh-shell,
.sqv2-body .sqv2-about-content-native .kh-shell {
  max-width: min(100% - 64px, 1320px);
  margin: 0 auto;
  padding: 72px 0 0;
  background: transparent;
  color: #171717;
}

.kh-anchor {
  scroll-margin-top: 140px;
}

.sqv2-body .kh-shell :where(.kh-story-block, .kh-parts-section, .kh-exhibit-section) {
  margin: 0 0 64px;
}

.sqv2-body .kh-shell .kh-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.sqv2-body .kh-shell .kh-media-card,
.sqv2-body .kh-shell .kh-text-card,
.sqv2-body .kh-shell .kh-continuation-card,
.sqv2-body .kh-shell .kh-exhibit-card,
.sqv2-body .kh-shell .kh-part-card,
.sqv2-body .kh-shell .kh-museum-nav-pill {
  border: 1px solid var(--sqv2-line);
  background: #fff;
  box-shadow: none;
}

.sqv2-body .kh-shell .kh-media-card {
  overflow: hidden;
  min-height: 360px;
}

.sqv2-body .kh-shell .kh-media-card img,
.sqv2-body .kh-shell .kh-exhibit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.sqv2-body .kh-shell .kh-media-card:hover img,
.sqv2-body .kh-shell .kh-exhibit-card:hover img {
  transform: scale(1.025);
}

.sqv2-body .kh-shell .kh-text-card,
.sqv2-body .kh-shell .kh-continuation-card {
  padding: 38px;
}

.kh-text-card--fixed {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kh-continuation-card--accent {
  border-left: 4px solid #d4af37;
}

.sqv2-body .kh-shell .kh-eyebrow,
.sqv2-body .kh-shell .kh-section-kicker,
.sqv2-body .kh-shell .kh-mini-eyebrow {
  color: var(--sqv2-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sqv2-body .kh-shell .kh-section-title,
.sqv2-body .kh-shell .kh-subtitle,
.sqv2-body .kh-shell .kh-exhibit-title {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  color: #171717;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.sqv2-body .kh-shell .kh-section-title {
  font-size: clamp(28px, 3vw, 42px);
  margin: 0;
}

.sqv2-body .kh-shell .kh-subtitle {
  font-size: clamp(24px, 2.2vw, 34px);
  margin: 0 0 18px;
}

.sqv2-body .kh-shell .kh-exhibit-title {
  font-size: 22px;
  margin: 0 0 14px;
}

.sqv2-body .kh-shell .kh-story-text,
.sqv2-body .kh-shell .kh-exhibit-text,
.sqv2-body .kh-shell p {
  font-size: 16px;
  line-height: 1.78;
  color: #3f403f;
  font-weight: 500;
}

.sqv2-body .kh-shell .kh-section-head {
  margin: 64px 0 26px;
  text-align: left;
}

html[dir="rtl"] .sqv2-body .kh-shell .kh-section-head {
  text-align: right;
}

.sqv2-body .kh-shell .kh-parts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.sqv2-body .kh-shell .kh-part-card {
  display: flex;
  gap: 14px;
  padding: 22px;
  align-items: flex-start;
  color: #171717;
  text-decoration: none;
  background: #fff;
  border-color: var(--sqv2-line);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
}

.sqv2-body .kh-shell .kh-part-card:hover,
.sqv2-body .kh-shell .kh-museum-nav-pill:hover {
  background: #fff;
  color: #171717;
  border-color: var(--sqv2-gold);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 34px rgba(30, 24, 12, .08);
}

.sqv2-body .kh-shell .kh-part-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border: 1px solid rgba(140, 115, 38, .45);
  color: #8c7326;
  background: #fffaf0;
  line-height: 1;
}

.sqv2-body .kh-shell .kh-part-card:hover .kh-part-num {
  background: #171717;
  color: #fff;
}

.sqv2-body .kh-shell .kh-part-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 3px;
}

.sqv2-body .kh-shell .kh-part-body strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  margin: 0;
  color: #171717;
}

.sqv2-body .kh-shell .kh-part-body small {
  display: block;
  color: #59616a;
  font-size: 13px;
  line-height: 1.45;
}

.sqv2-body .kh-shell .kh-part-card:hover small {
  color: #5f5a50;
}

.sqv2-body .kh-shell .kh-exhibit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sqv2-body .kh-shell .kh-exhibit-card {
  overflow: hidden;
}

.sqv2-body .kh-shell .kh-exhibit-media {
  height: 240px;
  background: #eee;
  overflow: hidden;
}

.sqv2-body .kh-shell .kh-exhibit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sqv2-body .kh-shell .kh-exhibit-body {
  padding: 28px;
}

.kh-exhibit-text {
  color: #4f4a43;
  margin: 0 0 12px;
}

.sqv2-body .kh-shell .kh-museum-nav-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 22px;
}

.sqv2-body .kh-shell .kh-museum-nav-pill {
  padding: 16px;
  text-decoration: none;
  color: #171717;
}

.sqv2-body .kh-shell .kh-museum-nav-pill:hover {
  background: #fff;
  color: #171717;
  border-color: var(--sqv2-gold);
}

.sqv2-body .kh-shell .kh-museum-nav-pill:hover .kh-museum-nav-pill-num {
  color: var(--sqv2-gold);
}

.kh-museum-nav-pill-num {
  color: #98721f;
  font-weight: 700;
}

.kh-museum-nav-pill-text strong {
  display: block;
  font-size: 14px;
}

.kh-museum-nav-pill-text {
  font-size: 12px;
  color: #666;
}

.kh-inline-note {
  font-size: 14px;
  color: #6a6259;
  margin: 0 0 14px;
  font-weight: 800;
}

.kh-slider {
  position: relative;
  height: 100%;
}

.kh-slider-track,
.kh-slide {
  height: 100%;
  margin: 0;
  display: grid;
}

.kh-slide {
  grid-area: 1/1;
  opacity: 0;
  transition: .3s;
}

.kh-slide.is-active {
  opacity: 1;
}

.kh-slide:not(.is-active) {
  display: none;
}

.kh-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  justify-content: center;
}

.kh-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .55);
  padding: 0;
}

.kh-slider-dot.is-active {
  background: #d4af37;
}

/* ------------------------------------------------------------
   16. SCIENCE / VIRTUAL / TOUR PAGES
   ------------------------------------------------------------ */
.sqv2-science-page,
.sqv2-virtual-page {
  background: #FCFBF9;
}

.sqv2-body .sqv2-science-page {
  overflow-x: clip;
}

.sqv2-body .sqv2-science-page .container {
  padding-top: 64px;
}

.sqv2-body .sqv2-science-page .sqv2-section-lead {
  display: none;
}

.sqv2-science-grid {
  margin-top: 0;
}

.sqv2-body .sqv2-science-card .news-card-body h3 {
  font-size: 18px;
  line-height: 1.24;
  letter-spacing: -.025em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sqv2-body .sqv2-science-page .sqv2-science-card {
  text-decoration: none;
}

.sqv2-body .sqv2-science-hero p {
  max-width: 820px;
}

/* NOTE: Science SINGLE article head now inherits the SAME light styling as News single
   (see section 13). The old dark `.sqv2-science-single .figma-article-head{background:#1a1a1a}`
   override has been removed so both pages are identical. */

.sqv2-section-lead {
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px 38px;
  margin: 0 0 34px;
  box-shadow: 0 18px 45px rgba(22, 22, 22, .055);
}

.sqv2-section-lead .eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
}

.sqv2-section-lead h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -.045em;
  color: #161616;
}

.sqv2-section-lead p {
  margin: 0;
  color: #5a6572;
  font-size: 17px;
  line-height: 1.65;
  max-width: 780px;
}

.sqv2-body .sqv2-virtual-page .container {
  padding-top: 68px;
  padding-bottom: 88px;
}

.sqv2-body .sqv2-virtual-tour-embed {
  background: #111;
  border: 1px solid rgba(140, 115, 38, .3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
  overflow: hidden;
}

.sqv2-body .sqv2-virtual-tour-embed iframe {
  display: block;
  width: 100%;
  height: min(72vh, 720px);
  min-height: 520px;
  filter: saturate(.95) contrast(1.02);
}

.sqv2-body .sqv2-virtual-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  color: #1A1A1A;
  padding: 18px 20px;
  border-top: 1px solid rgba(140, 115, 38, .22);
}

.sqv2-body .sqv2-virtual-support p {
  margin: 0;
  color: #59544b;
  font-size: 14px;
  line-height: 1.55;
}

.sqv2-body .sqv2-virtual-noscript {
  background: #fff;
  margin: 0;
  padding: 16px 20px;
}

.sqv2-action-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #151515;
  color: #151515;
  background: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: 13px;
  min-height: 48px;
  padding: 0 22px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.sqv2-action-button:hover {
  background: #151515;
  color: #fff;
  border-color: #151515;
}

.sqv2-action-button svg {
  transition: transform .2s ease;
}

.sqv2-action-button:hover svg {
  transform: translateX(3px);
}

.sqv2-body .sqv2-science-single .section-kicker {
  color: var(--gold);
}

/* Tour form */
.sqv2-tour-page {
  padding: 68px 0 96px;
}

.sqv2-tour-form {
  background: #FCFBF9;
  border: 1px solid var(--sqv2-soft-line);
  padding: 36px;
  box-shadow: 0 18px 46px rgba(26, 26, 26, .055);
}

.sqv2-body .sqv2-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
  margin-bottom: 26px;
}

.sqv2-body .sqv2-tour-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 850;
  color: #1A1A1A;
}

.sqv2-body .sqv2-tour-form :where(input, select) {
  height: 58px;
  border: 1px solid #e5dccf;
  background: #FCFBF9;
  color: #1A1A1A;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 650;
  outline: none;
  box-shadow: none;
}

.sqv2-body .sqv2-tour-form :where(input, select):focus {
  border-color: #98721F;
  box-shadow: 0 0 0 3px rgba(152, 114, 31, .14);
  background: #fff;
}

.sqv2-body .sqv2-tour-form ::placeholder {
  color: #7c746b;
  opacity: 1;
}

.sqv2-body .sqv2-tour-submit {
  margin-top: 26px;
  min-height: 56px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  color: #D4AF37;
  border: 1px solid #D4AF37;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(26, 26, 26, .14);
}

.sqv2-body .sqv2-tour-submit:hover {
  background: #D4AF37;
  color: #1A1A1A;
}

.sqv2-form-alert {
  border: 1px solid var(--sqv2-soft-line);
  padding: 16px 18px;
  margin: 0 0 20px;
  font-weight: 850;
}

.sqv2-form-alert.is-success {
  border-color: #8bbf91;
  background: #f1fbf2;
  color: #1f6a2a;
}

.sqv2-form-alert.is-error {
  border-color: #c98b8b;
  background: #fff5f5;
  color: #8a2b2b;
}

.sqv2-body .sqv2-tour-form input[name="arrival_time"] {
  direction: ltr;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

/* Date/time picker widget */
.sqv2-body .sqv2-picker-field {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.sqv2-body .sqv2-picker-field>input:not(.sqv2-native-picker) {
  flex: 1 1 auto;
  width: 100%;
  padding-right: 62px;
}

.sqv2-body .sqv2-picker-btn {
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: 56px;
  z-index: 6;
  pointer-events: auto;
  cursor: pointer;
  border: 0;
  border-left: 1px solid #e3d8c7;
  background: #FCFBF9;
  color: #98721F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  font-size: 18px;
  line-height: 1;
}

.sqv2-body .sqv2-picker-btn:hover,
.sqv2-body .sqv2-picker-btn:focus {
  background: #f4f1ea;
  color: #1A1A1A;
  outline: none;
}

.sqv2-body .sqv2-native-picker {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  border: 0;
  padding: 0;
  margin: 0;
}

html[dir="rtl"] .sqv2-body .sqv2-picker-field>input:not(.sqv2-native-picker) {
  padding-right: 16px;
  padding-left: 62px;
}

html[dir="rtl"] .sqv2-body .sqv2-picker-btn {
  right: auto;
  left: 1px;
  border-left: 0;
  border-right: 1px solid #e3d8c7;
}

html[dir="rtl"] .sqv2-body .sqv2-native-picker {
  right: auto;
  left: 2px;
}

.sqv2-body .sqv2-time-az {
  font-variant-numeric: tabular-nums;
}

.sqv2-body .sqv2-time-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  width: min(260px, 100%);
  max-height: 220px;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  background: #1A1A1A;
  border: 1px solid #98721F;
  box-shadow: 0 18px 40px rgba(26, 26, 26, .22);
}

.sqv2-body .sqv2-time-menu[hidden] {
  display: none;
}

.sqv2-body .sqv2-time-menu button {
  border: 1px solid rgba(212, 175, 55, .38);
  background: transparent;
  color: #fff;
  height: 38px;
  padding: 0 10px;
  font: inherit;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
}

.sqv2-body .sqv2-time-menu button:hover,
.sqv2-body .sqv2-time-menu button:focus {
  background: #D4AF37;
  color: #1A1A1A;
  outline: none;
}

html[dir="rtl"] .sqv2-body .sqv2-time-menu {
  right: auto;
  left: 0;
}

.sqv2-body .sqv2-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sqv2-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.sqv2-contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #FCFBF9;
  border: 1px solid var(--sqv2-line);
  padding: 26px;
  min-height: 142px;
  box-shadow: 0 22px 50px rgba(29, 26, 20, .06);
}

.sqv2-body .sqv2-contact-card-main {
  background: #FCFBF9;
  color: var(--sqv2-ink);
  border-color: #e3d8c7;
}

.sqv2-body .sqv2-contact-card-main h2 {
  color: #98721F;
}

.sqv2-body .sqv2-contact-card-main a {
  color: var(--sqv2-ink);
  text-shadow: none;
}

.sqv2-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(169, 126, 36, .10);
  border: 1px solid rgba(169, 126, 36, .30);
  color: var(--sqv2-gold);
  flex: 0 0 auto;
}

.sqv2-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sqv2-contact-card h2 {
  font-size: 13px;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-dark);
}

.sqv2-contact-card a,
.sqv2-contact-card p {
  margin: 0;
  color: inherit;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  text-decoration: none;
}

.sqv2-contact-card p {
  font-weight: 650;
}

.sqv2-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--sqv2-line);
  padding: 34px;
  margin-top: 24px;
}

.sqv2-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sqv2-contact-social {
  border-left: 1px solid var(--sqv2-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.sqv2-contact-social span {
  font-weight: 800;
  font-size: 20px;
  color: var(--sqv2-ink);
}

.sqv2-social-row {
  display: flex;
  gap: 12px;
}

.sqv2-social-row a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(169, 126, 36, 0.45);
  background: #fffaf0;
  color: var(--sqv2-gold);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.sqv2-social-row svg {
  width: 18px;
  height: 18px;
  display: block;
}

.sqv2-social-row a:hover,
.sqv2-social-row a:focus-visible {
  background: var(--sqv2-gold);
  border-color: var(--sqv2-gold);
  color: var(--sqv2-ink);
}

/* ------------------------------------------------------------
   18. SEARCH OVERLAY
   ------------------------------------------------------------ */
.sqv2-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, .72);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-h) + 44px) 24px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .22s ease;
}

.sqv2-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: hidden;
  overscroll-behavior: contain;
}

.sqv2-search-panel {
  width: min(100%, 760px);
  max-width: 760px;
  background: #fff;
  border: 1px solid rgba(140, 115, 38, .24);
  border-radius: 16px;
  padding: 34px;
  position: relative;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
  max-height: calc(100vh - var(--header-h) - 76px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.sqv2-search-panel h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.sqv2-search-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  color: #1A1A1A;
}

.sqv2-body .sqv2-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 12px;
  align-items: center;
}

.sqv2-body .sqv2-search-form input {
  min-width: 0;
  height: 54px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font-size: 16px;
  outline: none;
}

.sqv2-body .sqv2-search-form input:focus {
  border-color: var(--gold-dark);
}

.sqv2-body .sqv2-search-form button {
  height: 54px;
  padding: 0 24px;
  background: var(--gold);
  color: #171717;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}

.sqv2-search-suggestions {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  max-height: min(46vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  border-radius: var(--sqv2-radius-md);
}

.sqv2-search-suggestion {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: #fcfbf9;
  color: #1A1A1A;
}

.sqv2-search-suggestion:hover {
  border-color: rgba(140, 115, 38, .5);
  background: #fff8e8;
}

.sqv2-search-suggestion strong {
  font-size: 14px;
  line-height: 1.35;
}

.sqv2-search-suggestion span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-dark);
  white-space: nowrap;
}

.sqv2-body .sqv2-search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  margin: -34px 0 42px;
  position: relative;
  z-index: 2;
}

.sqv2-body .sqv2-search-page-form input {
  min-width: 0;
  height: 52px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font-size: 16px;
}

.sqv2-body .sqv2-search-page-form button {
  height: 52px;
  padding: 0 24px;
  background: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

html.sqv2-search-locked {
  overflow: hidden;
}

body.sqv2-search-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* ------------------------------------------------------------
   19. LEGAL PAGE
   ------------------------------------------------------------ */
.sqv2-legal-page .container {
  max-width: 980px;
}

.sqv2-legal-content {
  background: #fff;
  border: 1px solid rgba(152, 114, 31, .16);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 18px 50px rgba(26, 26, 26, .06);
}

.sqv2-legal-section+.sqv2-legal-section {
  margin-top: 28px;
}

.sqv2-legal-section h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.25;
  margin: 0 0 12px;
  color: #1A1A1A;
}

.sqv2-legal-section p {
  font-size: 16px;
  line-height: 1.78;
  color: #3a342d;
  margin: 0 0 12px;
}

.sqv2-legal-section p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: #1A1A1A;
  color: rgba(255, 255, 255, .78);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 44px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 24px;
}

.footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
}

.footer h4 {
  color: #fff;
  margin: 0 0 24px;
  font-family: var(--ui-font);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin: 0 0 13px;
  font-size: 14px;
}

.footer-grid ul a {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.footer a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social .icon-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 16px;
}

.contact-row svg {
  color: var(--gold);
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.footer-bottom .links {
  display: flex;
  gap: 24px;
}

.sqv2-body .footer,
.sqv2-body .footer :where(h1, h2, h3, h4, h5, h6, a, p, span, li, .contact-row) {
  text-transform: none;
  letter-spacing: normal;
}

.sqv2-body .footer .contact-row a {
  font-weight: 600;
}

/* ------------------------------------------------------------
   21. MAP CHOICE MODAL
   ------------------------------------------------------------ */
.sqv2-map-choice {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, .58);
  place-items: end center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.sqv2-body .sqv2-map-choice[hidden] {
  display: none;
}

.sqv2-map-choice.is-open,
.sqv2-body .sqv2-map-choice.is-open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

.sqv2-map-choice-panel {
  width: min(100%, 420px);
  background: #FCFBF9;
  border: 1px solid #e3d8c7;
  padding: 26px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
  position: relative;
}

.sqv2-map-choice-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.12;
}

.sqv2-map-choice-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  background: #fff;
  border: 1px solid #e3d8c7;
  padding: 0 16px;
  margin-top: 10px;
  font-weight: 850;
  color: #1A1A1A;
}

.sqv2-map-choice-panel a:hover {
  border-color: #98721F;
  color: #98721F;
}

.sqv2-map-choice-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid #e3d8c7;
  background: #fff;
  font-size: 24px;
  line-height: 1;
}

body.sqv2-map-choice-open {
  overflow: hidden;
}

@media (min-width:901px) {
  .sqv2-map-choice {
    display: none;
  }
}

@media (max-width:900px) {
  .sqv2-map-choice {
    display: grid;
  }
}

/* ------------------------------------------------------------
   22. ARTICLE MEDIA VIEWER (slider + fullscreen)
   ------------------------------------------------------------ */
.sqv2-body .sqv2-article-media-viewer {
  --sqv2-article-viewer-w: 920px;
  --sqv2-article-viewer-h: 616px;
  --sqv2-article-viewer-ratio: 920 / 616;
  position: relative;
  width: min(100%, var(--sqv2-article-viewer-w));
  margin: 0 auto 34px;
  background: transparent;
  border: 0;
  overflow: visible;
  isolation: isolate;
}

.sqv2-body .sqv2-article-media-viewer--district {
  width: min(100%, var(--sqv2-article-viewer-w));
  margin: 0 auto 34px;
  align-self: center;
}

.sqv2-body .sqv2-article-media-viewer__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: var(--sqv2-article-viewer-ratio);
  height: auto;
  max-height: var(--sqv2-article-viewer-h);
  overflow: hidden;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sqv2-body .sqv2-article-media-viewer__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.sqv2-body .sqv2-article-media-viewer__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px) scale(.995);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.sqv2-body .sqv2-article-media-viewer__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sqv2-body .sqv2-article-media-viewer__slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sqv2-body .sqv2-article-media-viewer__controls {
  margin: 14px auto 0;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 330px);
}

.sqv2-body .sqv2-article-media-viewer__controlbar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(140, 115, 38, .18);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(31, 25, 13, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sqv2-body .sqv2-article-media-viewer__button {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid rgba(140, 115, 38, .24);
  background: #fff;
  color: #171717;
  display: inline-grid;
  place-items: center;
  line-height: 1;
  font-size: 22px;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.sqv2-body .sqv2-article-media-viewer__button:hover,
.sqv2-body .sqv2-article-media-viewer__button:focus-visible {
  background: #171717;
  border-color: #171717;
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(26, 26, 26, .12);
  outline: none;
}

.sqv2-body .sqv2-article-media-viewer__fullscreen {
  font-size: 15px;
}

.sqv2-body .sqv2-article-media-viewer__counter {
  min-width: 68px;
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #1f1b14;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.sqv2-body .sqv2-article-media-viewer__counter em {
  color: rgba(140, 115, 38, .55);
  font-style: normal;
  font-weight: 700;
}

.sqv2-body .sqv2-article-media-viewer__progress {
  width: min(100%, 236px);
  height: 2px;
  overflow: hidden;
  background: rgba(140, 115, 38, .16);
}

.sqv2-body .sqv2-article-media-viewer__progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width .28s ease;
}

.sqv2-body .sqv2-article-media-viewer__dots,
.sqv2-body .sqv2-article-media-viewer__dot {
  display: none;
}

.sqv2-body .sqv2-article-media-viewer__modal-close {
  position: fixed;
  top: max(28px, env(safe-area-inset-top));
  right: max(30px, env(safe-area-inset-right));
  z-index: 1000002;
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  background: rgba(26, 26, 26, .88);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.sqv2-body .sqv2-article-media-viewer__modal-close:hover,
.sqv2-body .sqv2-article-media-viewer__modal-close:focus-visible {
  transform: translateY(-1px);
  background: #171717;
  color: #d4af37;
  outline: none;
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  gap: 18px;
  padding: clamp(20px, 4vh, 44px) clamp(18px, 4vw, 54px);
  margin: 0;
  background: rgba(246, 242, 232, .72);
  backdrop-filter: blur(20px) saturate(.95);
  -webkit-backdrop-filter: blur(20px) saturate(.95);
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__track {
  width: 100%;
  height: 100%;
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__viewport {
  aspect-ratio: auto;
  width: min(100%, 1180px);
  height: min(82vh, 800px);
  max-height: min(82vh, 800px);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 52px rgba(17, 17, 17, .20));
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__controls {
  grid-row: 2;
  width: min(100%, 330px);
  margin: 0;
  min-height: 44px;
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__controls.has-single {
  display: none;
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__controls.has-gallery {
  grid-row: 2;
  width: min(100%, 230px);
  min-height: 46px;
  margin: 0;
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__controlbar {
  min-height: 46px;
  padding: 5px;
  gap: 6px;
  border: 1px solid rgba(140, 115, 38, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(31, 25, 13, .14);
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__progress {
  display: none;
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen .sqv2-article-media-viewer__fullscreen {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 1000001;
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: none;
  background: #171717;
  border-color: #171717;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.sqv2-body .sqv2-article-media-viewer.is-fullscreen>.sqv2-article-media-viewer__modal-close {
  position: fixed;
  top: max(24px, env(safe-area-inset-top));
  right: max(28px, env(safe-area-inset-right));
  z-index: 1000002;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 50%;
  background: #171717;
  color: #fff;
  font-size: 29px;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
  cursor: pointer;
}

html.sqv2-slider-fullscreen-open,
body.sqv2-slider-fullscreen-open {
  overflow: hidden;
}

body.sqv2-slider-fullscreen-open:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999998;
  background: rgba(246, 242, 232, .66);
  backdrop-filter: blur(14px) saturate(.92);
  -webkit-backdrop-filter: blur(14px) saturate(.92);
}

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

.sqv2-body .topbar-contact--phone-only,
.sqv2-body .topbar-contact--phone-only .topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: rgba(255, 255, 255, .82);
}

.sqv2-body .topbar-contact--phone-only .topbar-phone:hover {
  color: var(--gold);
}

.sqv2-body .topbar-contact--phone-only svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.15;
}

.sqv2-body .sqv2-copy-link.copied {
  background: var(--gold);
  border-color: var(--gold);
  color: #1A1A1A;
}

.sqv2-body :where(img, video, iframe, canvas, svg) {
  max-width: 100%;
}

/* Global corner-radius reset (kept minimal; library book cards restored) */
.sqv2-body *:not(.sqv2-library-page *):not(.sqv2-book-card *):not(.sqv2-book-cover *):not(.df-ui *):not(.df-book-wrapper *):not(.df-container *):not([class*="df-"]) {
  border-radius: 0;
}

.sqv2-body .sqv2-library-page :where(.sqv2-book-card, .sqv2-book-card *, .sqv2-book-cover, .sqv2-book-cover *) {
  border-radius: revert-layer;
}

.sqv2-body :where(.primary-btn, .hero-cta, .section-action, .text-link, .sqv2-news-filter-tabs .chip, .sqv2-pagination a, .sqv2-pagination span, .sqv2-library-pagination a, .sqv2-library-pagination span) {
  border-radius: 999px;
}

.sqv2-body :where(.dropdown, .mobile-menu, .sqv2-search-suggestions) {
  border-radius: var(--sqv2-radius-md);
}

.sqv2-body :where(.page-hero, .sqv2-news-hero, .districts-hero, .sqv2-about-hero)::before,
.sqv2-body :where(.page-hero, .sqv2-news-hero, .districts-hero, .sqv2-about-hero)::after,
.sqv2-body .info-card::before {
  display: none;
  content: none;
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  background: var(--gold);
  color: #1A1A1A;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  transition: .2s;
  border-radius: 999px;
}

.primary-btn:hover {
  background: #fff;
}

/* ------------------------------------------------------------
   24. WP ADMIN BAR
   ------------------------------------------------------------ */
body.admin-bar.sqv2-body .site-header {
  top: 32px;
}

body.admin-bar.sqv2-body .mobile-menu {
  top: calc(112px + 32px);
}

body.admin-bar.sqv2-body .sqv2-search-overlay {
  padding-top: 32px;
}

body.admin-bar .sqv2-body .sqv2-article-media-viewer__modal-close {
  top: 60px !important;
}

body.admin-bar .sqv2-body .sqv2-article-media-viewer.is-fullscreen>.sqv2-article-media-viewer__modal-close {
  top: 58px !important;
}

#wpadminbar #wp-admin-bar-wp-logo,
#wpadminbar #wp-admin-bar-sqv2-dashboard,
#wpadminbar .sqv2-ab-dashicon {
  display: none;
}

#wpadminbar .ab-icon,
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-label:before,
#wpadminbar .dashicons:before {
  content: none;
  display: none;
  width: 0;
  margin: 0;
}

#wpadminbar .ab-item {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1280px) {

  .sqv2-body .news-airbnb-card,
  .sqv2-body .district-section .district-card {
    flex-basis: calc((100% - 44px)/3);
  }
}

@media (max-width:1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .sqv2-body .district-section .district-card {
    flex-basis: calc((100% - 48px)/3);
    width: calc((100% - 48px)/3);
  }

  .sqv2-library-source,
  .sqv2-books-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sqv2-book-card {
    max-width: 250px;
  }

  .kh-parts-grid,
  .kh-exhibit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:1000px) {
  .sqv2-body .kh-shell .kh-split-section {
    grid-template-columns: 1fr;
  }

  .sqv2-body .kh-shell .kh-parts-grid,
  .sqv2-body .kh-shell .kh-exhibit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:980px) {

  .sqv2-body .home-news .section-head,
  .sqv2-body .district-section .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sqv2-body .news-airbnb-actions,
  .sqv2-body .area-controls {
    justify-content: flex-end;
    width: 100%;
  }

  .sqv2-body .news-airbnb-card,
  .sqv2-body .district-section .district-card {
    flex-basis: calc((100% - 24px)/2);
    width: calc((100% - 24px)/2);
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .district-detail-hero-grid,
  .district-article-grid,
  .kh-split-section {
    grid-template-columns: 1fr;
  }

  .district-side-nav {
    position: static;
  }

  .sqv2-timeline-modern:before {
    left: 22px;
  }

  .sqv2-timeline-modern-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 52px;
  }

  .sqv2-timeline-modern-marker {
    left: 22px;
    top: 22px;
    transform: translateX(-50%);
  }

  .sqv2-timeline-modern-item.is-left .sqv2-timeline-modern-card,
  .sqv2-timeline-modern-item.is-right .sqv2-timeline-modern-card {
    grid-column: 1;
  }

  .sqv2-timeline-modern-card {
    grid-template-columns: 1fr;
  }

  .sqv2-timeline-modern-media {
    height: 220px;
    min-height: 0;
  }
}

@media (max-width:900px) {
  .sqv2-body .district-section .district-card {
    flex-basis: calc((100% - 24px)/2);
    width: calc((100% - 24px)/2);
  }

  .sqv2-topic-card-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sqv2-article-nav,
  .sqv2-related-grid,
  .district-page-card,
  .district-page-card:nth-child(even),
  .district-detail-hero-grid,
  .district-article-grid {
    grid-template-columns: 1fr;
  }

  .district-page-card:nth-child(even) img {
    order: 0;
  }

  .district-page-card,
  .district-detail-shell .district-detail-media {
    border-radius: 22px;
  }

  .sqv2-body .district-page-card .areas-page-info {
    padding: 30px;
  }

  .sqv2-contact-grid,
  .sqv2-contact-panel {
    grid-template-columns: 1fr;
  }

  .sqv2-contact-social {
    border-left: 0;
    border-top: 1px solid var(--sqv2-line);
    padding-top: 24px;
  }

  .sqv2-virtual-fallback {
    grid-template-columns: 1fr;
  }

  .share-rail {
    flex-direction: row;
    justify-content: flex-start;
    border-bottom: 1px solid var(--sqv2-line);
    padding-bottom: 18px;
  }

  .share-rail span {
    writing-mode: initial;
    transform: none;
    margin-right: 8px;
  }

  .related .related-grid {
    grid-template-columns: 1fr;
  }

  .sqv2-header-search {
    display: none;
  }

  .mobile-menu {
    top: 112px;
  }

  .figma-article-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* District side nav → horizontal chips */
  .sqv2-body .district-side-nav {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    padding: 14px 0 12px;
    margin: 0 0 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    line-height: 1;
  }

  .sqv2-body .district-side-nav::-webkit-scrollbar {
    display: none;
  }

  .sqv2-body .district-side-nav>span {
    display: none;
  }

  .sqv2-body .district-side-nav-scroll {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    width: max-content;
    min-width: 100%;
    padding: 2px 0;
    margin: 0;
    white-space: nowrap;
    user-select: none;
    overflow-x: auto;
    touch-action: pan-x;
  }

  .sqv2-body .district-side-nav-scroll::-webkit-scrollbar {
    display: none;
  }

  .sqv2-body .district-side-nav-scroll a,
  .sqv2-body .district-side-nav a {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    height: 42px;
    min-height: 42px;
    line-height: 42px;
    padding: 0 18px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3d8c7;
    border-radius: 999px;
    background: #FCFBF9;
    color: #24211c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(15, 15, 15, .045);
    transform: none;
    top: 0;
  }

  .sqv2-body .district-side-nav-scroll a.active,
  .sqv2-body .district-side-nav-scroll a:hover,
  .sqv2-body .district-side-nav a.active,
  .sqv2-body .district-side-nav a:hover {
    background: #98721F;
    border-color: #98721F;
    color: #fff;
  }

  .sqv2-body .district-side-nav.is-dragging,
  .sqv2-body .district-side-nav-scroll.is-dragging {
    cursor: grabbing;
  }

  .sqv2-body .district-side-nav.is-dragging a,
  .sqv2-body .district-side-nav-scroll.is-dragging a {
    pointer-events: none;
  }

  .sqv2-body .district-article {
    padding: 34px;
  }

  .sqv2-body .sqv2-virtual-tour-embed iframe {
    height: 62vh;
    min-height: 420px;
  }

  .sqv2-body .sqv2-science-page .container {
    padding-top: 44px;
  }

  .sqv2-body .district-detail-shell {
    margin-top: 100px;
  }

  .sqv2-body .sqv2-virtual-support {
    flex-direction: column;
    align-items: flex-start;
  }

  .sqv2-article-nav>div:nth-child(2) {
    text-align: left;
  }
}

@media (max-width:760px) {
  :root {
    --header-h: 96px;
  }

  .container,
  .sqv2-body :where(.container, .article-container, .nav-inner, .topbar-inner) {
    padding-left: 20px;
    padding-right: 20px;
    max-width: calc(100% - 32px);
  }

  .sqv2-body .topbar {
    height: 28px;
  }

  .topbar-contact a[href^="tel"],
  .topbar-contact .sep {
    display: none;
  }

  .sqv2-body .navbar {
    height: 68px;
  }

  .sqv2-body .nav-inner {
    height: 68px;
    padding: 0 18px;
    gap: 10px;
  }

  .sqv2-body .brand {
    height: 58px;
    width: 92px;
    flex-basis: 92px;
  }

  .sqv2-body .brand img {
    height: 48px;
    max-width: 92px;
  }

  .sqv2-body .sqv2-header-search,
  .sqv2-body .menu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .sqv2-body .mobile-menu {
    top: 96px;
  }

  .sqv2-body .hero {
    min-height: calc(100svh - 96px);
    margin-top: 96px;
    height: auto;
    padding-bottom: 132px;
  }

  .hero-main {
    height: auto;
    min-height: calc(100vh - 232px);
    padding: 44px 22px 20px;
  }

  .hero-center {
    width: 100%;
  }

  .hero-year {
    font-size: 68px;
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .side-year {
    display: none;
  }

  .sqv2-body .page-hero,
  .sqv2-body .figma-article-head,
  .sqv2-body .district-detail-shell,
  .sqv2-body .sqv2-about-top-hero {
    margin-top: 96px;
  }

  /* Hero timeline → horizontal scroll */
  .sqv2-body .hero-timeline {
    left: 0;
    right: 0;
    bottom: 0;
    height: 126px;
    padding: 0 16px 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
  }

  .sqv2-body .hero-timeline::-webkit-scrollbar {
    display: none;
  }

  .sqv2-body .hero-timeline .timeline-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 14px;
    width: max-content;
    min-width: max-content;
    padding: 0 4px 10px;
    margin: 0;
  }

  .sqv2-body .hero-timeline .timeline-node {
    flex: 0 0 72px;
    min-width: 72px;
    max-width: 72px;
  }

  .sqv2-body .hero-timeline .timeline-thumb {
    width: 68px;
    height: 42px;
  }

  .sqv2-body .hero-timeline .timeline-line,
  .sqv2-body .hero-timeline .timeline-progress {
    display: none;
  }

  .info-cards,
  .home-news,
  .areas-section {
    padding: 64px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .quote-section {
    padding: 72px 0;
  }

  .quote-text {
    font-size: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .news-grid,
  .sqv2-body .sqv2-news-grid-compact.news-grid,
  .sqv2-topic-card-grid {
    grid-template-columns: 1fr;
  }

  /* Home/District carousels → 1 per view */
  .sqv2-body .home-news,
  .sqv2-body .district-section {
    padding: 58px 0 64px;
  }

  .sqv2-body .home-news .container,
  .sqv2-body .areas-section.district-section .container,
  .sqv2-body .district-section .container {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .sqv2-body .home-news .section-head,
  .sqv2-body .district-section .section-head {
    display: block;
  }

  .sqv2-body .home-news .section-title,
  .sqv2-body .district-section .section-title,
  .sqv2-body .home-news .section-title-gold,
  .sqv2-body .district-section .section-title-gold {
    font-size: 25px;
    line-height: 1.08;
  }

  .sqv2-body .news-airbnb-actions,
  .sqv2-body .area-controls {
    display: grid;
    grid-template-columns: 34px 34px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    width: 100%;
    margin: 14px 0 0;
    padding: 0;
    box-sizing: border-box;
  }

  .sqv2-body .news-airbnb-actions .round-btn,
  .sqv2-body .area-controls .round-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    flex: 0 0 34px;
  }

  .sqv2-body .news-airbnb-actions .section-action,
  .sqv2-body .area-controls .section-action,
  .sqv2-body .district-see-all {
    width: 100%;
    min-width: 0;
    height: 38px;
    min-height: 38px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .07em;
  }

  .sqv2-body .news-airbnb-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 16px;
    width: 100%;
    margin: 18px 0 0;
    padding: 4px 0 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sqv2-body .news-airbnb-track::-webkit-scrollbar {
    display: none;
  }

  .sqv2-body .news-airbnb-card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin: 0;
  }

  .sqv2-body .news-airbnb-media {
    height: 196px;
    min-height: 196px;
  }

  .sqv2-body .district-strip,
  .sqv2-body .area-strip.district-strip {
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;
    width: 100%;
    margin: 18px 0 0;
    padding: 4px 0 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sqv2-body .district-strip::-webkit-scrollbar {
    display: none;
  }

  .sqv2-body .district-section .district-card,
  .sqv2-body .district-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    scroll-snap-align: start;
    height: auto;
    min-height: 430px;
  }

  /* News filter tabs → scrollable chips */
  .sqv2-body .sqv2-news-hero {
    margin-top: 100px;
    padding: 54px 20px 72px;
  }

  .sqv2-body .sqv2-news-hero h1 {
    font-size: 40px;
  }

  .sqv2-body .sqv2-news-page>.container {
    width: min(100% - 32px, 1240px);
  }

  .sqv2-body .sqv2-news-page {
    padding-top: 24px;
  }

  .sqv2-body .sqv2-news-page .filters.sqv2-news-filter-tabs {
    width: 100%;
    margin: 0 0 32px;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sqv2-body .sqv2-news-page .filters.sqv2-news-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .sqv2-body .sqv2-news-filter-tabs .filter-title {
    display: none;
  }

  .sqv2-body .sqv2-news-filter-tabs .chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--sqv2-soft-line);
    background: #fff;
    color: #24211c;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(15, 15, 15, .055);
  }

  .sqv2-body .sqv2-news-filter-tabs .chip.active {
    background: #9d7b1f;
    color: #fff;
    border-color: #9d7b1f;
  }

  /* Article layout mobile */
  .article-container,
  .sqv2-body .article-container {
    width: min(100% - 32px, 980px);
  }

  .figma-article-body {
    padding-top: 28px;
  }

  .sqv2-body .figma-article-content {
    font-size: 14px;
    line-height: 1.72;
  }

  .sqv2-body .figma-article-layout {
    display: block;
  }

  .sqv2-body .share-rail {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 20px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--sqv2-soft-line);
    width: 100%;
  }

  .sqv2-body .share-rail span {
    writing-mode: initial;
    transform: none;
    margin: 0 4px 0 0;
    font-size: 11px;
    letter-spacing: .12em;
    line-height: 1;
  }

  .sqv2-body .share-rail a,
  .sqv2-body .share-rail button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    background: #fff;
  }

  /* Timeline modern mobile handled in 980 breakpoint */
  .sqv2-search-overlay {
    padding: 105px 14px 22px;
  }

  .sqv2-search-panel {
    padding: 22px 16px;
    max-height: calc(100vh - 120px);
  }

  .sqv2-search-suggestions {
    max-height: 42vh;
  }

  .sqv2-body .sqv2-search-form,
  .sqv2-body .sqv2-search-page-form {
    grid-template-columns: 1fr;
  }

  .sqv2-body .sqv2-search-form button,
  .sqv2-body .sqv2-search-page-form button {
    width: 100%;
  }

  .sqv2-body .sqv2-about-top-hero {
    margin-top: 100px;
    padding: 48px 20px 58px;
  }

  .sqv2-body .sqv2-about-top-hero h1 {
    font-size: 38px;
  }

  .sqv2-body .sqv2-about-content-native>.kh-shell,
  .sqv2-body .sqv2-about-content-native .kh-shell {
    max-width: calc(100% - 40px);
    padding-top: 44px;
  }

  .sqv2-body .kh-shell .kh-parts-grid,
  .sqv2-body .kh-shell .kh-exhibit-grid,
  .sqv2-body .kh-shell .kh-museum-nav-inline {
    grid-template-columns: 1fr;
  }

  .sqv2-body .kh-shell .kh-text-card,
  .sqv2-body .kh-shell .kh-continuation-card {
    padding: 24px;
  }

  .sqv2-body .sqv2-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sqv2-body .sqv2-tour-form {
    padding: 22px;
  }

  .sqv2-body .sqv2-tour-submit {
    width: 100%;
  }

  .sqv2-contact-card a,
  .sqv2-contact-card p {
    font-size: 17px;
  }

  .sqv2-body .sqv2-contact-grid {
    margin-top: -22px;
    gap: 16px;
  }

  .sqv2-library-source,
  .sqv2-books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 18px;
  }

  .sqv2-book-visual {
    width: min(100%, 190px);
  }

  .sqv2-book-copy strong {
    font-size: 14.5px;
    min-height: 38px;
  }

  .sqv2-library-pagination a,
  .sqv2-library-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
  }

  body.admin-bar .sqv2-body .sqv2-article-media-viewer__modal-close {
    top: 52px !important;
  }
}

@media (max-width:640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sqv2-body .district-section .district-card {
    flex-basis: 86vw;
    width: 86vw;
    min-height: 330px;
  }

  .sqv2-body .sqv2-contact-grid {
    margin-top: 0;
    padding-top: 22px;
  }

  .sqv2-body .sqv2-search-page-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width:460px) {

  .sqv2-library-source,
  .sqv2-books-grid {
    grid-template-columns: 1fr;
  }

  .sqv2-book-visual {
    width: min(72vw, 230px);
  }
}

@media (max-width:360px) {
  .sqv2-body .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sqv2-body .brand {
    width: 78px;
    flex-basis: 78px;
  }

  .sqv2-body .brand img {
    height: 42px;
    max-width: 78px;
  }

  .sqv2-body .news-airbnb-actions,
  .sqv2-body .area-controls {
    grid-template-columns: 32px 32px minmax(0, 1fr);
    gap: 6px;
  }

  .sqv2-body .section-action,
  .sqv2-body .district-see-all {
    font-size: 9.5px;
    padding: 0 12px;
  }
}



/* ------------------------------------------------------------
   Mobile vertical rhythm refinements
   - Mobile only. Desktop layout is intentionally unchanged.
   - Keeps breadcrumbs, article heads and related blocks clear of the fixed header.
   ------------------------------------------------------------ */
@media (max-width:760px) {
  .sqv2-body .page-hero {
    padding-top: 88px;
    padding-bottom: 58px;
  }

  .sqv2-body .page-hero .breadcrumbs,
  .sqv2-body .figma-article-head .breadcrumbs,
  .sqv2-body .sqv2-article-head-light .breadcrumbs {
    margin-top: 0;
    margin-bottom: 26px;
    padding-inline: 6px;
    line-height: 1.45;
    row-gap: 8px;
  }

  .sqv2-body .figma-article-head.sqv2-article-head-light,
  .sqv2-body .sqv2-article-head-light {
    padding-top: 86px;
    padding-bottom: 46px;
  }

  .sqv2-body .sqv2-related-news {
    width: min(100% - 40px, 920px);
    margin-top: 48px;
    margin-bottom: 68px;
    padding-top: 32px;
  }

  .sqv2-body .sqv2-related-news .section-head {
    display: block;
    margin-bottom: 24px;
  }

  .sqv2-body .sqv2-related-news h2 {
    font-size: clamp(27px, 7.5vw, 32px);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .sqv2-body .sqv2-related-news .section-action {
    width: fit-content;
    min-width: 0;
    margin-top: 2px;
    padding-inline: 18px;
  }
}

@media (max-width:420px) {
  .sqv2-body .page-hero {
    padding-top: 82px;
  }

  .sqv2-body .figma-article-head.sqv2-article-head-light,
  .sqv2-body .sqv2-article-head-light {
    padding-top: 78px;
  }

  .sqv2-body .page-hero h1 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .sqv2-body .page-hero p {
    line-height: 1.7;
  }
}

/* WP admin bar mobile */
@media (max-width:782px) {
  body.admin-bar.sqv2-body .site-header {
    top: 46px;
  }

  body.admin-bar.sqv2-body .mobile-menu {
    top: calc(96px + 46px);
  }

  .sqv2-body #wpadminbar {
    position: fixed;
  }
}