:root {
  color-scheme: dark;
  --product-bg: #0b0b0c;
  --product-surface: #151515;
  --product-surface-elevated: #1c1c1e;
  --product-text-primary: #f5f5f7;
  --product-text-secondary: #a1a1a6;
  --product-text-muted: #6e6e73;
  --product-accent: #f5a524;
  --product-accent-secondary: #d6a56d;
  --product-stone: #c7b299;
  --product-border: rgba(255, 255, 255, 0.08);
  --product-glow: rgba(245, 165, 36, 0.14);
  --bg: var(--product-bg);
  --panel: var(--product-surface);
  --panel-2: var(--product-surface-elevated);
  --surface: rgba(28, 28, 30, 0.82);
  --surface-strong: rgba(28, 28, 30, 0.92);
  --line: var(--product-border);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: var(--product-text-primary);
  --muted: var(--product-text-secondary);
  --muted-2: var(--product-text-muted);
  --green: #6abf91;
  --gold: var(--product-accent);
  --copper: var(--product-accent-secondary);
  --copper-2: var(--product-accent-secondary);
  --brand-red: #b74432;
  --red: #d66d62;
  --blue: #5f8fba;
  --purple: #9d83ce;
  --focus: #75c99a;
  --bone: var(--product-stone);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 10px 32px rgba(0, 0, 0, 0.28);
}

/* Profile section nav must never become a horizontal scroller. */
.atomic-site-page > .atomic-page-index,
.gobekli-public-page .atomic-page-index {
  position: sticky !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 80 !important;
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  align-items: center !important;
  justify-content: stretch !important;
  gap: clamp(4px, 1.2vw, 18px) !important;
  width: 100% !important;
  max-width: none !important;
  height: clamp(62px, 7.6vh, 82px) !important;
  margin: 0 !important;
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  box-sizing: border-box !important;
  padding: 0 clamp(10px, 4vw, 92px) !important;
  scrollbar-width: none !important;
}

.atomic-site-page > .atomic-page-index.nav-pinned,
.gobekli-public-page .atomic-page-index.nav-pinned {
  position: fixed !important;
  width: 100% !important;
}

.atomic-site-page > .atomic-page-index::-webkit-scrollbar,
.gobekli-public-page .atomic-page-index::-webkit-scrollbar {
  display: none !important;
}

.atomic-site-page > .atomic-page-index a,
.gobekli-public-page .atomic-page-index a {
  display: flex !important;
  flex: 1 1 auto !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  min-height: clamp(38px, 5.4vh, 48px) !important;
  width: 100% !important;
  padding: 0 clamp(4px, 0.9vw, 12px) !important;
  overflow: hidden !important;
  text-align: center !important;
  white-space: normal !important;
  line-height: 1.08 !important;
  font-size: clamp(10px, 1.35vw, 15px) !important;
}

.atomic-site-page > .atomic-page-index.nav-pinned + .atomic-page-body {
  padding-top: clamp(62px, 7.6vh, 82px) !important;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scrollbar-color: rgba(216, 167, 93, 0.72) rgba(4, 7, 10, 0.88);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(3, 6, 9, 0.96), rgba(7, 10, 12, 0.92)),
    #030609;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  border: 2px solid rgba(3, 6, 9, 0.96);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(238, 190, 112, 0.82), rgba(158, 111, 61, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 211, 0.28),
    0 0 16px rgba(226, 168, 72, 0.18);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 211, 141, 0.96), rgba(190, 131, 65, 0.84));
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

#app,
.app-shell,
.home-surface,
main,
section,
article {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(31, 33, 33, 0.86);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background 140ms ease,
    box-shadow 140ms ease;
}

button:hover,
button.active {
  border-color: rgba(208, 139, 92, 0.78);
  background: rgba(50, 38, 31, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#app {
  display: block;
  min-height: 100vh;
  background: var(--product-bg);
}

#app.app-loading {
  position: relative;
  display: block;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(226, 168, 72, 0.12), transparent 30%),
    #030609;
}

#app.app-loading > * {
  display: none;
}

#app.app-loading::before {
  content: "T";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(226, 168, 72, 0.46);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, rgba(226, 168, 72, 0.18), transparent 54%),
    rgba(3, 6, 9, 0.72);
  color: #e5ba72;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 700;
  box-shadow:
    0 0 0 8px rgba(226, 168, 72, 0.045),
    0 0 60px rgba(226, 168, 72, 0.18);
  transform: translate(-50%, -82px);
}

#app.app-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 168, 72, 0.58), transparent);
  transform: translate(-50%, 26px);
}

.sidebar,
.detail-panel {
  overflow: auto;
  border-color: var(--line);
  background: var(--panel);
}

.sidebar {
  border-right: 1px solid var(--line);
  padding: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(183, 68, 50, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(24, 22, 20, 0.98), rgba(13, 14, 13, 0.98));
}

.detail-panel {
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% -10%, rgba(208, 139, 92, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(21, 20, 18, 0.98), rgba(12, 13, 12, 0.98));
}

.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  width: 42px;
  height: 46px;
  flex: 0 0 42px;
  border: 1px solid rgba(201, 46, 34, 0.45);
  border-radius: 7px;
  background: #efe7da;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 0 3px rgba(201, 46, 34, 0.08);
}

.brand h1 {
  margin: 0;
  color: #fff4eb;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.brand p,
.detail-header p,
.search span,
section h2,
#graphStats {
  color: var(--muted);
}

.brand p {
  margin: 5px 0 0;
  color: #d9b7a9;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.search {
  display: grid;
  gap: 7px;
  margin: 18px 0;
}

.search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 12, 12, 0.86);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

.search input:focus {
  border-color: rgba(208, 139, 92, 0.86);
  box-shadow: 0 0 0 3px rgba(208, 139, 92, 0.11);
}

.search-results {
  display: grid;
  gap: 6px;
  margin: -8px 0 14px;
}

.search-results[hidden] {
  display: none;
}

.search-results button {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 10px 11px;
  text-align: left;
  border-radius: 10px;
  background: rgba(25, 27, 27, 0.92);
}

.search-results strong {
  font-size: 13px;
}

.search-results span,
.search-results small {
  color: var(--muted);
  font-size: 11px;
}

.search-results small {
  display: block;
  line-height: 1.35;
}

.search-results button.best-result {
  border-color: rgba(208, 139, 92, 0.72);
  background: linear-gradient(135deg, rgba(70, 39, 30, 0.92), rgba(25, 27, 27, 0.94));
}

.search-results button.best-result span {
  color: var(--copper-2);
}

section {
  margin: 18px 0;
}

section h2 {
  margin: 0 0 9px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.secondary-controls,
.advanced-filters,
.toolbar #viewToggleButton,
.toolbar #fitButton,
.detail-header p,
.detail-header .tag-row {
  display: none;
}

.advanced-filters {
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.advanced-filters summary {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
  color: var(--text);
  padding: 7px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.advanced-filters[open] summary {
  border-color: var(--focus);
  background: #1f332b;
}

.advanced-filters section:last-child {
  margin-bottom: 0;
}

.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.quest-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quest-buttons button {
  display: grid;
  gap: 3px;
  width: 100%;
  min-height: 50px;
  padding: 10px;
  text-align: left;
  border-radius: 10px;
  background: rgba(27, 27, 25, 0.9);
}

.quest-buttons strong {
  font-size: 14px;
}

.quest-buttons span {
  color: var(--muted);
  font-size: 12px;
}

.quest-buttons button.active {
  border-color: rgba(208, 139, 92, 0.82);
  background: rgba(55, 35, 30, 0.95);
}

.button-grid button,
.toolbar button,
.tab {
  min-height: 34px;
  padding: 7px 9px;
}

.filter-list {
  display: grid;
  gap: 7px;
}

.site-list {
  display: grid;
  gap: 6px;
  max-height: calc(100vh - 355px);
  overflow: auto;
  padding-right: 4px;
}

.site-list button {
  width: 100%;
  min-height: 30px;
  padding: 6px 9px;
  text-align: left;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: var(--text);
}

.check-row input {
  accent-color: var(--green);
}

.tag-cloud,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #11171a;
  color: var(--muted);
  padding: 3px 8px;
  font-size: 12px;
}

.tag-chip.active {
  border-color: var(--focus);
  color: var(--text);
  background: #1f332b;
}

.workspace {
  min-width: 0;
  display: grid;
  grid-template-rows: 104px 1fr;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 17, 16, 0.94);
  backdrop-filter: blur(16px);
}

.topbar strong {
  display: block;
  font-size: 20px;
}

.topbar-primary {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

#graphStats {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 26ch;
  font-size: 12px;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toolbar button {
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
}

.toolbar #resetButton,
.toolbar #viewToggleButton {
  min-height: 40px;
  padding: 10px 16px;
}

.toolbar #viewToggleButton,
.toolbar #fitButton {
  display: inline-flex;
}

.toolbar #fitButton {
  display: none;
}

.graph-shell {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(183, 68, 50, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(208, 139, 92, 0.08), transparent 30%),
    linear-gradient(rgba(242, 231, 212, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 231, 212, 0.022) 1px, transparent 1px),
    repeating-radial-gradient(ellipse at 50% 52%, rgba(208, 139, 92, 0.045) 0 1px, transparent 1px 42px),
    #0b0e0e;
  background-size: auto, auto, 64px 64px, 64px 64px, auto, auto;
}

#graph {
  display: block;
  width: 100%;
  height: 100%;
}

.edge {
  stroke: #48535f;
  stroke-opacity: 0.4;
  stroke-width: 1.1;
}

.edge.active {
  stroke: var(--focus);
  stroke-opacity: 0.9;
  stroke-width: 2;
}

.node circle {
  stroke: #101214;
  stroke-width: 2;
  cursor: pointer;
}

.node text {
  pointer-events: none;
  fill: #dbe8e2;
  font-size: 12px;
  paint-order: stroke;
  stroke: #0d1114;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.node.dim {
  opacity: 0.18;
}

.node.active circle {
  stroke: var(--focus);
  stroke-width: 3.5;
}

.category-label {
  fill: #91a09b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
  paint-order: stroke;
  stroke: #0d1114;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.research-orbit {
  fill: none;
  stroke: rgba(208, 139, 92, 0.12);
  stroke-width: 1.2;
  stroke-dasharray: 8 10;
}

.research-orbit.soft {
  stroke: rgba(117, 201, 154, 0.1);
  stroke-dasharray: 4 12;
}

.research-focus-card rect,
.research-lane rect,
.research-canvas-footer rect {
  fill: rgba(20, 18, 16, 0.88);
  stroke: rgba(242, 231, 212, 0.16);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.25));
}

.research-focus-card rect {
  stroke: rgba(208, 139, 92, 0.34);
  fill: rgba(31, 24, 20, 0.92);
}

.research-focus-title {
  fill: var(--bone);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: 0;
}

.research-focus-copy {
  fill: #cdbfae;
  font-size: 15px;
  font-weight: 520;
}

.research-lane-title {
  fill: var(--bone);
  font-size: 18px;
  font-weight: 850;
}

.research-lane-subtitle,
.research-lane-empty {
  fill: #a99c8c;
  font-size: 12px;
}

.research-mini-row {
  cursor: pointer;
}

.research-mini-row rect {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(242, 231, 212, 0.09);
  filter: none;
}

.research-mini-row:hover rect {
  fill: rgba(208, 139, 92, 0.12);
  stroke: rgba(208, 139, 92, 0.56);
}

.research-mini-title {
  fill: #e9dfd1;
  font-size: 12.5px;
  font-weight: 720;
}

.research-mini-type {
  fill: #887d72;
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workbench-title {
  fill: var(--text);
  font-size: 26px;
  font-weight: 800;
}

.workbench-subtitle {
  fill: var(--muted);
  font-size: 14px;
}

.workbench-lane rect,
.workbench-example rect {
  fill: #11171a;
  stroke: var(--line);
  stroke-width: 1.2;
}

.workbench-lane-title {
  fill: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.workbench-lane-detail {
  fill: var(--muted);
  font-size: 12px;
}

.workbench-arrow {
  fill: none;
  stroke: #58656f;
  stroke-width: 2;
  stroke-linecap: round;
}

.mind-ring {
  fill: none;
  stroke: #2e383f;
  stroke-width: 1.2;
  stroke-dasharray: 5 7;
}

.mind-ring-label {
  fill: #7e918b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: none;
}

.mind-center {
  cursor: pointer;
}

.mind-center circle {
  fill: #17211f;
  stroke: var(--focus);
  stroke-width: 2.4;
}

.mind-center text {
  fill: var(--text);
  font-size: 14px;
  font-weight: 900;
  text-anchor: middle;
}

.mind-node,
.mind-site {
  cursor: pointer;
}

.mind-node line,
.mind-site line {
  stroke: #26333a;
  stroke-width: 1;
}

.mind-node circle,
.mind-site circle {
  stroke: #0d1114;
  stroke-width: 2;
}

.mind-node text,
.mind-site text {
  fill: var(--text);
  font-size: 12px;
  font-weight: 800;
  paint-order: stroke;
  stroke: #0d1114;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.mind-site text {
  fill: #c9d1d9;
  font-size: 11px;
}

.mind-node:hover circle,
.mind-site:hover circle,
.mind-center:hover circle {
  stroke: #ffffff;
}

.mind-prompt rect {
  fill: #11171a;
  stroke: var(--line);
  stroke-width: 1.2;
}

.museum-intro rect,
.museum-next-strip rect {
  fill: rgba(24, 22, 20, 0.78);
  stroke: rgba(208, 139, 92, 0.24);
}

.museum-eyebrow {
  fill: #d08b5c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.museum-lead {
  fill: var(--bone);
  font-size: 17px;
  font-weight: 720;
}

.museum-discovery-card {
  cursor: pointer;
}

.museum-discovery-card rect {
  fill: rgba(31, 28, 25, 0.94);
  stroke: rgba(242, 231, 212, 0.16);
  stroke-width: 1.1;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.24));
}

.museum-discovery-card:hover rect {
  stroke: rgba(208, 139, 92, 0.86);
  fill: rgba(43, 32, 27, 0.96);
}

.museum-card-sigil {
  opacity: 0.92;
}

.museum-card-kicker {
  fill: #a99c8c;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.museum-card-title {
  fill: #fff4eb;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.museum-card-hook {
  fill: #cfc4b6;
  font-size: 12px;
  font-weight: 560;
}

.museum-card-mystery {
  fill: #d08b5c;
  font-size: 11px;
  font-weight: 680;
}

.museum-small-card {
  cursor: pointer;
}

.museum-small-card rect {
  fill: rgba(14, 16, 16, 0.72);
  stroke: rgba(242, 231, 212, 0.12);
}

.museum-small-card:hover rect {
  stroke: rgba(208, 139, 92, 0.72);
}

.museum-small-title {
  fill: #fff4eb;
  font-size: 12px;
  font-weight: 800;
}

.museum-small-detail {
  fill: #a99c8c;
  font-size: 10px;
  font-weight: 560;
}

.map-land {
  fill: #17211f;
  stroke: #435047;
  stroke-width: 1.4;
}

.map-river {
  fill: none;
  stroke: #436d86;
  stroke-width: 2.2;
  stroke-opacity: 0.75;
  stroke-linecap: round;
}

.map-region-label {
  fill: #7e918b;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
  paint-order: stroke;
  stroke: #0d1213;
  stroke-width: 4px;
}

.map-site {
  cursor: pointer;
}

.map-site text {
  fill: #e8f0ec;
  font-size: 12px;
  font-weight: 650;
  paint-order: stroke;
  stroke: #0d1213;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.map-site.dim {
  opacity: 0.22;
}

.map-site.active text {
  fill: var(--focus);
}

.map-dot {
  fill: #9da9a6;
  stroke: #0d1213;
  stroke-width: 2;
}

.map-site.active .map-dot {
  fill: var(--focus);
  stroke: #ffffff;
  stroke-width: 2.5;
}

.map-gap-ring {
  fill: transparent;
  stroke: transparent;
  stroke-width: 2;
}

.map-site.needs-data .map-gap-ring {
  stroke: var(--red);
  stroke-dasharray: 3 3;
  opacity: 0.85;
}

.map-site.rich-data .map-gap-ring {
  stroke: rgba(142, 230, 189, 0.35);
}

.map-dot.tas-tepeler {
  fill: var(--green);
}

.map-dot.upper-euphrates,
.map-dot.upper-tigris {
  fill: var(--gold);
}

.map-dot.levant,
.map-dot.natufian-levant {
  fill: var(--blue);
}

.map-dot.central-anatolia {
  fill: var(--purple);
}

.map-dot.missing-page {
  stroke-dasharray: 2 2;
}

.map-legend rect {
  fill: rgba(17, 23, 26, 0.9);
  stroke: var(--line);
}

.map-legend text {
  fill: #dce7e2;
  font-size: 12px;
}

.map-focus-card rect {
  fill: rgba(17, 23, 26, 0.94);
  stroke: var(--line);
}

.map-focus-card text {
  fill: #dce7e2;
  font-size: 12px;
}

.map-focus-card .map-focus-title {
  fill: var(--focus);
  font-size: 14px;
  font-weight: 800;
}

.site-cockpit-card rect {
  fill: #11171a;
  stroke: var(--line);
}

.site-cockpit-card.clickable {
  cursor: pointer;
}

.site-cockpit-card.clickable:hover rect {
  stroke: var(--focus);
  stroke-width: 2;
}

.site-cockpit-card.primary rect {
  fill: rgba(20, 35, 31, 0.94);
  stroke: rgba(142, 230, 189, 0.55);
}

.site-cockpit-title {
  fill: var(--focus);
  font-size: 14px;
  font-weight: 800;
}

.site-cockpit-detail {
  fill: #dce7e2;
  font-size: 12px;
}

.site-cockpit-count {
  fill: var(--gold);
  font-size: 18px;
  font-weight: 900;
  text-anchor: end;
}

.empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.empty-state[hidden] {
  display: none;
}

.detail-header {
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
}

.detail-header p {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.detail-header h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.detail-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 15, 15, 0.72);
}

.tab {
  font-size: 12px;
  border-radius: 10px;
  background: rgba(24, 25, 24, 0.82);
}

.detail-content {
  padding: 16px 18px 28px;
  line-height: 1.55;
}

.detail-content h3 {
  margin: 18px 0 8px;
  font-size: 13px;
  color: var(--copper-2);
  text-transform: uppercase;
}

.detail-content p {
  margin: 0 0 10px;
}

.context-note {
  color: var(--muted);
  font-size: 12px;
  border-left: 3px solid var(--focus);
  padding-left: 9px;
}

.quiet-research-note {
  border: 1px solid rgba(242, 231, 212, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  padding: 10px 12px;
  font-size: 12px;
}

.detail-content ul {
  padding-left: 18px;
}

.detail-content a,
.wiki-link {
  color: #8ecbff;
  text-decoration: none;
  cursor: pointer;
}

.detail-content a:hover,
.wiki-link:hover {
  text-decoration: underline;
}

.markdown-view {
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #d4d9df;
  font-size: 12px;
}

.raw-notes {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
}

.raw-notes summary {
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.raw-notes .markdown-view {
  border-top: 1px solid var(--line);
  padding: 12px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}

.site-brief {
  display: grid;
  gap: 2px;
}

.brief-grid {
  display: grid;
  gap: 8px;
}

.site-snapshot {
  display: grid;
  gap: 8px;
  margin: 0;
}

.site-snapshot div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(191, 119, 75, 0.22);
  border-radius: 8px;
  background: rgba(23, 20, 17, 0.72);
  padding: 10px;
}

.site-snapshot dt {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-snapshot dd {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.brief-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
  padding: 10px;
}

.brief-card[data-site-topic-card] {
  cursor: pointer;
}

.brief-card[data-site-topic-card]:hover {
  border-color: var(--focus);
  background: #14231f;
}

.brief-card div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.brief-card strong {
  color: var(--focus);
  font-size: 12px;
  text-transform: uppercase;
}

.brief-card span {
  color: var(--gold);
  font-weight: 900;
}

.brief-card ul,
.brief-card p {
  margin: 0;
}

.site-topic-view {
  display: grid;
  gap: 2px;
}

.back-button {
  justify-self: start;
  margin-bottom: 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #1b2229;
  color: var(--text);
  padding: 8px 10px;
  cursor: pointer;
}

.back-button:hover {
  border-color: var(--focus);
}

.strength-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.strength-row span {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
  padding: 10px;
  color: var(--muted);
  font-size: 12px;
}

.strength-row strong {
  color: var(--text);
  font-size: 20px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  background: var(--panel-2);
}

.metric strong {
  display: block;
  font-size: 19px;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
}

.alias-line {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 12px;
}

.alias-line strong {
  color: var(--text);
}

.trust-panel {
  display: grid;
  gap: 9px;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
  padding: 11px;
}

.trust-panel.strong {
  border-color: rgba(54, 179, 126, 0.75);
  background: rgba(20, 43, 34, 0.78);
}

.trust-panel.developing {
  border-color: rgba(217, 154, 43, 0.75);
  background: rgba(49, 37, 19, 0.78);
}

.trust-panel.weak {
  border-color: rgba(223, 91, 97, 0.72);
  background: rgba(48, 24, 27, 0.78);
}

.trust-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.trust-header strong {
  color: var(--text);
  font-size: 13px;
}

.trust-header span,
.trust-panel p {
  color: var(--muted);
  font-size: 12px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.trust-metrics span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.16);
  padding: 7px;
  color: var(--muted);
  font-size: 11px;
}

.trust-metrics strong {
  display: block;
  color: var(--text);
  font-size: 17px;
}

.coverage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.coverage-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  background: #11171a;
  color: var(--muted);
  font-size: 11px;
}

.coverage-pill.captured {
  border-color: rgba(54, 179, 126, 0.65);
  color: #bdf5d8;
}

.coverage-pill.partial {
  border-color: rgba(217, 154, 43, 0.75);
  color: #f4d399;
}

.coverage-pill.missing {
  border-color: rgba(223, 91, 97, 0.8);
  color: #f4b3b6;
}

.section-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.section-pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #11171a;
  color: var(--text);
  padding: 5px 8px;
  font-size: 12px;
}

.connection-summary-grid,
.connection-grid {
  display: grid;
  gap: 8px;
}

.structure-grid {
  display: grid;
  gap: 8px;
}

.connection-summary {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel-2);
  padding: 10px;
}

.connection-summary strong {
  display: block;
  font-size: 13px;
}

.connection-summary span {
  color: var(--muted);
  font-size: 12px;
}

.connection-summary p {
  margin: 7px 0 0;
  font-size: 12px;
}

.connection-card {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 10px;
  text-align: left;
}

.connection-card strong {
  font-size: 13px;
}

.connection-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.structure-card {
  display: grid;
  gap: 5px;
  width: 100%;
  border-color: #2b786f;
  background: #132522;
  padding: 11px;
  text-align: left;
}

.structure-card strong {
  font-size: 14px;
}

.structure-card span,
.structure-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.structure-card small {
  color: #93ded2;
}

.structure-table {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #101619;
}

.wide-table {
  max-width: 100%;
}

.structure-table table {
  width: 100%;
  border-collapse: collapse;
}

.structure-table th,
.structure-table td {
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.4;
}

.structure-table tr:last-child th,
.structure-table tr:last-child td {
  border-bottom: 0;
}

.structure-table th {
  width: 118px;
  color: var(--focus);
  text-align: left;
  text-transform: uppercase;
}

.wide-table th {
  width: auto;
  min-width: 92px;
}

.evidence-slab {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #12171b;
  padding: 10px;
}

.meaning-grid {
  display: grid;
  gap: 8px;
}

.meaning-grid > div {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel-2);
  padding: 10px;
}

.meaning-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--focus);
  font-size: 12px;
  text-transform: uppercase;
}

.guide-atlas {
  display: grid;
  gap: 16px;
}

.research-debug-flag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border: 1px dashed rgba(217, 151, 93, 0.42);
  border-radius: 12px;
  background: rgba(217, 151, 93, 0.08);
  color: var(--muted);
  padding: 10px 12px;
  font-size: 12px;
}

.research-debug-flag strong {
  color: var(--copper-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.research-debug-flag span,
.research-debug-flag em {
  border-left: 1px solid rgba(242, 231, 212, 0.16);
  padding-left: 8px;
}

.evidence-point-list {
  display: grid;
  gap: 10px;
}

.evidence-point {
  border: 1px solid rgba(242, 231, 212, 0.12);
  border-radius: 14px;
  background: rgba(24, 24, 22, 0.72);
  padding: 13px 14px;
}

.evidence-point > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.evidence-point strong {
  color: var(--bone);
}

.evidence-point p {
  margin: 8px 0 0;
  color: #d7cbbd;
}

.confidence-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(242, 231, 212, 0.14);
  border-radius: 999px;
  color: var(--muted);
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.evidence-point.strong .confidence-pill {
  border-color: rgba(106, 191, 145, 0.36);
  color: #9fe0bd;
}

.evidence-point.moderate .confidence-pill {
  border-color: rgba(208, 139, 92, 0.42);
  color: #e0ad85;
}

.evidence-point.speculative .confidence-pill {
  border-color: rgba(127, 108, 207, 0.42);
  color: #b7aaf0;
}

.mini-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
}

.uncertainty-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.answer-lead,
.answer-block {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
  padding: 12px;
  margin: 10px 0;
}

.answer-lead {
  border-color: rgba(230, 180, 80, 0.55);
  background: linear-gradient(180deg, rgba(230, 180, 80, 0.08), rgba(17, 23, 26, 0.96));
}

.answer-lead h3,
.answer-block h3 {
  margin-top: 0;
}

.evidence-list {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.evidence-list li {
  border-left: 3px solid rgba(230, 180, 80, 0.55);
  background: rgba(255, 255, 255, 0.025);
  padding: 8px 10px;
}

.fact-source-button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 0;
  cursor: pointer;
  font: inherit;
  line-height: 1.45;
}

.fact-source-button:hover span {
  color: var(--focus);
}

.evidence-list small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.fact-source-layer {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #10181b;
  padding: 10px;
}

.fact-source-layer h4,
.fact-source-layer h5 {
  margin: 10px 0 6px;
  color: var(--focus);
}

.fact-source-layer h4 {
  margin-top: 0;
  font-size: 13px;
  text-transform: uppercase;
}

.fact-source-layer h5 {
  font-size: 12px;
}

.fact-claim {
  color: var(--text);
}

.fact-source-warning {
  color: var(--muted);
  font-size: 12px;
}

.guide-group {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
  padding: 9px 10px;
  margin: 7px 0;
}

.guide-group strong {
  display: block;
  margin-bottom: 4px;
  color: var(--focus);
  font-size: 12px;
  text-transform: uppercase;
}

.dossier-view h4 {
  margin: 18px 0 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--focus);
  font-size: 13px;
  text-transform: uppercase;
}

.dossier-view h4:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.dossier-view ul {
  margin-top: 6px;
}

.dossier-empty {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel-2);
  padding: 14px;
}

.media-grid {
  display: grid;
  gap: 14px;
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel-2);
}

.media-embed,
.media-thumb,
.media-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  background: #0b0f12;
}

.media-thumb {
  object-fit: cover;
}

.media-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.media-body {
  padding: 12px;
}

.media-kicker {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.media-body h3 {
  margin: 6px 0 7px;
  color: var(--text);
  text-transform: none;
  font-size: 15px;
}

.media-body dl {
  margin: 10px 0;
  display: grid;
  gap: 6px;
}

.media-body dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
}

.media-body dt {
  color: var(--muted);
  font-size: 12px;
}

.media-body dd {
  margin: 0;
  font-size: 12px;
}

.public-story-page {
  display: grid;
  gap: 16px;
}

.story-lead {
  margin: 0;
  border-left: 3px solid var(--brand-red);
  background: rgba(201, 46, 34, 0.08);
  color: #fff4eb;
  padding: 12px 13px;
  font-size: 17px;
  line-height: 1.45;
}

.research-drawer {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #11171a;
  padding: 10px 12px;
}

.research-drawer summary {
  color: var(--focus);
  cursor: pointer;
  font-weight: 750;
}

.research-drawer .markdown-view {
  max-height: 360px;
  overflow: auto;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* Premium discovery redesign */
body {
  background: var(--product-bg);
  letter-spacing: 0;
}

body::before {
  content: none;
}

button,
.tab,
.brief-card,
.connection-card,
.structure-card,
.metric,
.trust-panel,
.answer-lead,
.answer-block,
.media-card,
.raw-notes,
.research-drawer {
  transition:
    border-color 170ms ease,
    background 170ms ease,
    transform 170ms ease,
    box-shadow 170ms ease,
    color 170ms ease;
}

button {
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(42, 40, 37, 0.9), rgba(25, 24, 22, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

button:hover,
button.active {
  border-color: rgba(214, 165, 109, 0.38);
  background: linear-gradient(180deg, rgba(35, 35, 37, 0.96), rgba(28, 28, 30, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.18);
}

#app.home-exhibit,
#app.sites-directory-mode {
  height: auto;
  min-height: 100vh;
  overflow: visible;
}

.app-support,
.sidebar,
.detail-panel,
.topbar,
.workspace {
  display: none !important;
}

#app.home-exhibit .sidebar,
#app.home-exhibit .detail-panel,
#app.home-exhibit .topbar,
#app.sites-directory-mode .sidebar,
#app.sites-directory-mode .detail-panel,
#app.sites-directory-mode .topbar {
  display: none;
}

#app.home-exhibit .workspace,
#app.sites-directory-mode .workspace {
  grid-template-rows: 1fr;
  min-height: 100vh;
  overflow: visible;
}

#app.home-exhibit .graph-shell,
#app.sites-directory-mode .graph-shell {
  min-height: 100vh;
  overflow: visible;
}

#app.home-exhibit #graph,
#app.sites-directory-mode #graph {
  display: none;
}

#app.home-exhibit .graph-shell::before {
  background:
    radial-gradient(ellipse at 50% 38%, transparent 0 24%, rgba(208, 139, 92, 0.052) 25%, transparent 26%),
    radial-gradient(ellipse at 50% 38%, transparent 0 38%, rgba(208, 139, 92, 0.036) 39%, transparent 40%),
    linear-gradient(118deg, transparent 0 44%, rgba(242, 231, 212, 0.04) 44.2%, transparent 44.45%);
}

.home-profile-surface {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 0 0 72px;
  color: var(--bone);
}

.home-profile-surface[hidden] {
  display: none;
}

.atlas-home-nav {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(232, 217, 193, 0.1);
  background: rgba(6, 7, 7, 0.78);
  padding: 18px max(28px, calc((100vw - 1240px) / 2));
  min-height: 104px;
  backdrop-filter: blur(18px);
}

.atlas-home-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff4e4;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.atlas-home-brand img {
  width: 34px;
  height: 37px;
  border-radius: 8px;
  background: var(--bone);
}

.atlas-home-nav > div:last-child {
  display: flex;
  align-items: center;
  gap: 18px;
}

.atlas-home-nav a,
.atlas-home-nav button {
  color: #dccab5;
  text-decoration: none;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-home-nav button {
  min-height: 32px;
  border-radius: 999px;
  padding: 0 13px;
  color: #e7b084;
}

.site-first-home {
  width: 100%;
  min-height: calc(100vh - 74px);
  padding: 28px 0 70px;
  background:
    radial-gradient(circle at 80% 0%, rgba(184, 104, 61, 0.12), transparent 30%),
    linear-gradient(rgba(242, 231, 212, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 231, 212, 0.018) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.atlas-hero-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 217, 193, 0.12);
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.98), rgba(7, 8, 7, 0.72) 42%, rgba(7, 8, 7, 0.1)),
    radial-gradient(circle at 72% 36%, rgba(208, 139, 92, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(26, 20, 16, 0.1), rgba(8, 9, 8, 0.88));
}

.atlas-hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(242, 231, 212, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 231, 212, 0.02) 1px, transparent 1px),
    radial-gradient(ellipse at 72% 40%, rgba(232, 217, 193, 0.12), transparent 30%),
    repeating-linear-gradient(112deg, transparent 0 70px, rgba(208, 139, 92, 0.06) 70px 72px),
    url("./assets/the-first-temples-logo.png");
  background-size: 72px 72px, 72px 72px, auto, auto, 360px 402px;
  background-position: center, center, center, center, right 12% center;
  background-repeat: repeat, repeat, no-repeat, repeat, no-repeat;
  opacity: 0.22;
}

.atlas-hero-content {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100vw - 56px));
  margin: 0 auto;
  padding: 78px 0 66px;
}

.atlas-hero-content h1 {
  max-width: 660px;
  margin: 0;
  color: #fff6e9;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 8vw, 116px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.atlas-hero-subtitle {
  max-width: 570px;
  margin: 22px 0 0;
  color: #dccab5;
  font-size: 18px;
  line-height: 1.55;
}

.atlas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.atlas-hero-actions a,
.atlas-hero-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(208, 139, 92, 0.48);
  border-radius: 8px;
  padding: 0 24px;
  background: linear-gradient(180deg, rgba(171, 99, 43, 0.96), rgba(126, 69, 34, 0.96));
  color: #fff7ea;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atlas-hero-actions button {
  background: rgba(12, 13, 12, 0.42);
  color: #e8d7c2;
}

.guide-hero-panel {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 217, 193, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.22), rgba(8, 9, 8, 0.9)),
    radial-gradient(circle at 54% 34%, rgba(184, 104, 61, 0.2), transparent 34%),
    linear-gradient(118deg, transparent 0 44%, rgba(242, 231, 212, 0.052) 44.2%, transparent 44.45%);
}

.guide-hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(242, 231, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 231, 212, 0.028) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 44%, transparent 0 24%, rgba(208, 139, 92, 0.08) 24.3%, transparent 24.8%),
    radial-gradient(ellipse at 50% 44%, transparent 0 38%, rgba(208, 139, 92, 0.045) 38.3%, transparent 38.8%),
    url("./assets/the-first-temples-logo.png");
  background-size: 76px 76px, 76px 76px, auto, auto, 280px 312px;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, center, center, center, center 102px;
  opacity: 0.13;
  filter: saturate(0.75);
}

.guide-hero-content {
  position: relative;
  width: min(900px, calc(100vw - 44px));
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 74px 0 52px;
}

.app-kicker {
  margin: 0 0 16px;
  color: var(--copper-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-hero-content h1 {
  max-width: 820px;
  margin: 0;
  color: #fff6e9;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.guide-hero-subtitle {
  max-width: 660px;
  margin: 20px 0 0;
  color: #dccab5;
  font-size: 17px;
  line-height: 1.55;
}

  box-shadow: none;
}

.home-example-row {
  width: min(760px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.home-example-row button {
  min-height: 34px;
  border-radius: 999px;
  background: rgba(7, 9, 9, 0.36);
  border-color: rgba(242, 231, 212, 0.17);
  color: #e2d3c0;
  padding: 7px 13px;
  font-size: 13px;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.home-example-row button:hover {
  border-color: rgba(208, 139, 92, 0.68);
  background: rgba(53, 35, 26, 0.72);
}

.site-card-section {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 46px 0 0;
}

.site-card-section.primary-entry {
  padding-top: 10px;
}

.section-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.site-entry-heading {
  margin-bottom: 22px;
}

.site-entry-heading h1 {
  margin: 6px 0 0;
  color: #fff7ea;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.site-entry-heading span {
  max-width: 460px;
  line-height: 1.45;
}

.section-line .app-kicker {
  margin: 0;
}

.section-line span {
  color: var(--muted);
  font-size: 14px;
}

.primary-site-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.primary-site-card {
  overflow: hidden;
  border: 1px solid rgba(232, 217, 193, 0.13);
  border-radius: 10px;
  background: rgba(24, 22, 20, 0.82);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.primary-site-card:hover {
  border-color: rgba(208, 139, 92, 0.72);
  background: rgba(36, 30, 25, 0.92);
  transform: translateY(-2px);
}

.tas-home-nav {
  position: fixed;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto minmax(330px, 1fr);
  align-items: center;
  justify-content: stretch;
  height: 78px;
  min-height: 78px;
  z-index: 120;
  border-bottom: 1px solid rgba(211, 159, 84, 0.14);
  background: rgba(2, 5, 9, 0.74);
  padding: 0 34px;
  backdrop-filter: blur(20px);
}

.tas-home-nav .atlas-home-brand {
  gap: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tas-home-nav .atlas-home-brand::before {
  content: "T";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 155, 75, 0.78);
  border-radius: 999px;
  color: #d89b4b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(216, 155, 75, 0.12),
    0 0 28px rgba(216, 155, 75, 0.12);
}

.tas-home-nav .atlas-home-brand img {
  display: none;
}

.tas-home-nav .atlas-home-brand small {
  display: block;
  margin-top: 3px;
  color: rgba(226, 206, 174, 0.56);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.32em;
}

.tas-home-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(24px, 3.2vw, 54px);
}

.tas-home-nav a,
.tas-nav-trigger {
  border: 0;
  background: transparent;
  color: rgba(236, 230, 219, 0.76);
  font-size: 16px;
  font-weight: 520;
  letter-spacing: -0.01em;
  text-transform: none;
  text-decoration: none;
}

.tas-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 74px;
  z-index: 121;
}

.tas-nav-trigger {
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.tas-nav-item:hover .tas-nav-trigger,
.tas-nav-item:focus-within .tas-nav-trigger,
.tas-home-nav a:hover,
.tas-home-nav [aria-current="page"] {
  color: #fffaf0;
}

.tas-nav-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 140;
  display: grid;
  min-width: 212px;
  border: 1px solid rgba(216, 155, 75, 0.18);
  border-radius: 14px;
  background: rgba(4, 8, 12, 0.92);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.44);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px);
}

.tas-nav-item:hover .tas-nav-menu,
.tas-nav-item:focus-within .tas-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.tas-nav-menu a {
  display: block;
  border-radius: 9px;
  color: rgba(236, 230, 219, 0.78);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 540;
  line-height: 1.2;
  white-space: nowrap;
}

.tas-nav-menu a:hover {
  background: rgba(216, 155, 75, 0.1);
  color: #fffaf0;
}

.tas-visit-link {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
}

.atomic-site-page .site-universal-nav + .gobekli-hero-shell,
.atomic-site-page .site-universal-nav + .coming-soon-site-shell {
  padding-top: clamp(104px, 9vw, 132px);
}

.tas-official-home {
  min-height: 100vh;
  background: #030609;
}

.tas-photo-hero {
  position: relative;
  min-height: calc(100vh - 44px);
  max-height: 900px;
  overflow: hidden;
  background: #030609;
  color: #f8f3ea;
}

.tas-photo-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.tas-photo-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.92) contrast(1.08) brightness(0.62);
  transform: scale(1.02);
}

.tas-photo-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 40%, rgba(226, 168, 72, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.96) 0%, rgba(3, 6, 9, 0.74) 26%, rgba(3, 6, 9, 0.22) 58%, rgba(3, 6, 9, 0.66) 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.48) 0%, rgba(3, 6, 9, 0.08) 42%, #030609 100%);
}

.tas-photo-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 16px;
  width: min(760px, 62vw);
  min-height: calc(100vh - 44px);
  max-height: 900px;
  padding: clamp(92px, 10vw, 132px) clamp(28px, 7vw, 118px) clamp(70px, 8vw, 118px);
}

.tas-photo-hero-copy p {
  margin: 0;
  color: #76dfff;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tas-photo-hero-copy h1 {
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.4vw, 108px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.72);
}

.tas-photo-hero-copy span,
.tas-photo-hero-copy strong {
  display: block;
  max-width: 620px;
  color: rgba(235, 229, 218, 0.8);
  font-size: clamp(21px, 2vw, 34px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.22;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.66);
}

.tas-photo-hero-copy strong {
  color: #fff3df;
}

.tas-map-hero {
  --tas-map-stage-top: clamp(42px, 6.4vh, 76px);
  --tas-map-stage-right: clamp(180px, 12vw, 260px);
  --tas-map-stage-bottom: clamp(104px, 15vh, 136px);
  --tas-map-stage-left: clamp(230px, 14vw, 310px);
  position: relative;
  height: calc(100vh - 44px);
  min-height: 660px;
  max-height: 920px;
  overflow: hidden;
  background: #030609;
  color: #f8f3ea;
}

.tas-map-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 17;
  height: 220px;
  background:
    radial-gradient(ellipse at 48% 68%, rgba(3, 6, 9, 0.44) 0 24%, rgba(3, 6, 9, 0.22) 48%, rgba(3, 6, 9, 0.06) 76%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(3, 6, 9, 0.08) 34%, rgba(3, 6, 9, 0.54) 100%);
  pointer-events: none;
}

.tas-map-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.96) 0%, rgba(3, 6, 9, 0.66) 10%, rgba(3, 6, 9, 0.08) 25%, rgba(3, 6, 9, 0.08) 72%, rgba(3, 6, 9, 0.5) 91%, rgba(3, 6, 9, 0.92) 100%),
    radial-gradient(ellipse at 88% 49%, rgba(3, 6, 9, 0.36) 0 20%, rgba(3, 6, 9, 0.16) 48%, transparent 76%),
    radial-gradient(ellipse at 16% 68%, rgba(3, 6, 9, 0.52) 0 18%, rgba(3, 6, 9, 0.18) 46%, transparent 74%);
}

.tas-map-bg {
  position: absolute;
  top: var(--tas-map-stage-top);
  right: auto;
  bottom: auto;
  left: var(--tas-map-stage-left);
  z-index: 0;
  width: calc(100% - var(--tas-map-stage-left) - var(--tas-map-stage-right));
  height: calc(100% - var(--tas-map-stage-top) - var(--tas-map-stage-bottom));
  background-image: url("../assets/tas-tepeler-network-map.optimized.jpg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.84;
  filter: saturate(0.92) contrast(1.08) brightness(0.8);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.44) 5%, rgba(0, 0, 0, 0.96) 13%, #000 38%, #000 68%, rgba(0, 0, 0, 0.9) 86%, rgba(0, 0, 0, 0.34) 96%, transparent 100%),
    radial-gradient(ellipse at 52% 52%, #000 0 58%, rgba(0, 0, 0, 0.78) 78%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.44) 5%, rgba(0, 0, 0, 0.96) 13%, #000 38%, #000 68%, rgba(0, 0, 0, 0.9) 86%, rgba(0, 0, 0, 0.34) 96%, transparent 100%),
    radial-gradient(ellipse at 52% 52%, #000 0 58%, rgba(0, 0, 0, 0.78) 78%, transparent 100%);
}

.tas-map-bg::before,
.tas-map-bg::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
}

.tas-map-bg::before {
  background:
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.74) 5%, rgba(3, 6, 9, 0.12) 15%, transparent 28%, transparent 76%, rgba(3, 6, 9, 0.14) 90%, rgba(3, 6, 9, 0.82) 98%, #030609 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.56) 0%, rgba(3, 6, 9, 0.12) 9%, transparent 24%, transparent 72%, rgba(3, 6, 9, 0.32) 90%, #030609 100%);
}

.tas-map-bg::after {
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0 42%, rgba(3, 6, 9, 0.22) 70%, #030609 100%),
    radial-gradient(circle at 14% 72%, rgba(226, 168, 72, 0.11), transparent 30%),
    radial-gradient(circle at 78% 36%, rgba(118, 223, 255, 0.08), transparent 34%);
  mix-blend-mode: normal;
}

.tas-map-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 57% 38%, rgba(218, 156, 67, 0.16), transparent 18%),
    radial-gradient(circle at 90% 72%, rgba(226, 168, 72, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.97) 0%, rgba(3, 6, 9, 0.72) 13%, rgba(3, 6, 9, 0.07) 33%, rgba(3, 6, 9, 0.18) 78%, rgba(3, 6, 9, 0.9) 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.72) 0%, rgba(3, 6, 9, 0.18) 14%, transparent 72%, rgba(3, 6, 9, 0.62) 100%);
}

.tas-map-copy {
  position: absolute;
  z-index: 7;
  isolation: isolate;
  top: clamp(92px, 11.2vh, 132px);
  left: clamp(34px, 3.25vw, 62px);
  width: min(520px, 32vw, calc(100vw - 72px));
}

.tas-map-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -42px -28px -42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 38%, rgba(3, 6, 9, 0.72), transparent 58%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.78), rgba(3, 6, 9, 0.22) 76%, transparent);
  filter: blur(2px);
  pointer-events: none;
}

.tas-map-copy p {
  max-width: 440px;
  margin: 14px 0 0;
  color: rgba(235, 229, 218, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.28;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.62);
}

.tas-map-copy h1 {
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  max-width: 510px;
  font-size: clamp(44px, 4.05vw, 72px);
  font-weight: 460;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
}

.tas-map-copy > span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  max-width: 520px;
  margin-top: 26px;
  color: rgba(235, 229, 218, 0.78);
  font-size: clamp(16px, 1.04vw, 19px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.42;
  text-transform: none;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.62);
}

.tas-map-copy > span::before {
  content: "";
  width: 44px;
  height: 1px;
  flex: 0 0 auto;
  margin-top: 0.72em;
  background: linear-gradient(90deg, rgba(226, 168, 72, 0.95), rgba(114, 221, 255, 0.28));
}

.tas-orientation-band {
  position: relative;
  z-index: 10;
  scroll-margin-top: 84px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 48% 34%, rgba(226, 168, 72, 0.08), transparent 42%),
    radial-gradient(circle at 82% 76%, rgba(118, 223, 255, 0.04), transparent 32%),
    linear-gradient(180deg, #030609 0%, #04080b 46%, #030609 100%);
  color: #f8f3ea;
  padding: clamp(44px, 5.5vw, 84px) clamp(28px, 6vw, 92px) clamp(48px, 6vw, 92px);
}

.tas-orientation-band::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(28px, 6vw, 92px);
  left: clamp(28px, 6vw, 92px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 168, 72, 0.18), rgba(118, 223, 255, 0.06), transparent);
}

.tas-orientation-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(24px, 4vw, 64px);
  row-gap: clamp(12px, 1.5vw, 22px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.tas-orientation-copy h2 {
  position: relative;
  z-index: 12;
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.tas-orientation-copy p {
  position: relative;
  z-index: 12;
  grid-column: 2;
  max-width: 780px;
  margin: 0;
  color: rgba(235, 229, 218, 0.76);
  font-size: clamp(17px, 1.22vw, 21px);
  font-weight: 560;
  line-height: 1.55;
}

.tas-orientation-lede {
  position: relative;
  z-index: 12;
  grid-column: 2;
  display: grid;
  gap: clamp(8px, 0.8vw, 12px);
  max-width: 930px;
  padding-top: 2px;
}

.tas-orientation-lede::before {
  content: "";
  width: clamp(48px, 5vw, 82px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 168, 72, 0.86), rgba(118, 223, 255, 0.28), transparent);
}

.tas-orientation-lede p {
  grid-column: auto;
  max-width: 900px;
  margin: 0;
  color: rgba(235, 229, 218, 0.72);
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 590;
  line-height: 1.48;
  text-wrap: balance;
}

.tas-orientation-lede p:first-of-type {
  color: rgba(255, 248, 235, 0.9);
  font-size: clamp(26px, 2.15vw, 40px);
  font-weight: 720;
  line-height: 1.05;
}

.tas-orientation-lede strong {
  color: #fff6e8;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.tas-orientation-copy p + p {
  margin-top: 12px;
}

.tas-orientation-copy p:last-child {
  color: #fff3df;
  font-weight: 760;
}

.tas-orientation-lede p + p {
  margin-top: 0;
}

.tas-orientation-lede p:last-of-type {
  color: rgba(255, 243, 223, 0.88);
  font-size: clamp(16px, 1.08vw, 19px);
  font-weight: 760;
  line-height: 1.42;
}

.tas-network-map-panel {
  --tas-map-stage-top: clamp(12px, 1.6vw, 22px);
  --tas-map-stage-right: clamp(4px, 1.4vw, 20px);
  --tas-map-stage-bottom: clamp(12px, 1.6vw, 22px);
  --tas-map-stage-left: clamp(4px, 1.4vw, 20px);
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: center;
  min-height: clamp(360px, 38vw, 560px);
  width: 100vw;
  max-width: none;
  margin: clamp(2px, 0.5vw, 10px) 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(226, 168, 72, 0.11), transparent 38%),
    transparent;
  box-shadow: none;
  isolation: isolate;
}

.tas-network-map-panel::before,
.tas-network-map-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tas-network-map-panel::before {
  inset: -96px 0 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(226, 168, 72, 0.055), transparent 36%),
    radial-gradient(ellipse at 50% 54%, rgba(7, 12, 15, 0.04) 0 42%, rgba(3, 6, 9, 0.32) 80%, #030609 100%),
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.28) 10%, transparent 24%, transparent 76%, rgba(3, 6, 9, 0.32) 91%, #030609 100%);
}

.tas-network-map-panel::after {
  inset: -96px -1px -118px;
  z-index: 5;
  background:
    radial-gradient(ellipse at 50% 27%, rgba(226, 168, 72, 0.08), transparent 34%),
    radial-gradient(ellipse at 50% 82%, rgba(226, 168, 72, 0.14), transparent 28%),
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.54) 6%, rgba(3, 6, 9, 0.04) 21%, rgba(3, 6, 9, 0.04) 78%, rgba(3, 6, 9, 0.52) 94%, #030609 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0) 0%, rgba(3, 6, 9, 0.18) 18%, transparent 38%, transparent 62%, rgba(3, 6, 9, 0.24) 80%, #030609 100%);
}

.tas-network-map-panel .tas-map-bg {
  top: clamp(-96px, -5vw, -64px);
  right: var(--tas-map-stage-right);
  bottom: -112px;
  left: var(--tas-map-stage-left);
  width: auto;
  height: auto;
  opacity: 0.9;
  filter: saturate(0.92) contrast(1.06) brightness(0.74);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.52) 5%, #000 14%, #000 86%, rgba(0, 0, 0, 0.46) 96%, transparent 100%),
    radial-gradient(ellipse at 50% 52%, #000 0 62%, rgba(0, 0, 0, 0.76) 80%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.52) 5%, #000 14%, #000 86%, rgba(0, 0, 0, 0.46) 96%, transparent 100%),
    radial-gradient(ellipse at 50% 52%, #000 0 62%, rgba(0, 0, 0, 0.76) 80%, transparent 100%);
}

.tas-network-map-panel .tas-map-bg::before {
  background:
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.62) 5%, rgba(3, 6, 9, 0.08) 16%, transparent 32%, transparent 74%, rgba(3, 6, 9, 0.12) 90%, rgba(3, 6, 9, 0.76) 98%, #030609 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.18) 0%, rgba(3, 6, 9, 0.06) 12%, transparent 34%, transparent 82%, rgba(3, 6, 9, 0.48) 100%);
}

.tas-network-map-panel .tas-map-bg::after {
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0 44%, rgba(3, 6, 9, 0.16) 72%, rgba(3, 6, 9, 0.7) 100%),
    radial-gradient(circle at 50% 83%, rgba(226, 168, 72, 0.12), transparent 34%),
    radial-gradient(circle at 78% 36%, rgba(118, 223, 255, 0.06), transparent 34%);
}

.tas-network-map-panel .tas-map-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 52% 44%, rgba(226, 168, 72, 0.11), transparent 24%),
    radial-gradient(circle at 78% 70%, rgba(118, 223, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.12), rgba(3, 6, 9, 0.04) 42%, rgba(3, 6, 9, 0.34));
}

.tas-network-map-panel .tas-network-svg,
.tas-network-map-panel .tas-network-sites {
  z-index: 6;
}

.tas-network-map-panel .tas-map-node {
  z-index: 7;
}

.tas-network-map-panel .tas-map-node em {
  left: calc(var(--label-x, 2) * 13px);
  top: calc(var(--label-y, -0.5) * 13px);
  max-width: 110px;
  border-color: rgba(255, 228, 176, 0.2);
  background: rgba(3, 7, 10, 0.72);
  padding: 4px 7px;
  font-size: clamp(9px, 0.72vw, 11px);
  letter-spacing: 0.035em;
}

.tas-network-map-panel .tas-region-label {
  z-index: 6;
}

.tas-network-map-panel .tas-node-info-card {
  z-index: 12;
  width: min(318px, calc(100% - 36px));
}

.tas-network-svg,
.tas-network-sites {
  position: absolute;
  top: var(--tas-map-stage-top);
  right: auto;
  bottom: auto;
  left: var(--tas-map-stage-left);
  width: calc(100% - var(--tas-map-stage-left) - var(--tas-map-stage-right));
  height: calc(100% - var(--tas-map-stage-top) - var(--tas-map-stage-bottom));
  z-index: 3;
  pointer-events: none;
}

.tas-network-line {
  stroke: rgba(224, 178, 92, 0.66);
  stroke-width: 0.18;
  stroke-dasharray: 0.9 0.9;
  filter: drop-shadow(0 0 0.9px rgba(255, 190, 89, 0.75));
}

.tas-map-node {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff5df;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.tas-map-node span {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 243, 206, 0.86);
  border-radius: 999px;
  background: #e2a848;
  box-shadow:
    0 0 0 7px rgba(226, 168, 72, 0.14),
    0 0 22px rgba(226, 168, 72, 0.86),
    0 0 54px rgba(226, 168, 72, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.tas-map-node.major span {
  width: 19px;
  height: 19px;
  box-shadow:
    0 0 0 10px rgba(226, 168, 72, 0.16),
    0 0 30px rgba(226, 168, 72, 0.94),
    0 0 74px rgba(226, 168, 72, 0.44);
}

.tas-map-node.museum span {
  background: #73d8ff;
  box-shadow:
    0 0 0 7px rgba(115, 216, 255, 0.13),
    0 0 22px rgba(115, 216, 255, 0.72);
}

.tas-map-node.profile-ready span {
  border-color: rgba(255, 243, 206, 0.9);
  background: #e2a848;
  box-shadow:
    0 0 0 7px rgba(226, 168, 72, 0.14),
    0 0 22px rgba(226, 168, 72, 0.86),
    0 0 54px rgba(226, 168, 72, 0.36);
}

.tas-map-node.profile-ready.major span {
  box-shadow:
    0 0 0 10px rgba(226, 168, 72, 0.16),
    0 0 30px rgba(226, 168, 72, 0.94),
    0 0 74px rgba(226, 168, 72, 0.44);
}

.tas-map-node.profile-coming-soon span {
  border-color: rgba(221, 248, 255, 0.9);
  background: #73d8ff;
  box-shadow:
    0 0 0 7px rgba(115, 216, 255, 0.13),
    0 0 22px rgba(115, 216, 255, 0.72),
    0 0 54px rgba(115, 216, 255, 0.24);
}

.tas-map-node.profile-coming-soon.major span {
  box-shadow:
    0 0 0 10px rgba(115, 216, 255, 0.15),
    0 0 30px rgba(115, 216, 255, 0.78),
    0 0 74px rgba(115, 216, 255, 0.34);
}

.tas-map-node em {
  position: absolute;
  left: calc(var(--label-x, 2) * 1vw);
  top: calc(var(--label-y, -0.5) * 1vh);
  max-width: 132px;
  border: 1px solid rgba(255, 228, 176, 0.22);
  border-radius: 999px;
  background: rgba(3, 7, 10, 0.76);
  color: rgba(255, 248, 235, 0.94);
  font-size: 10px;
  font-style: normal;
  font-weight: 720;
  letter-spacing: 0.04em;
  line-height: 1.1;
  padding: 5px 8px;
  text-transform: uppercase;
  white-space: normal;
  text-align: left;
  text-shadow: 0 2px 8px #000;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
  opacity: 1;
  transform: translateY(0);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tas-map-node.major em,
.tas-map-node.museum em,
.tas-map-node:hover em {
  opacity: 1;
  transform: translateY(-1px);
}

.tas-map-node:hover span {
  transform: scale(1.18);
  filter: brightness(1.18);
  box-shadow:
    0 0 0 9px rgba(226, 168, 72, 0.18),
    0 0 28px rgba(226, 168, 72, 0.95),
    0 0 82px rgba(226, 168, 72, 0.48);
}

.tas-map-node.profile-coming-soon:hover span {
  box-shadow:
    0 0 0 9px rgba(115, 216, 255, 0.18),
    0 0 28px rgba(115, 216, 255, 0.86),
    0 0 82px rgba(115, 216, 255, 0.42);
}

.tas-map-node.rail-active em {
  opacity: 1;
  transform: translateY(0);
}

.tas-map-node.rail-active span {
  transform: scale(1.32);
  filter: brightness(1.24);
  box-shadow:
    0 0 0 11px rgba(226, 168, 72, 0.2),
    0 0 34px rgba(226, 168, 72, 1),
    0 0 92px rgba(226, 168, 72, 0.58);
}

.tas-map-node.profile-coming-soon.rail-active span {
  box-shadow:
    0 0 0 11px rgba(115, 216, 255, 0.2),
    0 0 34px rgba(115, 216, 255, 0.94),
    0 0 92px rgba(115, 216, 255, 0.5);
}

.tas-region-label {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  z-index: 3;
  color: rgba(226, 206, 174, 0.58);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.tas-site-chip {
  border: 1px solid rgba(219, 179, 113, 0.2);
  background: rgba(5, 12, 18, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.tas-map-artifact {
  position: absolute;
  z-index: 4;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  perspective: 900px;
}

.tas-map-artifact,
.tas-map-artifact:hover,
.tas-map-artifact.active,
.tas-map-artifact:focus,
.tas-map-artifact:focus-visible {
  border: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
}

.tas-map-artifact img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  transform-origin: 50% 70%;
  transition: transform 420ms ease, filter 420ms ease;
  mask-image: radial-gradient(ellipse at 50% 55%, #000 0 54%, rgba(0, 0, 0, 0.82) 68%, rgba(0, 0, 0, 0.38) 82%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%, #000 0 54%, rgba(0, 0, 0, 0.82) 68%, rgba(0, 0, 0, 0.38) 82%, transparent 100%);
}

.tas-map-artifact::after {
  content: "";
  position: absolute;
  inset: 16% 8% 0;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(224, 165, 82, 0.24), transparent 66%);
  filter: blur(30px);
  opacity: 0.42;
  transition: opacity 420ms ease, transform 420ms ease;
}

.tas-map-artifact-gobekli {
  left: clamp(72px, 7vw, 112px);
  bottom: -34px;
  z-index: 23;
  width: clamp(220px, 17vw, 270px);
  height: clamp(360px, 51vh, 490px);
  filter:
    drop-shadow(0 44px 46px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 24px rgba(226, 168, 72, 0.08));
}

.tas-map-artifact-gobekli:hover,
.tas-map-artifact-gobekli:focus-visible {
  z-index: 26;
}

.tas-map-artifact-gobekli img {
  width: clamp(360px, 28vw, 450px);
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  max-width: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.62) 12%, #000 30%, #000 76%, rgba(0, 0, 0, 0.38) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.62) 12%, #000 30%, #000 76%, rgba(0, 0, 0, 0.38) 90%, transparent 100%);
}

.tas-map-artifact-gobekli:hover img,
.tas-map-artifact-gobekli:focus-visible img {
  transform: scale(1.13) translate3d(8px, -14px, 0) rotateX(1.4deg) rotateY(-2.2deg);
  filter: saturate(1.07) brightness(1.12) drop-shadow(0 0 34px rgba(232, 172, 91, 0.44));
}

.tas-map-artifact-gobekli:hover::after,
.tas-map-artifact-gobekli:focus-visible::after {
  opacity: 0.84;
  transform: translate3d(18px, -16px, 0) scale(1.18);
}

.tas-map-artifact-karahan {
  right: clamp(42px, 4.5vw, 78px);
  bottom: -28px;
  width: clamp(300px, 22vw, 390px);
  z-index: 19;
  filter:
    drop-shadow(0 46px 48px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 28px rgba(226, 168, 72, 0.16));
}

.tas-map-artifact-karahan:hover,
.tas-map-artifact-karahan:focus-visible {
  z-index: 22;
}

.tas-map-artifact-karahan img {
  transform: scale(1);
  transform-origin: 50% 55%;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 8%, rgba(0, 0, 0, 0.92) 23%, #000 74%, rgba(0, 0, 0, 0.68) 88%, transparent 100%),
    radial-gradient(ellipse at 50% 50%, #000 0 54%, rgba(0, 0, 0, 0.72) 72%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 8%, rgba(0, 0, 0, 0.92) 23%, #000 74%, rgba(0, 0, 0, 0.68) 88%, transparent 100%),
    radial-gradient(ellipse at 50% 50%, #000 0 54%, rgba(0, 0, 0, 0.72) 72%, transparent 100%);
}

.tas-map-artifact-karahan::after {
  inset: 18% 10% 4%;
  background:
    radial-gradient(circle, rgba(226, 168, 72, 0.28), transparent 64%);
  opacity: 0.34;
}

.tas-map-artifact-karahan:hover img,
.tas-map-artifact-karahan:focus-visible img,
.tas-map-artifact-karahan img:hover {
  transform: scale(1.13) translate3d(-8px, -12px, 0);
  filter:
    saturate(1.08)
    brightness(1.12)
    drop-shadow(0 0 36px rgba(232, 172, 91, 0.46));
}

.tas-map-artifact-karahan:hover::after,
.tas-map-artifact-karahan:focus-visible::after {
  opacity: 0.86;
  transform: translate3d(-14px, -12px, 0) scale(1.18);
}

.tas-blueprint-panel {
  position: absolute;
  z-index: 2;
  top: clamp(36px, 4.8vh, 58px);
  right: clamp(8px, 1.4vw, 26px);
  width: min(380px, 23vw);
  opacity: 0.38;
  pointer-events: none;
  filter:
    drop-shadow(0 0 34px rgba(28, 149, 220, 0.22))
    drop-shadow(0 0 86px rgba(28, 149, 220, 0.08));
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 16%, rgba(0, 0, 0, 0.9) 42%, rgba(0, 0, 0, 0.86) 72%, transparent 100%),
    radial-gradient(circle at 55% 48%, rgba(0, 0, 0, 0.95) 0 42%, rgba(0, 0, 0, 0.62) 66%, transparent 88%);
}

.tas-blueprint-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.32) contrast(1.16) brightness(1.02);
  mix-blend-mode: screen;
}

.tas-object-card {
  position: absolute;
  z-index: 5;
  display: none;
  width: min(260px, 18vw);
  border: 1px solid rgba(219, 179, 113, 0.22);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01));
  box-shadow:
    0 0 0 1px rgba(226, 168, 72, 0.035),
    0 22px 70px rgba(0, 0, 0, 0.14);
  color: #f8f3ea;
  padding: 14px;
  cursor: pointer;
  backdrop-filter: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.tas-object-card:hover {
  border-color: rgba(226, 168, 72, 0.56);
  background:
    linear-gradient(180deg, rgba(226, 168, 72, 0.06), rgba(255, 255, 255, 0.012));
  box-shadow:
    0 0 0 1px rgba(226, 168, 72, 0.1),
    0 0 28px rgba(226, 168, 72, 0.14),
    0 22px 70px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.tas-object-card strong {
  color: #e5ba72;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tas-object-card p {
  margin: 8px 0 0;
  color: rgba(235, 229, 218, 0.7);
  font-size: 11px;
  line-height: 1.45;
}

.tas-object-card span {
  display: inline-flex;
  gap: 10px;
  margin-top: 12px;
  color: #76dfff;
  font-size: 13px;
}

.tas-gobekli-object-card {
  left: clamp(300px, 21vw, 420px);
  bottom: calc(var(--tas-map-stage-bottom) + 22px);
  width: min(228px, 14vw);
}

.tas-karahan-object-card {
  right: clamp(214px, 14.5vw, 300px);
  left: auto;
  width: min(230px, 15vw, 248px);
  bottom: calc(var(--tas-map-stage-bottom) + 62px);
  z-index: 6;
}

.tas-node-info-card {
  position: absolute;
  z-index: 6;
  left: calc(var(--tas-map-stage-left) + ((100% - var(--tas-map-stage-left) - var(--tas-map-stage-right)) * var(--packet-x, 50) / 100));
  top: calc(var(--tas-map-stage-top) + ((100% - var(--tas-map-stage-top) - var(--tas-map-stage-bottom)) * var(--packet-y, 50) / 100));
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  width: 318px;
  height: 352px;
  box-sizing: border-box;
  border: 1px solid rgba(118, 223, 255, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 16% 0%, rgba(226, 168, 72, 0.12), transparent 34%),
    rgba(5, 12, 18, 0.9);
  box-shadow:
    0 0 0 1px rgba(226, 168, 72, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.42);
  color: #f8f3ea;
  padding: 18px;
  backdrop-filter: blur(18px);
  transform: translate(18px, -50%);
}

.tas-node-info-card.is-left {
  transform: translate(calc(-100% - 18px), -50%);
}

.tas-node-info-card.is-low {
  transform: translate(18px, calc(-100% - 18px));
}

.tas-node-info-card.is-left.is-low {
  transform: translate(calc(-100% - 18px), calc(-100% - 18px));
}

.tas-node-info-card.is-high {
  transform: translate(18px, 18px);
}

.tas-node-info-card.is-left.is-high {
  transform: translate(calc(-100% - 18px), 18px);
}

.tas-node-info-card[hidden] {
  display: none;
}

.tas-node-info-close {
  position: absolute;
  top: 11px;
  right: 12px;
  border: 0;
  background: transparent;
  color: rgba(248, 243, 234, 0.72);
  font-size: 18px;
  cursor: pointer;
}

.tas-node-info-card p {
  margin: 0 24px 10px 0;
  color: #76dfff;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tas-node-info-card h2 {
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.tas-node-info-card > span {
  display: block;
  margin-top: 12px;
  color: rgba(235, 229, 218, 0.72);
  font-size: 14px;
  line-height: 1.48;
}

.tas-node-info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tas-node-info-meta small {
  border: 1px solid rgba(226, 168, 72, 0.16);
  border-radius: 999px;
  background: rgba(226, 168, 72, 0.055);
  color: rgba(248, 243, 234, 0.72);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
}

.tas-node-info-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(248, 243, 234, 0.1);
  color: rgba(235, 229, 218, 0.66);
  font-size: 13px;
  list-style: none;
}

.tas-node-info-card li::before {
  content: "•";
  margin-right: 8px;
  color: #e2a848;
}

.tas-node-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(118, 223, 255, 0.22);
  border-radius: 999px;
  background: rgba(118, 223, 255, 0.08);
  color: #fff8ed;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
}

.tas-node-profile-link:disabled {
  cursor: default;
  opacity: 0.62;
}

.tas-map-node.packet-active span {
  border-color: rgba(255, 207, 129, 0.92);
  background: #e2a848;
  box-shadow:
    0 0 0 7px rgba(226, 168, 72, 0.16),
    0 0 30px rgba(226, 168, 72, 0.52);
}

.tas-map-node.profile-coming-soon.packet-active span {
  border-color: rgba(221, 248, 255, 0.92);
  background: #73d8ff;
  box-shadow:
    0 0 0 7px rgba(115, 216, 255, 0.16),
    0 0 30px rgba(115, 216, 255, 0.58);
}

.tas-map-artifact.packet-active {
  border: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
}

.tas-map-artifact.packet-active img {
  filter:
    saturate(1.08)
    brightness(1.12)
    drop-shadow(0 0 34px rgba(232, 172, 91, 0.42));
}

.tas-map-artifact.packet-active::after {
  opacity: 0.82;
  transform: scale(1.14);
}

.tas-map-node.packet-active em {
  border-color: rgba(226, 168, 72, 0.36);
  background: rgba(19, 13, 5, 0.78);
  color: #ffd990;
}

.tas-map-node.profile-coming-soon.packet-active em {
  border-color: rgba(115, 216, 255, 0.36);
  background: rgba(4, 17, 24, 0.78);
  color: #bcefff;
}

.tas-hero-site-rail-shell {
  position: absolute;
  right: clamp(205px, 16vw, 285px);
  bottom: -30px;
  left: clamp(230px, 15vw, 310px);
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  min-height: 132px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 45% 52%, rgba(3, 6, 9, 0.62) 0 22%, rgba(3, 6, 9, 0.34) 46%, rgba(3, 6, 9, 0.08) 72%, transparent 100%),
    linear-gradient(90deg, transparent, rgba(3, 6, 9, 0.26) 16%, rgba(3, 6, 9, 0.2) 74%, transparent);
  box-shadow:
    0 30px 96px rgba(0, 0, 0, 0.28),
    0 0 76px rgba(226, 168, 72, 0.055);
  padding: 0 18px 10px 18px;
  pointer-events: none;
  backdrop-filter: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 91%, transparent 100%);
  overflow: hidden;
}

.tas-hero-site-rail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  padding: 0 10px 10px;
  scroll-behavior: auto;
  scroll-padding: 34%;
  scroll-snap-type: none;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 90%, rgba(0, 0, 0, 0.74) 97%, transparent 100%);
  pointer-events: auto;
  touch-action: pan-x pinch-zoom;
}

.tas-hero-site-rail::-webkit-scrollbar {
  display: none;
}

.tas-hero-site-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 clamp(154px, 20%, 188px);
  min-width: 0;
  min-height: 96px;
  scroll-snap-align: center;
  display: grid;
  align-content: space-between;
  gap: 5px;
  border: 1px solid rgba(219, 179, 113, 0.055);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.008)),
    radial-gradient(circle at 82% 8%, rgba(118, 223, 255, 0.1), transparent 36%),
    radial-gradient(circle at 8% 100%, rgba(226, 168, 72, 0.11), transparent 44%),
    rgba(6, 12, 16, 0.48);
  color: #f8f3ea;
  padding: 11px 14px;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.1),
    inset 0 -1px 0 rgba(255, 244, 221, 0.02),
    0 20px 60px rgba(0, 0, 0, 0.18),
    0 0 30px rgba(118, 223, 255, 0.035);
  opacity: 0.66;
  transform: scale(0.94);
  transform-origin: center bottom;
  transition:
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.2, 0.72, 0.18, 1),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.tas-hero-site-card > * {
  position: relative;
  z-index: 1;
}

.tas-hero-site-card.active {
  flex-basis: clamp(270px, 34%, 340px);
  min-height: 108px;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  padding: 11px 20px 11px 70px;
  transform: scale(1);
  backdrop-filter: none;
}

.tas-hero-site-card.active::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 50%;
  width: 66px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(226, 168, 72, 0.06), rgba(226, 168, 72, 0.72) 44%, rgba(118, 223, 255, 0.46) 100%);
  filter: drop-shadow(0 0 16px rgba(226, 168, 72, 0.42));
  opacity: 0.78;
  pointer-events: none;
  z-index: -1;
  transform: translateY(-50%);
}

.tas-hero-site-card.active::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 50%;
  width: 220px;
  height: 82px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(4, 8, 10, 0.58), rgba(4, 8, 10, 0.24) 42%, transparent 72%);
  filter: blur(18px);
  opacity: 0.78;
  pointer-events: none;
  z-index: -1;
  transform: translateY(-50%);
}

.tas-hero-site-card:hover,
.tas-hero-site-card:focus-visible {
  outline: 0;
  border-color: rgba(226, 168, 72, 0.26);
  background:
    linear-gradient(180deg, rgba(226, 168, 72, 0.07), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 84% 10%, rgba(118, 223, 255, 0.08), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.1),
    0 0 26px rgba(226, 168, 72, 0.13),
    0 22px 62px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px) scale(0.98);
}

.tas-hero-site-card.active:hover,
.tas-hero-site-card.active:focus-visible {
  border-color: transparent;
  transform: translateY(-4px) scale(1.02);
}

.tas-hero-site-card small {
  color: #e5ba72;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tas-hero-site-card strong {
  overflow-wrap: anywhere;
  color: #fff8ed;
  font-size: clamp(18px, 1.28vw, 23px);
  font-weight: 820;
  line-height: 0.98;
  text-transform: uppercase;
}

.tas-hero-site-card.active strong {
  font-size: clamp(20px, 1.45vw, 26px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.tas-hero-site-card span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(235, 229, 218, 0.7);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.tas-hero-site-card.active span {
  -webkit-line-clamp: 2;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.28;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.tas-hero-site-card b {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #76dfff;
  font-size: 15px;
  font-weight: 760;
}

.tas-hero-site-card b em {
  font-style: normal;
}

.tas-hero-timeline {
  position: relative;
  z-index: 8;
  display: grid;
  grid-column: 1 / -1;
  justify-self: center;
  gap: clamp(9px, 1.2vw, 15px);
  width: 100vw;
  max-width: none;
  margin: clamp(-108px, -7.2vw, -82px) 0 clamp(26px, 3vw, 46px);
  scroll-margin-top: 92px;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(226, 168, 72, 0.12), transparent 52%),
    radial-gradient(ellipse at 50% 118%, rgba(118, 223, 255, 0.035), transparent 44%);
  border: 0;
  padding: clamp(6px, 0.9vw, 14px) 0 clamp(6px, 0.9vw, 12px);
  overflow: visible;
  pointer-events: auto;
  isolation: isolate;
}

.tas-hero-timeline::before,
.tas-hero-timeline::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  pointer-events: none;
}

.tas-hero-timeline::before {
  top: -118px;
  height: 210px;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(226, 168, 72, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(3, 6, 9, 0), rgba(3, 6, 9, 0.12) 42%, rgba(3, 6, 9, 0));
}

.tas-hero-timeline::after {
  bottom: -18px;
  height: 80px;
  background: linear-gradient(180deg, rgba(3, 6, 9, 0), rgba(3, 6, 9, 0.32), rgba(3, 6, 9, 0));
}

.tas-hero-timeline-endpoints {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: min(1280px, calc(100vw - clamp(56px, 9vw, 184px)));
  margin: 0 auto;
  color: rgba(226, 205, 168, 0.84);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  padding: 0;
}

.tas-hero-timeline-endpoints span:last-child {
  text-align: right;
}

.tas-hero-timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
  gap: clamp(10px, 1.5vw, 22px);
  width: min(1280px, calc(100vw - clamp(56px, 9vw, 184px)));
  margin: 0 auto;
  min-height: clamp(88px, 7.6vw, 118px);
  padding: 0;
  pointer-events: auto;
}

.tas-hero-timeline:has(.tas-timeline-info-card:not([hidden])) {
  gap: 14px;
}

.tas-hero-timeline-track::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 168, 72, 0.08), rgba(255, 224, 171, 0.7) 48%, rgba(226, 168, 72, 0.08));
  box-shadow:
    0 0 18px rgba(226, 168, 72, 0.14),
    0 -18px 50px rgba(226, 168, 72, 0.08);
  pointer-events: none;
}

.tas-hero-timeline-point {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 4px;
  align-content: start;
  min-width: 0;
  border: 0;
  background: transparent;
  color: rgba(235, 229, 218, 0.62);
  padding: 0;
  text-align: center;
  box-shadow: none;
  cursor: pointer;
}

.tas-hero-timeline-point:hover,
.tas-hero-timeline-point:focus-visible,
.tas-hero-timeline-point.active {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tas-hero-timeline-point:focus-visible {
  outline: 1px solid rgba(118, 223, 255, 0.42);
  outline-offset: 6px;
  border-radius: 8px;
}

.tas-hero-timeline-point:hover b,
.tas-hero-timeline-point:focus-visible b,
.tas-hero-timeline-point.active b {
  color: #fff8ed;
  text-shadow:
    0 0 18px rgba(226, 168, 72, 0.22),
    0 14px 34px rgba(0, 0, 0, 0.72);
  transform: translateY(-1px);
}

.tas-hero-timeline-point span {
  width: 9px;
  height: 9px;
  margin: 11px 0 12px;
  border: 1px solid rgba(255, 232, 184, 0.74);
  border-radius: 999px;
  background:
    radial-gradient(circle at 44% 36%, #fff7d8 0 18%, #e2a848 44%, rgba(113, 78, 39, 0.82) 100%);
  box-shadow:
    0 0 0 3px rgba(226, 168, 72, 0.08),
    0 0 12px rgba(226, 168, 72, 0.34);
}

.tas-hero-timeline-point.active span {
  width: 9px;
  height: 9px;
  margin: 11px 0 12px;
  border-color: rgba(255, 241, 202, 0.95);
  background:
    radial-gradient(circle at 44% 36%, #fff7d8 0 14%, #f0aa3f 42%, #a96512 100%);
  box-shadow:
    0 0 0 7px rgba(226, 168, 72, 0.13),
    0 0 0 14px rgba(226, 168, 72, 0.045),
    0 0 22px rgba(255, 213, 141, 0.74),
    0 0 48px rgba(226, 168, 72, 0.36);
}

.tas-hero-timeline-point:hover span,
.tas-hero-timeline-point:focus-visible span {
  box-shadow:
    0 0 0 5px rgba(226, 168, 72, 0.1),
    0 0 20px rgba(226, 168, 72, 0.48);
}

.tas-hero-timeline-point strong {
  color: rgba(226, 168, 72, 0.78);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}

.tas-hero-timeline-point.endpoint strong {
  margin-top: 0;
  font-size: 10px;
  color: rgba(226, 168, 72, 0.78);
}

.tas-hero-timeline-point small {
  display: none;
}

.tas-hero-timeline-point b {
  position: relative;
  display: block;
  width: min(196px, 100%);
  margin-top: 8px;
  color: rgba(255, 248, 235, 0.78);
  font-size: clamp(13px, 0.96vw, 16px);
  font-weight: 830;
  letter-spacing: 0.01em;
  line-height: 1.22;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.62);
  text-wrap: balance;
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}

.tas-hero-timeline-point b::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 168, 72, 0), rgba(226, 168, 72, 0.82), rgba(118, 223, 255, 0.46));
  opacity: 0.42;
  transform: scaleX(0.72);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.tas-hero-timeline-point:hover b::after,
.tas-hero-timeline-point:focus-visible b::after,
.tas-hero-timeline-point.active b::after {
  width: 48px;
  opacity: 1;
  transform: scaleX(1);
}

.tas-hero-timeline-point em {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1px solid rgba(118, 223, 255, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 45%, rgba(118, 223, 255, 0.1), rgba(118, 223, 255, 0.025) 72%),
    rgba(3, 8, 12, 0.36);
  color: transparent;
  padding: 0;
  font-size: 0;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.64;
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tas-hero-timeline-point em::after {
  content: "+";
  color: rgba(226, 168, 72, 0.82);
  font-size: 14px;
  font-weight: 860;
  line-height: 1;
}

.tas-hero-timeline-point:hover em,
.tas-hero-timeline-point:focus-visible em,
.tas-hero-timeline-point.active em {
  border-color: rgba(118, 223, 255, 0.34);
  background: rgba(118, 223, 255, 0.075);
  opacity: 1;
  transform: translateY(-1px);
}

.tas-hero-timeline-point.active em::after {
  content: "−";
}

.tas-timeline-info-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-self: center;
  gap: 9px;
  width: min(860px, calc(100% - clamp(28px, 8vw, 156px)));
  border: 0;
  border-top: 1px solid rgba(226, 168, 72, 0.18);
  border-bottom: 1px solid rgba(118, 223, 255, 0.06);
  border-radius: 0;
  background:
    radial-gradient(ellipse at 14% 0%, rgba(226, 168, 72, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(226, 168, 72, 0.055), rgba(7, 12, 17, 0.36) 32%, rgba(4, 8, 12, 0.16) 100%);
  box-shadow:
    0 18px 64px rgba(0, 0, 0, 0.2);
  padding: clamp(16px, 1.6vw, 22px) clamp(58px, 5vw, 76px) clamp(18px, 1.7vw, 24px) clamp(20px, 2.2vw, 32px);
  text-align: left;
  backdrop-filter: blur(10px);
}

.tas-timeline-info-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 248, 235, 0.78);
  padding: 0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.tas-timeline-info-close:hover,
.tas-timeline-info-close:focus-visible {
  border-color: rgba(118, 223, 255, 0.34);
  background: rgba(118, 223, 255, 0.08);
  color: #fff8ed;
  outline: 0;
}

.tas-timeline-info-card[hidden] {
  display: none;
}

.tas-timeline-info-card p {
  margin: 0;
  color: rgba(226, 168, 72, 0.86);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tas-timeline-info-card h3 {
  margin: 0;
  color: #fff8ed;
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 850;
  line-height: 1.14;
}

.tas-timeline-info-card span {
  max-width: 76ch;
  color: rgba(235, 229, 218, 0.7);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 560;
  line-height: 1.56;
}

.tas-overview-band {
  position: relative;
  z-index: 10;
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 82% 12%, rgba(118, 223, 255, 0.06), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(226, 168, 72, 0.08), transparent 34%),
    linear-gradient(180deg, #05080b 0%, #070b10 100%);
  padding: clamp(28px, 3vw, 46px) clamp(28px, 6vw, 92px);
  color: #f8f3ea;
}

.tas-sites-directory {
  min-height: 100vh;
  background: #030609;
  color: #f8f3ea;
}

.tas-sites-directory-hero {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(94px, 10vw, 142px) clamp(28px, 6vw, 92px) clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 84% 8%, rgba(118, 223, 255, 0.08), transparent 34%),
    radial-gradient(circle at 14% 82%, rgba(226, 168, 72, 0.12), transparent 34%),
    linear-gradient(180deg, #04080c 0%, #071017 54%, #030609 100%);
}

.tas-sites-directory-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.tas-sites-directory-copy p {
  margin: 0;
  color: #e5ba72;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tas-sites-directory-copy h1 {
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.tas-sites-directory-copy span {
  max-width: 650px;
  color: rgba(235, 229, 218, 0.74);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.tas-sites-directory-map {
  margin: 0;
  border: 1px solid rgba(226, 168, 72, 0.26);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.tas-sites-directory-map img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tas-sites-directory-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 3vw, 42px) clamp(28px, 6vw, 92px) clamp(42px, 5vw, 78px);
  background: linear-gradient(180deg, #030609 0%, #070b10 100%);
}

.tas-sites-directory-section {
  position: relative;
  z-index: 10;
  background: #070b10;
}

.tas-sites-directory-section-heading {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 3.5vw, 52px) clamp(28px, 6vw, 92px) 0;
  max-width: 980px;
}

.tas-sites-directory-section-heading p {
  margin: 0;
  color: #89d6f6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tas-sites-directory-section-heading h2 {
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.tas-sites-directory-section-heading span {
  max-width: 760px;
  color: rgba(235, 229, 218, 0.7);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}

.tas-sites-directory-grid-related {
  padding-top: clamp(18px, 2.5vw, 32px);
  background: #070b10;
}

.tas-directory-site-card-related {
  border-color: rgba(137, 214, 246, 0.18);
}

.tas-directory-site-card-related:hover,
.tas-directory-site-card-related:focus-visible {
  border-color: rgba(137, 214, 246, 0.48);
}

.tas-directory-site-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto auto;
  gap: 12px;
  min-height: 310px;
  padding: 18px;
  border: 1px solid rgba(226, 168, 72, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.07), rgba(255, 248, 237, 0.025)),
    rgba(3, 6, 9, 0.92);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.tas-directory-site-card:hover,
.tas-directory-site-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(226, 168, 72, 0.46);
  background:
    linear-gradient(180deg, rgba(226, 168, 72, 0.11), rgba(118, 223, 255, 0.04)),
    rgba(3, 6, 9, 0.94);
  outline: none;
}

.tas-directory-site-number {
  color: rgba(229, 186, 114, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.tas-directory-site-card h2 {
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.tas-directory-site-card p {
  margin: 0;
  color: rgba(235, 229, 218, 0.72);
  font-size: 14px;
  line-height: 1.46;
}

.tas-directory-site-meta {
  display: grid;
  gap: 5px;
  color: rgba(235, 229, 218, 0.56);
  font-size: 12px;
  line-height: 1.3;
}

.tas-directory-site-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(248, 243, 234, 0.82);
  font-size: 12px;
  line-height: 1.35;
}

.tas-directory-site-card li {
  position: relative;
  padding-left: 13px;
}

.tas-directory-site-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e5ba72;
}

.tas-directory-site-card strong {
  align-self: end;
  color: #e5ba72;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tas-start-band,
.tas-discovery-band,
.tas-learn-band,
.tas-visit-band {
  position: relative;
  z-index: 10;
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(26px, 3vw, 44px) clamp(28px, 6vw, 92px);
}

.tas-start-band {
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 168, 72, 0.085), transparent 36%),
    radial-gradient(circle at 82% 42%, rgba(118, 223, 255, 0.04), transparent 32%),
    linear-gradient(180deg, #030609 0%, #05090d 100%);
  color: #f8f3ea;
}

.tas-learn-band {
  background:
    radial-gradient(circle at 76% 0%, rgba(118, 223, 255, 0.06), transparent 34%),
    linear-gradient(180deg, #070b10 0%, #05080b 100%);
  color: #f8f3ea;
}

.tas-discovery-band {
  background:
    radial-gradient(circle at 20% 12%, rgba(226, 168, 72, 0.09), transparent 34%),
    radial-gradient(circle at 86% 42%, rgba(118, 223, 255, 0.045), transparent 34%),
    linear-gradient(180deg, #05090d 0%, #030609 100%);
  color: #f8f3ea;
}

.tas-visit-band {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr) auto;
  align-items: end;
  column-gap: clamp(18px, 3vw, 46px);
  background:
    radial-gradient(circle at 82% 8%, rgba(226, 168, 72, 0.11), transparent 34%),
    radial-gradient(circle at 52% 86%, rgba(118, 223, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #05080b 0%, #030609 100%);
  color: #f8f3ea;
}

.tas-start-band::before,
.tas-discovery-band::before,
.tas-learn-band::before,
.tas-visit-band::before,
.tas-overview-band::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(28px, 6vw, 92px);
  left: clamp(28px, 6vw, 92px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 168, 72, 0.34), rgba(118, 223, 255, 0.12), transparent);
  pointer-events: none;
}

.tas-start-heading,
.tas-discovery-heading,
.tas-learn-heading,
.tas-visit-band-copy {
  display: grid;
  gap: 8px;
  max-width: 920px;
}

.tas-start-heading {
  justify-items: center;
  gap: 11px;
  max-width: 820px;
  margin: 0 auto clamp(4px, 0.8vw, 10px);
  text-align: center;
}

.tas-start-heading p {
  justify-self: center;
}

.tas-start-heading p,
.tas-discovery-heading p,
.tas-learn-heading p,
.tas-visit-band-copy p {
  margin: 0;
  color: #e5ba72;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tas-start-heading h2,
.tas-discovery-heading h2,
.tas-learn-heading h2,
.tas-visit-band-copy h2 {
  margin: 0;
  max-width: 880px;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.tas-start-heading h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.tas-start-heading > span,
.tas-discovery-heading > span {
  max-width: 780px;
  color: rgba(235, 229, 218, 0.72);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 560;
  line-height: 1.42;
}

.tas-discovery-heading > span {
  max-width: 620px;
}

.tas-discovery-heading h2 {
  max-width: 680px;
  font-size: clamp(31px, 3.1vw, 46px);
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.tas-start-heading > span {
  max-width: 690px;
  margin-top: 0;
  color: rgba(235, 229, 218, 0.7);
  font-size: clamp(15px, 1.12vw, 19px);
  line-height: 1.48;
}

.tas-visit-band-copy span {
  max-width: 690px;
  color: rgba(235, 229, 218, 0.7);
  font-size: 16px;
  line-height: 1.55;
}

.tas-visit-route-preview {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(226, 168, 72, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(4, 9, 13, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.08),
    0 22px 58px rgba(0, 0, 0, 0.22);
}

.tas-visit-route-preview span {
  position: relative;
  min-height: 30px;
  padding-left: 28px;
  color: rgba(248, 243, 234, 0.88);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.25;
}

.tas-visit-route-preview span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 243, 206, 0.84);
  border-radius: 999px;
  background: #e2a848;
  box-shadow:
    0 0 0 6px rgba(226, 168, 72, 0.12),
    0 0 20px rgba(226, 168, 72, 0.54);
}

.tas-visit-route-preview span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 23px;
  bottom: -9px;
  width: 1px;
  background: linear-gradient(180deg, rgba(226, 168, 72, 0.48), rgba(118, 223, 255, 0.2));
}

.tas-discovery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: clamp(16px, 2.2vw, 30px);
  align-items: stretch;
}

.tas-discovery-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(220px, 19vw, 292px);
  border: 1px solid rgba(226, 168, 72, 0.18);
  border-radius: 10px;
  background: #05080b;
  color: inherit;
  padding: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(226, 168, 72, 0.035),
    0 24px 70px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.tas-discovery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  transform: scale(1.02);
}

.tas-discovery-card > span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 9, 0.08), rgba(3, 6, 9, 0.82)),
    radial-gradient(circle at 82% 18%, rgba(226, 168, 72, 0.18), transparent 34%);
}

.tas-discovery-card small,
.tas-discovery-card strong,
.tas-discovery-card em {
  position: relative;
  z-index: 1;
}

.tas-discovery-card small {
  color: #e5ba72;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tas-discovery-card strong {
  margin-top: 8px;
  color: #fff8ed;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1;
}

.tas-discovery-card em {
  margin-top: 10px;
  color: rgba(235, 229, 218, 0.72);
  font-size: 14px;
  font-style: normal;
  line-height: 1.42;
}

.tas-discovery-card:hover,
.tas-discovery-card:focus-visible {
  outline: 0;
  border-color: rgba(226, 168, 72, 0.62);
  box-shadow:
    0 0 0 1px rgba(226, 168, 72, 0.14),
    0 0 34px rgba(226, 168, 72, 0.16),
    0 30px 78px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.tas-discovery-card-featured {
  min-height: clamp(360px, 36vw, 560px);
  padding: clamp(20px, 2.4vw, 34px);
}

.tas-discovery-card-featured img {
  opacity: 0.52;
}

.tas-discovery-card-featured strong {
  max-width: 9ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.2vw, 82px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.tas-discovery-card-featured em {
  max-width: 31ch;
  color: rgba(248, 243, 234, 0.82);
  font-size: clamp(17px, 1.35vw, 22px);
}

.tas-discovery-drawer-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tas-discovery-card-compact {
  grid-template-columns: minmax(0, 1fr) minmax(96px, 34%);
  align-content: end;
  min-height: 0;
  padding: clamp(15px, 1.45vw, 20px);
}

.tas-discovery-card-compact img {
  inset: 0 0 0 auto;
  width: 44%;
  opacity: 0.58;
  object-position: center;
}

.tas-discovery-card-compact > span {
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.96) 0%, rgba(3, 6, 9, 0.84) 50%, rgba(3, 6, 9, 0.48) 100%),
    radial-gradient(circle at 88% 24%, rgba(226, 168, 72, 0.14), transparent 34%);
}

.tas-discovery-card-compact small,
.tas-discovery-card-compact strong,
.tas-discovery-card-compact em {
  grid-column: 1;
}

.tas-discovery-card-compact strong {
  font-size: clamp(24px, 2.1vw, 34px);
}

.tas-discovery-card-compact em {
  max-width: 28ch;
}

.tas-visit-band > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  border: 1px solid rgba(226, 168, 72, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(226, 168, 72, 0.22), rgba(118, 223, 255, 0.08)),
    rgba(226, 168, 72, 0.075);
  color: #fff8ed;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.12),
    0 18px 52px rgba(0, 0, 0, 0.2);
}

.tas-visit-band > a:hover,
.tas-visit-band > a:focus-visible {
  border-color: rgba(226, 168, 72, 0.62);
  background:
    linear-gradient(135deg, rgba(226, 168, 72, 0.3), rgba(118, 223, 255, 0.12)),
    rgba(226, 168, 72, 0.1);
  outline: 0;
  transform: translateY(-1px);
}

.tas-visit-band > a em {
  color: #76dfff;
  font-style: normal;
}

.tas-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.45vw, 20px);
}

.tas-start-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  align-content: stretch;
  min-height: clamp(286px, 25vw, 410px);
  border: 1px solid rgba(226, 168, 72, 0.22);
  border-radius: 12px;
  background: #04070a;
  color: inherit;
  padding: clamp(16px, 1.55vw, 24px);
  overflow: hidden;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(226, 168, 72, 0.045),
    0 34px 88px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.tas-start-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transform: scale(1.04);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.tas-start-card > span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 8, 0.28) 0%, rgba(2, 5, 8, 0.18) 30%, rgba(2, 5, 8, 0.9) 100%),
    radial-gradient(circle at 34% 12%, rgba(226, 168, 72, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.52), transparent 52%);
  pointer-events: none;
}

.tas-start-card:hover,
.tas-start-card:focus-visible {
  outline: 0;
  border-color: rgba(226, 168, 72, 0.76);
  box-shadow:
    0 0 0 1px rgba(226, 168, 72, 0.18),
    0 0 44px rgba(226, 168, 72, 0.18),
    0 38px 92px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.tas-start-card:hover img,
.tas-start-card:focus-visible img {
  opacity: 0.74;
  filter: saturate(1.12) brightness(1.08);
  transform: scale(1.09);
}

.tas-start-card-gobekli-tepe img {
  object-position: 50% 46%;
}

.tas-start-card-karahan-tepe img {
  object-position: 52% 42%;
}

.tas-start-card-sayburc img {
  object-position: 46% 50%;
}

.tas-start-card-sefertepe img {
  object-position: 50% 45%;
}

.tas-start-card strong,
.tas-start-card em,
.tas-start-card b {
  position: relative;
  z-index: 1;
}

.tas-start-card strong {
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.72);
}

.tas-start-card em {
  max-width: 24ch;
  margin-top: 12px;
  color: rgba(248, 243, 234, 0.84);
  font-size: clamp(16px, 1.22vw, 20px);
  font-style: normal;
  font-weight: 680;
  line-height: 1.25;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
}

.tas-start-card b {
  justify-self: start;
  margin-top: clamp(18px, 2vw, 30px);
  color: #e5ba72;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.tas-start-card b::after {
  content: "  ->";
  color: #76dfff;
  letter-spacing: 0;
}

.tas-learn-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tas-learn-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  border: 1px solid rgba(226, 168, 72, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01));
  color: #f8f3ea;
  padding: 12px 16px;
  text-decoration: none;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.tas-learn-list a:hover,
.tas-learn-list a:focus-visible {
  outline: 0;
  border-color: rgba(226, 168, 72, 0.58);
  background:
    linear-gradient(180deg, rgba(226, 168, 72, 0.065), rgba(255, 255, 255, 0.012));
  box-shadow:
    0 0 0 1px rgba(226, 168, 72, 0.08),
    0 0 26px rgba(226, 168, 72, 0.12),
    0 18px 54px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.tas-learn-list span {
  color: rgba(248, 243, 234, 0.86);
  font-size: 15px;
  line-height: 1.35;
}

.tas-learn-list b {
  color: #76dfff;
  font-size: 19px;
  font-weight: 500;
}

.tas-overview-heading {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.tas-overview-heading p,
.tas-overview-card small {
  margin: 0;
  color: #76dfff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tas-overview-heading h2 {
  margin: 0;
  max-width: 880px;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.tas-overview-heading span {
  max-width: 660px;
  color: rgba(235, 229, 218, 0.72);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.52;
}

.tas-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tas-overview-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 168px;
  border: 1px solid rgba(219, 179, 113, 0.15);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 88% 0%, rgba(118, 223, 255, 0.055), transparent 38%);
  padding: clamp(18px, 2vw, 24px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.tas-overview-card h3 {
  margin: 0;
  color: #fff8ed;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.tas-overview-card p {
  margin: 0;
  color: rgba(235, 229, 218, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.tas-overview-start a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(216, 155, 75, 0.32);
  border-radius: 10px;
  background: rgba(216, 155, 75, 0.08);
  color: #fff8ed;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.tas-site-rail-shell {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 42px;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  border-top: 1px solid rgba(219, 179, 113, 0.12);
  border-bottom: 1px solid rgba(219, 179, 113, 0.14);
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.96), rgba(5, 12, 18, 0.9) 48%, rgba(3, 6, 9, 0.96)),
    radial-gradient(circle at 68% 0%, rgba(118, 223, 255, 0.08), transparent 38%);
  padding: 10px clamp(28px, 4vw, 58px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.tas-site-rail-label {
  display: grid;
  gap: 2px;
  min-width: 82px;
}

.tas-site-rail-label span {
  color: #e5ba72;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tas-site-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 3px 8px;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.tas-site-rail::-webkit-scrollbar {
  display: none;
}

.tas-site-rail-card {
  flex: 0 0 172px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(219, 179, 113, 0.18);
  border-radius: 10px;
  background: rgba(5, 12, 18, 0.68);
  color: #f8f3ea;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tas-site-rail-card:hover,
.tas-site-rail-card:focus-visible {
  outline: 0;
  border-color: rgba(226, 168, 72, 0.68);
  background: rgba(9, 20, 28, 0.84);
  transform: translateY(-2px);
}

.tas-site-rail-card strong {
  color: #e5ba72;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tas-site-rail-card span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(235, 229, 218, 0.66);
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tas-site-rail-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(118, 223, 255, 0.18);
  border-radius: 999px;
  background: rgba(118, 223, 255, 0.06);
  color: #76dfff;
  font-size: 18px;
  box-shadow: 0 0 28px rgba(118, 223, 255, 0.1);
}

.tas-site-drawer {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 38px;
  padding: 78px clamp(28px, 6vw, 96px) 96px;
  background: #030609;
}

.tas-site-drawer h2 {
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 470;
  letter-spacing: -0.04em;
}

.tas-site-drawer > div > span {
  display: block;
  max-width: 430px;
  margin-top: 16px;
  color: rgba(235, 229, 218, 0.64);
  line-height: 1.55;
}

.tas-site-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tas-site-chip {
  min-height: 136px;
  border-radius: 10px;
  padding: 18px;
  cursor: pointer;
}

.tas-site-chip:hover {
  border-color: rgba(226, 168, 72, 0.66);
  transform: translateY(-2px);
}

.tas-site-chip strong {
  color: #fff8ed;
  font-size: 18px;
}

.tas-site-chip span {
  display: block;
  margin-top: 12px;
  color: rgba(235, 229, 218, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .tas-map-hero {
    --tas-map-stage-top: 54px;
    --tas-map-stage-left: clamp(210px, 21vw, 280px);
    --tas-map-stage-right: 44px;
    --tas-map-stage-bottom: 292px;
  }

  .tas-map-copy {
    top: 52px;
    width: min(360px, calc(100vw - 64px));
  }

  .tas-map-copy > span {
    max-width: 360px;
  }

  .tas-orientation-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 760px;
  }

  .tas-orientation-copy p {
    grid-column: 1;
  }

  .tas-orientation-lede {
    grid-column: 1;
  }

  .tas-network-map-panel {
    grid-column: 1;
    max-width: 100%;
  }

  .tas-node-info-card {
    right: auto;
    bottom: auto;
    width: 304px;
  }

  .tas-map-artifact-gobekli {
    width: min(238px, 22vw);
    height: 300px;
    bottom: 318px;
  }

  .tas-map-artifact-karahan {
    width: min(176px, 16vw);
    bottom: 130px;
  }

  .tas-blueprint-panel {
    top: 82px;
    width: min(272px, 25vw);
  }

  .tas-hero-timeline {
    padding-inline: 0;
  }

  .tas-hero-timeline-point em {
    max-width: 126px;
    font-size: 9px;
  }

  .tas-hero-timeline-point.endpoint strong {
    font-size: 10px;
  }

  .tas-site-rail-shell {
    grid-template-columns: auto minmax(0, 1fr) 38px;
    padding-inline: 24px;
  }

  .tas-object-card {
    display: none;
  }

  .tas-site-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tas-discovery-grid,
  .tas-learn-list,
  .tas-sites-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tas-discovery-grid {
    grid-template-columns: 1fr;
  }

  .tas-discovery-drawer-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .tas-discovery-card-compact {
    grid-template-columns: 1fr;
    min-height: 248px;
  }

  .tas-discovery-card-compact img {
    inset: 0;
    width: 100%;
  }

  .tas-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tas-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tas-overview-card {
    min-height: 230px;
  }
}

@media (max-width: 860px) {
  .tas-photo-hero {
    min-height: 620px;
    max-height: none;
  }

  .tas-photo-hero-copy {
    width: 100%;
    min-height: 620px;
    max-height: none;
    padding: 116px 22px 68px;
  }

  .tas-photo-hero-copy h1 {
    max-width: 360px;
    font-size: clamp(43px, 13vw, 62px);
  }

  .tas-photo-hero-copy span,
  .tas-photo-hero-copy strong {
    max-width: 340px;
    font-size: clamp(21px, 6vw, 28px);
  }

  .tas-home-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 66px;
    min-height: 66px;
    padding: 0 18px;
  }

  .tas-home-nav .atlas-home-brand {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .tas-home-nav .atlas-home-brand small {
    display: none;
  }

  .tas-nav-item,
  .tas-visit-link {
    display: none;
  }

  .tas-home-links > a:not(.tas-visit-link) {
    display: none;
  }

  .atomic-site-page .site-universal-nav + .gobekli-hero-shell,
  .atomic-site-page .site-universal-nav + .coming-soon-site-shell {
    padding-top: 76px;
  }

  .tour-static-page {
    padding-top: 38px;
  }

  .tas-sites-directory-hero {
    grid-template-columns: 1fr;
    padding: 96px 20px 32px;
  }

  .tas-sites-directory-grid {
    grid-template-columns: 1fr;
    padding: 24px 20px 44px;
  }

  .tas-directory-site-card {
    min-height: 0;
  }

  .tas-site-rail-shell {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 10px;
    margin-top: 0;
    padding: 9px 18px;
  }

  .tas-overview-band {
    padding: 42px 20px;
  }

  .tas-start-band,
  .tas-discovery-band,
  .tas-orientation-band,
  .tas-learn-band,
  .tas-visit-band {
    padding: 38px 20px;
  }

  .tas-start-heading {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .tas-start-heading p,
  .tas-start-heading h2,
  .tas-start-heading > span {
    grid-column: 1;
  }

  .tas-start-heading h2 {
    max-width: 620px;
  }

  .tas-start-heading > span {
    max-width: 620px;
    margin-top: 4px;
  }

  .tas-network-map-panel {
    min-height: 310px;
    width: calc(100% + 40px);
    max-width: none;
    margin: 20px -20px 0;
  }

  .tas-network-map-panel .tas-map-bg,
  .tas-network-map-panel .tas-network-svg,
  .tas-network-map-panel .tas-network-sites {
    display: block;
  }

  .tas-network-map-panel .tas-map-node em {
    display: none;
  }

  .tas-discovery-grid,
  .tas-start-grid,
  .tas-learn-list {
    grid-template-columns: 1fr;
  }

  .tas-discovery-drawer-list {
    grid-template-columns: 1fr;
  }

  .tas-discovery-card {
    min-height: 218px;
  }

  .tas-discovery-card-featured {
    min-height: 360px;
  }

  .tas-discovery-card-compact {
    min-height: 220px;
  }

  .tas-visit-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tas-visit-band > a {
    justify-self: start;
  }

  .tas-overview-grid {
    grid-template-columns: 1fr;
  }

  .tas-overview-card {
    min-height: 0;
  }

  .tas-site-rail-label {
    display: none;
  }

  .tas-map-hero {
    min-height: 520px;
  }

  .tas-map-bg {
    display: none;
    background-image: none;
  }

  .tas-network-svg,
  .tas-network-sites {
    display: none;
  }

  .tas-map-copy {
    top: 112px;
    left: 22px;
    width: min(420px, calc(100vw - 44px));
  }

  .tas-map-copy h1 {
    max-width: 340px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.98;
  }

  .tas-map-copy p {
    max-width: 320px;
    margin-top: 12px;
    font-size: clamp(17px, 5vw, 20px);
    line-height: 1.25;
  }

  .tas-map-copy > span {
    max-width: 320px;
    margin-top: 20px;
    font-size: 12px;
  }

  .tas-map-copy > span::before {
    width: 32px;
  }

  .tas-map-node em {
    display: none;
  }

  .tas-region-label {
    display: none;
  }

  .tas-node-info-card {
    right: auto;
    bottom: auto;
    width: min(330px, calc(100vw - 44px));
  }

  .tas-map-artifact {
    display: none;
  }

  .tas-blueprint-panel {
    display: none;
  }

  .tas-hero-site-rail-shell {
    display: none;
  }

  .tas-hero-timeline {
    display: grid;
    gap: 10px;
    width: calc(100% + 40px);
    margin: -20px -20px 22px;
    padding: 14px 0 12px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(226, 168, 72, 0.13), transparent 48%),
      linear-gradient(180deg, rgba(3, 6, 9, 0), rgba(3, 6, 9, 0.16) 46%, rgba(3, 6, 9, 0));
  }

  .tas-hero-timeline-endpoints {
    width: calc(100% - 40px);
    padding: 0;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .tas-hero-timeline-track {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
  }

  .tas-hero-timeline-track::before {
    top: 13px;
    bottom: 14px;
    left: 8px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(226, 168, 72, 0.08), rgba(255, 224, 171, 0.7) 48%, rgba(226, 168, 72, 0.08));
  }

  .tas-hero-timeline-point {
    grid-template-columns: 22px minmax(0, 1fr) 28px;
    grid-template-areas:
      "dot phase read"
      "dot title read";
    justify-items: start;
    align-items: start;
    column-gap: 10px;
    row-gap: 3px;
    min-height: 0;
    border-bottom: 1px solid rgba(226, 168, 72, 0.055);
    padding: 10px 0 12px;
    text-align: left;
  }

  .tas-hero-timeline-point span,
  .tas-hero-timeline-point.active span {
    grid-area: dot;
    width: 11px;
    height: 11px;
    margin: 4px 0 0 3px;
  }

  .tas-hero-timeline-point strong,
  .tas-hero-timeline-point.endpoint strong {
    grid-area: phase;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .tas-hero-timeline-point b {
    grid-area: title;
    width: auto;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.16;
    text-align: left;
  }

  .tas-hero-timeline-point b::after {
    display: none;
  }

  .tas-hero-timeline-point em {
    grid-area: read;
    align-self: center;
    width: 24px;
    height: 24px;
    margin-top: 0;
  }

  .tas-timeline-info-card {
    grid-column: 1 / -1;
    justify-self: end;
    width: calc(100% - 22px);
    margin: -1px 0 10px 22px;
    border-top: 0;
    border-bottom: 1px solid rgba(118, 223, 255, 0.08);
    border-left: 1px solid rgba(226, 168, 72, 0.16);
    background:
      radial-gradient(ellipse at 0% 0%, rgba(226, 168, 72, 0.14), transparent 42%),
      linear-gradient(180deg, rgba(8, 14, 18, 0.66), rgba(4, 8, 11, 0.22));
    padding: 14px 42px 16px 16px;
  }

  .tas-timeline-info-card h3 {
    font-size: 18px;
  }

  .tas-timeline-info-card span {
    font-size: 13px;
    line-height: 1.5;
  }

  .tas-site-rail-card {
    flex-basis: 164px;
    min-height: 64px;
    padding: 10px 12px;
  }

  .tas-site-drawer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 56px 22px 72px;
  }

  .tas-site-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .tas-photo-hero {
    min-height: 560px;
  }

  .tas-photo-hero-copy {
    min-height: 560px;
  }

  .tas-photo-hero-media img {
    object-position: center top;
  }

  .tas-map-hero {
    min-height: 1040px;
  }

  .tas-network-map-panel {
    --tas-map-stage-top: 10px;
    --tas-map-stage-right: 10px;
    --tas-map-stage-bottom: 10px;
    --tas-map-stage-left: 10px;
    min-height: 240px;
  }

  .tas-map-copy > span {
    font-size: 16px;
  }

  .tas-node-info-card {
    left: 50%;
    top: auto;
    bottom: 24px;
    transform: translateX(-50%);
  }

  .tas-node-info-card.is-left,
  .tas-node-info-card.is-low,
  .tas-node-info-card.is-high,
  .tas-node-info-card.is-left.is-low,
  .tas-node-info-card.is-left.is-high {
    transform: translateX(-50%);
  }

  .tas-site-chip-grid {
    grid-template-columns: 1fr;
  }
}

.site-image {
  height: 118px;
  border-bottom: 1px solid rgba(232, 217, 193, 0.09);
  background:
    radial-gradient(circle at 70% 20%, rgba(236, 185, 122, 0.35), transparent 26%),
    linear-gradient(135deg, rgba(115, 73, 44, 0.72), rgba(27, 24, 20, 0.92)),
    repeating-linear-gradient(90deg, rgba(242, 231, 212, 0.08) 0 1px, transparent 1px 46px);
}

.site-card-body {
  padding: 14px;
}

.site-card-body h2 {
  margin: 0 0 8px;
  color: #fff5e8;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.site-card-body p {
  min-height: 72px;
  margin: 0;
  color: #cfc1b0;
  font-size: 13px;
  line-height: 1.38;
}

.site-card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.site-card-body li {
  border: 1px solid rgba(208, 139, 92, 0.2);
  border-radius: 999px;
  color: #d8b291;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 720;
}

.site-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 14px;
  border: 1px solid rgba(208, 139, 92, 0.32);
  border-radius: 999px;
  color: #f1d0b3;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.home-support-grid {
  width: min(1240px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px auto 0;
}

.home-support-grid article {
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 14px;
  background: rgba(18, 17, 16, 0.76);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.home-support-grid h2 {
  margin: 6px 0 8px;
  color: #fff4e4;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.home-support-grid p:not(.app-kicker) {
  margin: 0;
  color: #cdbfae;
  line-height: 1.5;
}

.site-dossier-shell {
  display: none;
}

#app.site-dossier-mode {
  display: block;
  height: 100vh;
  overflow: hidden;
}

#app.site-dossier-mode .sidebar,
#app.site-dossier-mode .workspace,
#app.site-dossier-mode .detail-panel {
  display: none;
}

#app.site-dossier-mode .site-dossier-shell {
  display: block;
  height: 100vh;
  overflow: auto;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 165, 36, 0.1), transparent 38%),
    linear-gradient(180deg, #0b0b0c 0%, #111112 45%, #0b0b0c 100%);
}

.dossier-page {
  min-height: 100vh;
  color: var(--bone);
}

.dossier-hero,
.dossier-body {
  width: min(1040px, calc(100vw - 56px));
  margin: 0 auto;
}

.dossier-hero {
  position: relative;
  padding: 24px 0 20px;
}

.dossier-hero::before {
  content: "";
  position: absolute;
  inset: 0 -28px auto;
  height: 430px;
  pointer-events: none;
  background:
    linear-gradient(rgba(242, 231, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 231, 212, 0.028) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  opacity: 0.55;
}

.dossier-actions {
  position: sticky;
  z-index: 6;
  top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.dossier-actions button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(21, 20, 18, 0.8);
  backdrop-filter: blur(14px);
}

.dossier-brandline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d8b49d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dossier-brandline img {
  width: 42px;
  height: 46px;
  border-radius: 10px;
  background: var(--bone);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.dossier-kicker,
.dossier-section-heading p,
.dossier-section summary small {
  margin: 0;
  color: var(--copper-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dossier-kicker {
  position: relative;
  z-index: 1;
  margin-top: 26px;
}

.dossier-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 8px 0 0;
  color: #fff7ea;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.dossier-significance {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 16px 0 0;
  color: #d7c7b2;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.36;
}

.dossier-snapshot-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.dossier-snapshot-row div {
  min-height: 76px;
  border: 1px solid rgba(232, 217, 193, 0.13);
  border-radius: 10px;
  background: rgba(24, 22, 20, 0.68);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.dossier-snapshot-row dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dossier-snapshot-row dd {
  margin: 0;
  color: #f5ead9;
  font-size: 15px;
  line-height: 1.35;
}

.dossier-why {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-top: 18px;
  border-left: 4px solid var(--copper-2);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg, rgba(53, 34, 25, 0.86), rgba(25, 23, 21, 0.78));
  padding: 16px 20px;
}

.dossier-why strong {
  display: block;
  margin-bottom: 8px;
  color: #e7b084;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dossier-why p {
  margin: 0;
  color: #f0e4d2;
  font-size: 17px;
  line-height: 1.45;
}

.dossier-index {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(232, 217, 193, 0.11);
  background: rgba(11, 12, 11, 0.84);
  padding: 10px max(16px, calc((100% - 1040px) / 2));
  backdrop-filter: blur(18px);
}

.dossier-index a {
  flex: 1 1 112px;
  min-width: 0;
  border: 1px solid rgba(232, 217, 193, 0.13);
  border-radius: 999px;
  color: #d7c7b2;
  padding: 8px 12px;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.dossier-index a:hover {
  border-color: rgba(208, 139, 92, 0.7);
  background: rgba(60, 39, 29, 0.55);
  color: #fff4e4;
}

.dossier-body {
  display: grid;
  gap: 14px;
  padding: 20px 0 72px;
}

.dossier-section {
  scroll-margin-top: 76px;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 12px;
  background: rgba(18, 17, 16, 0.72);
  box-shadow: var(--shadow-soft);
}

.dossier-section-heading {
  padding: 20px 22px 0;
}

.dossier-section h2,
.dossier-section summary strong {
  display: block;
  margin: 5px 0 0;
  color: #fff4e4;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.dossier-section h3 {
  margin: 20px 24px 12px;
  color: #e6b184;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-section details {
  padding: 0;
}

.dossier-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
}

.dossier-section summary::-webkit-details-marker {
  display: none;
}

.dossier-section summary em {
  flex: 0 0 auto;
  border: 1px solid rgba(208, 139, 92, 0.28);
  border-radius: 999px;
  color: #d8b49d;
  padding: 8px 11px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.dossier-section details[open] summary {
  border-bottom: 1px solid rgba(232, 217, 193, 0.1);
}

.dossier-inline-drawer {
  margin: 14px 22px;
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 10px;
  background: rgba(8, 9, 8, 0.32);
}

.dossier-inline-drawer:last-child {
  margin-bottom: 22px;
}

.dossier-inline-drawer summary {
  min-height: 64px;
  padding: 14px 16px;
}

.dossier-inline-drawer summary strong {
  font-size: 19px;
}

.dossier-inline-drawer .dossier-record-list,
.dossier-inline-drawer .dossier-artifact-list,
.dossier-inline-drawer .dossier-fact-list,
.dossier-inline-drawer .dossier-finds {
  padding-inline: 16px;
}

.dossier-quick-block {
  margin-top: 4px;
}

.dossier-quick-block h3 {
  margin-top: 16px;
}

.dossier-fact-list,
.dossier-finds {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 22px 22px;
}

.dossier-fact-list {
  list-style: none;
}

.dossier-fact-list li,
.dossier-finds li {
  color: #e8dcc9;
  font-size: 17px;
  line-height: 1.45;
}

.dossier-fact-list li {
  position: relative;
  padding-left: 18px;
}

.dossier-fact-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-2);
}

.dossier-finds {
  padding-left: 48px;
}

.dossier-record-list,
.dossier-artifact-list {
  display: grid;
  gap: 10px;
  padding: 16px 22px 22px;
}

.dossier-record,
.dossier-artifact {
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 10px;
  background: rgba(10, 11, 10, 0.42);
  padding: 14px;
}

.dossier-record p,
.dossier-artifact p,
.dossier-callout p {
  margin: 0;
  color: #e9ddca;
  font-size: 16px;
  line-height: 1.52;
}

.dossier-record div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dossier-record span,
.dossier-artifact dl div {
  border: 1px solid rgba(232, 217, 193, 0.09);
  border-radius: 999px;
  color: var(--muted);
  padding: 5px 8px;
  font-size: 12px;
}

.dossier-artifact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 18px;
  align-items: start;
}

.dossier-artifact h3 {
  margin: 0 0 8px;
  color: #fff1dc;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.dossier-artifact dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
}

.dossier-artifact dt {
  display: inline;
  color: #d8b49d;
  font-weight: 800;
}

.dossier-artifact dd {
  display: inline;
  margin: 0 0 0 4px;
}

.dossier-artifact .reference-link {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.dossier-callout {
  margin: 20px 24px 0;
  border-left: 3px solid var(--copper-2);
  border-radius: 0 12px 12px 0;
  background: rgba(54, 36, 27, 0.52);
  padding: 16px 18px;
}

.dossier-related-sites {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 24px 24px;
}

.dossier-related-sites button {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  text-align: left;
  border-radius: 14px;
}

.dossier-related-sites strong {
  color: #fff1dc;
  font-size: 17px;
}

.dossier-related-sites span {
  color: var(--muted);
  line-height: 1.4;
}

.dossier-empty-text {
  margin: 0;
  padding: 20px 24px 24px;
  color: var(--muted);
}

#dossier-sources .research-depth-summary,
#dossier-sources h4,
#dossier-sources .evidence-record-list,
#dossier-sources .source-chunk-list {
  margin-inline: 24px;
}

.sidebar,
.detail-panel {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(24, 23, 21, 0.96), rgba(16, 16, 15, 0.98)),
    var(--panel);
  backdrop-filter: blur(18px);
}

.sidebar {
  padding: 22px 20px;
  box-shadow: 14px 0 34px rgba(0, 0, 0, 0.22);
}

.detail-panel {
  box-shadow: -14px 0 34px rgba(0, 0, 0, 0.22);
}

.brand {
  gap: 14px;
  padding-bottom: 22px;
  border-bottom-color: rgba(184, 104, 61, 0.25);
}

.brand-mark {
  width: 50px;
  height: 54px;
  flex-basis: 50px;
  border-color: rgba(242, 231, 212, 0.28);
  border-radius: 13px;
  background: var(--bone);
  box-shadow:
    0 0 0 1px rgba(184, 104, 61, 0.28),
    0 13px 30px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(184, 104, 61, 0.16);
}

.brand h1 {
  color: var(--bone);
  font-size: 19px;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.brand p {
  margin-top: 8px;
  color: #c7a58e;
  font-size: 11px;
  letter-spacing: 0.08em;
}

section {
  margin: 22px 0;
}

section h2,
.search span,
.media-kicker {
  color: #8c8175;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search {
  gap: 9px;
  margin: 22px 0 18px;
}

.search input {
  border-color: rgba(242, 231, 212, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(9, 10, 9, 0.82), rgba(17, 16, 15, 0.92));
  color: var(--bone);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 22px rgba(0, 0, 0, 0.2);
}

.search input {
  min-height: 46px;
  padding: 12px 14px;
}

.search input:focus {
  border-color: rgba(208, 139, 92, 0.86);
  box-shadow:
    0 0 0 3px rgba(184, 104, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.search-results {
  gap: 8px;
  margin: -6px 0 16px;
}

.search-results button,
.connection-card,
.structure-card,
.back-button {
  border-radius: 12px;
}

.search-results button {
  padding: 11px 12px;
  background: rgba(31, 30, 27, 0.92);
}

.search-results strong,
.connection-card strong,
.structure-card strong {
  color: var(--bone);
  letter-spacing: -0.01em;
}

.search-results span,
.connection-card span,
.structure-card span,
.structure-card small {
  color: var(--muted);
}

.quest-buttons {
  gap: 10px;
}

.quest-buttons button {
  min-height: 74px;
  border-radius: 14px;
  padding: 13px;
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 104, 61, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(31, 30, 27, 0.96), rgba(18, 18, 16, 0.96));
}

.quest-buttons strong {
  color: var(--bone);
  font-size: 15px;
  letter-spacing: -0.01em;
}

.quest-buttons span {
  color: #a99c8c;
  font-size: 12px;
  line-height: 1.32;
}

.quest-buttons button.active {
  border-color: rgba(117, 201, 154, 0.76);
  background:
    radial-gradient(circle at 12% 12%, rgba(117, 201, 154, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(29, 45, 35, 0.96), rgba(18, 18, 16, 0.97));
}

.site-list {
  gap: 8px;
  max-height: calc(100vh - 404px);
}

.site-list button {
  min-height: 38px;
  border-radius: 12px;
  padding: 8px 11px;
  color: #e8ded0;
  text-align: left;
}

.site-list button:hover {
  transform: translateX(2px);
}

.advanced-filters summary {
  border-radius: 12px;
  background: rgba(20, 20, 18, 0.92);
}

.tag-chip,
.coverage-pill,
.section-pill-list span {
  border-color: rgba(242, 231, 212, 0.14);
  background: rgba(22, 22, 20, 0.84);
}

.tag-chip.active,
.coverage-pill.captured {
  border-color: rgba(117, 201, 154, 0.72);
  background: rgba(28, 48, 35, 0.76);
}

.workspace {
  grid-template-rows: 104px 1fr;
}

.topbar {
  position: relative;
  z-index: 2;
  gap: 12px;
  border-bottom-color: rgba(242, 231, 212, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 18, 16, 0.98), rgba(12, 13, 12, 0.94));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  padding: 16px 24px;
  min-height: 104px;
}

.topbar strong {
  color: var(--bone);
  font-size: 20px;
  letter-spacing: -0.01em;
}

#graphStats {
  display: block;
  margin-top: 3px;
  margin-bottom: 0;
  color: #93887b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 30ch;
  font-size: 11px;
}

.topbar-primary {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

#graphStats {
  display: block;
  margin-top: 3px;
  color: #93887b;
  font-size: 13px;
}

.topbar-orbit {
  color: rgba(208, 139, 92, 0.72);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.toolbar button {
  border-radius: 999px;
  font-size: 12px;
}

.toolbar #viewToggleButton,
.toolbar #fitButton {
  min-height: 40px;
  padding: 10px 16px;
}

.toolbar #fitButton {
  display: none;
}

.toolbar #viewToggleButton,
.toolbar #fitButton {
  display: inline-flex;
}

.toolbar #fitButton {
  display: none;
}

.graph-shell {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(184, 104, 61, 0.14), transparent 34%),
    radial-gradient(ellipse at 28% 70%, rgba(117, 201, 154, 0.055), transparent 32%),
    linear-gradient(90deg, rgba(242, 231, 212, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(242, 231, 212, 0.022) 1px, transparent 1px),
    #090d0c;
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.graph-shell::before,
.graph-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.graph-shell::before {
  z-index: -1;
  background:
    radial-gradient(ellipse at 48% 42%, transparent 0 33%, rgba(209, 164, 111, 0.035) 34%, transparent 35%),
    radial-gradient(ellipse at 48% 42%, transparent 0 45%, rgba(209, 164, 111, 0.028) 46%, transparent 47%),
    radial-gradient(ellipse at 48% 42%, transparent 0 58%, rgba(209, 164, 111, 0.022) 59%, transparent 60%);
}

.graph-shell::after {
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(242, 231, 212, 0.035) 38.15%, transparent 38.35%),
    linear-gradient(18deg, transparent 0 52%, rgba(184, 104, 61, 0.05) 52.1%, transparent 52.35%),
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(0, 0, 0, 0.28) 100%);
  opacity: 0.9;
}

#graph {
  position: relative;
  z-index: 1;
}

.edge {
  stroke: rgba(141, 128, 113, 0.46);
}

.edge.active {
  stroke: var(--copper-2);
}

.node circle,
.map-dot,
.mind-node circle,
.mind-site circle {
  transition: r 150ms ease, stroke 150ms ease, filter 150ms ease, opacity 150ms ease;
}

.node:hover circle,
.map-site:hover .map-dot,
.mind-node:hover circle,
.mind-site:hover circle {
  stroke: rgba(208, 139, 92, 0.9);
}

.node text,
.map-site text,
.mind-node text,
.mind-site text,
.category-label,
.map-region-label {
  stroke: #080a09;
  stroke-width: 5px;
}

.node.active circle,
.map-site.active .map-dot {
  stroke: var(--bone);
}

.workbench-title {
  fill: var(--bone);
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.workbench-subtitle {
  fill: #a99c8c;
  font-size: 15px;
}

.exhibit-hero-title {
  fill: var(--bone);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.exhibit-hero-subtitle {
  fill: #cdbfae;
  font-size: 18px;
  font-weight: 560;
}

.exhibit-hero-copy {
  fill: #e9dfd1;
  font-size: 20px;
  font-weight: 520;
}

.exhibit-feature-card rect,
.site-exhibit-lead rect,
.site-exhibit-difference rect {
  fill: rgba(29, 24, 20, 0.88);
  stroke: rgba(208, 139, 92, 0.32);
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.27));
}

.exhibit-feature-art {
  fill: rgba(88, 49, 36, 0.72);
  stroke: rgba(242, 231, 212, 0.12);
}

.exhibit-kicker,
.exhibit-section-label {
  fill: #d08b5c;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.exhibit-feature-title {
  fill: var(--bone);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.exhibit-feature-copy {
  fill: #d8ccbd;
  font-size: 18px;
  font-weight: 530;
}

.exhibit-button rect {
  stroke: rgba(208, 139, 92, 0.42);
  fill: rgba(30, 27, 24, 0.88);
}

.exhibit-button.primary rect {
  fill: rgba(184, 104, 61, 0.94);
  stroke: rgba(242, 231, 212, 0.2);
}

.exhibit-button.secondary rect {
  fill: rgba(18, 17, 16, 0.78);
}

.exhibit-button text {
  fill: var(--bone);
  font-size: 14px;
  font-weight: 780;
}

.exhibit-button:hover rect,
.exhibit-path-card:hover rect,
.exhibit-mini-card:hover rect,
.site-evidence-chip:hover rect {
  stroke: rgba(208, 139, 92, 0.86);
  filter: drop-shadow(0 14px 24px rgba(184, 104, 61, 0.16));
}

.exhibit-path-card rect,
.exhibit-mini-card rect,
.site-evidence-chip rect {
  fill: rgba(23, 22, 20, 0.78);
  stroke: rgba(242, 231, 212, 0.15);
}

.exhibit-path-title,
.exhibit-mini-title {
  fill: var(--bone);
  font-size: 17px;
  font-weight: 840;
  letter-spacing: -0.015em;
}

.exhibit-path-detail,
.exhibit-mini-detail {
  fill: #aa9e91;
  font-size: 13px;
}

.exhibit-path-arrow {
  fill: #d08b5c;
  font-size: 22px;
  font-weight: 850;
}

.exhibit-research-link text {
  fill: #8f8377;
  font-size: 13px;
}

.exhibit-research-link:hover text {
  fill: #d08b5c;
}

.site-exhibit-difference circle {
  fill: #d08b5c;
}

.site-guide-card rect {
  fill: rgba(28, 25, 22, 0.9);
  stroke: rgba(208, 139, 92, 0.28);
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.26));
}

.site-guide-card:hover rect {
  fill: rgba(40, 31, 26, 0.95);
  stroke: rgba(208, 139, 92, 0.7);
}

.site-guide-title {
  fill: var(--bone);
  font-size: 23px;
  font-weight: 850;
}

.site-guide-meta,
.site-guide-location {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.site-guide-location {
  fill: #c9b8a6;
}

.site-guide-copy {
  fill: #eee1cf;
  font-size: 14px;
  font-weight: 520;
}

.site-guide-dot {
  fill: var(--copper-2);
}

.site-guide-discovery {
  fill: #d8caba;
  font-size: 12px;
  font-weight: 700;
}

.site-guide-button rect {
  fill: rgba(184, 104, 61, 0.16);
  stroke: rgba(208, 139, 92, 0.55);
}

.site-guide-button text {
  fill: var(--bone);
  font-size: 12px;
  font-weight: 800;
}

.site-profile {
  display: grid;
  gap: 22px;
}

.site-profile h3 {
  margin-bottom: 10px;
}

.site-profile-lead {
  border-left: 3px solid var(--copper-2);
  border-radius: 14px;
  background: rgba(47, 32, 25, 0.6);
  padding: 18px 20px;
}

.site-profile-lead p {
  color: var(--bone);
  font-size: 18px;
  line-height: 1.52;
}

.profile-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-chip-row span {
  border: 1px solid rgba(208, 139, 92, 0.35);
  border-radius: 999px;
  background: rgba(208, 139, 92, 0.1);
  color: var(--bone);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 750;
}

.evidence-record-list,
.source-chunk-list,
.related-site-list {
  display: grid;
  gap: 10px;
}

.evidence-record,
.source-chunk-list article,
.related-site-list button {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(20, 19, 17, 0.76);
  padding: 13px 14px;
}

.evidence-record p,
.source-chunk-list p {
  margin: 0;
  color: #eadfce;
  line-height: 1.48;
}

.evidence-record-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.evidence-record-meta span {
  border-radius: 999px;
  background: rgba(242, 231, 212, 0.07);
  color: var(--muted);
  padding: 4px 8px;
  font-size: 11px;
}

.artifact-record strong {
  color: var(--bone);
}

.reference-link {
  margin-top: 10px !important;
}

.reference-link span {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(208, 139, 92, 0.26);
  border-radius: 999px;
  background: rgba(208, 139, 92, 0.08);
  color: var(--copper-2);
  padding: 5px 9px;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.related-site-list button {
  display: grid;
  gap: 5px;
  width: 100%;
  text-align: left;
}

.related-site-list strong {
  color: var(--bone);
}

.related-site-list span,
.source-chunk-list small {
  color: var(--muted);
  line-height: 1.35;
}

.research-depth-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 18px;
}

.research-depth-summary span {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(242, 231, 212, 0.05);
  padding: 12px;
  color: var(--muted);
}

.research-depth-summary strong {
  display: block;
  color: var(--bone);
  font-size: 22px;
}

.clean-list {
  margin: 8px 0 18px;
  padding-left: 20px;
  color: #d8ccbd;
}

.clean-list li {
  margin: 8px 0;
}

.mind-prompt rect,
.workbench-lane rect,
.workbench-example rect,
.site-cockpit-card rect,
.map-focus-card rect,
.map-legend rect {
  fill: rgba(25, 24, 22, 0.78);
  stroke: rgba(242, 231, 212, 0.15);
}

.site-cockpit-card.primary rect {
  fill: rgba(32, 44, 34, 0.84);
  stroke: rgba(117, 201, 154, 0.5);
}

.site-cockpit-card.clickable:hover rect {
  stroke: rgba(208, 139, 92, 0.86);
}

.workbench-lane-title,
.site-cockpit-detail,
.map-legend text,
.map-focus-card text {
  fill: #e9dfd1;
}

.site-cockpit-title {
  fill: #e0a36f;
}

.site-cockpit-count {
  fill: #dfa246;
}

.map-land {
  fill: rgba(29, 38, 30, 0.56);
  stroke: rgba(157, 145, 125, 0.35);
}

.map-river {
  stroke: rgba(82, 124, 148, 0.62);
}

.map-dot.tas-tepeler {
  fill: var(--green);
}

.map-dot.upper-euphrates,
.map-dot.upper-tigris {
  fill: var(--gold);
}

.detail-header {
  padding: 24px 24px 18px;
  border-bottom-color: rgba(242, 231, 212, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 104, 61, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(25, 24, 22, 0.98), rgba(17, 17, 16, 0.96));
}

.detail-header h2 {
  color: var(--bone);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.detail-tabs {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom-color: rgba(242, 231, 212, 0.11);
  background: rgba(14, 15, 14, 0.82);
}

.tab {
  min-height: 36px;
  flex: 1 1 0;
  border-radius: 999px;
  background: transparent;
  color: #a99c8c;
  font-size: 12px;
  font-weight: 720;
}

.tab:hover,
.tab.active {
  border-color: rgba(208, 139, 92, 0.7);
  background: rgba(184, 104, 61, 0.12);
  color: var(--bone);
  box-shadow: none;
}

.detail-content {
  padding: 22px 24px 34px;
  color: #ded4c7;
  font-size: 14px;
  line-height: 1.62;
}

.detail-content h3,
.dossier-view h4,
.guide-group strong,
.meaning-grid strong,
.fact-source-layer h4,
.fact-source-layer h5,
.structure-table th,
.brief-card strong {
  color: #d99a68;
  letter-spacing: 0.06em;
}

.detail-content h3 {
  margin: 22px 0 10px;
}

.detail-content p {
  margin-bottom: 13px;
}

.context-note,
.story-lead,
.guide-intro {
  border-left-color: var(--copper);
}

.story-lead {
  border-radius: 0 14px 14px 0;
  background: rgba(184, 104, 61, 0.1);
}

.brief-grid,
.connection-summary-grid,
.connection-grid,
.structure-grid,
.meaning-grid,
.metric-grid {
  gap: 10px;
}

.brief-card,
.metric,
.strength-row span,
.connection-summary,
.connection-card,
.structure-card,
.evidence-slab,
.meaning-grid > div,
.guide-group,
.answer-lead,
.answer-block,
.fact-source-layer,
.raw-notes,
.dossier-empty,
.media-card,
.research-drawer,
.alias-line,
.trust-panel,
.structure-table {
  border-color: rgba(242, 231, 212, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(33, 31, 28, 0.88), rgba(20, 20, 18, 0.92));
  box-shadow: var(--shadow-soft);
}

.brief-card[data-site-topic-card]:hover,
.connection-card:hover,
.structure-card:hover {
  border-color: rgba(208, 139, 92, 0.78);
  background:
    linear-gradient(180deg, rgba(48, 38, 31, 0.9), rgba(23, 22, 20, 0.96));
  transform: translateY(-1px);
}

.brief-card {
  padding: 13px;
}

.brief-card strong {
  font-size: 11px;
}

.brief-card span,
.metric strong,
.strength-row strong {
  color: #dfa246;
}

.connection-card,
.structure-card {
  padding: 13px 14px;
}

.structure-card {
  border-color: rgba(117, 201, 154, 0.27);
  background:
    linear-gradient(180deg, rgba(24, 38, 31, 0.82), rgba(19, 22, 20, 0.95));
}

.trust-panel.strong {
  border-color: rgba(117, 201, 154, 0.58);
  background: rgba(25, 47, 34, 0.68);
}

.trust-panel.developing,
.answer-lead {
  border-color: rgba(208, 139, 92, 0.58);
  background: rgba(52, 37, 24, 0.54);
}

.trust-panel.weak {
  border-color: rgba(214, 109, 98, 0.54);
  background: rgba(55, 27, 26, 0.54);
}

.detail-content a,
.wiki-link {
  color: #d89a66;
}

.detail-content a:hover,
.wiki-link:hover {
  color: #f0c095;
  text-decoration: none;
}

.markdown-view {
  color: #cfc4b6;
}

.media-placeholder {
  background:
    radial-gradient(circle at center, rgba(184, 104, 61, 0.12), transparent 45%),
    #0b0c0b;
}

.profile-dossier-v2 .dossier-hero {
  min-height: auto;
}

.profile-highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.profile-highlight-strip span {
  padding: 8px 10px;
  border: 1px solid rgba(224, 154, 92, 0.26);
  border-radius: 999px;
  color: #efe3cf;
  background: rgba(224, 154, 92, 0.08);
  font-size: 12px;
}

.profile-section-index {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.profile-readable-summary p {
  max-width: 78ch;
  color: #d8cebd;
  font-size: 16px;
  line-height: 1.75;
}

.profile-main-section .dossier-section-heading h2 {
  max-width: 78ch;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.25;
}

.profile-section-summary {
  max-width: 78ch;
  margin-top: 8px;
  color: #cfc4b6;
  font-size: 15px;
  line-height: 1.6;
}

.profile-key-points {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.profile-key-points li {
  position: relative;
  padding-left: 18px;
  color: #cfc4b6;
  line-height: 1.55;
}

.profile-key-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d89a66;
}

.profile-evidence-drawer summary em {
  min-width: 78px;
  text-align: right;
}

.profile-table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(242, 231, 212, 0.1);
  border-radius: 10px;
}

.profile-evidence-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  color: #d8cebd;
  font-size: 13px;
}

.profile-evidence-table th,
.profile-evidence-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(242, 231, 212, 0.08);
  vertical-align: top;
  text-align: left;
}

.profile-evidence-table th {
  color: #c99268;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(242, 231, 212, 0.035);
}

.profile-evidence-table td:first-child {
  width: 190px;
}

.profile-evidence-table td:nth-child(2) {
  width: 160px;
  color: #b7ab9d;
}

.profile-evidence-table td:nth-child(4) {
  width: 150px;
}

.profile-evidence-table td:nth-child(5) {
  width: 220px;
}

.profile-evidence-table strong {
  display: block;
  color: #fff5e8;
  font-size: 14px;
}

.profile-evidence-table small {
  display: block;
  margin-top: 5px;
  color: #9d9488;
  font-size: 11px;
  line-height: 1.35;
}

.profile-evidence-table a {
  color: #e0a15f;
  text-decoration: none;
}

.profile-evidence-table a:hover {
  color: #f2c28f;
}

.profile-internal-audit details {
  border-color: rgba(214, 109, 98, 0.26);
  background: rgba(45, 26, 22, 0.34);
}

.profile-audit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}

.profile-audit-grid div {
  padding: 12px;
  border: 1px solid rgba(242, 231, 212, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
}

.profile-audit-grid strong {
  display: block;
  color: #fff5e8;
  font-size: 22px;
}

.profile-audit-grid span {
  display: block;
  margin-top: 3px;
  color: #a99f92;
  font-size: 12px;
}

.profile-photo-section {
  overflow: hidden;
  padding-top: clamp(16px, 2.2vw, 28px);
  padding-bottom: clamp(18px, 2.4vw, 32px);
}

.profile-photo-heading {
  display: grid;
  gap: 6px;
  max-width: 620px;
  padding-right: 0;
}

.gobekli-public-page .profile-photo-heading h2,
.atomic-site-page .profile-photo-heading h2 {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.04;
}

.profile-photo-heading .profile-section-summary {
  max-width: 34ch;
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.profile-photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(900px, 100%);
  margin-right: 0;
  margin-left: 0;
  padding: 2px 0 0;
  overflow: hidden;
}

.profile-photo-card {
  position: relative;
  flex: 1 1 clamp(180px, 21vw, 255px);
  max-width: 290px;
  height: clamp(132px, 13vw, 172px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 165, 36, 0.14);
  border-radius: 8px;
  background: rgba(3, 8, 11, 0.76);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.profile-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.82);
  transform: scale(1.002);
}

.profile-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.76) 100%),
    radial-gradient(circle at 82% 8%, rgba(245, 165, 36, 0.08), transparent 34%);
  pointer-events: none;
}

.profile-photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 11px 12px;
}

.profile-photo-card small {
  color: #9fe1ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-photo-card span {
  display: none;
}

.atomic-site-page .atomic-hero,
.atomic-site-page .atomic-page-body {
  width: min(1120px, calc(100vw - 56px));
  margin: 0 auto;
}

.atomic-hero {
  position: relative;
  min-height: 72vh;
  padding: 26px 0 46px;
  display: grid;
  align-content: end;
}

.atomic-hero::before {
  content: "";
  position: absolute;
  inset: 0 -28px auto;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.16), rgba(5, 6, 6, 0.82)),
    linear-gradient(rgba(242, 231, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 231, 212, 0.024) 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

.atomic-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 8px 0 0;
  color: #fff7ea;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 124px);
  font-weight: 520;
  line-height: 0.9;
  letter-spacing: 0;
}

.atomic-hero-summary {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 20px 0 0;
  color: #f4e7d4;
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.22;
}

.atomic-thesis {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 14px 0 0;
  color: #cfc0ad;
  font-size: 18px;
  line-height: 1.55;
}

.atomic-fast-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.atomic-fast-facts div {
  min-height: 86px;
  border: 1px solid rgba(232, 217, 193, 0.14);
  border-radius: 8px;
  background: rgba(19, 18, 16, 0.76);
  padding: 14px;
}

.atomic-fast-facts dt {
  margin-bottom: 7px;
  color: #d9a677;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atomic-fast-facts dd {
  margin: 0;
  color: #fff1dc;
  font-size: 15px;
  line-height: 1.35;
}

.gobekli-hero-anchors {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: #d8c9b8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.gobekli-hero-anchors span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.gobekli-hero-anchors span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 18px;
  border-radius: 999px;
  background: rgba(217, 166, 119, 0.72);
}

.atomic-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.atomic-hero-actions a,
.atomic-cta-card a,
.atomic-discovery-card a,
.atomic-story-card a {
  border: 1px solid rgba(218, 157, 100, 0.46);
  border-radius: 999px;
  color: #ffe3bf;
  background: rgba(67, 42, 28, 0.5);
  padding: 10px 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.atomic-hero-actions a:first-child {
  border-color: rgba(244, 203, 154, 0.72);
  background: #b66f3f;
  color: #140f0c;
}

.atomic-page-index {
  top: 0;
}

.atomic-page-body {
  gap: 18px;
}

.atomic-section {
  border-radius: 8px;
  background: rgba(17, 16, 15, 0.76);
}

.atomic-story-grid,
.atomic-discovery-grid,
.atomic-cta-grid,
.atomic-visitor-grid {
  display: grid;
  gap: 12px;
  padding: 20px 22px 24px;
}

.atomic-enclosure-list {
  display: grid;
  gap: 8px;
  padding: 18px 22px 24px;
}

.site-reader-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  border-top: 1px solid rgba(232, 217, 193, 0.1);
  padding: 20px 22px 6px;
}

.site-reader-photo {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 166, 119, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(96, 63, 42, 0.68), rgba(6, 7, 7, 0.9));
}

.site-reader-photo span {
  border: 1px solid rgba(232, 217, 193, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  color: #e7c6a1;
  font-size: 13px;
  font-weight: 850;
}

.site-reader-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.site-reader-info > p {
  margin: 0;
  color: #d9a677;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-reader-info h3 {
  margin: 0;
  color: #fff1dc;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

.site-reader-info > span {
  max-width: 64ch;
  color: #cfc0ad;
  font-size: 16px;
  line-height: 1.48;
}

.site-reader-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.site-reader-tabs button {
  min-width: 44px;
  border: 1px solid rgba(217, 166, 119, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  padding: 9px 13px;
  color: #f0cfa5;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.site-reader-tabs button:hover {
  border-color: rgba(217, 166, 119, 0.58);
  background: rgba(217, 166, 119, 0.1);
}

.atomic-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.atomic-discovery-grid,
.atomic-visitor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.atomic-cta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.atomic-story-card,
.atomic-info-card,
.atomic-cta-card,
.atomic-discovery-card,
.atomic-enclosure-card {
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 8px;
  background: rgba(7, 8, 8, 0.34);
  padding: 18px;
}

.atomic-enclosure-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease;
}

.atomic-enclosure-card[open] {
  border-color: rgba(217, 166, 119, 0.38);
  background: rgba(12, 13, 12, 0.58);
}

.atomic-story-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.atomic-story-card > p,
.atomic-discovery-card small {
  margin: 0;
  color: #d9a677;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atomic-story-card h3,
.atomic-info-card h3,
.atomic-cta-card h3 {
  margin: 0;
  color: #fff1dc;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.atomic-story-card strong {
  color: #f3dfc4;
  font-size: 16px;
  line-height: 1.38;
}

.atomic-story-card span,
.atomic-info-card p,
.atomic-cta-card p,
.atomic-discovery-card p,
.atomic-faq-item p {
  color: #cfc0ad;
  font-size: 15px;
  line-height: 1.5;
}

.atomic-story-card details,
.atomic-faq-item,
.atomic-research-mode {
  border: 1px solid rgba(232, 217, 193, 0.11);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.atomic-story-card summary,
.atomic-faq-item summary,
.atomic-research-mode summary,
.atomic-discovery-card summary,
.atomic-enclosure-card > summary {
  padding: 16px 18px;
  min-height: auto;
}

.atomic-story-card details[open] summary,
.atomic-faq-item[open] summary,
.atomic-discovery-card[open] summary,
.atomic-research-mode[open] summary,
.atomic-enclosure-card[open] > summary {
  border-bottom: 1px solid rgba(232, 217, 193, 0.1);
}

.atomic-enclosure-card > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.atomic-enclosure-thumb {
  position: relative;
  flex: 0 0 84px;
  width: 84px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(217, 166, 119, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.atomic-enclosure-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.atomic-enclosure-card > summary::-webkit-details-marker {
  display: none;
}

.atomic-enclosure-card > summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(217, 166, 119, 0.28);
  border-radius: 999px;
  color: #f0cfa5;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.atomic-enclosure-card[open] > summary::after {
  content: "-";
}

.atomic-enclosure-summary-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.atomic-enclosure-card > summary small {
  display: block;
  margin-bottom: 6px;
  color: #d9a677;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atomic-enclosure-card > summary strong {
  color: #fff1dc;
  font-size: 22px;
  line-height: 1.15;
}

.atomic-enclosure-summary-copy > span {
  max-width: 78ch;
  color: #cfc0ad;
  font-size: 15px;
  line-height: 1.4;
}

.atomic-enclosure-summary-copy b {
  color: #d2b08e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.atomic-enclosure-card > summary em {
  flex: 0 0 auto;
  margin-left: auto;
  margin-top: 2px;
  border: 1px solid rgba(217, 166, 119, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  color: #d2b08e;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.atomic-enclosure-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.atomic-branch-visual {
  display: grid;
  gap: 0;
  margin: 0 0 2px;
  overflow: hidden;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.atomic-branch-visual img {
  width: 100%;
  max-height: 340px;
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.24);
}

.atomic-branch-visual figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: #cfc0ad;
  font-size: 12px;
  line-height: 1.35;
}

.atomic-branch-visual figcaption small {
  flex: 0 0 auto;
  color: #d9a677;
  font-size: 11px;
  text-align: right;
}

.gobekli-structure-spotlight {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(47, 34, 25, 0.24);
}

.gobekli-structure-spotlight > div:first-child {
  display: grid;
  gap: 8px;
  max-width: 84ch;
}

.gobekli-structure-spotlight h3 {
  margin: 0;
  color: #fff1dc;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.gobekli-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gobekli-spotlight-grid article {
  padding: 16px;
  background: rgba(0, 0, 0, 0.18);
}

.gobekli-spotlight-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.gobekli-spotlight-grid button,
.gobekli-spotlight-grid span {
  border: 1px solid rgba(217, 166, 119, 0.26);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  padding: 7px 10px;
  color: #f0cfa5;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.gobekli-spotlight-grid button {
  cursor: pointer;
}

.gobekli-spotlight-grid button:hover {
  border-color: rgba(217, 166, 119, 0.58);
  background: rgba(217, 166, 119, 0.1);
}

.atomic-enclosure-body p,
.atomic-enclosure-subdrawer li {
  color: #cfc0ad;
  font-size: 15px;
  line-height: 1.52;
}

.atomic-enclosure-body p {
  margin: 0;
}

.atomic-enclosure-anchor-list h3 {
  margin: 0 0 8px;
  color: #f3dfc4;
  font-size: 14px;
  letter-spacing: 0;
}

.atomic-enclosure-anchor-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atomic-enclosure-anchor-list button {
  border: 1px solid rgba(217, 166, 119, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  padding: 6px 10px;
  color: #e7c6a1;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.atomic-enclosure-anchor-list button:hover,
.atomic-enclosure-anchor-list button.active {
  border-color: rgba(217, 166, 119, 0.62);
  background: rgba(217, 166, 119, 0.12);
  color: #fff1dc;
}

.atomic-object-preview-stack {
  display: grid;
  gap: 10px;
}

.atomic-object-preview {
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 16px;
  border: 1px solid rgba(217, 166, 119, 0.28);
  border-radius: 8px;
  background: rgba(7, 8, 8, 0.52);
  padding: 14px;
}

.atomic-object-preview:not([hidden]) {
  display: grid;
}

.atomic-object-image {
  display: grid;
  min-height: 190px;
  place-items: center;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 20%, rgba(217, 166, 119, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(96, 63, 42, 0.64), rgba(3, 4, 4, 0.94));
}

.atomic-object-image.has-visual-asset {
  align-content: start;
  gap: 8px;
  padding: 8px;
  background: rgba(6, 7, 7, 0.76);
}

.atomic-object-image img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 6px;
}

.atomic-object-image small {
  color: #bba994;
  font-size: 11px;
  line-height: 1.35;
}

.atomic-object-image span {
  border: 1px solid rgba(232, 217, 193, 0.16);
  border-radius: 999px;
  padding: 7px 11px;
  color: #e7c6a1;
  font-size: 12px;
  font-weight: 850;
  text-transform: capitalize;
}

.atomic-object-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.atomic-object-copy > p {
  margin: 0;
  color: #d9a677;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atomic-object-copy h4 {
  margin: 0;
  color: #fff1dc;
  font-size: 24px;
  line-height: 1.08;
}

.atomic-object-copy > span,
.atomic-object-copy dd {
  color: #cfc0ad;
  font-size: 14px;
  line-height: 1.48;
}

.atomic-object-copy dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.atomic-object-copy dl div {
  display: grid;
  gap: 2px;
}

.atomic-object-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.atomic-object-points span {
  border: 1px solid rgba(232, 217, 193, 0.14);
  border-radius: 999px;
  background: rgba(232, 217, 193, 0.04);
  padding: 6px 9px;
  color: #d8c9b8;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
}

.atomic-object-copy dt {
  color: #f3dfc4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.atomic-object-copy dd {
  margin: 0;
}

.atomic-object-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.atomic-object-tags span {
  border: 1px solid rgba(217, 166, 119, 0.18);
  border-radius: 999px;
  padding: 5px 8px;
  color: #d2b08e;
  font-size: 12px;
  font-weight: 800;
}

.atomic-object-copy a {
  justify-self: start;
  color: #f0cfa5;
  font-weight: 850;
  text-decoration: none;
}

.atomic-object-source-drawer {
  border: 1px solid rgba(217, 166, 119, 0.2);
  border-radius: 8px;
  background: rgba(217, 166, 119, 0.06);
  overflow: hidden;
}

.atomic-object-source-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  cursor: pointer;
  color: #f3dfc4;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.atomic-object-source-drawer summary::-webkit-details-marker {
  display: none;
}

.atomic-object-source-drawer summary em {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(217, 166, 119, 0.28);
  border-radius: 999px;
  color: #d8b58f;
  font-size: 12px;
  font-style: normal;
}

.atomic-object-source-list {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(232, 217, 193, 0.1);
  padding: 12px;
}

.atomic-object-source-list article {
  display: grid;
  gap: 5px;
}

.atomic-object-source-list strong {
  color: #fff1dc;
  font-size: 13px;
  line-height: 1.32;
}

.atomic-object-source-list span,
.atomic-object-source-list small,
.atomic-object-source-list p {
  margin: 0;
  color: #bba994;
  font-size: 12px;
  line-height: 1.42;
}

.atomic-enclosure-subdrawer {
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.atomic-enclosure-subdrawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  padding: 12px 14px;
  color: #f3dfc4;
  cursor: pointer;
}

.atomic-enclosure-subdrawer summary::-webkit-details-marker {
  display: none;
}

.atomic-enclosure-subdrawer summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(217, 166, 119, 0.22);
  border-radius: 999px;
  color: #f0cfa5;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.atomic-enclosure-subdrawer[open] summary::after {
  content: "-";
}

.atomic-enclosure-subdrawer summary span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.atomic-enclosure-subdrawer summary em {
  margin-left: auto;
  margin-right: 10px;
  border: 1px solid rgba(217, 166, 119, 0.22);
  border-radius: 999px;
  padding: 3px 8px;
  color: #d2b08e;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.atomic-enclosure-subdrawer[open] summary {
  border-bottom: 1px solid rgba(232, 217, 193, 0.1);
}

.atomic-enclosure-subdrawer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px 18px 14px 32px;
}

.atomic-enclosure-caution {
  border-color: rgba(217, 166, 119, 0.3);
}

.atomic-enclosure-body a {
  justify-self: start;
  color: #f0cfa5;
  font-weight: 850;
  text-decoration: none;
}

.atomic-story-card details {
  margin-top: auto;
  padding: 0 12px 12px;
}

.atomic-story-card details p {
  margin: 12px 0 0;
}

.gobekli-timeline article,
.gobekli-structure-spotlight,
.gobekli-spotlight-grid article {
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 8px;
  background: rgba(7, 8, 8, 0.34);
}

.gobekli-timeline h3,
.gobekli-spotlight-grid strong {
  color: #fff1dc;
  letter-spacing: 0;
  text-transform: none;
}

.gobekli-timeline p,
.gobekli-structure-spotlight span,
.gobekli-spotlight-grid p {
  margin: 8px 0 0;
  color: #cfc0ad;
  font-size: 15px;
  line-height: 1.5;
}

.gobekli-timeline-shell {
  display: grid;
  gap: 10px;
  padding: 20px 22px 24px;
}

.gobekli-timeline-guide {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #d9a677;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gobekli-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}

.gobekli-timeline article {
  min-height: 210px;
  padding: 18px;
  border-top: 3px solid rgba(217, 166, 119, 0.74);
}

.gobekli-timeline span,
.gobekli-structure-spotlight > div:first-child p {
  color: #d9a677;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gobekli-timeline h3 {
  margin: 28px 0 8px;
  font-size: 20px;
}

.gobekli-key-discoveries {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 20px 22px 24px;
}

.gobekli-key-discoveries article {
  min-height: 190px;
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 8px;
  display: grid;
  align-content: end;
  background: rgba(7, 8, 8, 0.28);
  padding: 16px;
}

.gobekli-key-discoveries strong {
  color: #fff1dc;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.gobekli-key-discoveries p {
  margin: 10px 0 0;
  color: #cfc0ad;
  font-size: 14px;
  line-height: 1.42;
}

.gobekli-enclosure-doorways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
  padding: 20px 22px 18px;
}

.gobekli-enclosure-doorway {
  position: relative;
  display: grid;
  min-height: 0;
}

.gobekli-enclosure-tile {
  position: relative;
  display: grid;
  align-items: end;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 14px;
  background: rgba(7, 8, 8, 0.32);
  padding: 0;
  color: #fff1dc;
  cursor: pointer;
  text-align: left;
}

.gobekli-enclosure-tile img,
.gobekli-enclosure-tile-shade,
.gobekli-enclosure-tile-copy {
  grid-area: 1 / 1;
}

.gobekli-enclosure-tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.94);
  transform: scale(1.02);
  transition: transform 240ms ease, filter 240ms ease;
}

.gobekli-enclosure-tile-shade {
  inset: 0;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 84% 18%, rgba(255, 252, 246, 0.18), transparent 32%);
}

.gobekli-enclosure-tile-copy {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: end;
  padding: 16px;
}

.gobekli-enclosure-tile-copy small {
  grid-column: 1 / -1;
  color: rgba(255, 252, 246, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gobekli-enclosure-tile-copy strong {
  color: #fff8ed;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.gobekli-enclosure-tile-copy em {
  color: #fff8ed;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
}

.gobekli-enclosure-tile:hover img,
.gobekli-enclosure-doorway.active .gobekli-enclosure-tile img {
  filter: saturate(0.95) contrast(1);
  transform: scale(1.06);
}

.gobekli-enclosure-tile:hover,
.gobekli-enclosure-doorway.active .gobekli-enclosure-tile {
  border-color: rgba(199, 163, 106, 0.64);
}

.gobekli-enclosure-popover {
  position: absolute;
  z-index: 8;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 8px;
  max-height: calc(100% - 24px);
  overflow: auto;
  border: 1px solid rgba(255, 252, 246, 0.18);
  border-radius: 16px;
  background: rgba(12, 13, 14, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  padding: 14px;
  color: #fff8ed;
  backdrop-filter: blur(16px);
}

.gobekli-enclosure-popover[hidden] {
  display: none;
}

.gobekli-enclosure-popover-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 252, 246, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 248, 237, 0.8);
  cursor: pointer;
}

.gobekli-enclosure-popover p {
  margin: 0;
  color: #c7a36a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gobekli-enclosure-popover h3 {
  margin: 0;
  max-width: calc(100% - 32px);
  color: #fff8ed;
  font-size: 20px;
  line-height: 1.08;
}

.gobekli-enclosure-popover span {
  color: rgba(255, 248, 237, 0.78);
  font-size: 13px;
  line-height: 1.42;
}

.gobekli-enclosure-popover ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.gobekli-enclosure-popover li {
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.08);
  padding: 4px 7px;
  color: rgba(255, 248, 237, 0.72);
  font-size: 11px;
}

.gobekli-enclosure-popover a {
  justify-self: start;
  margin-top: 2px;
  border: 1px solid rgba(199, 163, 106, 0.42);
  border-radius: 999px;
  background: rgba(199, 163, 106, 0.12);
  color: #fff8ed;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.karahan-popover-inside {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 252, 246, 0.1);
  padding-top: 10px;
}

.karahan-popover-inside > strong {
  color: rgba(255, 248, 237, 0.92);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.karahan-popover-inside > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.karahan-popover-inside article {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 252, 246, 0.1);
  border-radius: 10px;
  background: rgba(255, 252, 246, 0.045);
  padding: 8px;
}

.karahan-popover-inside b {
  color: #fff8ed;
  font-size: 12px;
  line-height: 1.2;
}

.karahan-popover-inside em {
  color: rgba(255, 248, 237, 0.62);
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
}

.karahan-structure-gap,
.karahan-structure-page-note {
  display: block;
  color: rgba(255, 248, 237, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.karahan-structure-page-note {
  justify-self: start;
  border: 1px solid rgba(255, 252, 246, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
}

.gobekli-all-enclosure-profiles {
  margin: 0 22px 24px;
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.gobekli-all-enclosure-profiles > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: #fff1dc;
  cursor: pointer;
  list-style: none;
}

.gobekli-all-enclosure-profiles > summary::-webkit-details-marker {
  display: none;
}

.gobekli-all-enclosure-profiles > summary span {
  font-weight: 900;
}

.gobekli-all-enclosure-profiles > summary em {
  color: #d9a677;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.gobekli-all-enclosure-profiles[open] > summary {
  border-bottom: 1px solid rgba(232, 217, 193, 0.1);
}

.gobekli-all-enclosure-profiles .atomic-enclosure-list {
  padding: 12px;
}

/* Göbekli flagship visual simplification: keep depth, quiet the surface. */
.gobekli-public-page.atomic-site-page .atomic-hero,
.gobekli-public-page.atomic-site-page .atomic-page-body {
  width: min(1160px, calc(100vw - 72px));
}

.gobekli-public-page .atomic-hero {
  min-height: 78vh;
  padding: 56px 0 74px;
}

.gobekli-public-page .atomic-hero::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 165, 36, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(11, 11, 12, 0), rgba(11, 11, 12, 0.72));
  background-size: auto;
  mask-image: none;
}

.gobekli-public-page .dossier-brandline,
.gobekli-public-page .dossier-kicker,
.gobekli-public-page .dossier-section-heading p {
  display: none;
}

.gobekli-public-page .atomic-hero h1 {
  max-width: 980px;
  margin-top: 0;
  color: var(--product-text-primary);
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 760;
  line-height: 0.95;
}

.gobekli-public-page .atomic-hero-summary {
  max-width: 740px;
  margin-top: 24px;
  color: var(--product-text-primary);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 520;
  line-height: 1.08;
}

.gobekli-public-page .atomic-thesis {
  max-width: 760px;
  color: var(--product-text-secondary);
  font-size: 19px;
  font-weight: 420;
  line-height: 1.58;
}

.gobekli-public-page .gobekli-hero-anchors {
  margin-top: 18px;
  color: var(--product-text-muted);
  font-size: 13px;
  font-weight: 540;
  line-height: 1.4;
}

.gobekli-public-page .gobekli-hero-anchors span + span::before {
  background: rgba(255, 255, 255, 0.22);
}

.gobekli-public-page .atomic-hero-actions {
  gap: 16px;
  margin-top: 26px;
}

.gobekli-public-page .atomic-hero-actions a {
  border: 0;
  background: transparent;
  color: var(--product-accent-secondary);
  padding: 11px 0;
  font-weight: 600;
}

.gobekli-public-page .atomic-hero-actions a:first-child {
  border: 1px solid transparent;
  background: var(--product-accent);
  color: var(--product-bg);
  padding: 13px 22px;
  font-size: 15px;
  box-shadow: 0 0 32px var(--product-glow);
}

.gobekli-public-page .atomic-page-index {
  border: 0;
  background: rgba(11, 11, 12, 0.64);
  padding-block: 8px;
}

.gobekli-public-page .atomic-page-index a {
  border: 0;
  background: transparent;
  color: var(--product-text-muted);
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 540;
}

.gobekli-public-page .atomic-page-index a:hover {
  background: rgba(255, 255, 255, 0.035);
  color: var(--product-text-primary);
}

.gobekli-public-page .atomic-page-body {
  gap: clamp(24px, 2.4vw, 32px);
  padding-top: 0;
}

.gobekli-public-page .atomic-section,
.gobekli-public-page .dossier-section {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gobekli-public-page .dossier-section-heading {
  max-width: 760px;
  padding: 0 0 20px;
}

.gobekli-public-page .dossier-section h2 {
  margin: 0;
  color: var(--product-text-primary);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 640;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

.gobekli-public-page .profile-section-summary {
  max-width: 620px;
  margin-top: 10px;
  color: var(--product-text-secondary);
  font-size: 17px;
  font-weight: 420;
  line-height: 1.58;
}

.gobekli-public-page .gobekli-key-discoveries strong {
  color: var(--product-text-primary);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 640;
  line-height: 1.14;
}

.gobekli-public-page .gobekli-key-discoveries p {
  color: var(--product-text-secondary);
  font-size: 14.5px;
  font-weight: 420;
  line-height: 1.46;
}

.gobekli-public-page .gobekli-timeline-shell,
.gobekli-public-page .gobekli-key-discoveries,
.gobekli-public-page .gobekli-enclosure-doorways {
  padding: 0;
}

.gobekli-public-page .gobekli-timeline-guide {
  display: none;
}

.gobekli-public-page .gobekli-timeline {
  position: relative;
  gap: 0;
  border-top: 0;
  padding-top: 34px;
}

.gobekli-public-page .gobekli-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--product-border);
}

.gobekli-public-page .gobekli-timeline article {
  position: relative;
  min-height: 156px;
  border: 0;
  background: transparent;
  padding: 0 22px 0 0;
}

.gobekli-public-page .gobekli-timeline article::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--product-text-muted);
  box-shadow: 0 0 0 5px var(--product-bg);
}

.gobekli-public-page .gobekli-timeline span {
  color: var(--product-text-muted);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.gobekli-public-page .gobekli-timeline h3 {
  margin-top: 22px;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 620;
  line-height: 1.12;
}

.gobekli-public-page .gobekli-timeline p {
  color: var(--product-text-secondary);
  font-size: 16px;
  font-weight: 420;
  line-height: 1.52;
}

.gobekli-public-page .gobekli-chronology-section {
  width: 100vw;
  margin-top: calc(clamp(-44px, -3vw, -32px) - 8px);
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(circle at 18% 8%, rgba(83, 204, 255, 0.11), transparent 32%),
    linear-gradient(180deg, #04080d 0%, #081018 52%, #04070b 100%);
  padding: 0 max(32px, calc((100vw - 1160px) / 2)) clamp(28px, 3.4vw, 40px);
  color: #f5fbff;
  overflow: hidden;
}

.gobekli-public-page .gobekli-chronology-section .dossier-section-heading {
  max-width: 760px;
  padding-bottom: 20px;
}

.gobekli-public-page .gobekli-chronology-section .dossier-section-heading h2 {
  color: #f5fbff;
}

.gobekli-public-page .gobekli-chronology-section .profile-section-summary {
  color: rgba(210, 230, 239, 0.72);
}

.gobekli-chronology-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.44fr) minmax(300px, 0.56fr);
  gap: 22px;
  align-items: start;
  min-height: 520px;
}

.gobekli-chronology-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: 0;
  border: 1px solid rgba(126, 213, 255, 0.15);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(13, 26, 38, 0.84), rgba(5, 11, 17, 0.9)),
    rgba(5, 10, 15, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 70px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.gobekli-chronology-steps::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 34px;
  right: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 215, 255, 0.12), rgba(95, 215, 255, 0.48), rgba(95, 215, 255, 0.12));
}

.gobekli-chronology-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  border: 0;
  border-right: 1px solid rgba(126, 213, 255, 0.11);
  background: transparent;
  padding: 58px 18px 18px;
  color: rgba(213, 231, 239, 0.62);
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.gobekli-chronology-step:last-child {
  border-right: 0;
}

.gobekli-chronology-step::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 18px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(132, 222, 255, 0.46);
  border-radius: 999px;
  background: #08131d;
  box-shadow: 0 0 0 6px rgba(83, 204, 255, 0.04);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.gobekli-chronology-step:hover,
.gobekli-chronology-step:focus-visible {
  color: rgba(245, 251, 255, 0.9);
  background: rgba(77, 196, 255, 0.055);
  outline: 0;
}

.gobekli-chronology-step:hover::before,
.gobekli-chronology-step:focus-visible::before,
.gobekli-chronology-step.active::before {
  background: #82e4ff;
  box-shadow:
    0 0 0 7px rgba(83, 204, 255, 0.1),
    0 0 28px rgba(83, 204, 255, 0.5);
  transform: scale(1.08);
}

.gobekli-chronology-step.active {
  color: #f5fbff;
  background:
    radial-gradient(circle at 22px 52px, rgba(83, 204, 255, 0.2), transparent 24%),
    rgba(83, 204, 255, 0.075);
  box-shadow: inset 0 0 42px rgba(83, 204, 255, 0.08);
}

.gobekli-chronology-step span {
  color: #80dcff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.gobekli-chronology-step strong {
  color: inherit;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 680;
  line-height: 1.12;
}

.gobekli-chronology-step em {
  max-width: 21ch;
  color: rgba(210, 230, 239, 0.66);
  font-size: 12.5px;
  font-style: normal;
  font-weight: 420;
  line-height: 1.38;
}

.gobekli-chronology-detail {
  display: grid;
  align-content: start;
  border: 1px solid rgba(126, 213, 255, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(83, 204, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(13, 25, 36, 0.94), rgba(5, 10, 16, 0.96));
  padding: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(0, 0, 0, 0.34);
}

.gobekli-chronology-layer {
  justify-self: start;
  margin: 0 0 20px;
  border: 1px solid rgba(126, 213, 255, 0.2);
  border-radius: 999px;
  background: rgba(126, 213, 255, 0.07);
  padding: 7px 10px;
  color: #80dcff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.gobekli-chronology-detail > span {
  color: #80dcff;
  font-size: 13px;
  font-weight: 700;
}

.gobekli-chronology-detail h3 {
  margin: 8px 0 12px;
  color: #f5fbff;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 690;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

.gobekli-chronology-detail p[data-chronology-long] {
  margin: 0;
  color: rgba(222, 235, 241, 0.78);
  font-size: 15px;
  font-weight: 420;
  line-height: 1.54;
}

.gobekli-chronology-detail button {
  justify-self: start;
  margin-top: 22px;
  border: 1px solid rgba(126, 213, 255, 0.26);
  border-radius: 999px;
  background: rgba(126, 213, 255, 0.08);
  color: #f5fbff;
  padding: 10px 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
}

.gobekli-chronology-ridge {
  position: absolute;
  z-index: 0;
  right: calc(28% + 8px);
  bottom: 0;
  left: -34px;
  height: min(31vw, 292px);
  min-height: 196px;
  pointer-events: none;
  opacity: 0.98;
  background: #05070b;
  mix-blend-mode: screen;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 6%, #000 18%, #000 82%, rgba(0, 0, 0, 0.78) 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

.gobekli-chronology-steps,
.gobekli-chronology-detail {
  position: relative;
  z-index: 2;
}

.gobekli-chronology-ridge::before {
  content: "";
  position: absolute;
  inset: 0 0 4%;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(0, 116, 255, 0.16), transparent 52%),
    radial-gradient(ellipse at 50% 80%, rgba(34, 225, 255, 0.12), transparent 58%);
  filter: blur(2px);
}

.gobekli-chronology-ridge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter:
    saturate(1.08)
    contrast(1.04)
    brightness(0.98)
    drop-shadow(0 0 18px rgba(245, 165, 36, 0.22));
}

.gobekli-chronology-ridge:has(img)::before {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(245, 165, 36, 0.1), transparent 60%);
}

.gobekli-chronology-ridge .ridge-line {
  position: absolute;
  right: 0;
  bottom: 28%;
  left: 0;
  height: 2px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(37, 218, 255, 0.34) 4%, rgba(46, 226, 255, 0.94) 18%, rgba(46, 226, 255, 0.78) 50%, rgba(46, 226, 255, 0.94) 82%, rgba(37, 218, 255, 0.34) 96%, transparent 100%);
  box-shadow:
    0 0 8px rgba(44, 225, 255, 0.72),
    0 0 22px rgba(44, 225, 255, 0.34),
    0 0 58px rgba(44, 225, 255, 0.18);
}

.gobekli-chronology-ridge .ridge-line::before {
  content: "";
  position: absolute;
  inset: -28px 0 0;
  background:
    linear-gradient(176deg, transparent 0 10%, rgba(46, 226, 255, 0.44) 10.5% 11.3%, transparent 11.8% 100%),
    linear-gradient(184deg, transparent 0 24%, rgba(46, 226, 255, 0.3) 24.5% 25.2%, transparent 25.8% 100%),
    linear-gradient(178deg, transparent 0 42%, rgba(46, 226, 255, 0.36) 42.5% 43.2%, transparent 43.8% 100%),
    linear-gradient(186deg, transparent 0 68%, rgba(46, 226, 255, 0.3) 68.5% 69.2%, transparent 69.8% 100%);
  opacity: 0.9;
}

.gobekli-chronology-ridge .ridge-pillar,
.gobekli-chronology-ridge .ridge-stone {
  position: absolute;
  bottom: 28%;
  display: block;
  border: 1px solid rgba(46, 226, 255, 0.92);
  background: rgba(4, 22, 38, 0.2);
  box-shadow:
    0 0 9px rgba(46, 226, 255, 0.62),
    0 0 26px rgba(46, 226, 255, 0.28),
    0 0 68px rgba(0, 116, 255, 0.18),
    inset 0 0 8px rgba(93, 235, 255, 0.16);
}

.gobekli-chronology-ridge .ridge-pillar::before {
  content: "";
  position: absolute;
  top: -16%;
  left: 50%;
  width: 210%;
  height: 22%;
  border: 1px solid rgba(46, 226, 255, 0.96);
  background: rgba(4, 28, 48, 0.34);
  transform: translateX(-50%);
  box-shadow:
    0 0 10px rgba(46, 226, 255, 0.68),
    0 0 24px rgba(46, 226, 255, 0.28),
    inset 0 0 7px rgba(93, 235, 255, 0.22);
}

.gobekli-chronology-ridge .ridge-pillar-a {
  left: 9%;
  width: 1.1%;
  height: 34%;
}

.gobekli-chronology-ridge .ridge-pillar-b {
  left: 29%;
  width: 0.9%;
  height: 24%;
  opacity: 0.82;
}

.gobekli-chronology-ridge .ridge-pillar-c {
  left: 50%;
  width: 1.35%;
  height: 46%;
}

.gobekli-chronology-ridge .ridge-pillar-d {
  left: 68%;
  width: 0.95%;
  height: 27%;
  opacity: 0.84;
}

.gobekli-chronology-ridge .ridge-pillar-e {
  left: 88%;
  width: 1.05%;
  height: 32%;
}

.gobekli-chronology-ridge .ridge-stone {
  width: 2.6%;
  height: 4%;
  border-radius: 3px 3px 1px 1px;
  opacity: 0.86;
}

.gobekli-chronology-ridge .ridge-stone-a {
  left: 19%;
}

.gobekli-chronology-ridge .ridge-stone-b {
  left: 40%;
  height: 4.4%;
}

.gobekli-chronology-ridge .ridge-stone-c {
  left: 76%;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 151, 47, 0.13), transparent 32%),
    radial-gradient(circle at 58% 76%, rgba(255, 191, 99, 0.08), transparent 38%),
    linear-gradient(180deg, #05070b 0%, #0c0d0e 52%, #05070b 100%);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-steps::before {
  background: linear-gradient(90deg, rgba(255, 151, 47, 0.12), rgba(255, 191, 99, 0.54), rgba(255, 151, 47, 0.12));
  box-shadow: 0 0 24px rgba(255, 151, 47, 0.18);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step:hover,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step:focus-visible {
  background: rgba(255, 151, 47, 0.055);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step:hover::before,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step:focus-visible::before,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step.active::before {
  border-color: rgba(255, 202, 112, 0.9);
  background: #ffc05c;
  box-shadow:
    0 0 0 7px rgba(255, 151, 47, 0.14),
    0 0 28px rgba(255, 151, 47, 0.58);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step.active {
  background:
    radial-gradient(circle at 22px 52px, rgba(255, 151, 47, 0.22), transparent 24%),
    rgba(255, 151, 47, 0.07);
  box-shadow: inset 0 0 42px rgba(255, 151, 47, 0.09);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step:hover span,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step:focus-visible span,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step.active span,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-detail > span {
  color: #ffbf63;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-detail {
  border-color: rgba(255, 151, 47, 0.2);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 151, 47, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(13, 25, 36, 0.94), rgba(5, 10, 16, 0.96));
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-layer,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-detail button {
  border-color: rgba(255, 151, 47, 0.3);
  background: rgba(255, 151, 47, 0.08);
  color: #ffbf63;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-ridge::before {
  background:
    radial-gradient(ellipse at 50% 72%, rgba(255, 151, 47, 0.18), transparent 52%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 191, 99, 0.12), transparent 58%);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-ridge .ridge-line {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 151, 47, 0.3) 4%, rgba(255, 191, 99, 0.9) 18%, rgba(255, 191, 99, 0.74) 50%, rgba(255, 191, 99, 0.9) 82%, rgba(255, 151, 47, 0.3) 96%, transparent 100%);
  box-shadow:
    0 0 8px rgba(255, 191, 99, 0.58),
    0 0 22px rgba(255, 151, 47, 0.3),
    0 0 58px rgba(255, 151, 47, 0.15);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-ridge .ridge-line::before {
  background:
    linear-gradient(176deg, transparent 0 10%, rgba(255, 191, 99, 0.42) 10.5% 11.3%, transparent 11.8% 100%),
    linear-gradient(184deg, transparent 0 24%, rgba(255, 151, 47, 0.3) 24.5% 25.2%, transparent 25.8% 100%),
    linear-gradient(178deg, transparent 0 42%, rgba(255, 191, 99, 0.34) 42.5% 43.2%, transparent 43.8% 100%),
    linear-gradient(186deg, transparent 0 68%, rgba(255, 151, 47, 0.28) 68.5% 69.2%, transparent 69.8% 100%);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-ridge .ridge-pillar,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-ridge .ridge-stone {
  border-color: rgba(255, 191, 99, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 194, 96, 0.22), rgba(92, 45, 18, 0.34));
  box-shadow:
    0 0 10px rgba(255, 191, 99, 0.58),
    0 0 28px rgba(255, 151, 47, 0.28),
    0 0 68px rgba(255, 110, 30, 0.16),
    inset 0 0 9px rgba(255, 221, 145, 0.18);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-ridge .ridge-pillar::before {
  border-color: rgba(255, 202, 112, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 207, 121, 0.3), rgba(113, 55, 20, 0.38));
  box-shadow:
    0 0 12px rgba(255, 191, 99, 0.68),
    0 0 26px rgba(255, 151, 47, 0.3),
    inset 0 0 8px rgba(255, 229, 158, 0.22);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-ridge:has(img)::before {
  background:
    radial-gradient(ellipse at 50% 78%, rgba(255, 151, 47, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.72), transparent 28%, transparent 72%, rgba(5, 7, 11, 0.82));
}

.gobekli-public-page .gobekli-learn-hub-section {
  width: 100vw;
  margin-top: clamp(-44px, -3vw, -32px);
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(circle at 78% 8%, rgba(83, 204, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #04070b 0%, #081018 48%, #05090d 100%);
  padding: clamp(32px, 3.4vw, 44px) max(32px, calc((100vw - 1160px) / 2)) clamp(30px, 3.4vw, 42px);
  color: #f5fbff;
}

.gobekli-learn-hub {
  display: grid;
  gap: 22px;
}

.gobekli-learn-hub-heading {
  max-width: 760px;
}

.gobekli-learn-hub-heading span {
  color: #80dcff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gobekli-learn-hub-heading h2 {
  margin: 12px 0 0;
  color: #f5fbff;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.gobekli-learn-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gobekli-learn-card {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  border: 1px solid rgba(126, 213, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 0%, rgba(83, 204, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(13, 25, 36, 0.9), rgba(5, 10, 16, 0.94));
  padding: 20px;
  color: #f5fbff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.gobekli-learn-card:hover,
.gobekli-learn-card:focus-visible {
  border-color: rgba(126, 213, 255, 0.36);
  background:
    radial-gradient(circle at 28% 0%, rgba(83, 204, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(15, 31, 46, 0.94), rgba(5, 10, 16, 0.98));
  outline: 0;
  transform: translateY(-2px);
}

.gobekli-learn-card span {
  color: #f5fbff;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.gobekli-learn-card p {
  margin: 18px 0 28px;
  color: rgba(222, 235, 241, 0.72);
  font-size: 15px;
  font-weight: 440;
  line-height: 1.48;
}

.gobekli-learn-card em {
  color: #80dcff;
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
}

.gobekli-learn-page {
  min-height: 100%;
  background:
    radial-gradient(circle at 72% 0%, rgba(83, 204, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #04070b 0%, #081018 44%, #04070b 100%);
  color: #f5fbff;
}

.gobekli-learn-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid rgba(126, 213, 255, 0.12);
  background: rgba(4, 8, 13, 0.82);
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  backdrop-filter: blur(16px);
}

.gobekli-learn-topbar a,
.gobekli-learn-topbar button {
  border: 0;
  background: transparent;
  color: rgba(245, 251, 255, 0.76);
  font: inherit;
  font-size: 14px;
  font-weight: 680;
  cursor: pointer;
  text-decoration: none;
}

.gobekli-learn-topbar a:hover,
.gobekli-learn-topbar button:hover {
  color: #80dcff;
}

.gobekli-learn-hero {
  display: grid;
  align-items: end;
  min-height: 58vh;
  padding: clamp(72px, 9vw, 124px) max(24px, calc((100vw - 1120px) / 2));
}

.gobekli-learn-hero > div {
  max-width: 920px;
}

.gobekli-learn-hero p {
  margin: 0 0 20px;
  color: #80dcff;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gobekli-learn-hero h1 {
  max-width: 960px;
  margin: 0;
  color: #f5fbff;
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.gobekli-learn-hero span {
  display: block;
  max-width: 760px;
  margin-top: 28px;
  color: rgba(222, 235, 241, 0.78);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 520;
  line-height: 1.25;
}

.gobekli-learn-body {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px clamp(90px, 8vw, 132px);
}

.gobekli-learn-content-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 4vw, 70px);
  border-top: 1px solid rgba(126, 213, 255, 0.14);
  padding: 30px 0;
}

.gobekli-learn-content-section h2 {
  margin: 0;
  color: #f5fbff;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.gobekli-learn-content-section p,
.gobekli-learn-content-section li {
  color: rgba(222, 235, 241, 0.76);
  font-size: 18px;
  font-weight: 430;
  line-height: 1.62;
}

.gobekli-learn-content-section p,
.gobekli-learn-content-section ul {
  margin: 0;
}

.gobekli-learn-content-section ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

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

.gobekli-learn-related-grid article,
.gobekli-related-question-list a,
.gobekli-learn-sources article {
  border: 1px solid rgba(126, 213, 255, 0.12);
  border-radius: 18px;
  background: rgba(126, 213, 255, 0.045);
  padding: 16px;
}

.gobekli-learn-related-grid small {
  color: #80dcff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gobekli-learn-related-grid strong {
  display: block;
  margin-top: 8px;
  color: #f5fbff;
  font-size: 17px;
}

.gobekli-related-question-list {
  display: grid;
  gap: 10px;
}

.gobekli-related-question-list a {
  display: grid;
  gap: 7px;
  color: #f5fbff;
  text-decoration: none;
}

.gobekli-related-question-list a:hover {
  border-color: rgba(126, 213, 255, 0.32);
}

.gobekli-related-question-list span,
.gobekli-learn-sources p {
  margin: 0;
  color: rgba(222, 235, 241, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.gobekli-learn-sources > div {
  display: grid;
  gap: 10px;
}

.gobekli-learn-sources strong {
  color: #f5fbff;
}

.gobekli-enclosure-page {
  min-height: 100%;
  background:
    radial-gradient(circle at 72% 0%, rgba(83, 204, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #04070b 0%, #081018 46%, #04070b 100%);
  color: #f5fbff;
}

.gobekli-enclosure-hero {
  display: grid;
  align-items: end;
  min-height: 52vh;
  padding: clamp(70px, 8vw, 118px) max(24px, calc((100vw - 1120px) / 2));
}

.gobekli-enclosure-hero > div {
  max-width: 880px;
}

.gobekli-enclosure-hero p {
  margin: 0 0 18px;
  color: #80dcff;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gobekli-enclosure-hero h1 {
  margin: 0;
  color: #f5fbff;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.gobekli-enclosure-hero span {
  display: block;
  max-width: 700px;
  margin-top: 26px;
  color: rgba(222, 235, 241, 0.78);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 520;
  line-height: 1.25;
}

.gobekli-building-d-page .gobekli-enclosure-hero {
  min-height: clamp(320px, 36vh, 420px);
  padding-bottom: clamp(34px, 4vw, 62px);
}

.gobekli-building-d-media {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  width: min(1120px, calc(100% - 48px));
  margin: -12px auto 30px;
  border-top: 1px solid rgba(245, 165, 36, 0.18);
  padding-top: 22px;
}

.gobekli-building-d-media figure {
  margin: 0;
}

.gobekli-building-d-media-guide {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(245, 165, 36, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 165, 36, 0.09), rgba(126, 213, 255, 0.035)),
    rgba(3, 9, 14, 0.74);
  padding: clamp(18px, 2.1vw, 24px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.gobekli-building-d-media-guide p {
  margin: 0;
  color: #ffe0ad;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gobekli-building-d-media-guide h2 {
  margin: 0;
  color: #f5fbff;
  font-size: clamp(25px, 2.65vw, 36px);
  line-height: 1;
}

.gobekli-building-d-media-guide > span {
  color: rgba(222, 235, 241, 0.72);
  font-size: 16px;
  font-weight: 480;
  line-height: 1.46;
}

.gobekli-building-d-media-guide ol {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.gobekli-building-d-media-guide li {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(245, 165, 36, 0.14);
  padding-top: 9px;
}

.gobekli-building-d-media-guide li strong {
  color: #f5fbff;
  font-size: 15px;
}

.gobekli-building-d-media-guide li span {
  color: rgba(222, 235, 241, 0.6);
  font-size: 14px;
  line-height: 1.4;
}

.gobekli-building-d-media-stack {
  display: grid;
  gap: 12px;
}

.gobekli-building-d-media-hero img,
.gobekli-building-d-photo-grid img {
  display: block;
  width: 100%;
  border: 1px solid rgba(126, 213, 255, 0.16);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.gobekli-building-d-media-hero img {
  aspect-ratio: 16 / 9;
  height: clamp(260px, 27vw, 350px);
}

.gobekli-building-d-media figcaption {
  display: grid;
  gap: 4px;
  max-width: 820px;
  margin-top: 10px;
  color: rgba(222, 235, 241, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.gobekli-building-d-media figcaption strong {
  color: #f5fbff;
  font-size: 14px;
}

.gobekli-building-d-media figcaption small {
  color: rgba(222, 235, 241, 0.48);
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
}

.gobekli-building-d-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gobekli-building-d-photo-grid figure {
  display: grid;
  align-content: start;
  min-height: 100%;
  border: 1px solid rgba(126, 213, 255, 0.12);
  border-radius: 8px;
  background: rgba(2, 8, 13, 0.72);
  overflow: hidden;
}

.gobekli-building-d-photo-grid img {
  aspect-ratio: 4 / 3;
  height: clamp(118px, 11vw, 145px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.gobekli-building-d-photo-grid figcaption {
  gap: 6px;
  margin: 0;
  padding: 12px;
}

.gobekli-enclosure-body {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px clamp(90px, 8vw, 132px);
}

.gobekli-enclosure-page-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(28px, 4vw, 70px);
  border-top: 1px solid rgba(126, 213, 255, 0.14);
  padding: 30px 0;
}

.gobekli-enclosure-page-section h2 {
  margin: 0;
  color: #f5fbff;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
}

.gobekli-enclosure-page-section p,
.gobekli-enclosure-page-section li {
  color: rgba(222, 235, 241, 0.76);
  font-size: 18px;
  font-weight: 430;
  line-height: 1.62;
}

.gobekli-enclosure-page-section p,
.gobekli-enclosure-page-section ul {
  margin: 0;
}

.gobekli-enclosure-page-section ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.gobekli-enclosure-page-section > div {
  display: grid;
  gap: 16px;
}

.gobekli-building-d-priority {
  align-items: start;
}

.gobekli-building-d-fact-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gobekli-building-d-fact-band article {
  display: grid;
  gap: 8px;
  min-height: 148px;
  border: 1px solid rgba(245, 165, 36, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 165, 36, 0.085), rgba(126, 213, 255, 0.035)),
    rgba(3, 9, 14, 0.74);
  padding: 15px;
}

.gobekli-building-d-fact-band strong {
  color: #ffe0ad;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.gobekli-building-d-fact-band span {
  color: rgba(222, 235, 241, 0.74);
  font-size: 14px;
  font-weight: 480;
  line-height: 1.45;
}

.gobekli-research-underlay {
  border-top: 1px solid rgba(126, 213, 255, 0.12);
  padding: 18px 0 0;
}

.gobekli-research-underlay summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  color: rgba(245, 251, 255, 0.88);
  cursor: pointer;
  list-style: none;
}

.gobekli-research-underlay summary::-webkit-details-marker {
  display: none;
}

.gobekli-research-underlay summary span {
  font-size: 15px;
  font-weight: 820;
}

.gobekli-research-underlay summary em {
  border: 1px solid rgba(126, 213, 255, 0.16);
  border-radius: 999px;
  background: rgba(126, 213, 255, 0.045);
  color: rgba(222, 235, 241, 0.62);
  padding: 6px 10px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gobekli-research-underlay[open] summary {
  color: #f5fbff;
}

.gobekli-research-underlay-body {
  display: grid;
  gap: 14px;
  padding: 4px 0 22px;
}

.gobekli-research-underlay-body > p,
.gobekli-research-underlay-body li {
  margin: 0;
  color: rgba(222, 235, 241, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.gobekli-research-underlay-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
}

.gobekli-research-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gobekli-research-badge-row span {
  border: 1px solid rgba(126, 213, 255, 0.14);
  border-radius: 999px;
  background: rgba(2, 8, 13, 0.48);
  color: rgba(222, 235, 241, 0.64);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 780;
}

.gobekli-building-d-priority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gobekli-structure-essentials .gobekli-building-d-priority-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gobekli-building-d-priority-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  border: 1px solid rgba(126, 213, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(126, 213, 255, 0.065), rgba(126, 213, 255, 0.028)),
    rgba(3, 9, 14, 0.62);
  padding: 18px;
}

.gobekli-building-d-priority-grid h3 {
  margin: 0;
  color: #f5fbff;
  font-size: 22px;
  line-height: 1.12;
}

.gobekli-building-d-priority-grid p {
  font-size: 15px;
  line-height: 1.5;
}

.gobekli-building-d-priority-grid ul {
  gap: 8px;
  padding-left: 18px;
}

.gobekli-building-d-priority-grid li {
  color: rgba(222, 235, 241, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.gobekli-building-d-source-note {
  border-top-color: rgba(245, 165, 36, 0.2);
}

.gobekli-building-d-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gobekli-building-d-source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(245, 165, 36, 0.3);
  border-radius: 999px;
  background: rgba(245, 165, 36, 0.07);
  color: #ffe0ad;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}

.gobekli-building-d-source-links a:hover,
.gobekli-building-d-source-links a:focus-visible {
  border-color: rgba(245, 165, 36, 0.62);
  background: rgba(245, 165, 36, 0.13);
  outline: 0;
}

.gobekli-enclosure-object-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gobekli-enclosure-object-grid article {
  border: 1px solid rgba(126, 213, 255, 0.12);
  border-radius: 18px;
  background: rgba(126, 213, 255, 0.045);
  padding: 16px;
}

.gobekli-enclosure-object-grid small {
  color: #80dcff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gobekli-enclosure-object-grid strong {
  display: block;
  margin-top: 8px;
  color: #f5fbff;
  font-size: 17px;
}

.gobekli-enclosure-object-grid p {
  margin-top: 8px;
  color: rgba(222, 235, 241, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.gobekli-enclosure-focus-section .gobekli-structure-spotlight {
  padding: 0;
  background: transparent;
}

.gobekli-enclosure-focus-section .gobekli-structure-spotlight > div:first-child {
  display: none;
}

.gobekli-public-page .gobekli-key-discoveries {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.gobekli-public-page #gobekli-discoveries .dossier-section-heading {
  max-width: 640px;
  padding-bottom: 18px;
}

.gobekli-public-page #gobekli-discoveries h2 {
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.018em;
}

.gobekli-public-page #gobekli-discoveries .profile-section-summary {
  margin-top: 8px;
  font-size: 15px;
}

.gobekli-public-page .gobekli-key-discoveries article {
  grid-column: auto;
  align-content: start;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 18px;
  background: rgba(21, 21, 21, 0.74);
  padding: 22px;
}

.gobekli-public-page .gobekli-key-discoveries article:first-child {
  grid-column: auto;
  background: rgba(28, 28, 30, 0.82);
  padding: 22px;
}

.gobekli-public-page .gobekli-enclosure-doorways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
}

.gobekli-public-page .gobekli-network-section {
  margin-top: 0;
}

.profile-tas-network-map {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  min-height: 430px;
  border: 1px solid rgba(126, 213, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 42%, rgba(83, 204, 255, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(9, 13, 17, 0.92), rgba(5, 8, 11, 0.96));
  padding: clamp(28px, 4vw, 46px);
  color: #f8f3ea;
  overflow: hidden;
}

.profile-tas-network-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
}

.profile-tas-network-copy p {
  margin: 0;
  color: var(--gobekli-accent);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-tas-network-copy h2 {
  max-width: 390px;
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.profile-tas-network-copy span {
  max-width: 360px;
  color: rgba(222, 235, 241, 0.72);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 470;
  line-height: 1.5;
}

.profile-tas-map-stage {
  --tas-map-stage-top: 0px;
  --tas-map-stage-right: 0px;
  --tas-map-stage-bottom: 0px;
  --tas-map-stage-left: 0px;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: #c4c1b9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 24px 70px rgba(0, 0, 0, 0.24);
}

.profile-tas-map-stage .tas-map-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.86;
  filter: saturate(0.86) contrast(0.92) brightness(1.18);
  mask-image: none;
}

.profile-tas-map-stage .profile-tas-map-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.34), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(16, 20, 24, 0.16));
}

.profile-tas-map-stage .tas-network-svg,
.profile-tas-map-stage .tas-network-sites {
  inset: 0;
  width: 100%;
  height: 100%;
}

.profile-tas-map-stage .tas-network-line {
  stroke: rgba(125, 104, 73, 0.32);
  stroke-width: 0.14;
  stroke-dasharray: none;
  filter: none;
}

.profile-tas-map-stage .tas-map-node span {
  width: 12px;
  height: 12px;
  border-color: rgba(255, 255, 255, 0.78);
  background: #7fdcff;
  box-shadow:
    0 0 0 9px rgba(95, 210, 255, 0.14),
    0 0 24px rgba(95, 210, 255, 0.66);
}

.profile-tas-map-stage .tas-map-node.major span {
  width: 14px;
  height: 14px;
}

.profile-tas-map-stage .tas-map-node.current span {
  width: 18px;
  height: 18px;
  background: #90e5ff;
  box-shadow:
    0 0 0 12px rgba(95, 210, 255, 0.18),
    0 0 30px rgba(95, 210, 255, 0.9),
    0 0 78px rgba(95, 210, 255, 0.42);
}

.profile-tas-map-stage .tas-map-node em {
  left: calc(var(--label-x, 2) * 14px);
  top: calc(var(--label-y, -0.5) * 14px);
  max-width: 96px;
  border-radius: 6px;
  background: rgba(28, 28, 24, 0.22);
  color: rgba(255, 255, 255, 0.86);
  padding: 2px 5px;
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
  white-space: normal;
  opacity: 0.74;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(5px);
}

.profile-tas-map-stage .tas-map-node.current em {
  max-width: 116px;
  background: rgba(21, 39, 46, 0.46);
  color: rgba(255, 255, 255, 0.96);
  padding: 4px 7px;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 780;
  opacity: 1;
}

.profile-tas-map-stage .tas-map-node.primary-label em {
  opacity: 0.94;
}

.profile-tas-map-stage .tas-map-node.secondary-label em {
  opacity: 0.58;
}

.profile-tas-map-stage .tas-map-node.secondary-label:hover em,
.profile-tas-map-stage .tas-map-node.secondary-label:focus-visible em {
  opacity: 1;
}

.profile-tas-map-stage .tas-map-node:hover em,
.profile-tas-map-stage .tas-map-node:focus-visible em {
  background: rgba(18, 40, 50, 0.56);
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
  transform: translateY(0) scale(1.03);
}

.profile-tas-map-stage .tas-map-node:hover span,
.profile-tas-map-stage .tas-map-node:focus-visible span {
  transform: scale(1.16);
  filter: brightness(1.18);
}

.profile-tas-map-stage .tas-map-node em small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72em;
  font-weight: 680;
  letter-spacing: 0;
}

.profile-tas-map-stage .tas-node-info-card {
  top: 22px;
  right: 22px;
  width: min(280px, calc(100% - 44px));
}

.gobekli-network-map {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  border: 1px solid var(--product-border);
  border-radius: 26px;
  background: var(--product-surface);
  padding: clamp(24px, 4vw, 42px);
}

.gobekli-network-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.gobekli-network-copy p {
  margin: 0;
  color: var(--gobekli-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gobekli-network-copy h2 {
  max-width: 320px;
  margin: 0;
  color: var(--gobekli-text);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.gobekli-network-copy span {
  color: var(--gobekli-text-secondary);
  font-size: 16px;
  line-height: 1.45;
}

.gobekli-network-field {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--product-border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 42% 48%, rgba(156, 106, 47, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(239, 231, 218, 0.7), rgba(255, 252, 246, 0.72));
}

.gobekli-network-field::before,
.gobekli-network-field::after {
  content: "";
  position: absolute;
  inset: 16% 10%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 45% 55% 52% 48%;
  transform: rotate(-8deg);
}

.gobekli-network-field::after {
  inset: 26% 22%;
  border-color: rgba(156, 106, 47, 0.14);
  transform: rotate(12deg);
}

.gobekli-network-home-node,
.gobekli-network-node {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 2px;
  border: 0;
  background: transparent;
  color: var(--gobekli-text);
  text-align: left;
  cursor: pointer;
}

.gobekli-network-home-node {
  left: 44%;
  top: 47%;
  transform: translate(-50%, -50%);
}

.gobekli-network-node {
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding-left: 18px;
}

.gobekli-network-node i {
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gobekli-accent);
  box-shadow: 0 0 0 6px rgba(156, 106, 47, 0.12);
}

.gobekli-network-home-node strong,
.gobekli-network-node strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.gobekli-network-home-node span,
.gobekli-network-node span {
  color: var(--gobekli-muted);
  font-size: 12px;
  font-weight: 600;
}

.gobekli-network-node:hover strong,
.gobekli-network-home-node:hover strong {
  color: var(--gobekli-accent);
}

.gobekli-public-page .gobekli-all-enclosure-profiles,
.gobekli-public-page .atomic-research-mode {
  border: 1px solid var(--product-border);
  background: var(--product-surface);
}

.gobekli-public-page .gobekli-all-enclosure-profiles > summary,
.gobekli-public-page .atomic-research-mode summary {
  color: var(--product-text-secondary);
}

.gobekli-public-page .gobekli-all-enclosure-profiles > summary em,
.gobekli-public-page .atomic-research-mode summary small,
.gobekli-public-page .atomic-research-mode summary em {
  color: var(--product-text-muted);
}

.gobekli-public-page .atomic-research-mode {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.gobekli-public-page .atomic-research-mode > summary {
  padding: 24px 28px;
}

.gobekli-public-page .atomic-research-mode > summary strong {
  color: var(--product-text-primary);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 620;
  letter-spacing: -0.02em;
}

.gobekli-public-page .atomic-research-intro {
  padding: 22px 28px 0;
}

.gobekli-public-page .atomic-research-intro p {
  max-width: 720px;
  color: var(--product-text-secondary);
  font-size: 17px;
}

.gobekli-public-page .research-mode-guide {
  gap: 12px;
  padding: 20px 28px 4px;
}

.gobekli-public-page .research-mode-guide article,
.gobekli-public-page .atomic-research-drawer {
  border: 1px solid var(--product-border);
  background: rgba(255, 252, 246, 0.58);
}

.gobekli-public-page .research-mode-guide strong {
  color: var(--product-text-primary);
  font-size: 20px;
  font-weight: 640;
  letter-spacing: 0;
}

.gobekli-public-page .research-mode-guide span {
  color: var(--product-text-muted);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.gobekli-public-page .atomic-research-drawer {
  margin: 18px 28px;
  border-radius: 16px;
}

.gobekli-public-page .atomic-research-drawer > summary {
  color: var(--product-text-primary);
  padding: 17px 18px;
}

.gobekli-public-page .atomic-research-drawer > summary span {
  color: var(--product-text-primary);
}

.gobekli-public-page .atomic-research-drawer > summary em {
  color: var(--gobekli-accent);
  letter-spacing: 0;
  text-transform: none;
}

.gobekli-public-page .atomic-research-drawer-note {
  color: var(--product-text-secondary);
}

.gobekli-public-page .atomic-research-drawer .evidence-record,
.gobekli-public-page .atomic-research-drawer .source-chunk-list article,
.gobekli-public-page .atomic-source-badge {
  border-color: var(--product-border);
  background: var(--product-surface);
}

.gobekli-public-page .atomic-research-drawer .evidence-record p,
.gobekli-public-page .atomic-research-drawer .source-chunk-list p {
  color: var(--product-text-secondary);
}

.gobekli-public-page .atomic-source-badge strong {
  color: var(--product-text-primary);
}

.gobekli-public-page .atomic-source-badge span,
.gobekli-public-page .atomic-source-badge small {
  color: var(--product-text-muted);
}

.gobekli-public-page .atomic-source-badge em {
  color: var(--gobekli-accent);
}

.gobekli-public-page .atomic-info-card,
.gobekli-public-page .atomic-cta-card,
.gobekli-public-page .dossier-related-sites button {
  border: 1px solid var(--product-border);
  background: var(--product-surface);
  box-shadow: none;
}

.gobekli-public-page .atomic-cta-card a {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.05);
  color: var(--product-text-secondary);
}

/* Göbekli real-photo product header: dark interface, archaeological image, clean fade. */
.gobekli-public-page {
  --gobekli-bg: #020609;
  --gobekli-surface: #071018;
  --gobekli-soft-surface: rgba(126, 213, 255, 0.08);
  --gobekli-text: #f5fbff;
  --gobekli-text-secondary: rgba(222, 235, 241, 0.78);
  --gobekli-text-muted: rgba(178, 218, 232, 0.58);
  --gobekli-accent: #80dcff;
  --gobekli-accent-soft: #4dc4ff;
  --gobekli-border: rgba(126, 213, 255, 0.16);
}

.gobekli-public-page.atomic-site-page .gobekli-light-header {
  position: relative;
  display: block;
  width: 100%;
  min-height: min(84vh, 780px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(205, 136, 54, 0.18), transparent 36%),
    linear-gradient(180deg, #050608 0%, #0d0905 66%, #05090d 100%);
  color: var(--gobekli-text);
}

.gobekli-public-page .gobekli-light-header::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 48%, rgba(208, 139, 70, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(2, 4, 7, 0.8) 0%, rgba(2, 4, 7, 0.7) 31%, rgba(2, 4, 7, 0.14) 58%, rgba(2, 4, 7, 0.08) 78%, rgba(2, 4, 7, 0.34) 100%),
    linear-gradient(180deg, rgba(2, 4, 7, 0.2) 0%, rgba(2, 4, 7, 0.08) 54%, #05090d 100%);
}

.gobekli-public-page .gobekli-light-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 96px;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(4, 7, 10, 0.72) 42%, #020609 100%);
}

.gobekli-public-page .gobekli-top-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  width: 100%;
  max-width: none;
  height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(126, 213, 255, 0.12);
  background: rgba(2, 5, 9, 0.78);
  padding: 0 clamp(24px, 4vw, 48px);
  backdrop-filter: blur(18px);
}

.gobekli-public-page .gobekli-site-mark,
.gobekli-public-page .gobekli-all-sites {
  color: var(--gobekli-text);
  font-size: 16px;
  font-weight: 560;
  letter-spacing: 0.02em;
}

.gobekli-public-page .gobekli-site-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gobekli-public-page .gobekli-site-mark-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(213, 166, 92, 0.72);
  border-radius: 999px;
  color: #d8a75d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
  text-transform: none;
}

.gobekli-public-page .gobekli-top-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
}

.gobekli-public-page .gobekli-top-links a,
.gobekli-public-page .profile-top-trigger {
  border: 0;
  background: transparent;
  color: rgba(245, 248, 252, 0.86);
  font-size: 16px;
  font-weight: 540;
  text-decoration: none;
  font-family: inherit;
}

.gobekli-public-page .gobekli-top-links a:hover,
.gobekli-public-page .profile-top-item:hover .profile-top-trigger,
.gobekli-public-page .profile-top-item:focus-within .profile-top-trigger {
  color: var(--gobekli-accent);
}

.gobekli-public-page .profile-top-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88px;
}

.gobekli-public-page .profile-top-trigger {
  cursor: pointer;
  padding: 0;
}

.gobekli-public-page .profile-top-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 202px;
  border: 1px solid rgba(126, 213, 255, 0.18);
  border-radius: 14px;
  background: rgba(4, 10, 15, 0.92);
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.42);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px);
}

.gobekli-public-page .profile-top-item:hover .profile-top-menu,
.gobekli-public-page .profile-top-item:focus-within .profile-top-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.gobekli-public-page .profile-top-menu a {
  border-radius: 9px;
  color: rgba(245, 248, 252, 0.78);
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.gobekli-public-page .profile-top-menu a:hover {
  background: rgba(126, 213, 255, 0.09);
  color: #fff;
}

.gobekli-public-page .gobekli-all-sites {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
  border: 0;
  border-left: 1px solid rgba(126, 213, 255, 0.14);
  background: transparent;
  padding: 10px 0 10px 34px;
  font: inherit;
  cursor: pointer;
}

.gobekli-public-page .gobekli-all-sites:hover {
  color: var(--gobekli-accent);
}

.gobekli-public-page .gobekli-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  width: 100%;
  max-width: 1500px;
  min-height: calc(min(84vh, 780px) - 88px);
  margin: 0 auto;
  padding: 34px clamp(28px, 5vw, 76px) 78px;
}

.gobekli-public-page .gobekli-hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  width: min(660px, 100%);
  max-width: 660px;
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

.gobekli-public-page .gobekli-light-header h1 {
  max-width: 660px;
  margin: 0;
  color: var(--gobekli-text);
  font-family:
    Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(68px, 8.5vw, 132px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-shadow: 0 0 42px rgba(216, 165, 109, 0.11), 0 12px 48px rgba(0, 0, 0, 0.54);
}

.gobekli-public-page .gobekli-light-header h1::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, rgba(214, 165, 109, 0.92), transparent);
}

.gobekli-public-page .gobekli-light-header .atomic-hero-summary {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--gobekli-text);
  font-family:
    Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(28px, 3.1vw, 43px);
  font-weight: 460;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.gobekli-public-page .gobekli-light-header .atomic-thesis {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(232, 238, 242, 0.8);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 420;
  line-height: 1.62;
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-reveal {
  max-width: 540px;
  margin: 14px 0 0;
  color: rgba(226, 179, 108, 0.94);
  font-family:
    Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(22px, 2.15vw, 32px);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.48);
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, max-content));
  gap: 12px;
  margin-top: 32px;
  color: rgba(232, 224, 210, 0.76);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.45;
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > span,
.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(214, 165, 109, 0.18);
  border-radius: 8px;
  background: rgba(8, 13, 18, 0.58);
  color: rgba(238, 231, 218, 0.84);
  padding: 0 16px;
  text-decoration: none;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > span > span,
.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > a > span {
  display: inline;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  box-shadow: none;
  backdrop-filter: none;
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  stroke: rgba(224, 202, 168, 0.86);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > a {
  border-color: rgba(214, 165, 109, 0.32);
  color: rgba(247, 228, 196, 0.92);
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > a svg {
  stroke: rgba(216, 165, 109, 0.9);
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > a:hover {
  border-color: rgba(214, 165, 109, 0.5);
  background: rgba(38, 28, 18, 0.62);
}

.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors span + span::before,
.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors span + a::before,
.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors a + span::before,
.gobekli-public-page .gobekli-light-header .gobekli-hero-anchors a + a::before {
  content: none;
}

.gobekli-public-page .gobekli-light-header .atomic-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 54px;
}

.gobekli-public-page .gobekli-light-header .atomic-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 292px;
  border: 1px solid rgba(126, 213, 255, 0.32);
  border-radius: 10px;
  background: rgba(4, 12, 21, 0.78);
  color: var(--gobekli-text);
  padding: 20px 22px;
  font-size: 22px;
  font-weight: 610;
  text-decoration: none;
  box-shadow: 0 0 34px rgba(83, 204, 255, 0.08);
}

.gobekli-public-page .gobekli-light-header .atomic-hero-actions a:hover {
  border-color: rgba(128, 220, 255, 0.58);
  background: rgba(10, 25, 38, 0.78);
  color: #ffffff;
  box-shadow: 0 0 40px rgba(83, 204, 255, 0.18);
}

.gobekli-public-page .gobekli-hero-media {
  position: absolute;
  z-index: 0;
  top: -88px;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: calc(100% + 88px);
  margin: 0;
  transform: translateX(-50%);
}

.gobekli-public-page .gobekli-hero-media::before {
  content: "";
  content: none;
}

.gobekli-public-page .gobekli-hero-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  filter: saturate(0.92) contrast(1.02) brightness(0.9);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-composite: add;
  mix-blend-mode: normal;
}

.gobekli-public-page .gobekli-feature-card {
  position: absolute;
  z-index: 4;
  right: clamp(28px, 5vw, 72px);
  bottom: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  gap: 22px;
  width: min(420px, calc(100% - 56px));
  border: 1px solid rgba(126, 213, 255, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(5, 12, 20, 0.9), rgba(38, 28, 18, 0.78));
  padding: 22px;
  color: var(--gobekli-text);
  text-decoration: none;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.gobekli-public-page .gobekli-feature-card:hover {
  border-color: rgba(128, 220, 255, 0.62);
  box-shadow:
    0 26px 84px rgba(0, 0, 0, 0.56);
  transform: translateY(-2px);
}

.gobekli-public-page .gobekli-feature-copy {
  display: grid;
  gap: 8px;
}

.gobekli-public-page .gobekli-feature-card small {
  color: var(--gobekli-accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gobekli-public-page .gobekli-feature-card strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 30px;
  font-weight: 480;
  letter-spacing: -0.025em;
}

.gobekli-public-page .gobekli-feature-card span span,
.gobekli-public-page .gobekli-feature-card .gobekli-feature-copy > span {
  color: rgba(245, 248, 252, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.gobekli-public-page .gobekli-feature-card em {
  margin-top: 6px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 580;
}

.gobekli-public-page .gobekli-feature-card img {
  align-self: stretch;
  width: 94px;
  height: 124px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  opacity: 0.84;
  filter: saturate(0.82) contrast(1.04) brightness(0.86);
}

.gobekli-public-page #gobekli-hero.atomic-hero {
  box-sizing: border-box;
  min-height: 0;
  height: auto;
  min-height: clamp(430px, 62svh, 560px);
  padding: clamp(26px, 3.2vw, 44px) 0 clamp(28px, 3.6vw, 48px);
  overflow: hidden;
}

.gobekli-public-page #gobekli-hero .gobekli-hero-shell {
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  min-height: 0;
  max-width: 1500px;
  padding: 0 clamp(28px, 5vw, 76px);
}

.gobekli-public-page #gobekli-hero .gobekli-hero-copy {
  max-width: 560px;
}

.gobekli-public-page #gobekli-hero.gobekli-light-header h1 {
  max-width: 560px;
  font-size: clamp(50px, 6.2vw, 92px);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.gobekli-public-page #gobekli-hero.gobekli-light-header h1::after {
  margin-top: 18px;
}

.gobekli-public-page #gobekli-hero.gobekli-light-header .atomic-hero-summary {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.07;
}

.gobekli-public-page #gobekli-hero.gobekli-light-header .atomic-thesis {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.48;
}

.gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors {
  gap: 10px;
  margin-top: 22px;
  font-size: 14px;
}

.gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors > span,
.gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors > a {
  min-height: 40px;
  gap: 8px;
  padding: 0 13px;
}

.gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors svg {
  width: 16px;
  height: 16px;
}

.gobekli-public-page #gobekli-hero .gobekli-feature-card {
  right: clamp(24px, 4.5vw, 64px);
  bottom: 24px;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 16px;
  width: min(360px, calc(100% - 48px));
  padding: 17px;
}

.gobekli-public-page #gobekli-hero .gobekli-feature-copy {
  gap: 6px;
}

.gobekli-public-page #gobekli-hero .gobekli-feature-card small {
  font-size: 11px;
}

.gobekli-public-page #gobekli-hero .gobekli-feature-card strong {
  font-size: 25px;
}

.gobekli-public-page #gobekli-hero .gobekli-feature-card .gobekli-feature-copy > span {
  font-size: 13px;
  line-height: 1.35;
}

.gobekli-public-page #gobekli-hero .gobekli-feature-card em {
  margin-top: 4px;
  font-size: 14px;
}

.gobekli-public-page #gobekli-hero .gobekli-feature-card img {
  width: 78px;
  height: 100px;
}

.gobekli-public-page .atomic-page-index {
  --profile-scroll-progress: 0%;
  position: sticky;
  top: 0;
  z-index: 90;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 82px;
  margin: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(126, 213, 255, 0.1);
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.98), rgba(3, 7, 10, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(126, 213, 255, 0.1), transparent 34%);
  padding: 0 clamp(42px, 7vw, 112px);
  gap: clamp(18px, 3.8vw, 58px);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  opacity: 1;
  transition: transform 340ms ease, opacity 260ms ease, box-shadow 260ms ease;
  will-change: transform, opacity;
}

.atomic-site-page > .atomic-page-index {
  --profile-scroll-progress: 0%;
  position: sticky;
  top: 0;
  z-index: 30;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 82px;
  margin: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(126, 213, 255, 0.1);
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.98), rgba(3, 7, 10, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(126, 213, 255, 0.1), transparent 34%);
  padding: 0 clamp(42px, 7vw, 112px);
  gap: clamp(18px, 3.8vw, 58px);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  opacity: 1;
  transition: transform 340ms ease, opacity 260ms ease, box-shadow 260ms ease;
  will-change: transform, opacity;
}

.atomic-site-page > .atomic-page-index.nav-pinned {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  width: 100vw;
}

.atomic-site-page > .atomic-page-index.nav-pinned + .atomic-page-body {
  padding-top: 82px;
}

.atomic-site-page > .atomic-page-index.nav-hidden,
.atomic-site-page > .atomic-page-index.nav-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.atomic-site-page > .atomic-page-index a {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 249, 255, 0.66);
  padding: 0 13px 0 10px;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.atomic-site-page > .atomic-page-index a:hover {
  border-color: rgba(126, 213, 255, 0.18);
  background: rgba(126, 213, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.atomic-site-page > .atomic-page-index a[aria-current="page"] {
  border-color: rgba(245, 165, 36, 0.35);
  background: rgba(245, 165, 36, 0.08);
  color: #f5f9ff;
}

.atomic-site-page > .atomic-page-index a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -14px;
  width: 64%;
  height: 2px;
  border-radius: 999px;
  background: var(--profile-orange, #f5a524);
  transform: translateX(50%);
  box-shadow: 0 0 18px rgba(245, 165, 36, 0.32);
}

.atomic-site-page > .atomic-page-index::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background:
    linear-gradient(90deg, var(--profile-orange, #f5a524) var(--profile-scroll-progress), rgba(126, 213, 255, 0.09) 0);
  box-shadow: 0 0 20px rgba(245, 165, 36, 0.12);
  pointer-events: none;
}

.atomic-site-page > .atomic-page-index::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -180px;
  left: 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, #03070a 0%, #03070a 34%, rgba(3, 7, 10, 0.9) 64%, rgba(3, 7, 10, 0) 100%);
}

.atomic-site-page > .atomic-page-index.nav-hidden {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.atomic-site-page > .atomic-page-index.nav-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.gobekli-public-page .atomic-page-index a {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(235, 245, 248, 0.7);
  padding: 0 13px 0 10px;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.gobekli-public-page .atomic-page-index a:hover {
  border-color: rgba(126, 213, 255, 0.18);
  background: rgba(126, 213, 255, 0.06);
  color: #80dcff;
}

.gobekli-public-page .atomic-page-index a[aria-current="page"] {
  border-color: rgba(245, 165, 36, 0.35);
  background: rgba(245, 165, 36, 0.08);
  color: #f5fbff;
}

.gobekli-public-page .atomic-page-index a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 64%;
  height: 2px;
  border-radius: 999px;
  background: var(--profile-orange, #f5a524);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(245, 165, 36, 0.32);
}

.gobekli-public-page .atomic-section {
  scroll-margin-top: 96px;
}

.gobekli-public-page .gobekli-map-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #05090d;
  padding: 0;
  color: #f5fbff;
}

.gobekli-public-page .gobekli-map-section .dossier-section-heading {
  max-width: 680px;
  padding: 0 0 34px;
}

.gobekli-public-page .gobekli-map-section .dossier-section-heading p {
  display: block;
  margin: 0 0 12px;
  color: #6fe8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gobekli-public-page .gobekli-map-section h2 {
  color: #f4fbff;
  font-size: clamp(30px, 3.2vw, 46px);
}

.gobekli-public-page .gobekli-map-section .profile-section-summary {
  color: rgba(225, 243, 255, 0.72);
}

.karahan-public-page.atomic-site-page .gobekli-light-header {
  background:
    radial-gradient(circle at 72% 36%, rgba(205, 136, 54, 0.22), transparent 34%),
    radial-gradient(circle at 24% 56%, rgba(83, 204, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #050608 0%, #0b0805 66%, #05090d 100%);
}

.karahan-public-page .karahan-hero-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2vh clamp(28px, 7vw, 110px) 5vh 42vw;
}

.karahan-public-page .karahan-hero-media img {
  width: min(46vw, 680px);
  height: min(74vh, 720px);
  object-fit: contain;
  object-position: center;
  opacity: 0.88;
  filter: saturate(0.92) contrast(1.04) brightness(0.88) drop-shadow(0 34px 70px rgba(0, 0, 0, 0.58));
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
}

.karahan-public-page .gobekli-feature-card img,
.karahan-public-page .gobekli-enclosure-tile img,
.karahan-public-page .karahan-blueprint-panel figure img {
  object-fit: cover;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.92), rgba(3, 5, 8, 0.96));
}

.karahan-public-page .karahan-blueprint-panel figure img {
  opacity: 0.92;
  filter: saturate(1.02) contrast(1.1) brightness(0.82);
}

.sayburc-public-page .gobekli-feature-card img,
.sayburc-public-page .gobekli-enclosure-tile img {
  object-fit: cover;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.94), rgba(3, 5, 8, 0.96));
}

.sayburc-public-page .sayburc-hero-media img,
.sayburc-public-page .sayburc-overview-panel figure img {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 45%, rgba(232, 166, 104, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.98), rgba(3, 5, 8, 0.98));
}

.sayburc-public-page .sayburc-hero-media {
  position: relative;
  z-index: 1;
  inset: auto;
  grid-column: 2;
  justify-self: end;
  align-self: center;
  width: min(100%, 680px);
  height: min(54vh, 520px);
  border: 1px solid rgba(232, 217, 193, 0.16);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0.9;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.sayburc-public-page .sayburc-hero-media::after,
.sayburc-public-page .sayburc-overview-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.72) 0%, rgba(3, 5, 8, 0) 16%, rgba(3, 5, 8, 0) 84%, rgba(3, 5, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.72) 0%, rgba(3, 5, 8, 0) 18%, rgba(3, 5, 8, 0) 78%, rgba(3, 5, 8, 0.82) 100%);
}

.sayburc-public-page .sayburc-hero-media img {
  mask-image: none;
  opacity: 0.88;
  filter: saturate(1.02) contrast(1.08) brightness(0.78);
}

.sayburc-public-page .sayburc-overview-panel {
  height: min(92vh, 900px);
  min-height: 690px;
  background:
    radial-gradient(circle at 52% 46%, rgba(232, 166, 104, 0.14), transparent 34%),
    linear-gradient(180deg, #040708 0%, #080d10 52%, #030609 100%);
}

.sayburc-public-page .sayburc-overview-panel figure {
  inset: 0;
  overflow: hidden;
}

.sayburc-public-page .sayburc-overview-panel figure img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  opacity: 0.9;
  filter: saturate(1.03) contrast(1.08) brightness(0.84) drop-shadow(0 0 72px rgba(232, 166, 104, 0.16));
}

.sayburc-public-page .sayburc-overview-panel .karahan-blueprint-hotspots {
  z-index: 4;
}

.sayburc-public-page .sayburc-overview-panel figure img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  max-inline-size: 100%;
  object-fit: contain;
  object-position: center;
}

.sayburc-public-page .gobekli-feature-card {
  border-color: rgba(232, 166, 104, 0.34);
}

.universal-public-page .universal-hero-media {
  position: relative;
  z-index: 1;
  inset: auto;
  grid-column: 2;
  justify-self: end;
  align-self: center;
  width: min(100%, 660px);
  height: min(48vh, 500px);
  border: 1px solid rgba(232, 217, 193, 0.16);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(185, 126, 77, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.94), rgba(3, 5, 8, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.universal-public-page .universal-hero-media img,
.universal-public-page .gobekli-feature-card img,
.universal-public-page .gobekli-enclosure-tile img {
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 42%, rgba(185, 126, 77, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.94), rgba(3, 5, 8, 0.96));
  filter: saturate(0.72) contrast(0.96) brightness(0.78);
}

.universal-public-page .universal-hero-media img {
  width: 100%;
  height: 100%;
  mask-image: none;
  opacity: 0.66;
}

.universal-public-page .gobekli-feature-card,
.universal-public-page .gobekli-enclosure-tile {
  border-color: rgba(232, 166, 104, 0.26);
}

.universal-public-page[data-public-site="sefertepe"] .universal-hero-media img,
.universal-public-page[data-public-site="sefertepe"] .gobekli-feature-card img,
.universal-public-page[data-public-site="sefertepe"] .gobekli-enclosure-tile img,
.universal-public-page[data-public-site="cakmaktepe"] .universal-hero-media img,
.universal-public-page[data-public-site="cakmaktepe"] .gobekli-feature-card img,
.universal-public-page[data-public-site="cakmaktepe"] .gobekli-enclosure-tile img,
.universal-public-page[data-public-site="harbetsuvan"] .universal-hero-media img,
.universal-public-page[data-public-site="harbetsuvan"] .gobekli-feature-card img,
.universal-public-page[data-public-site="harbetsuvan"] .gobekli-enclosure-tile img,
.universal-public-page[data-public-site="yeni-mahalle"] .universal-hero-media img,
.universal-public-page[data-public-site="yeni-mahalle"] .gobekli-feature-card img,
.universal-public-page[data-public-site="yeni-mahalle"] .gobekli-enclosure-tile img {
  object-fit: contain;
  padding: 5px;
  filter: saturate(0.86) contrast(0.98) brightness(0.82);
}

.universal-public-page[data-public-site="sefertepe"] .universal-hero-media img,
.universal-public-page[data-public-site="cakmaktepe"] .universal-hero-media img,
.universal-public-page[data-public-site="harbetsuvan"] .universal-hero-media img,
.universal-public-page[data-public-site="yeni-mahalle"] .universal-hero-media img {
  opacity: 0.78;
}

.universal-overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(10, 12, 11, 0.86), rgba(36, 26, 18, 0.52)),
    rgba(8, 10, 12, 0.76);
  padding: clamp(22px, 3vw, 38px);
}

.universal-overview-copy p {
  margin: 0 0 10px;
  color: var(--gobekli-accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.universal-overview-copy h2 {
  margin: 0;
}

.universal-overview-copy span {
  display: block;
  max-width: 780px;
  margin-top: 16px;
  color: rgba(232, 238, 242, 0.78);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
}

.universal-overview-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.universal-overview-facts div {
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 10px;
  background: rgba(4, 7, 8, 0.46);
  padding: 14px 16px;
}

.universal-overview-facts dt {
  color: rgba(224, 173, 123, 0.92);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.universal-overview-facts dd {
  margin: 6px 0 0;
  color: rgba(245, 248, 252, 0.84);
  font-size: 15px;
  line-height: 1.45;
}

.universal-research-section .atomic-research-mode {
  margin-top: 0;
}

.karahan-blueprint-panel {
  position: relative;
  height: min(92vh, 900px);
  min-height: 690px;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 52% 48%, rgba(83, 204, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #04080c 0%, #06101a 48%, #03070b 100%);
  color: #f5fbff;
}

.karahan-blueprint-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(126, 213, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 213, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.5;
  pointer-events: none;
}

.karahan-blueprint-panel figure {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
}

.karahan-blueprint-panel figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  filter: saturate(1.02) contrast(1.12) brightness(0.8) drop-shadow(0 0 74px rgba(83, 204, 255, 0.18));
}

.karahan-blueprint-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: block;
  width: 16px;
  height: 16px;
  color: #f5fbff;
  text-decoration: none;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.karahan-blueprint-hotspot i {
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(226, 247, 255, 0.92);
  border-radius: 999px;
  background: rgba(128, 220, 255, 0.84);
  box-shadow:
    0 0 0 8px rgba(83, 204, 255, 0.12),
    0 0 28px rgba(83, 204, 255, 0.62);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.karahan-blueprint-hotspot span {
  position: absolute;
  left: 24px;
  top: 50%;
  display: grid;
  gap: 3px;
  min-width: 190px;
  border: 1px solid rgba(126, 213, 255, 0.18);
  border-radius: 10px;
  background: rgba(5, 12, 18, 0.74);
  padding: 10px 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-42%);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(14px);
}

.karahan-blueprint-hotspot:hover i,
.karahan-blueprint-hotspot:focus-visible i,
.karahan-blueprint-hotspot:active i {
  background: rgba(255, 202, 112, 0.92);
  box-shadow:
    0 0 0 10px rgba(255, 202, 112, 0.16),
    0 0 38px rgba(255, 202, 112, 0.72);
  transform: scale(1.15);
}

.karahan-blueprint-hotspot:hover span,
.karahan-blueprint-hotspot:focus-visible span,
.karahan-blueprint-hotspot:active span {
  opacity: 1;
  transform: translateY(-50%);
}

.karahan-blueprint-hotspot strong {
  color: #f5fbff;
  font-size: 14px;
  font-weight: 780;
}

.karahan-blueprint-hotspot em {
  color: rgba(222, 235, 241, 0.72);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.karahan-public-page .gobekli-chronology-detail p {
  margin: 0;
  color: rgba(222, 235, 241, 0.78);
  font-size: 15px;
  font-weight: 420;
  line-height: 1.54;
}

.karahan-public-page .gobekli-chronology-detail a {
  justify-self: start;
  margin-top: 22px;
  border: 1px solid rgba(126, 213, 255, 0.26);
  border-radius: 999px;
  background: rgba(126, 213, 255, 0.08);
  color: #f5fbff;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.karahan-full-map-link {
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 4vw, 44px);
}

.karahan-full-map-link a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border: 1px solid rgba(196, 139, 84, 0.5);
  border-radius: 999px;
  background: rgba(8, 9, 10, 0.72);
  color: #f7efe6;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
}

.karahan-full-map-link a:hover {
  border-color: rgba(126, 213, 255, 0.46);
  color: #ffffff;
}

.karahan-structure-map-page .gobekli-enclosure-page-section .gobekli-enclosure-doorways {
  margin-top: 20px;
}

.karahan-interactive-enclosure-section {
  overflow: hidden;
}

.karahan-interactive-enclosure {
  margin: 22px 0 0;
  border: 1px solid rgba(126, 213, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background: #02070b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.karahan-interactive-enclosure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.08) brightness(0.86);
}

.gobekli-public-page #karahan-discoveries .dossier-section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.gobekli-public-page #karahan-discoveries h2 {
  max-width: 920px;
  font-size: clamp(42px, 5vw, 76px);
}

.gobekli-public-page #karahan-discoveries .profile-section-summary {
  max-width: 720px;
}

.interactive-site-map {
  position: relative;
  max-width: none;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: #03070a;
  box-shadow: none;
  overflow: hidden;
}

.interactive-site-map.panel-open {
  position: relative;
  z-index: 120;
  overflow: visible;
}

.interactive-site-map-frame {
  position: relative;
  height: min(92vh, 900px);
  min-height: 690px;
  margin: 0;
  background: #03070a;
  overflow: hidden;
}

.interactive-map-crop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  --map-offset-y: 0%;
  --map-pan-x: 0px;
  --map-pan-y: 0px;
  --map-scale: 1;
  transform: translate3d(var(--map-pan-x), calc(var(--map-offset-y) + var(--map-pan-y)), 0) scale(var(--map-scale));
  transform-origin: top center;
  transition: transform 220ms ease;
}

.map-fullscreen .interactive-map-crop,
.is-panning .interactive-map-crop {
  transition: none;
}

.interactive-map-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  filter: saturate(0.82) contrast(1.08) brightness(0.82);
}

.interactive-site-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 48%, rgba(71, 222, 255, 0.15), transparent 21%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.04), rgba(3, 7, 10, 0.34));
}

.interactive-site-map-frame::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 118px;
  pointer-events: none;
  background: linear-gradient(180deg, #03070a 0%, rgba(3, 7, 10, 0.78) 38%, rgba(3, 7, 10, 0) 100%);
}

.interactive-map-zoom-controls {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(178, 234, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 14, 20, 0.56);
  color: rgba(235, 252, 255, 0.92);
  backdrop-filter: blur(16px);
}

.interactive-map-zoom-controls {
  right: 24px;
  bottom: 22px;
  display: none;
  align-items: center;
  gap: 4px;
  padding: 5px;
}

.interactive-map-zoom-controls button {
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(235, 252, 255, 0.9);
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.interactive-map-zoom-controls button:hover {
  background: rgba(88, 204, 255, 0.14);
}

.map-fullscreen .interactive-map-zoom-controls {
  display: flex;
}

.interactive-hotspot-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.interactive-hotspot {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
  border: 0 !important;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(73, 193, 255, 0.24), rgba(73, 193, 255, 0.12) 46%, rgba(73, 193, 255, 0.04) 68%, transparent 84%) !important;
  padding: 0;
  color: #d9f8ff;
  cursor: pointer;
  box-shadow: none !important;
  opacity: 1;
  transition: filter 160ms ease, transform 160ms ease;
}

.interactive-hotspot:hover,
.interactive-hotspot:focus,
.interactive-hotspot:focus-visible,
.interactive-hotspot:active,
.interactive-hotspot.active {
  border-color: transparent !important;
  background:
    radial-gradient(ellipse at center, rgba(255, 184, 86, 0.38), rgba(255, 184, 86, 0.18) 48%, rgba(255, 184, 86, 0.06) 68%, transparent 84%) !important;
  box-shadow: none !important;
  outline: 0;
}

.interactive-hotspot[data-hotspot-id="hotspot-06-fieldwork-figure"],
.interactive-hotspot[data-hotspot-id="hotspot-07-lee-clare"],
.interactive-hotspot[data-hotspot-id="hotspot-08-feasting"],
.interactive-hotspot[data-hotspot-id="hotspot-09-skulls"],
.interactive-hotspot[data-hotspot-id="hotspot-10-tools-processing"],
.interactive-hotspot[data-hotspot-id="hotspot-11-settlement-context"],
.interactive-hotspot[data-hotspot-id="hotspot-12-how-to-visit"] {
  background:
    radial-gradient(ellipse at center, rgba(73, 193, 255, 0.28), rgba(73, 193, 255, 0.14) 48%, rgba(73, 193, 255, 0.05) 70%, transparent 86%) !important;
}

.interactive-hotspot[data-hotspot-id="hotspot-06-fieldwork-figure"]:hover,
.interactive-hotspot[data-hotspot-id="hotspot-07-lee-clare"]:hover,
.interactive-hotspot[data-hotspot-id="hotspot-08-feasting"]:hover,
.interactive-hotspot[data-hotspot-id="hotspot-09-skulls"]:hover,
.interactive-hotspot[data-hotspot-id="hotspot-10-tools-processing"]:hover,
.interactive-hotspot[data-hotspot-id="hotspot-11-settlement-context"]:hover,
.interactive-hotspot[data-hotspot-id="hotspot-12-how-to-visit"]:hover,
.interactive-hotspot[data-hotspot-id="hotspot-06-fieldwork-figure"]:focus-visible,
.interactive-hotspot[data-hotspot-id="hotspot-07-lee-clare"]:focus-visible,
.interactive-hotspot[data-hotspot-id="hotspot-08-feasting"]:focus-visible,
.interactive-hotspot[data-hotspot-id="hotspot-09-skulls"]:focus-visible,
.interactive-hotspot[data-hotspot-id="hotspot-10-tools-processing"]:focus-visible,
.interactive-hotspot[data-hotspot-id="hotspot-11-settlement-context"]:focus-visible,
.interactive-hotspot[data-hotspot-id="hotspot-12-how-to-visit"]:focus-visible,
.interactive-hotspot[data-hotspot-id="hotspot-06-fieldwork-figure"]:active,
.interactive-hotspot[data-hotspot-id="hotspot-07-lee-clare"]:active,
.interactive-hotspot[data-hotspot-id="hotspot-08-feasting"]:active,
.interactive-hotspot[data-hotspot-id="hotspot-09-skulls"]:active,
.interactive-hotspot[data-hotspot-id="hotspot-10-tools-processing"]:active,
.interactive-hotspot[data-hotspot-id="hotspot-11-settlement-context"]:active,
.interactive-hotspot[data-hotspot-id="hotspot-12-how-to-visit"]:active,
.interactive-hotspot[data-hotspot-id="hotspot-06-fieldwork-figure"].active,
.interactive-hotspot[data-hotspot-id="hotspot-07-lee-clare"].active,
.interactive-hotspot[data-hotspot-id="hotspot-08-feasting"].active,
.interactive-hotspot[data-hotspot-id="hotspot-09-skulls"].active,
.interactive-hotspot[data-hotspot-id="hotspot-10-tools-processing"].active,
.interactive-hotspot[data-hotspot-id="hotspot-11-settlement-context"].active,
.interactive-hotspot[data-hotspot-id="hotspot-12-how-to-visit"].active {
  background:
    radial-gradient(ellipse at center, rgba(255, 184, 86, 0.46), rgba(255, 184, 86, 0.2) 52%, rgba(255, 184, 86, 0.07) 70%, transparent 86%) !important;
}

.interactive-hotspot::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.interactive-hotspot::after {
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(120, 222, 255, 0.42);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 193, 255, 0.24), rgba(74, 193, 255, 0.08) 50%, transparent 74%);
  box-shadow:
    0 0 20px rgba(53, 180, 255, 0.34),
    0 0 54px rgba(53, 180, 255, 0.18);
  opacity: 0.66;
  transform: translate(-50%, -50%) scale(0.9);
}

.interactive-hotspot-number {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(202, 247, 255, 0.86);
  border-radius: 999px;
  background: rgba(126, 224, 255, 0.78);
  color: transparent;
  box-shadow:
    0 0 0 5px rgba(84, 203, 255, 0.18),
    0 0 18px rgba(80, 205, 255, 0.78),
    0 0 48px rgba(80, 205, 255, 0.36);
  font-size: 0;
  line-height: 0;
  transform: translate(-50%, -50%);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.interactive-hotspot-label {
  position: absolute;
  left: 50%;
  bottom: calc(50% + 18px);
  border: 1px solid rgba(126, 225, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 15, 22, 0.74);
  padding: 5px 8px;
  color: rgba(235, 252, 255, 0.92);
  font-size: 11px;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.interactive-hotspot:hover,
.interactive-hotspot.active {
  filter: none;
}

.interactive-hotspot:hover .interactive-hotspot-number,
.interactive-hotspot:focus-visible .interactive-hotspot-number,
.interactive-hotspot:active .interactive-hotspot-number,
.interactive-hotspot.active .interactive-hotspot-number {
  border-color: rgba(255, 242, 214, 0.96);
  background: rgba(255, 184, 86, 0.96);
  box-shadow:
    0 0 0 6px rgba(255, 184, 86, 0.18),
    0 0 22px rgba(255, 184, 86, 0.86),
    0 0 56px rgba(255, 184, 86, 0.46);
  transform: translate(-50%, -50%) scale(1.16);
}

.interactive-hotspot:hover::after,
.interactive-hotspot:focus-visible::after,
.interactive-hotspot:active::after,
.interactive-hotspot.active::after {
  opacity: 0.86;
  transform: translate(-50%, -50%) scale(1.08);
}

.interactive-hotspot:hover .interactive-hotspot-label,
.interactive-hotspot:focus-visible .interactive-hotspot-label,
.interactive-hotspot.active .interactive-hotspot-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.interactive-map-drawer {
  position: absolute;
  z-index: 90;
  top: 20px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(384px, calc(100% - 48px));
  max-height: min(586px, calc(100% - 40px), 78vh);
  border: 1px solid rgba(220, 191, 139, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 244, 221, 0.045), transparent 34%),
    radial-gradient(circle at 10% 0%, rgba(196, 122, 58, 0.13), transparent 35%),
    linear-gradient(180deg, rgba(16, 18, 17, 0.96), rgba(5, 8, 9, 0.96)),
    #060908;
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 221, 0.045),
    inset 0 24px 54px rgba(255, 244, 221, 0.025),
    0 22px 64px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px) saturate(0.9);
  padding: 16px;
  color: #f5ead7;
  overflow: auto;
}

.interactive-map-drawer::before {
  content: "";
  position: absolute;
  top: var(--connector-y, 42px);
  width: 28px;
  border-top: 1px solid rgba(211, 154, 62, 0.42);
  box-shadow: 0 0 16px rgba(211, 154, 62, 0.14);
  pointer-events: none;
}

.interactive-map-drawer::after {
  content: "";
  position: absolute;
  top: calc(var(--connector-y, 42px) - 5px);
  width: 9px;
  height: 9px;
  border: 1px solid rgba(211, 154, 62, 0.46);
  background: rgba(8, 10, 10, 0.96);
  transform: rotate(45deg);
  pointer-events: none;
}

.interactive-map-drawer.opens-right::before {
  right: 100%;
}

.interactive-map-drawer.opens-right::after {
  right: calc(100% - 5px);
}

.interactive-map-drawer.opens-left::before {
  left: 100%;
}

.interactive-map-drawer.opens-left::after {
  left: calc(100% - 5px);
}

.interactive-map-drawer-media {
  position: relative;
  order: 2;
  flex: 0 0 auto;
  margin: 2px 0 0;
  overflow: hidden;
  border: 1px solid rgba(220, 191, 139, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(232, 216, 184, 0.05), rgba(0, 0, 0, 0.2)),
    rgba(255, 244, 221, 0.025);
  aspect-ratio: 16 / 7.4;
  max-height: 168px;
}

.interactive-map-drawer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 8, 0.38), transparent 28%, transparent 68%, rgba(4, 7, 8, 0.5)),
    linear-gradient(180deg, rgba(4, 7, 8, 0.1), rgba(4, 7, 8, 0.46));
  pointer-events: none;
}

.interactive-map-drawer-media[hidden] {
  display: none;
}

.interactive-map-drawer-thumb,
.interactive-map-drawer-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  filter: saturate(0.58) contrast(1.08) brightness(0.66) sepia(0.1);
  opacity: 0.9;
}

.interactive-map-drawer.is-positioned {
  right: auto;
  bottom: auto;
}

.interactive-map-drawer[hidden] {
  display: none;
}

.interactive-map-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(232, 216, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 244, 221, 0.025);
  color: rgba(245, 234, 215, 0.64);
  cursor: pointer;
}

.interactive-map-close:hover,
.interactive-map-close:focus-visible {
  border-color: rgba(211, 154, 62, 0.5);
  color: #f5ead7;
}

.interactive-map-drawer-glyph {
  order: -1;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(211, 154, 62, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(211, 154, 62, 0.72) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 46%, rgba(211, 154, 62, 0.48) 47% 53%, transparent 54%),
    linear-gradient(180deg, transparent 46%, rgba(211, 154, 62, 0.48) 47% 53%, transparent 54%),
    rgba(255, 244, 221, 0.025);
  box-shadow: 0 0 20px rgba(211, 154, 62, 0.11);
}

.interactive-map-drawer-kicker {
  display: block;
  margin: -2px 0 0;
  color: #d39a3e;
  font-size: 10px;
  font-weight: 860;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.interactive-map-drawer h3 {
  order: 0;
  margin: -2px 34px 0 0;
  color: #fff3dd;
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.interactive-map-drawer-intro {
  order: 1;
  margin: 0;
  color: rgba(245, 234, 215, 0.78);
  font-size: 13.5px;
  font-weight: 560;
  line-height: 1.4;
}

.interactive-map-drawer-intro a {
  color: #d9b77b;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(217, 183, 123, 0.48);
  text-underline-offset: 3px;
}

.interactive-map-drawer-intro a:hover,
.interactive-map-drawer-intro a:focus-visible {
  color: #fff8ed;
  text-decoration-color: rgba(255, 248, 237, 0.75);
}

.interactive-map-drawer-why {
  order: 3;
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(220, 191, 139, 0.12);
  padding-top: 10px;
}

.interactive-map-drawer-why[hidden] {
  display: none;
}

.interactive-map-drawer-why strong {
  color: #d39a3e;
  font-size: 10px;
  font-weight: 880;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.interactive-map-drawer-why p {
  margin: 0;
  color: rgba(245, 234, 215, 0.76);
  font-size: 12.8px;
  font-weight: 600;
  line-height: 1.38;
}

.interactive-map-drawer-why a {
  color: #d9b77b;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(217, 183, 123, 0.48);
  text-underline-offset: 3px;
}

.interactive-map-drawer > p:not(.interactive-map-drawer-kicker),
.interactive-map-drawer-group p {
  margin: 0 0 12px;
  color: rgba(232, 248, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.interactive-map-drawer-group p {
  margin: 0;
}

.interactive-map-drawer-group p a {
  color: #d9b77b;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(217, 183, 123, 0.48);
  text-underline-offset: 3px;
}

.interactive-map-drawer-group p a:hover,
.interactive-map-drawer-group p a:focus-visible {
  color: #fff8ed;
  text-decoration-color: rgba(255, 248, 237, 0.75);
}

.interactive-map-drawer-group {
  order: 4;
  flex: 0 0 auto;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(220, 191, 139, 0.14);
  border-radius: 0;
  background: transparent;
  padding: 11px 0 0;
  margin-top: 2px;
}

.interactive-map-drawer-group strong {
  color: #d39a3e;
  font-size: 10px;
  font-weight: 880;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.interactive-map-drawer-group ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interactive-map-drawer-group li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(78px, 0.42fr) minmax(0, 1fr);
  gap: 9px;
  align-items: baseline;
  border-top: 1px solid rgba(255, 244, 221, 0.055);
  color: rgba(245, 234, 215, 0.82);
  padding: 7px 0 0;
  font-size: 12.5px;
  line-height: 1.32;
}

.interactive-map-drawer-group li::before {
  display: none;
}

.interactive-map-drawer-group li span {
  color: rgba(211, 154, 62, 0.88);
  font-size: 10px;
  font-style: normal;
  font-weight: 870;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.interactive-map-drawer-group li em {
  color: rgba(245, 234, 215, 0.84);
  font-style: normal;
  font-weight: 660;
}

.interactive-map-entry-button {
  order: 5;
  align-self: start;
  margin-top: 2px;
  border: 1px solid rgba(211, 154, 62, 0.32);
  border-radius: 6px;
  background: rgba(211, 154, 62, 0.075);
  color: #f2d49b;
  padding: 9px 11px;
  font: inherit;
  font-size: 11.5px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.interactive-map-entry-button:hover,
.interactive-map-entry-button:focus-visible {
  border-color: rgba(232, 216, 184, 0.44);
  background: rgba(211, 154, 62, 0.14);
  color: #fff3dd;
}

.map-fullscreen-open {
  overflow: hidden;
}

.interactive-site-map.map-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  border-radius: 0;
  background: #020609;
}

.interactive-site-map.map-fullscreen .interactive-site-map-frame {
  height: 100vh;
  min-height: 0;
}

.interactive-site-map.map-fullscreen .interactive-map-crop {
  width: max(100vw, calc(100vh * 1.3333));
  left: 50%;
  transform: translate3d(calc(-50% + var(--map-pan-x)), calc(var(--map-offset-y) + var(--map-pan-y)), 0) scale(var(--map-scale));
}

.interactive-map-empty {
  color: rgba(232, 248, 255, 0.72);
}

.atomic-layer-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 20px 22px 24px;
}

.atomic-layer-list article {
  min-height: 180px;
  border-left: 3px solid rgba(217, 166, 119, 0.72);
  border-radius: 0 8px 8px 0;
  background: rgba(47, 34, 25, 0.34);
  padding: 16px;
}

.atomic-layer-list span {
  color: #d9a677;
  font-size: 13px;
  font-weight: 900;
}

.atomic-layer-list h3 {
  margin: 16px 0 8px;
  color: #fff1dc;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.atomic-layer-list p {
  margin: 0;
  color: #cfc0ad;
  font-size: 14px;
  line-height: 1.45;
}

.atomic-discovery-card summary {
  align-items: flex-start;
}

.atomic-discovery-card summary strong {
  margin-top: 4px;
  font-size: 20px;
}

.atomic-info-card,
.atomic-cta-card {
  display: grid;
  gap: 10px;
}

.atomic-cta-card a {
  justify-self: start;
  margin-top: auto;
}

.atomic-faq-list {
  display: grid;
  gap: 10px;
  padding: 20px 22px 24px;
}

.atomic-faq-item {
  padding: 0 16px;
}

.atomic-faq-item summary {
  color: #fff1dc;
  font-weight: 850;
}

.atomic-faq-item p {
  margin: 14px 0 16px;
}

.atomic-research-mode {
  margin: 20px 22px 24px;
  background: rgba(4, 5, 5, 0.32);
}

.atomic-research-mode summary {
  padding: 18px;
}

.atomic-research-mode summary strong {
  font-size: 22px;
}

.atomic-research-note {
  margin: 18px 22px;
  color: #d7c7b2;
  font-size: 16px;
  line-height: 1.5;
}

.atomic-research-intro {
  margin: 0;
  padding: 18px 22px 0;
}

.atomic-research-intro p,
.atomic-research-drawer-note {
  margin: 0;
  color: #d7c7b2;
  font-size: 15px;
  line-height: 1.55;
}

.research-mode-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 22px 0;
}

.research-mode-guide article {
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  padding: 14px;
}

.research-mode-guide strong {
  display: block;
  color: #fff1dc;
  font-size: 22px;
  line-height: 1;
}

.research-mode-guide span {
  display: block;
  margin-top: 6px;
  color: #cfc0ad;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.atomic-citation-card-panel {
  margin: 18px 22px 22px;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 8px;
  background: rgba(10, 11, 10, 0.34);
  padding: 18px;
}

.atomic-citation-card-panel h4 {
  margin: 0;
  color: #fff1dc;
  font-size: 20px;
}

.atomic-citation-card-panel > p {
  margin: 8px 0 0;
  color: #cfc0ad;
  font-size: 14px;
  line-height: 1.5;
}

.atomic-source-badge-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.atomic-source-badge {
  display: grid;
  gap: 5px;
  min-height: 88px;
  border: 1px solid rgba(232, 217, 193, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 12px;
}

.atomic-source-badge strong {
  color: #fff1dc;
  font-size: 13px;
  line-height: 1.25;
}

.atomic-source-badge span,
.atomic-source-badge small,
.atomic-source-badge em {
  color: #cfc0ad;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.atomic-source-badge em {
  color: #d9a677;
}

.atomic-research-compact-drawer {
  margin: 18px 22px;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.atomic-research-compact-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
}

.atomic-research-compact-drawer summary span {
  color: #fff1dc;
  font-weight: 850;
}

.atomic-research-compact-drawer summary em {
  color: #d9a677;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.atomic-research-drawer {
  margin: 18px 22px;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.atomic-research-drawer > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 15px 16px;
}

.atomic-research-drawer > summary span {
  color: #fff1dc;
  font-weight: 850;
}

.atomic-research-drawer > summary em {
  color: #d9a677;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.atomic-research-drawer .evidence-record-list,
.atomic-research-drawer .source-chunk-list,
.atomic-research-drawer .atomic-source-badge-list {
  padding: 0 16px 16px;
}

.atomic-research-drawer-note {
  padding: 0 16px 14px;
}

.atomic-citation-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.atomic-citation-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(232, 217, 193, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  padding: 16px;
}

.atomic-citation-card small {
  color: #d9a677;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atomic-citation-card h5 {
  margin: 5px 0 0;
  color: #fff1dc;
  font-size: 17px;
  line-height: 1.25;
}

.atomic-citation-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.atomic-citation-card dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(232, 217, 193, 0.08);
  padding-top: 8px;
}

.atomic-citation-card dt {
  color: #d9a677;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atomic-citation-card dd {
  margin: 0;
  color: #d8cebd;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.atomic-citation-card p {
  margin: 0;
  color: #cfc0ad;
  font-size: 14px;
  line-height: 1.48;
}

.atomic-citation-card a {
  justify-self: start;
  color: #e4b17b;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1180px) {
  #app {
    grid-template-columns: 260px minmax(420px, 1fr) 410px;
  }

  .primary-site-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topbar-orbit {
    display: none;
  }
}

@media (max-width: 980px) {
  body {
    min-width: 0;
    overflow: auto;
  }

  #app {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(520px, 62vh) auto;
    height: auto;
    min-height: 100vh;
  }

  .sidebar,
  .detail-panel {
    max-height: none;
    border: 0;
  }

  .site-list {
    max-height: 220px;
  }

  .detail-tabs {
    position: sticky;
    top: 0;
    z-index: 5;
  }

  .guide-actions,
  .guide-card-grid,
  .connection-grid {
    grid-template-columns: 1fr;
  }

  .guide-hero-panel {
    min-height: 560px;
  }

  .atlas-home-nav {
    position: relative;
    display: grid;
    padding: 12px 18px;
  }

  .atlas-home-nav > div:last-child {
    flex-wrap: wrap;
    gap: 10px;
  }

  .atlas-hero-panel {
    min-height: 520px;
  }

  .atlas-hero-content h1 {
    font-size: clamp(46px, 15vw, 76px);
  }

  .atlas-hero-subtitle {
    font-size: 16px;
  }

  .guide-hero-content h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .section-line {
    display: grid;
    align-items: start;
  }

  .primary-site-grid {
    grid-template-columns: 1fr;
  }

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

  .dossier-snapshot-row {
    grid-template-columns: 1fr;
  }

  .profile-photo-heading {
    max-width: none;
  }

  .profile-photo-heading .profile-section-summary {
    max-width: none;
  }

  .profile-photo-gallery {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }

  .profile-photo-card {
    flex: 1 1 min(100%, 210px);
    max-width: none;
    height: 146px;
  }

  .profile-section-index,
  .profile-audit-grid {
    grid-template-columns: 1fr;
  }

  .profile-evidence-table {
    min-width: 760px;
  }

  .atomic-site-page .atomic-hero,
  .atomic-site-page .atomic-page-body {
    width: min(calc(100% - 28px), 760px);
  }

  .atomic-hero {
    min-height: 640px;
  }

  .site-reader-panel {
    grid-template-columns: 1fr;
    padding: 16px 16px 4px;
  }

  .site-reader-photo {
    min-height: 170px;
  }

  .atomic-object-preview:not([hidden]) {
    grid-template-columns: 1fr;
  }

  .atomic-object-image {
    min-height: 150px;
  }

  .atomic-fast-facts,
  .atomic-story-grid,
  .atomic-discovery-grid,
  .atomic-visitor-grid,
  .atomic-cta-grid,
  .atomic-citation-card-grid,
  .atomic-layer-list,
  .gobekli-timeline,
  .gobekli-key-discoveries,
  .gobekli-enclosure-doorways,
  .gobekli-spotlight-grid,
  .dossier-related-sites {
    grid-template-columns: 1fr;
  }

  .atomic-enclosure-card > summary {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .atomic-enclosure-thumb {
    grid-column: 1 / 3;
    width: 100%;
    max-width: none;
  }

  .atomic-enclosure-card > summary em {
    grid-column: 1 / 2;
    justify-self: start;
    margin-left: 0;
  }

  .atomic-enclosure-card > summary::after {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .atomic-citation-card dl div {
    grid-template-columns: 1fr;
  }

  .atomic-story-card {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .gobekli-public-page.atomic-site-page .atomic-hero,
  .gobekli-public-page.atomic-site-page .atomic-page-body {
    width: min(calc(100% - 28px), 760px);
  }

  .gobekli-public-page .gobekli-key-discoveries,
  .gobekli-public-page .gobekli-timeline {
    grid-template-columns: 1fr;
  }

  .gobekli-public-page .gobekli-key-discoveries article,
  .gobekli-public-page .gobekli-key-discoveries article:first-child {
    grid-column: auto;
  }

  .gobekli-public-page .gobekli-chronology-section {
    padding: 0 24px 56px;
  }

  .gobekli-chronology-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gobekli-chronology-ridge {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 2;
    height: 140px;
    min-height: 140px;
    margin: -6px 0 4px;
  }

  .gobekli-chronology-steps {
    order: 1;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gobekli-chronology-steps::before {
    top: 38px;
    bottom: 38px;
    left: 31px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(95, 215, 255, 0.12), rgba(95, 215, 255, 0.42), rgba(95, 215, 255, 0.12));
  }

  .gobekli-chronology-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(126, 213, 255, 0.11);
    padding: 28px 24px 28px 58px;
  }

  .gobekli-chronology-step:last-child {
    border-bottom: 0;
  }

  .gobekli-chronology-step::before {
    top: 32px;
    left: 24px;
  }

  .gobekli-chronology-step em {
    max-width: 42ch;
  }

  .gobekli-chronology-detail {
    order: 3;
    padding: 24px;
  }

  .gobekli-public-page .gobekli-learn-hub-section {
    margin-top: -44px;
    padding: 54px 24px 72px;
  }

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

  .gobekli-learn-card {
    min-height: 0;
    padding: 22px;
  }

  .gobekli-learn-content-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gobekli-enclosure-page-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gobekli-building-d-media {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100% - 28px, 760px);
    margin-top: -26px;
  }

  .gobekli-building-d-media-guide {
    position: relative;
    top: auto;
  }

  .gobekli-building-d-media-hero img {
    height: clamp(210px, 44vw, 300px);
  }

  .gobekli-building-d-photo-grid,
  .gobekli-building-d-fact-band {
    grid-template-columns: 1fr;
  }

  .gobekli-building-d-fact-band article {
    min-height: 0;
  }

  .gobekli-building-d-priority-grid {
    grid-template-columns: 1fr;
  }

  .gobekli-building-d-priority-grid article {
    min-height: 0;
  }

  .gobekli-enclosure-object-grid {
    grid-template-columns: 1fr;
  }

  .gobekli-learn-hero {
    min-height: 52vh;
  }

  .gobekli-enclosure-hero {
    min-height: 48vh;
  }
}

@media (max-width: 980px) {
  .gobekli-public-page.atomic-site-page .gobekli-light-header {
    width: 100%;
    min-height: auto;
  }

  .gobekli-public-page .gobekli-top-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 68px;
    padding: 0 22px;
  }

  .gobekli-public-page .gobekli-top-links {
    display: none;
  }

  .gobekli-public-page .gobekli-site-mark {
    font-size: 17px;
    letter-spacing: 0.12em;
  }

  .gobekli-public-page .gobekli-site-mark-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .gobekli-public-page .gobekli-all-sites {
    border-left: 0;
    padding-left: 0;
  }

  .gobekli-public-page .gobekli-hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 38px;
    padding: 76px 24px 38px;
  }

  .gobekli-public-page .gobekli-light-header h1 {
    font-size: clamp(54px, 15vw, 82px);
  }

  .gobekli-public-page .gobekli-light-header .atomic-hero-summary {
    font-size: clamp(25px, 7vw, 36px);
  }

  .gobekli-public-page .gobekli-hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    justify-self: stretch;
    width: 100%;
    height: 300px;
    max-height: none;
    overflow: hidden;
  }

  .gobekli-public-page .gobekli-hero-media::before {
    inset: 8% 8% -8%;
  }

  .gobekli-public-page .gobekli-hero-media img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    border-radius: 22px;
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  }

  .karahan-public-page .karahan-hero-media {
    display: block;
    padding: 0;
  }

  .karahan-public-page .karahan-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .universal-public-page .universal-hero-media,
  .sayburc-public-page .sayburc-hero-media {
    grid-column: auto;
    width: 100%;
    height: 300px;
  }

  .universal-public-page .universal-hero-media img,
  .sayburc-public-page .sayburc-hero-media img {
    border-radius: 16px;
    mask-image: none;
    object-fit: cover;
  }

  .universal-overview-panel {
    grid-template-columns: 1fr;
  }

  .gobekli-public-page .gobekli-light-header .gobekli-hero-anchors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > span,
  .gobekli-public-page .gobekli-light-header .gobekli-hero-anchors > a {
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    text-align: center;
  }

  .gobekli-public-page .gobekli-light-header .atomic-hero-actions {
    margin-top: 32px;
  }

  .gobekli-public-page .gobekli-light-header .atomic-hero-actions a {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    font-size: 19px;
  }

  .gobekli-public-page .gobekli-feature-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 84px;
    padding: 18px;
  }

  .gobekli-public-page .gobekli-feature-card img {
    width: 84px;
    height: 110px;
  }

  .gobekli-public-page .atomic-page-index {
    justify-content: flex-start;
    height: 58px;
    overflow-x: auto;
    padding: 0 24px;
    gap: 10px;
    scrollbar-width: none;
  }

  .gobekli-public-page .atomic-page-index a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px 0 8px;
    font-size: 13px;
  }

  .gobekli-public-page .atomic-page-index a[aria-current="page"]::after {
    bottom: -10px;
    width: 58%;
  }

  .gobekli-public-page .atomic-page-index::-webkit-scrollbar {
    display: none;
  }

  .atomic-site-page > .atomic-page-index {
    justify-content: flex-start;
    height: 58px;
    overflow-x: auto;
    padding: 0 24px;
    gap: 10px;
    scrollbar-width: none;
  }

  .atomic-site-page > .atomic-page-index.nav-pinned + .atomic-page-body {
    padding-top: 58px;
  }

  .atomic-site-page > .atomic-page-index a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px 0 8px;
    font-size: 13px;
  }

  .atomic-site-page > .atomic-page-index a[aria-current="page"]::after {
    bottom: -10px;
    width: 58%;
  }

  .atomic-site-page > .atomic-page-index::-webkit-scrollbar {
    display: none;
  }

  .gobekli-public-page .gobekli-map-section {
    padding: 0;
  }

  .gobekli-public-page .gobekli-enclosure-doorways {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip-header {
    align-items: start;
    flex-direction: column;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile {
    height: 138px;
  }

  .gobekli-network-map {
    grid-template-columns: 1fr;
  }

  .gobekli-network-field {
    min-height: 340px;
  }

  .profile-tas-network-map {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .profile-tas-network-copy h2 {
    max-width: 560px;
    font-size: clamp(40px, 10vw, 62px);
  }

  .profile-tas-map-stage {
    min-height: 420px;
  }

  .profile-tas-map-stage .tas-map-node em {
    font-size: 11px;
  }

  .profile-tas-map-stage .tas-map-node.current em {
    font-size: 13px;
  }

  .gobekli-public-page .research-mode-guide {
    grid-template-columns: 1fr;
  }

  .interactive-site-map {
    border-radius: 0;
  }

  .interactive-site-map-frame {
    height: 72vh;
    min-height: 500px;
  }

  .interactive-map-crop {
    --map-offset-y: 0%;
  }

  .interactive-map-drawer {
    position: absolute;
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: min(72%, 440px);
    border-radius: 10px;
    padding: 14px;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .interactive-map-drawer::before,
  .interactive-map-drawer::after {
    display: none;
  }

  .interactive-map-drawer h3 {
    font-size: clamp(20px, 6vw, 27px);
    line-height: 1;
    margin-right: 42px;
  }

  .interactive-map-drawer-intro {
    font-size: 13.5px;
    line-height: 1.38;
  }

  .interactive-map-drawer-media {
    aspect-ratio: 16 / 7.2;
    max-height: 148px;
  }

  .interactive-map-drawer-group [data-map-drawer-why] {
    max-height: none;
  }

  .interactive-map-drawer-group {
    padding: 12px 0 0;
  }

  .interactive-map-drawer-group p {
    font-size: 13.5px;
    line-height: 1.48;
  }

  .interactive-hotspot {
    border-radius: 11px;
  }

  .interactive-hotspot-label {
    display: none;
  }

  .karahan-blueprint-panel {
    height: 72vh;
    min-height: 500px;
  }

  .karahan-blueprint-panel figure img {
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .karahan-blueprint-hotspot span {
    display: none;
  }
}

@media (max-width: 640px) {
  .sayburc-public-page .sayburc-overview-panel {
    height: 72vh;
    min-height: 500px;
  }

  .gobekli-public-page .gobekli-site-mark,
  .gobekli-public-page .gobekli-all-sites {
    font-size: 15px;
  }

  .gobekli-public-page .gobekli-site-mark span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .gobekli-public-page .gobekli-light-header .atomic-thesis {
    font-size: 17px;
  }

  .gobekli-public-page .gobekli-light-header .gobekli-hero-reveal {
    max-width: 24ch;
    margin-top: 10px;
    font-size: clamp(20px, 5.4vw, 25px);
    line-height: 1.06;
  }

  .gobekli-public-page .gobekli-light-header .gobekli-hero-anchors {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 14px;
  }

  .gobekli-public-page .gobekli-light-header .gobekli-hero-anchors span + span::before,
  .gobekli-public-page .gobekli-light-header .gobekli-hero-anchors span + a::before,
  .gobekli-public-page .gobekli-light-header .gobekli-hero-anchors a + span::before,
  .gobekli-public-page .gobekli-light-header .gobekli-hero-anchors a + a::before {
    content: none;
  }

  .gobekli-public-page .gobekli-light-header .atomic-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
.static-seo-page {
  min-height: 100vh;
  padding: 122px clamp(18px, 5vw, 72px) 44px;
  overflow-x: clip;
  background: #090907;
  color: #f4efe4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.static-seo-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
}

.static-seo-page article {
  position: relative;
  max-width: 920px;
}

.static-seo-page article:has(.static-structure-authority),
.static-seo-page article:has(.static-object-authority),
.static-seo-page article:has(.static-learn-authority) {
  max-width: 1120px;
}

.static-seo-page header {
  margin: 36px 0 30px;
}

.static-seo-page header > p:first-child {
  margin: 0 0 14px;
  color: #d7ad78;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.static-seo-page h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.static-seo-page h2 {
  margin: 34px 0 12px;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7ad78;
}

.static-seo-page p,
.static-seo-page li,
.static-seo-page dd {
  font-size: 18px;
  line-height: 1.65;
  color: #d8d0c2;
}

.static-seo-page section {
  margin: 34px 0;
}

.static-seo-page ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.static-seo-page li::marker {
  color: #d7ad78;
}

.static-seo-page dl {
  display: grid;
  gap: 12px;
}

.static-seo-page dt {
  color: #d7ad78;
  font-weight: 800;
}

.static-seo-page dd {
  margin: 0;
}

.static-seo-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-universal-nav {
  position: fixed;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto minmax(330px, 1fr);
  align-items: center;
  justify-content: stretch;
  height: 78px;
  min-height: 78px;
  z-index: 120;
  border-bottom: 1px solid rgba(211, 159, 84, 0.14);
  background: rgba(2, 5, 9, 0.84);
  padding: 0 34px;
  backdrop-filter: blur(20px);
}

.site-universal-nav .atlas-home-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  color: #eee7dc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.site-universal-nav .atlas-home-brand::before {
  content: "T";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 155, 75, 0.78);
  border-radius: 999px;
  color: #d89b4b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(216, 155, 75, 0.12),
    0 0 28px rgba(216, 155, 75, 0.12);
}

.site-universal-nav .atlas-home-brand img {
  display: none;
}

.site-universal-nav .atlas-home-brand small {
  display: block;
  margin-top: 7px;
  color: rgba(226, 206, 174, 0.56);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.32em;
}

.site-universal-nav .tas-home-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(28px, 3.4vw, 56px);
}

.site-universal-nav a,
.site-universal-nav .tas-nav-trigger {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(236, 230, 219, 0.7);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
}

.site-universal-nav .tas-nav-trigger {
  color: rgba(236, 230, 219, 0.7);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.site-universal-nav .tas-home-links > a:first-child {
  color: rgba(236, 230, 219, 0.7);
}

.site-universal-nav .tas-visit-link,
.site-universal-nav .tas-visit-link[aria-current="page"] {
  color: rgba(236, 230, 219, 0.7);
}

.site-universal-nav a:hover,
.site-universal-nav .tas-nav-item:hover .tas-nav-trigger,
.site-universal-nav .tas-nav-item:focus-within .tas-nav-trigger,
.site-universal-nav [aria-current="page"] {
  color: #fffaf0;
}

.site-universal-nav .tas-nav-trigger:hover,
.site-universal-nav .tas-nav-item:hover .tas-nav-trigger,
.site-universal-nav .tas-nav-item:focus-within .tas-nav-trigger {
  color: #f2c184;
}

.site-universal-nav .tas-nav-menu a {
  color: rgba(238, 231, 220, 0.86);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.site-universal-nav .tas-nav-menu a:hover {
  color: #fffaf0;
}

@media (max-width: 860px) {
  .site-universal-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 66px;
    min-height: 66px;
    padding: 0 18px;
  }

  .site-universal-nav .atlas-home-brand {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .site-universal-nav .atlas-home-brand::before {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .site-universal-nav .atlas-home-brand small {
    display: none;
  }

  .site-universal-nav .tas-nav-item,
  .site-universal-nav .tas-visit-link,
  .site-universal-nav .tas-home-links > a:not(.tas-visit-link) {
    display: none;
  }
}

.static-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 18px;
  color: #a99a86;
  font-size: 14px;
}

.static-breadcrumbs a,
.static-breadcrumbs span {
  color: #c8b397;
}

.static-seo-page a {
  color: #e6bd85;
}

.tour-static-page article {
  max-width: 1180px;
}

.tour-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(26px, 4.4vw, 58px);
  align-items: center;
  margin-bottom: 18px;
}

.tour-page-hero h1 {
  max-width: 620px;
  font-size: clamp(52px, 7.2vw, 90px);
}

.tour-page-hero > div > p:last-of-type {
  max-width: 650px;
  color: #e7ded0;
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.35;
}

.tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tour-hero-actions a,
.tour-inquiry-panel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(230, 189, 133, 0.36);
  border-radius: 999px;
  background: rgba(230, 189, 133, 0.09);
  color: #f6ead8;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.tour-hero-actions a:hover,
.tour-hero-actions a:focus-visible,
.tour-inquiry-panel > a:hover,
.tour-inquiry-panel > a:focus-visible {
  border-color: rgba(230, 189, 133, 0.72);
  background: rgba(230, 189, 133, 0.16);
  outline: 0;
}

.tour-hero-image,
.tour-photo-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(231, 216, 191, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.tour-hero-image img {
  display: block;
  width: 100%;
  height: clamp(310px, 35vw, 460px);
  object-fit: cover;
}

.tour-hero-image figcaption,
.tour-photo-grid figcaption {
  padding: 12px 14px 14px;
  color: #b9ac9b;
  font-size: 13px;
  line-height: 1.45;
}

.tour-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tour-photo-grid h2,
.tour-info-grid h2 {
  grid-column: 1 / -1;
}

.tour-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #050505;
}

.tour-answer-panel {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(215, 173, 120, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(230, 189, 133, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.tour-answer-panel p {
  max-width: 840px;
  margin: 0;
  color: #eee1cf;
  font-size: 21px;
  line-height: 1.5;
}

.tour-answer-panel dl {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.tour-answer-panel dl > div {
  border-top: 1px solid rgba(215, 173, 120, 0.24);
  padding-top: 12px;
}

.tour-route-grid,
.tour-site-cards,
.tour-planning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tour-route-grid h2,
.tour-site-cards h2,
.tour-planning-grid h2 {
  grid-column: 1 / -1;
}

.tour-route-grid article,
.tour-site-cards article,
.tour-planning-grid article {
  border-top: 1px solid rgba(215, 173, 120, 0.24);
  background: rgba(255, 255, 255, 0.032);
  padding: 20px;
}

.tour-route-grid small {
  color: #d7ad78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-route-grid h3,
.tour-site-cards h3,
.tour-planning-grid h3 {
  margin: 8px 0 10px;
  color: #f2d5ad;
  font-size: 20px;
}

.tour-route-grid p,
.tour-site-cards p,
.tour-planning-grid p {
  margin: 0;
}

.tour-itinerary-section {
  max-width: 980px;
}

.tour-itinerary-section ol {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
  counter-reset: tour-step;
}

.tour-itinerary-section li {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  position: relative;
  margin: 0;
  padding: 18px 0 18px 44px;
  border-top: 1px solid rgba(215, 173, 120, 0.18);
  counter-increment: tour-step;
}

.tour-itinerary-section li::before {
  content: counter(tour-step);
  position: absolute;
  left: 0;
  top: 19px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(230, 189, 133, 0.38);
  border-radius: 999px;
  color: #f2d5ad;
  font-size: 12px;
  font-weight: 900;
}

.tour-itinerary-section strong {
  color: #f2d5ad;
  font-size: 16px;
}

.tour-itinerary-section span {
  color: #d8d0c2;
  font-size: 16px;
  line-height: 1.55;
}

.tour-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tour-info-grid article,
.tour-inquiry-panel {
  border-top: 1px solid rgba(215, 173, 120, 0.24);
  background: rgba(255, 255, 255, 0.032);
  padding: 20px;
}

.tour-info-grid h3 {
  margin: 0 0 10px;
  color: #f2d5ad;
  font-size: 18px;
}

.tour-info-grid p,
.tour-inquiry-panel p {
  margin: 0;
}

.tour-network-section > p {
  max-width: 760px;
}

.tour-network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tour-network-grid a {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(215, 173, 120, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.026)),
    radial-gradient(circle at 12% 0%, rgba(230, 189, 133, 0.12), transparent 34%);
  color: #f4efe4;
  text-decoration: none;
}

.tour-network-grid a:hover,
.tour-network-grid a:focus-visible {
  border-color: rgba(230, 189, 133, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032)),
    radial-gradient(circle at 12% 0%, rgba(230, 189, 133, 0.18), transparent 34%);
  outline: 0;
}

.tour-network-grid small {
  color: #d7ad78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-network-grid strong {
  font-size: 20px;
  line-height: 1.1;
}

.tour-network-grid span {
  color: #cfc4b4;
  font-size: 14px;
  line-height: 1.45;
}

.tour-route-extensions {
  max-width: 940px;
}

.tour-route-extensions > p {
  max-width: 760px;
}

.tour-route-extensions ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.tour-route-extensions li {
  margin: 0;
  border-top: 1px solid rgba(215, 173, 120, 0.2);
  background: rgba(255, 255, 255, 0.028);
  padding: 16px;
}

.tour-route-extensions strong {
  color: #f2d5ad;
}

.tour-faq-section {
  max-width: 900px;
}

.tour-faq-section details {
  border-top: 1px solid rgba(215, 173, 120, 0.22);
  padding: 18px 0;
}

.tour-faq-section summary {
  cursor: pointer;
  color: #f2d5ad;
  font-size: 18px;
  font-weight: 850;
}

.tour-faq-section details p {
  margin: 12px 0 0;
}

.tour-inquiry-panel {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.tour-inquiry-panel > a {
  justify-self: start;
}

.tour-premium-hero {
  position: relative;
  grid-template-columns: minmax(360px, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(28px, 4.2vw, 58px);
  align-items: center;
  margin-top: 10px;
  padding: 0 0 clamp(6px, 1vw, 12px);
}

.tour-premium-hero::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: -22px;
  z-index: -1;
  width: min(56vw, 720px);
  height: min(34vw, 420px);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(215, 173, 120, 0.16), rgba(104, 177, 198, 0.08), transparent 72%);
  filter: blur(24px);
}

.tour-premium-copy {
  display: grid;
  align-content: center;
}

.tour-premium-copy h1 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(42px, 4.65vw, 62px);
  line-height: 1;
}

.tour-premium-copy > p:last-of-type {
  max-width: 690px;
  color: #efe7da;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.42;
}

.tour-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 0;
}

.tour-hero-facts > div,
.tour-booking-strip article {
  border: 1px solid rgba(230, 189, 133, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  padding: 12px 14px;
}

.tour-hero-facts dt,
.tour-booking-strip small,
.tour-section-heading p,
.tour-inquiry-panel > p:first-child {
  color: #d7ad78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tour-hero-facts dd {
  margin-top: 4px;
  color: #f4efe4;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.tour-premium-hero .tour-hero-image {
  border-color: rgba(231, 216, 191, 0.28);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
}

.tour-premium-hero .tour-hero-image img {
  height: clamp(280px, 29vw, 380px);
}

.tour-booking-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 48px;
}

.tour-booking-strip article {
  display: grid;
  align-content: start;
  min-height: 128px;
}

.tour-booking-strip strong {
  margin-top: 11px;
  color: #f4efe4;
  font-size: 19px;
  line-height: 1.18;
}

.tour-booking-strip span {
  margin-top: 10px;
  color: #cfc4b4;
  font-size: 14px;
  line-height: 1.48;
}

.tour-signature-route {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  margin: 6px 0 40px;
  padding: clamp(20px, 3.2vw, 34px);
  border: 1px solid rgba(230, 189, 133, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 173, 120, 0.16), rgba(255, 255, 255, 0.035) 42%, rgba(104, 177, 198, 0.07)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.tour-signature-route p {
  margin: 0 0 8px;
  color: #d7ad78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-signature-route h2 {
  max-width: 520px;
  margin: 0;
  color: #fff7e9;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

.tour-signature-route ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: signature-stop;
}

.tour-signature-route li {
  position: relative;
  min-height: 138px;
  margin: 0;
  padding: 18px 16px 16px;
  border: 1px solid rgba(230, 189, 133, 0.2);
  border-radius: 8px;
  background: rgba(3, 5, 6, 0.42);
  counter-increment: signature-stop;
}

.tour-signature-route li::before {
  content: counter(signature-stop);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(230, 189, 133, 0.48);
  border-radius: 999px;
  color: #f6d5a4;
  font-size: 12px;
  font-weight: 900;
}

.tour-signature-route strong,
.tour-signature-route span {
  display: block;
}

.tour-signature-route strong {
  color: #f7ead7;
  font-size: 17px;
  line-height: 1.16;
}

.tour-signature-route span {
  margin-top: 7px;
  color: #cfc4b4;
  font-size: 14px;
  line-height: 1.42;
}

.tour-section-heading {
  grid-column: 1 / -1;
  max-width: 820px;
  margin-bottom: 8px;
}

.tour-section-heading h2,
.tour-inquiry-panel h2 {
  margin-top: 8px;
}

.tour-section-heading span {
  display: block;
  max-width: 720px;
  color: #d8d0c2;
  font-size: 17px;
  line-height: 1.55;
}

.tour-route-chooser,
.tour-included-grid,
.tour-sites-band,
.tour-gallery-band,
.tour-planning-grid,
.tour-network-section,
.tour-route-extensions,
.tour-faq-section,
.tour-inquiry-panel {
  margin-top: clamp(50px, 7vw, 86px);
}

.tour-route-card {
  display: grid;
  align-content: start;
  min-height: 286px;
  border: 1px solid rgba(215, 173, 120, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.054), rgba(255, 255, 255, 0.026)),
    radial-gradient(circle at 0 0, rgba(215, 173, 120, 0.12), transparent 36%);
}

.tour-route-card-featured {
  border-color: rgba(230, 189, 133, 0.46);
  background:
    linear-gradient(180deg, rgba(215, 173, 120, 0.16), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 0 0, rgba(104, 177, 198, 0.12), transparent 38%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.tour-route-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tour-route-card li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #d8d0c2;
  font-size: 15px;
  line-height: 1.45;
}

.tour-route-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d7ad78;
  box-shadow: 0 0 14px rgba(215, 173, 120, 0.5);
}

.tour-included-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-included-grid article,
.tour-sites-band article,
.tour-planning-grid article {
  border: 1px solid rgba(215, 173, 120, 0.17);
  border-radius: 8px;
}

.tour-itinerary-panel {
  max-width: none;
  border: 1px solid rgba(215, 173, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(20px, 4vw, 34px);
}

.tour-itinerary-panel ol {
  margin-bottom: 0;
}

.tour-sites-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-gallery-band {
  margin-top: clamp(42px, 6vw, 72px);
}

.tour-network-section {
  border-top: 1px solid rgba(215, 173, 120, 0.18);
  padding-top: 14px;
}

.tour-inquiry-panel {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: end;
  border: 1px solid rgba(230, 189, 133, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 173, 120, 0.15), rgba(104, 177, 198, 0.06) 48%, rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  padding: clamp(22px, 4vw, 38px);
}

.tour-inquiry-panel > p:first-child,
.tour-inquiry-panel h2,
.tour-inquiry-panel > p:nth-of-type(2) {
  grid-column: 1 / 2;
}

.tour-inquiry-panel > p:nth-of-type(2) {
  max-width: 720px;
}

.tour-inquiry-panel ul {
  grid-column: 1 / 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px 0 0;
}

.tour-inquiry-panel li {
  font-size: 15px;
  line-height: 1.45;
}

.tour-inquiry-panel > a {
  grid-column: 2 / 3;
  grid-row: 1 / span 4;
  justify-self: end;
  min-height: 54px;
  padding-inline: 24px;
  border-color: rgba(230, 189, 133, 0.58);
  background: rgba(230, 189, 133, 0.16);
}

.tour-conversion-hero {
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
  min-height: min(680px, calc(100svh - 96px));
}

.tour-conversion-hero .tour-premium-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.8vw, 64px);
  letter-spacing: -0.035em;
}

.tour-conversion-hero .tour-hero-image img {
  height: clamp(260px, 27vw, 350px);
}

.tour-credibility-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 16px;
}

.tour-credibility-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(230, 189, 133, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 234, 216, 0.88);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.tour-promise-panel,
.tour-guide-section,
.tour-sample-route,
.tour-different-section,
.tour-practical-section,
.tour-trust-section,
.tour-booking-form-section {
  margin-top: clamp(50px, 7vw, 86px);
}

.tour-promise-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1fr);
  gap: clamp(22px, 4.5vw, 62px);
  align-items: start;
  border-top: 1px solid rgba(215, 173, 120, 0.2);
  border-bottom: 1px solid rgba(215, 173, 120, 0.16);
  padding: clamp(28px, 5vw, 54px) 0;
}

.tour-promise-panel > p {
  margin: 0;
  color: #d7ad78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-promise-panel h2 {
  grid-column: 1;
  margin: 22px 0 0;
  color: #fff7e9;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 0.98;
}

.tour-promise-panel div {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 16px;
}

.tour-promise-panel div p {
  max-width: 760px;
  margin: 0;
  color: #e7ded0;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.5;
}

.tour-promise-panel div p:nth-child(n + 2) {
  color: #fff2df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.08;
}

.tour-route-card {
  gap: 10px;
}

.tour-route-card p strong {
  color: #f5d5a8;
}

.tour-route-card > a,
.tour-request-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid rgba(230, 189, 133, 0.42);
  border-radius: 999px;
  background: rgba(230, 189, 133, 0.12);
  color: #fff2df;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.tour-route-card-featured {
  transform: translateY(-10px);
}

.tour-route-card-featured > a,
.tour-request-form button {
  border-color: rgba(230, 189, 133, 0.72);
  background:
    linear-gradient(135deg, rgba(230, 189, 133, 0.28), rgba(104, 177, 198, 0.1)),
    rgba(230, 189, 133, 0.15);
}

.tour-see-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tour-see-grid figure {
  display: grid;
  grid-template-rows: 190px minmax(0, 1fr);
  overflow: hidden;
  min-height: 365px;
  margin: 0;
  border: 1px solid rgba(215, 173, 120, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
}

.tour-see-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #040608;
}

.tour-see-grid figcaption {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.tour-see-grid strong {
  color: #fff2df;
  font-size: 20px;
  line-height: 1.1;
}

.tour-see-grid span {
  color: #cfc4b4;
  font-size: 14px;
  line-height: 1.48;
}

.tour-guide-section > p {
  max-width: 880px;
  color: #e7ded0;
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.5;
}

.tour-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.tour-guide-grid article {
  border: 1px solid rgba(215, 173, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.032);
  padding: clamp(18px, 2.3vw, 26px);
}

.tour-guide-grid h3 {
  margin: 0 0 10px;
  color: #f5d5a8;
  font-size: 20px;
}

.tour-guide-grid p {
  margin: 0;
  color: #d8d0c2;
  line-height: 1.52;
}

.tour-sample-route {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: start;
  border: 1px solid rgba(215, 173, 120, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(230, 189, 133, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.026);
  padding: clamp(22px, 4vw, 40px);
}

.tour-sample-route .tour-section-heading {
  grid-column: auto;
  margin: 0;
}

.tour-sample-route ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sample-route;
}

.tour-sample-route li {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0 0 24px 28px;
  counter-increment: sample-route;
}

.tour-sample-route li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 241, 209, 0.82);
  border-radius: 999px;
  background: #d7ad78;
  box-shadow: 0 0 0 8px rgba(215, 173, 120, 0.12);
}

.tour-sample-route li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 21px;
  bottom: 2px;
  width: 1px;
  background: rgba(215, 173, 120, 0.28);
}

.tour-sample-route strong {
  color: #f5d5a8;
  font-size: 15px;
}

.tour-sample-route span {
  color: #d8d0c2;
  font-size: 16px;
  line-height: 1.5;
}

.tour-sample-route > p {
  grid-column: 2;
  margin: 2px 0 0;
  color: #bfb3a4;
  font-size: 14px;
}

.tour-accordion {
  display: grid;
  gap: 8px;
  max-width: 940px;
}

.tour-accordion details,
.tour-faq-section details {
  border: 1px solid rgba(215, 173, 120, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
  padding: 0;
}

.tour-accordion summary,
.tour-faq-section summary {
  cursor: pointer;
  color: #f4efe4;
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 850;
}

.tour-accordion p,
.tour-faq-section details p {
  margin: 0;
  padding: 0 18px 18px;
  color: #d8d0c2;
  line-height: 1.52;
}

.tour-trust-section {
  border-top: 1px solid rgba(215, 173, 120, 0.18);
  padding-top: clamp(22px, 4vw, 38px);
}

.tour-trust-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 1040px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tour-trust-section li {
  position: relative;
  margin: 0;
  border: 1px solid rgba(215, 173, 120, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
  color: #d8d0c2;
  padding: 15px 16px 15px 34px;
  line-height: 1.45;
}

.tour-trust-section li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 23px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d7ad78;
  box-shadow: 0 0 14px rgba(215, 173, 120, 0.5);
}

.tour-booking-form-section {
  border: 1px solid rgba(230, 189, 133, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 173, 120, 0.14), rgba(104, 177, 198, 0.06) 48%, rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  padding: clamp(22px, 4vw, 40px);
}

.tour-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin-top: 20px;
}

.tour-request-form label {
  display: grid;
  gap: 8px;
  color: #f5d5a8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tour-request-form input,
.tour-request-form select,
.tour-request-form textarea {
  width: 100%;
  border: 1px solid rgba(215, 173, 120, 0.22);
  border-radius: 8px;
  background: rgba(2, 4, 6, 0.72);
  color: #f6ead8;
  padding: 13px 14px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.tour-form-wide,
.tour-request-form button,
.tour-request-form > p {
  grid-column: 1 / -1;
}

.tour-request-form button {
  cursor: pointer;
  min-height: 52px;
  margin-top: 4px;
}

.tour-request-form > p {
  margin: 0;
  color: #cfc4b4;
  font-size: 14px;
}

.learn-fact-section,
.learn-caution-section,
.learn-source-trail,
.learn-research-mode {
  border-top: 1px solid rgba(215, 173, 120, 0.18);
  padding-top: 4px;
}

.learn-next-grid,
.learn-source-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.learn-next-grid a,
.learn-source-item {
  border: 1px solid rgba(215, 173, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 15px 16px;
}

.learn-next-grid a {
  display: flex;
  align-items: center;
  min-height: 58px;
  color: #f0cc98;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.learn-source-item h3 {
  margin: 0 0 8px;
  color: #f4efe4;
  font-size: 16px;
  letter-spacing: 0;
}

.learn-source-item p,
.learn-research-mode p {
  margin: 0;
  color: #c8bba8;
  font-size: 16px;
  line-height: 1.6;
}

.learn-research-mode {
  margin-bottom: 72px;
}

.structure-static-page article,
.enclosure-static-page article {
  max-width: 1080px;
}

.structure-static-page .enclosure-page-lane,
.enclosure-static-page .enclosure-page-lane {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(22px, 4vw, 56px);
  border-top: 1px solid rgba(215, 173, 120, 0.18);
  padding-top: 26px;
}

.structure-static-page .enclosure-page-lane h2,
.enclosure-static-page .enclosure-page-lane h2 {
  margin-top: 0;
  line-height: 1.2;
}

.structure-static-page .enclosure-page-lane > div,
.enclosure-static-page .enclosure-page-lane > div {
  min-width: 0;
}

.static-structure-authority,
.static-object-authority,
.static-learn-authority {
  border-top: 1px solid rgba(215, 173, 120, 0.24);
  padding-top: 28px;
}

.static-research-underlay {
  margin-top: 22px;
  border-top: 1px solid rgba(215, 173, 120, 0.16);
  padding-top: 14px;
}

.static-research-underlay summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  color: rgba(244, 239, 228, 0.88);
  cursor: pointer;
  list-style: none;
}

.static-research-underlay summary::-webkit-details-marker {
  display: none;
}

.static-research-underlay summary span {
  font-size: 15px;
  font-weight: 820;
}

.static-research-underlay summary em {
  border: 1px solid rgba(215, 173, 120, 0.18);
  border-radius: 999px;
  background: rgba(215, 173, 120, 0.045);
  color: rgba(244, 239, 228, 0.62);
  padding: 6px 10px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.static-research-underlay > div,
.static-research-underlay > p {
  margin-top: 12px;
}

.static-structure-authority-grid,
.static-object-authority-grid,
.static-learn-authority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.static-structure-authority article,
.static-object-authority article,
.static-learn-authority article {
  border: 1px solid rgba(215, 173, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.static-structure-authority h3,
.static-object-authority h3,
.static-learn-authority h3 {
  margin: 0 0 10px;
  color: #f4efe4;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enclosure-static-page .enclosure-object-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.enclosure-static-page .enclosure-object-grid article {
  border: 1px solid rgba(215, 173, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
}

.enclosure-static-page .enclosure-object-grid small {
  color: #d7ad78;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.enclosure-static-page .enclosure-object-grid strong {
  display: block;
  margin-top: 8px;
  color: #f4efe4;
  font-size: 17px;
  line-height: 1.25;
}

.enclosure-static-page .enclosure-object-grid a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.enclosure-static-page .enclosure-object-grid p {
  margin: 10px 0 0;
  color: #c8bba8;
  font-size: 15px;
  line-height: 1.55;
}

.object-static-page article {
  max-width: 1080px;
}

.object-static-page .object-page-lane {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(22px, 4vw, 56px);
  border-top: 1px solid rgba(215, 173, 120, 0.18);
  padding-top: 26px;
}

.object-static-page .object-page-lane h2 {
  margin-top: 0;
  line-height: 1.2;
}

.object-static-page .object-page-lane > div {
  min-width: 0;
}

.static-page-figure {
  margin: 28px 0;
  border: 1px solid rgba(215, 173, 120, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.static-page-figure img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #050504;
}

.static-page-figure figcaption {
  padding: 12px 14px;
  color: #b8aa95;
  font-size: 14px;
  line-height: 1.45;
}

.static-photo-gallery {
  margin: 34px 0;
  border-top: 1px solid rgba(215, 173, 120, 0.18);
  padding-top: 24px;
}

.static-photo-gallery > div:first-child p {
  margin: 0 0 6px;
  color: #d7ad78;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.static-photo-gallery h2 {
  margin: 0 0 18px;
}

.static-photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.static-photo-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 173, 120, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.static-photo-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #050504;
}

.static-photo-gallery figcaption {
  padding: 10px 12px 12px;
  color: #b8aa95;
  font-size: 13px;
  line-height: 1.4;
}

/* Shared profile accent pass: warm wayfinding without flattening the whole atlas. */
.atomic-site-page {
  --profile-orange: #f5a524;
  --profile-orange-soft: rgba(245, 165, 36, 0.12);
  --profile-orange-line: rgba(245, 165, 36, 0.34);
  --profile-orange-strong: rgba(245, 165, 36, 0.7);
}

.atomic-site-page .atomic-page-body {
  position: relative;
  gap: 0;
  background:
    radial-gradient(ellipse at 14% 18%, rgba(245, 165, 36, 0.075), transparent 34%),
    radial-gradient(ellipse at 86% 44%, rgba(126, 213, 255, 0.045), transparent 32%),
    linear-gradient(180deg, #050707, #080909 38%, #050707);
}

.atomic-site-page .atomic-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.atomic-site-page .atomic-section > * {
  position: relative;
  z-index: 1;
}

.atomic-site-page .atomic-section .interactive-site-map.panel-open {
  z-index: 120;
  overflow: visible;
}

.atomic-site-page .atomic-section:has(.interactive-site-map.panel-open) {
  z-index: 130;
  overflow: visible;
}

.atomic-site-page .atomic-section .dossier-section-heading {
  max-width: 940px;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.atomic-site-page .atomic-section .dossier-section-heading p {
  color: #ffc46f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.atomic-site-page .atomic-section .dossier-section-heading h2 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
}

.atomic-site-page .atomic-section .profile-section-summary {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(245, 249, 255, 0.72);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .atomic-site-page .atomic-section .dossier-section-heading h2 {
    font-size: clamp(34px, 11vw, 52px);
  }
}

.atomic-site-page .atomic-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: min(6vw, 72px);
  bottom: 64px;
  width: min(22vw, 220px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--profile-orange), transparent);
  box-shadow: 0 0 34px rgba(245, 165, 36, 0.28);
  pointer-events: none;
}

.atomic-site-page .atomic-fast-facts div,
.atomic-site-page .atomic-story-card,
.atomic-site-page .atomic-info-card,
.atomic-site-page .atomic-cta-card,
.atomic-site-page .atomic-discovery-card,
.atomic-site-page .atomic-enclosure-card,
.atomic-site-page .gobekli-key-discoveries article,
.atomic-site-page .gobekli-enclosure-tile,
.atomic-site-page .gobekli-enclosure-popover,
.atomic-site-page .atomic-object-preview,
.atomic-site-page .site-reader-panel,
.atomic-site-page .site-reader-photo,
.atomic-site-page .gobekli-structure-spotlight {
  border-color: rgba(245, 165, 36, 0.16);
}

.atomic-site-page .atomic-fast-facts div,
.atomic-site-page .atomic-story-card,
.atomic-site-page .atomic-discovery-card,
.atomic-site-page .atomic-enclosure-card,
.atomic-site-page .gobekli-key-discoveries article,
.atomic-site-page .gobekli-enclosure-tile {
  background:
    linear-gradient(180deg, rgba(245, 165, 36, 0.035), transparent 38%),
    rgba(7, 8, 8, 0.36);
}

.atomic-site-page .atomic-fast-facts div {
  position: relative;
  overflow: hidden;
}

.atomic-site-page .atomic-fast-facts div::before,
.atomic-site-page .atomic-story-card::before,
.atomic-site-page .atomic-discovery-card::before,
.atomic-site-page .gobekli-key-discoveries article::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 0 0 12px;
  border-radius: 999px;
  background: var(--profile-orange);
  box-shadow: 0 0 18px rgba(245, 165, 36, 0.22);
}

.atomic-site-page .dossier-section-heading h2,
.atomic-site-page .atomic-story-card h3,
.atomic-site-page .atomic-info-card h3,
.atomic-site-page .atomic-cta-card h3,
.atomic-site-page .atomic-enclosure-card > summary strong,
.atomic-site-page .atomic-object-copy h4,
.atomic-site-page .site-reader-info h3 {
  text-shadow: 0 0 26px rgba(245, 165, 36, 0.08);
}

.atomic-site-page .atomic-fast-facts dt,
.atomic-site-page .atomic-story-card > p,
.atomic-site-page .atomic-discovery-card small,
.atomic-site-page .atomic-enclosure-card > summary small,
.atomic-site-page .atomic-object-copy > p,
.atomic-site-page .site-reader-info > p,
.atomic-site-page .atomic-branch-visual figcaption small,
.atomic-site-page .gobekli-timeline span,
.atomic-site-page .gobekli-enclosure-popover p {
  color: #f2b65c;
}

.atomic-site-page .atomic-hero-actions a,
.atomic-site-page .atomic-cta-card a,
.atomic-site-page .atomic-discovery-card a,
.atomic-site-page .atomic-story-card a,
.atomic-site-page .gobekli-enclosure-popover a,
.atomic-site-page .atomic-enclosure-body a,
.atomic-site-page .atomic-object-copy a {
  border-color: var(--profile-orange-line);
  background: rgba(245, 165, 36, 0.08);
  color: #ffd08c;
  box-shadow: 0 0 0 rgba(245, 165, 36, 0);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.atomic-site-page .atomic-hero-actions a:hover,
.atomic-site-page .atomic-cta-card a:hover,
.atomic-site-page .atomic-discovery-card a:hover,
.atomic-site-page .atomic-story-card a:hover,
.atomic-site-page .gobekli-enclosure-popover a:hover,
.atomic-site-page .atomic-enclosure-body a:hover,
.atomic-site-page .atomic-object-copy a:hover {
  border-color: var(--profile-orange-strong);
  background: rgba(245, 165, 36, 0.14);
  box-shadow: 0 0 28px rgba(245, 165, 36, 0.16);
  transform: translateY(-1px);
}

.atomic-site-page .atomic-hero-actions a:first-child {
  border-color: rgba(255, 205, 139, 0.74);
  background: var(--profile-orange);
  color: #130d05;
  box-shadow: 0 0 36px rgba(245, 165, 36, 0.24);
}

.atomic-site-page .atomic-enclosure-card:hover,
.atomic-site-page .atomic-enclosure-card[open],
.atomic-site-page .atomic-object-preview:not([hidden]),
.atomic-site-page .atomic-object-source-drawer[open],
.atomic-site-page .atomic-enclosure-subdrawer[open],
.atomic-site-page .gobekli-enclosure-tile:hover,
.atomic-site-page .gobekli-enclosure-doorway.active .gobekli-enclosure-tile {
  border-color: var(--profile-orange-strong);
  box-shadow:
    0 0 0 1px rgba(245, 165, 36, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.atomic-site-page .atomic-enclosure-card > summary::after,
.atomic-site-page .atomic-enclosure-subdrawer summary::after,
.atomic-site-page .atomic-object-source-drawer summary em,
.atomic-site-page .atomic-enclosure-card > summary em,
.atomic-site-page .atomic-object-tags span,
.atomic-site-page .atomic-object-points span,
.atomic-site-page .profile-highlight-strip span,
.atomic-site-page .karahan-structure-page-note,
.atomic-site-page .karahan-popover-inside article,
.atomic-site-page .gobekli-spotlight-grid button,
.atomic-site-page .gobekli-spotlight-grid span,
.atomic-site-page .site-reader-tabs button {
  border-color: var(--profile-orange-line);
  background: rgba(245, 165, 36, 0.06);
  color: #f3c27f;
}

.atomic-site-page .atomic-enclosure-anchor-list button,
.atomic-site-page .site-reader-tabs button {
  border-color: rgba(245, 165, 36, 0.28);
}

.atomic-site-page .atomic-enclosure-anchor-list button:hover,
.atomic-site-page .atomic-enclosure-anchor-list button.active,
.atomic-site-page .site-reader-tabs button:hover,
.atomic-site-page .gobekli-spotlight-grid button:hover {
  border-color: var(--profile-orange-strong);
  background: rgba(245, 165, 36, 0.14);
  color: #fff2d8;
}

.atomic-site-page .atomic-object-image,
.atomic-site-page .site-reader-photo {
  background:
    radial-gradient(circle at 52% 20%, rgba(245, 165, 36, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(96, 63, 42, 0.64), rgba(3, 4, 4, 0.94));
}

.atomic-site-page .atomic-object-image span,
.atomic-site-page .site-reader-photo span {
  border-color: rgba(245, 165, 36, 0.3);
  background: rgba(245, 165, 36, 0.08);
  color: #ffd08c;
}

.atomic-site-page .gobekli-timeline::before,
.atomic-site-page .gobekli-chronology-steps::before {
  background: linear-gradient(90deg, rgba(245, 165, 36, 0.08), rgba(245, 165, 36, 0.5), rgba(245, 165, 36, 0.08));
  box-shadow: 0 0 24px rgba(245, 165, 36, 0.14);
}

.atomic-site-page .interactive-hotspot,
.atomic-site-page .interactive-hotspot[data-hotspot-id] {
  background:
    radial-gradient(ellipse at center, rgba(73, 193, 255, 0.24), rgba(73, 193, 255, 0.12) 46%, rgba(73, 193, 255, 0.04) 68%, transparent 84%) !important;
}

.atomic-site-page .interactive-hotspot::after {
  border-color: rgba(120, 222, 255, 0.42);
  background: radial-gradient(circle, rgba(74, 193, 255, 0.24), rgba(74, 193, 255, 0.08) 50%, transparent 74%);
  box-shadow:
    0 0 20px rgba(53, 180, 255, 0.34),
    0 0 54px rgba(53, 180, 255, 0.18);
}

.atomic-site-page .interactive-hotspot-number,
.atomic-site-page .karahan-blueprint-hotspot i {
  border-color: rgba(202, 247, 255, 0.86);
  background: rgba(126, 224, 255, 0.78);
  box-shadow:
    0 0 0 5px rgba(84, 203, 255, 0.18),
    0 0 18px rgba(80, 205, 255, 0.78),
    0 0 48px rgba(80, 205, 255, 0.36);
}

.atomic-site-page .gobekli-chronology-step::before {
  border-color: rgba(132, 222, 255, 0.46);
  background: #08131d;
  box-shadow: 0 0 0 6px rgba(83, 204, 255, 0.04);
}

.atomic-site-page .interactive-hotspot-label,
.atomic-site-page .karahan-blueprint-hotspot span {
  border-color: rgba(126, 225, 255, 0.22);
  background: rgba(5, 15, 22, 0.74);
}

.atomic-site-page .interactive-hotspot:hover,
.atomic-site-page .interactive-hotspot:focus-visible,
.atomic-site-page .interactive-hotspot:active,
.atomic-site-page .interactive-hotspot.active,
.atomic-site-page .interactive-hotspot[data-hotspot-id]:hover,
.atomic-site-page .interactive-hotspot[data-hotspot-id]:focus-visible,
.atomic-site-page .interactive-hotspot[data-hotspot-id]:active,
.atomic-site-page .interactive-hotspot[data-hotspot-id].active {
  background:
    radial-gradient(ellipse at center, rgba(255, 196, 95, 0.5), rgba(255, 196, 95, 0.24) 52%, rgba(255, 196, 95, 0.08) 70%, transparent 86%) !important;
}

.atomic-site-page .interactive-hotspot:hover::after,
.atomic-site-page .interactive-hotspot:focus-visible::after,
.atomic-site-page .interactive-hotspot:active::after,
.atomic-site-page .interactive-hotspot.active::after {
  border-color: rgba(255, 197, 101, 0.48);
  background: radial-gradient(circle, rgba(245, 165, 36, 0.24), rgba(245, 165, 36, 0.09) 50%, transparent 74%);
  box-shadow:
    0 0 20px rgba(245, 165, 36, 0.34),
    0 0 54px rgba(245, 165, 36, 0.18);
}

.atomic-site-page .interactive-hotspot:hover .interactive-hotspot-number,
.atomic-site-page .interactive-hotspot:focus-visible .interactive-hotspot-number,
.atomic-site-page .interactive-hotspot:active .interactive-hotspot-number,
.atomic-site-page .interactive-hotspot.active .interactive-hotspot-number,
.atomic-site-page .karahan-blueprint-hotspot:hover i,
.atomic-site-page .karahan-blueprint-hotspot:focus-visible i,
.atomic-site-page .karahan-blueprint-hotspot:active i {
  border-color: rgba(255, 236, 204, 0.92);
  background: rgba(245, 165, 36, 0.92);
  box-shadow:
    0 0 0 5px rgba(245, 165, 36, 0.17),
    0 0 18px rgba(245, 165, 36, 0.76),
    0 0 48px rgba(245, 165, 36, 0.34);
}

.atomic-site-page .interactive-hotspot:hover .interactive-hotspot-label,
.atomic-site-page .interactive-hotspot:focus-visible .interactive-hotspot-label,
.atomic-site-page .interactive-hotspot.active .interactive-hotspot-label,
.atomic-site-page .karahan-blueprint-hotspot:hover span,
.atomic-site-page .karahan-blueprint-hotspot:focus-visible span,
.atomic-site-page .karahan-blueprint-hotspot:active span {
  border-color: rgba(245, 165, 36, 0.28);
  background: rgba(16, 11, 5, 0.78);
}

.atomic-site-page .gobekli-enclosure-tile {
  box-shadow:
    inset 0 0 0 1px rgba(245, 165, 36, 0.035),
    0 18px 44px rgba(0, 0, 0, 0.18);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.atomic-site-page .gobekli-enclosure-tile-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 84% 18%, rgba(245, 165, 36, 0.2), transparent 32%);
}

.atomic-site-page .gobekli-enclosure-tile-copy small,
.atomic-site-page .gobekli-enclosure-popover p {
  color: #ffc46f;
}

.atomic-site-page .gobekli-enclosure-tile-copy em {
  color: #ffc46f;
  text-shadow: 0 0 18px rgba(245, 165, 36, 0.22);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile:hover,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile:focus-visible,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-doorway.active .gobekli-enclosure-tile {
  border-color: rgba(255, 190, 82, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 214, 137, 0.22),
    0 0 0 1px rgba(245, 165, 36, 0.22),
    0 0 30px rgba(245, 165, 36, 0.32),
    0 26px 62px rgba(0, 0, 0, 0.42);
  transform: translateY(-2px);
  outline: 0;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile:hover .gobekli-enclosure-tile-shade,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile:focus-visible .gobekli-enclosure-tile-shade,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-doorway.active .gobekli-enclosure-tile-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 50% 42%, rgba(255, 178, 58, 0.22), transparent 48%),
    radial-gradient(circle at 84% 18%, rgba(255, 205, 118, 0.34), transparent 34%);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile:hover .gobekli-enclosure-tile-copy strong,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile:focus-visible .gobekli-enclosure-tile-copy strong,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-doorway.active .gobekli-enclosure-tile-copy strong {
  text-shadow:
    0 0 18px rgba(245, 165, 36, 0.36),
    0 2px 12px rgba(0, 0, 0, 0.55);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 12px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip-header p {
  margin: 0 0 6px;
  color: #f2b65c;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip-header h3 {
  margin: 0;
  color: #fff4df;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip-header > a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(245, 165, 36, 0.26);
  border-radius: 999px;
  background: rgba(245, 165, 36, 0.07);
  color: #ffd08c;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile {
  height: clamp(118px, 10vw, 154px);
  aspect-ratio: auto;
  border-radius: 8px;
  text-decoration: none;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile-copy {
  gap: 2px 8px;
  padding: 11px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile-copy small {
  font-size: 10px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile-copy strong {
  font-size: clamp(13px, 1.15vw, 16px);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile-copy em {
  font-size: 16px;
}

.atomic-site-page .gobekli-timeline article::before {
  background: var(--product-text-muted);
  box-shadow:
    0 0 0 5px var(--product-bg),
    0 0 22px rgba(126, 213, 255, 0.12);
}

.atomic-site-page .gobekli-chronology-step:hover,
.atomic-site-page .gobekli-chronology-step:focus-visible,
.atomic-site-page .gobekli-chronology-step.active {
  background:
    radial-gradient(circle at 22px 52px, rgba(245, 165, 36, 0.18), transparent 24%),
    rgba(245, 165, 36, 0.065);
}

.atomic-site-page .gobekli-chronology-step:hover::before,
.atomic-site-page .gobekli-chronology-step:focus-visible::before,
.atomic-site-page .gobekli-chronology-step.active::before {
  border-color: rgba(255, 205, 139, 0.9);
  background: var(--profile-orange);
  box-shadow:
    0 0 0 7px rgba(245, 165, 36, 0.13),
    0 0 28px rgba(245, 165, 36, 0.5);
}

.atomic-site-page .gobekli-chronology-step:hover span,
.atomic-site-page .gobekli-chronology-step:focus-visible span,
.atomic-site-page .gobekli-chronology-step.active span,
.atomic-site-page .gobekli-chronology-detail > span,
.atomic-site-page .gobekli-chronology-layer {
  color: #ffc46f;
}

.atomic-site-page .gobekli-chronology-detail,
.atomic-site-page .gobekli-chronology-detail button {
  border-color: rgba(245, 165, 36, 0.24);
}

.atomic-site-page .gobekli-chronology-detail {
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 165, 36, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(13, 25, 36, 0.94), rgba(5, 10, 16, 0.96));
}

.atomic-site-page .interactive-hotspot:hover::after,
.atomic-site-page .interactive-hotspot:focus-visible::after,
.atomic-site-page .interactive-hotspot:active::after,
.atomic-site-page .interactive-hotspot.active::after {
  width: 58px;
  height: 58px;
  border-color: rgba(255, 213, 141, 0.62);
  background:
    radial-gradient(circle, rgba(255, 184, 86, 0.34), rgba(255, 184, 86, 0.16) 48%, rgba(255, 184, 86, 0.05) 72%, transparent 88%);
  box-shadow:
    0 0 0 10px rgba(255, 184, 86, 0.1),
    0 0 28px rgba(255, 184, 86, 0.62),
    0 0 84px rgba(255, 184, 86, 0.32);
  opacity: 0.95;
  transform: translate(-50%, -50%) scale(1.08);
}

.atomic-site-page .interactive-hotspot:hover .interactive-hotspot-number,
.atomic-site-page .interactive-hotspot:focus-visible .interactive-hotspot-number,
.atomic-site-page .interactive-hotspot:active .interactive-hotspot-number,
.atomic-site-page .interactive-hotspot.active .interactive-hotspot-number,
.atomic-site-page .karahan-blueprint-hotspot:hover i,
.atomic-site-page .karahan-blueprint-hotspot:focus-visible i,
.atomic-site-page .karahan-blueprint-hotspot:active i {
  border-color: rgba(255, 248, 229, 0.98);
  background: rgba(255, 184, 86, 0.98);
  box-shadow:
    0 0 0 8px rgba(255, 184, 86, 0.18),
    0 0 26px rgba(255, 184, 86, 0.92),
    0 0 72px rgba(255, 184, 86, 0.54);
  transform: translate(-50%, -50%) scale(1.18);
}

.atomic-site-page .karahan-blueprint-hotspot:hover i,
.atomic-site-page .karahan-blueprint-hotspot:focus-visible i,
.atomic-site-page .karahan-blueprint-hotspot:active i {
  transform: scale(1.18);
}

.site-wide-lower-header {
  width: 100%;
  margin: clamp(56px, 8vw, 104px) auto 0;
  border-top: 1px solid rgba(147, 202, 221, 0.16);
  background:
    linear-gradient(90deg, rgba(8, 19, 26, 0.96), rgba(9, 16, 22, 0.98)),
    radial-gradient(circle at 8% 0%, rgba(255, 184, 86, 0.08), transparent 36%);
  color: rgba(238, 247, 250, 0.86);
}

.tas-official-home > .site-wide-lower-header {
  margin-top: 0;
}

.atomic-site-page .site-wide-lower-header {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.site-wide-lower-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) auto minmax(280px, 1.4fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) 0;
}

.site-wide-lower-brand {
  display: grid;
  gap: 10px;
}

.site-wide-lower-brand > span,
.site-wide-sister-sites > span {
  color: #9fe1ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-wide-lower-brand p {
  display: grid;
  gap: 6px;
  margin: 0;
  color: rgba(238, 247, 250, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.site-wide-lower-brand small {
  display: block;
  color: rgba(238, 247, 250, 0.55);
  font-size: 13px;
}

.site-wide-lower-header a {
  color: rgba(255, 244, 221, 0.94);
  text-decoration: none;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.site-wide-lower-header a:hover,
.site-wide-lower-header a:focus-visible {
  color: #ffbd60;
  outline: 0;
}

.site-wide-lower-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.site-wide-lower-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 184, 86, 0.3);
  border-radius: 999px;
  background: rgba(255, 184, 86, 0.055);
  color: rgba(255, 248, 229, 0.95);
  font-size: 13px;
  font-weight: 850;
}

.site-wide-lower-actions a:hover,
.site-wide-lower-actions a:focus-visible {
  border-color: rgba(255, 184, 86, 0.68);
  background: rgba(255, 184, 86, 0.12);
}

.site-wide-sister-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
  align-items: center;
}

.site-wide-sister-sites > span {
  flex-basis: 100%;
  text-align: right;
}

.site-wide-sister-sites a {
  color: rgba(238, 247, 250, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.static-seo-page .site-wide-lower-header {
  margin-top: 42px;
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.coming-soon-site-profile {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 22%, rgba(92, 205, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #020609 0%, #071014 58%, #020609 100%);
}

.coming-soon-site-hero {
  min-height: 72vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.coming-soon-site-shell {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
  align-self: center;
  padding: 96px 0 120px;
}

.coming-soon-site-shell p {
  margin: 0 0 18px;
  color: #69d9ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon-site-shell h1 {
  max-width: 760px;
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.coming-soon-site-shell span {
  display: block;
  max-width: 620px;
  margin-top: 28px;
  color: rgba(235, 242, 241, 0.78);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.28;
}

.coming-soon-site-shell a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 22px;
  border: 1px solid rgba(105, 217, 255, 0.36);
  border-radius: 999px;
  color: #74dcff;
  background: rgba(7, 22, 29, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.coming-soon-site-shell a:hover,
.coming-soon-site-shell a:focus-visible {
  border-color: rgba(247, 216, 158, 0.5);
  color: #f7d89e;
  background: rgba(247, 216, 158, 0.08);
}

@media (max-width: 760px) {
  body:has(.static-seo-page) {
    min-width: 0;
  }

  .static-seo-page {
    padding: 28px 18px 44px;
  }

  .static-seo-page h1 {
    font-size: clamp(40px, 14vw, 62px);
  }

  .static-seo-page p,
  .static-seo-page li,
  .static-seo-page dd {
    font-size: 16px;
  }

  .learn-next-grid,
  .learn-source-list {
    grid-template-columns: 1fr;
  }

  .structure-static-page .enclosure-page-lane,
  .enclosure-static-page .enclosure-page-lane {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .static-structure-authority-grid,
  .static-object-authority-grid,
  .static-learn-authority-grid {
    grid-template-columns: 1fr;
  }

  .enclosure-static-page .enclosure-object-grid {
    grid-template-columns: 1fr;
  }

  .object-static-page .object-page-lane {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tour-page-hero,
  .tour-photo-grid,
  .tour-booking-strip,
  .tour-signature-route,
  .tour-signature-route ol,
  .tour-promise-panel,
  .tour-promise-panel div,
  .tour-answer-panel dl,
  .tour-route-grid,
  .tour-site-cards,
  .tour-info-grid,
  .tour-planning-grid,
  .tour-network-grid,
  .tour-route-extensions ul,
  .tour-see-grid,
  .tour-guide-grid,
  .tour-sample-route,
  .tour-trust-section ul,
  .tour-request-form {
    grid-template-columns: 1fr;
  }

  .tour-itinerary-section li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tour-page-hero {
    gap: 22px;
  }

  .tour-premium-hero {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .tour-premium-copy h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .tour-premium-copy > p:last-of-type {
    font-size: 17px;
  }

  .tour-premium-hero .tour-hero-image img {
    height: clamp(230px, 64vw, 280px);
  }

  .tour-premium-hero .tour-hero-image figcaption {
    display: none;
  }

  .tour-hero-facts,
  .tour-included-grid,
  .tour-sites-band,
  .tour-inquiry-panel,
  .tour-inquiry-panel ul {
    grid-template-columns: 1fr;
  }

  .tour-conversion-hero {
    min-height: 0;
  }

  .tour-conversion-hero .tour-hero-image img {
    height: clamp(210px, 56vw, 250px);
  }

  .tour-credibility-strip {
    display: block;
    margin-top: 12px;
    color: rgba(246, 234, 216, 0.76);
    font-size: 12px;
    font-weight: 760;
    line-height: 1.55;
  }

  .tour-credibility-strip span {
    display: inline;
    min-height: 0;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 11px;
  }

  .tour-credibility-strip span:not(:last-child)::after {
    content: " · ";
    color: rgba(215, 173, 120, 0.78);
  }

  .tour-promise-panel h2,
  .tour-promise-panel div,
  .tour-sample-route > p {
    grid-column: 1;
  }

  .tour-promise-panel div {
    grid-row: auto;
  }

  .tour-signature-route {
    gap: 18px;
    margin-bottom: 36px;
    padding: 20px;
  }

  .tour-signature-route h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .tour-signature-route ol {
    gap: 8px;
  }

  .tour-signature-route li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .tour-signature-route li::before {
    margin: 1px 0 0;
  }

  .tour-signature-route span {
    grid-column: 2;
  }

  .tour-booking-strip article,
  .tour-route-card {
    min-height: 0;
  }

  .tour-route-card-featured {
    transform: none;
  }

  .tour-see-grid figure {
    grid-template-rows: 210px minmax(0, 1fr);
    min-height: 0;
  }

  .tour-sample-route {
    padding: 20px;
  }

  .tour-sample-route li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tour-inquiry-panel > p:first-child,
  .tour-inquiry-panel h2,
  .tour-inquiry-panel > p:nth-of-type(2),
  .tour-inquiry-panel ul,
  .tour-inquiry-panel > a {
    grid-column: 1;
  }

  .tour-inquiry-panel > a {
    grid-row: auto;
    justify-self: start;
  }

  .site-wide-lower-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
    gap: 24px;
  }

  .site-wide-lower-actions {
    justify-content: flex-start;
  }

  .site-wide-sister-sites {
    justify-content: flex-start;
  }

  .site-wide-sister-sites > span {
    text-align: left;
  }
}

/* Homepage continuity pass: remove dead vertical gaps and fade sections into one atlas flow. */
.tas-official-home {
  background:
    radial-gradient(ellipse at 50% 14%, rgba(226, 168, 72, 0.07), transparent 32%),
    radial-gradient(ellipse at 70% 52%, rgba(118, 223, 255, 0.035), transparent 34%),
    linear-gradient(180deg, #030609 0%, #04080b 38%, #030609 100%);
}

.tas-photo-hero {
  min-height: min(820px, calc(100svh - 18px));
  max-height: none;
  margin-bottom: clamp(-78px, -6vw, -42px);
  background: transparent;
}

.tas-photo-hero-shade {
  background:
    radial-gradient(ellipse at 78% 40%, rgba(226, 168, 72, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.96) 0%, rgba(3, 6, 9, 0.74) 26%, rgba(3, 6, 9, 0.22) 58%, rgba(3, 6, 9, 0.66) 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.56) 0%, rgba(3, 6, 9, 0.08) 42%, rgba(3, 6, 9, 0.62) 78%, #030609 100%);
}

.tas-photo-hero-copy {
  min-height: min(820px, calc(100svh - 18px));
  padding-bottom: clamp(118px, 12vw, 178px);
}

.tas-orientation-band {
  margin-top: 0;
  padding-top: clamp(28px, 3.4vw, 52px);
  padding-bottom: clamp(26px, 3.4vw, 52px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226, 168, 72, 0.11), transparent 36%),
    radial-gradient(ellipse at 54% 54%, rgba(118, 223, 255, 0.045), transparent 42%),
    linear-gradient(180deg, rgba(3, 6, 9, 0) 0%, #04080b 16%, #030609 100%);
}

.tas-orientation-band::before,
.tas-start-band::before,
.tas-discovery-band::before,
.tas-visit-band::before {
  opacity: 0.45;
}

.tas-orientation-copy {
  row-gap: clamp(10px, 1.2vw, 18px);
}

.tas-orientation-lede {
  max-width: 840px;
}

.tas-network-map-panel {
  min-height: clamp(330px, 32vw, 500px);
  margin-top: clamp(-10px, -0.8vw, -2px);
}

.tas-network-map-panel .tas-map-bg {
  background-image: url("../assets/tas-tepeler-network-map.optimized.jpg");
  top: clamp(-72px, -4vw, -48px);
  bottom: -88px;
  opacity: 0.86;
}

.tas-network-map-panel::before {
  inset: -70px 0 0;
}

.tas-network-map-panel::after {
  inset: -78px -1px -92px;
  background:
    radial-gradient(ellipse at 50% 27%, rgba(226, 168, 72, 0.075), transparent 34%),
    radial-gradient(ellipse at 50% 82%, rgba(226, 168, 72, 0.11), transparent 28%),
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.5) 6%, rgba(3, 6, 9, 0.02) 21%, rgba(3, 6, 9, 0.02) 78%, rgba(3, 6, 9, 0.48) 94%, #030609 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0) 0%, rgba(3, 6, 9, 0.12) 18%, transparent 40%, transparent 66%, rgba(3, 6, 9, 0.2) 82%, #030609 100%);
}

.tas-hero-timeline {
  margin-top: clamp(-22px, -1.8vw, -10px);
  margin-bottom: clamp(-10px, -0.7vw, -4px);
}

.tas-start-band,
.tas-discovery-band,
.tas-visit-band {
  padding-top: clamp(34px, 4.2vw, 64px);
  padding-bottom: clamp(38px, 4.8vw, 72px);
}

.tas-start-band {
  margin-top: clamp(-26px, -2vw, -12px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226, 168, 72, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(3, 6, 9, 0) 0%, #05090d 18%, #04080b 100%);
}

.tas-discovery-band {
  margin-top: clamp(-22px, -1.8vw, -10px);
  background:
    radial-gradient(circle at 20% 12%, rgba(226, 168, 72, 0.085), transparent 34%),
    radial-gradient(circle at 86% 42%, rgba(118, 223, 255, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(5, 9, 13, 0) 0%, #04080b 18%, #030609 100%);
}

.tas-visit-band {
  margin-top: clamp(-20px, -1.6vw, -8px);
  background:
    radial-gradient(circle at 82% 8%, rgba(226, 168, 72, 0.10), transparent 34%),
    radial-gradient(circle at 52% 86%, rgba(118, 223, 255, 0.055), transparent 28%),
    linear-gradient(180deg, rgba(3, 6, 9, 0) 0%, #05080b 18%, #030609 100%);
}

@media (max-width: 860px) {
  .tas-photo-hero {
    min-height: 560px;
    margin-bottom: -36px;
  }

  .tas-photo-hero-copy {
    min-height: 560px;
    padding-bottom: 92px;
  }

  .tas-orientation-band,
  .tas-start-band,
  .tas-discovery-band,
  .tas-visit-band {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .tas-network-map-panel {
    min-height: 260px;
    margin-top: 6px;
  }
}

/* Guided museum path polish for the Göbekli Tepe profile. */
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-body {
  width: min(1180px, calc(100vw - 44px));
}

.gobekli-public-page #gobekli-hero.atomic-hero {
  padding-top: clamp(86px, 8vh, 116px);
}

.gobekli-public-page #gobekli-hero .gobekli-hero-shell {
  min-height: calc(100svh - 150px);
  align-items: center;
}

.gobekli-public-page .atomic-page-index {
  border-color: rgba(255, 194, 105, 0.12);
  background: rgba(5, 7, 9, 0.72);
  backdrop-filter: blur(18px);
}

.gobekli-next-hills-copy p {
  margin: 0 0 10px;
  color: #f2b65c;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gobekli-next-hills-copy h2 {
  margin: 0;
  color: #fff5e6;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 0.96;
}

.gobekli-public-page .gobekli-map-section {
  margin-top: 0;
  padding-top: 0;
}

.gobekli-public-page .gobekli-chronology-section {
  margin-top: clamp(20px, 4vw, 48px);
  padding-top: clamp(38px, 5vw, 66px);
}

.gobekli-public-page .gobekli-chronology-section .dossier-section-heading {
  padding-bottom: 18px;
}

.gobekli-chronology-shell {
  min-height: 360px;
}

.gobekli-chronology-step {
  padding: 54px 16px 16px;
}

.gobekli-chronology-step strong {
  font-size: clamp(15px, 1.18vw, 18px);
}

.gobekli-chronology-detail {
  padding: 20px;
}

.gobekli-chronology-ridge {
  height: min(22vw, 210px);
  min-height: 150px;
  opacity: 0.76;
}

.gobekli-learn-hub-heading p {
  max-width: 660px;
  margin: 12px 0 0;
  color: rgba(222, 235, 241, 0.72);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.45;
}

.gobekli-public-page .gobekli-learn-hub-section {
  margin-top: clamp(22px, 4vw, 52px);
  padding-top: clamp(38px, 5vw, 64px);
}

.gobekli-learn-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gobekli-learn-card {
  min-height: 184px;
  border-radius: 12px;
  padding: 18px;
}

.gobekli-learn-card span {
  font-size: clamp(19px, 1.5vw, 24px);
}

.gobekli-learn-card p {
  margin: 14px 0 22px;
  font-size: 14px;
}

.gobekli-more-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.gobekli-more-questions a {
  border: 1px solid rgba(255, 194, 105, 0.16);
  border-radius: 999px;
  background: rgba(255, 194, 105, 0.055);
  color: rgba(255, 231, 194, 0.9);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.gobekli-public-page #gobekli-discoveries {
  padding-top: clamp(34px, 4vw, 56px);
}

.gobekli-public-page .gobekli-key-discoveries {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.gobekli-public-page .gobekli-key-discoveries article,
.gobekli-public-page .gobekli-key-discoveries article:first-child {
  min-height: 132px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(245, 165, 36, 0.035), transparent 44%),
    rgba(9, 10, 10, 0.58);
  padding: 16px;
}

.gobekli-public-page .gobekli-key-discoveries article::before {
  width: 24px;
  margin-bottom: 10px;
}

.gobekli-public-page .gobekli-key-discoveries strong {
  font-size: 17px;
  line-height: 1.1;
}

.gobekli-public-page .gobekli-key-discoveries p {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.38;
}

.gobekli-public-page .profile-photo-section {
  padding-top: clamp(28px, 4vw, 48px);
}

.gobekli-public-page .profile-photo-gallery {
  width: 100%;
}

.gobekli-public-page .profile-photo-card {
  flex-basis: clamp(210px, 23vw, 310px);
  max-width: none;
  height: clamp(150px, 16vw, 210px);
}

.gobekli-public-page #gobekli-structures {
  padding-top: clamp(28px, 4vw, 50px);
}

.gobekli-next-hills {
  display: grid;
  grid-template-columns: minmax(250px, 0.4fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: start;
  border-top: 1px solid rgba(255, 194, 105, 0.14);
  border-bottom: 1px solid rgba(255, 194, 105, 0.1);
  padding: clamp(28px, 4.2vw, 54px) 0;
}

.gobekli-next-hills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gobekli-next-hills-grid a {
  display: grid;
  gap: 8px;
  min-height: 142px;
  border: 1px solid rgba(255, 194, 105, 0.14);
  border-radius: 10px;
  background: rgba(7, 8, 8, 0.48);
  padding: 18px;
  color: inherit;
  text-decoration: none;
}

.gobekli-next-hills-grid strong {
  color: #fff4df;
  font-size: 22px;
  line-height: 1.05;
}

.gobekli-next-hills-grid span {
  color: rgba(230, 220, 205, 0.76);
  font-size: 14px;
  line-height: 1.42;
}

.gobekli-next-hills-grid em {
  align-self: end;
  color: #ffd08c;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.gobekli-public-page #gobekli-visit {
  padding-top: clamp(30px, 4vw, 56px);
}

.gobekli-public-page #gobekli-visit .atomic-visitor-grid,
.gobekli-public-page #gobekli-visit .atomic-cta-grid {
  gap: 10px;
}

.gobekli-public-page #gobekli-visit .atomic-info-card,
.gobekli-public-page #gobekli-visit .atomic-cta-card {
  border-radius: 10px;
  padding: 18px;
}

@media (max-width: 980px) {
  .gobekli-public-page #gobekli-hero.atomic-hero {
    height: auto;
    min-height: 680px;
    padding-top: 92px;
  }

  .gobekli-public-page #gobekli-hero .gobekli-hero-shell,
  .gobekli-next-hills {
    grid-template-columns: 1fr;
  }

  .gobekli-public-page .gobekli-chronology-section {
    padding: 38px 20px 42px;
  }

  .gobekli-chronology-step {
    padding: 22px 18px 22px 54px;
  }

  .gobekli-chronology-ridge {
    display: none;
  }

  .gobekli-public-page .gobekli-learn-hub-section {
    padding: 38px 20px 44px;
  }

  .gobekli-learn-grid,
  .gobekli-public-page .gobekli-key-discoveries,
  .gobekli-next-hills-grid {
    grid-template-columns: 1fr;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile {
    height: 172px;
  }

  .gobekli-public-page .gobekli-key-discoveries article,
  .gobekli-public-page .gobekli-key-discoveries article:first-child,
  .gobekli-next-hills-grid a {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-body {
    width: min(calc(100vw - 24px), 760px);
  }

  .gobekli-public-page #gobekli-hero.atomic-hero {
    min-height: 100svh;
    padding-top: 72px;
    background:
      linear-gradient(90deg, rgba(3, 6, 9, 0.96) 0%, rgba(3, 6, 9, 0.72) 46%, rgba(3, 6, 9, 0.2) 100%),
      linear-gradient(180deg, rgba(3, 6, 9, 0.18) 0%, rgba(3, 6, 9, 0.2) 56%, #030609 100%),
      url("/assets/gobekli-flagship/gobekli-pillar-43-hero.png");
    background-size: cover;
    background-position: 58% center;
  }

  .gobekli-public-page #gobekli-hero .gobekli-hero-shell {
    display: grid;
    align-content: end;
    min-height: calc(100svh - 72px);
    gap: 14px;
    padding: 28px 20px 22px;
  }

  .gobekli-public-page #gobekli-hero .gobekli-hero-media {
    display: none;
  }

  .gobekli-public-page #gobekli-hero .gobekli-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header h1 {
    max-width: 8ch;
    font-size: clamp(46px, 13vw, 64px);
    line-height: 0.88;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header .atomic-hero-summary {
    max-width: 13ch;
    margin-top: 14px;
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.04;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header .atomic-thesis {
    max-width: 30ch;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors {
    display: flex;
    gap: 7px;
    margin-top: 14px;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors > span,
  .gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors > a {
    min-height: 31px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 11px;
    line-height: 1;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors > span:nth-child(3) {
    display: none;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-anchors svg {
    width: 13px;
    height: 13px;
  }

  .gobekli-next-hills-copy h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .gobekli-public-page .profile-photo-card {
    flex-basis: 100%;
    height: 190px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile {
    height: 156px;
  }

  .gobekli-public-page #gobekli-hero .gobekli-feature-card {
    position: relative;
    z-index: 3;
    right: auto;
    bottom: auto;
    grid-template-columns: minmax(0, 1fr) 62px;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
    border-radius: 10px;
    padding: 13px;
  }

  .gobekli-public-page #gobekli-hero .gobekli-feature-card small {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .gobekli-public-page #gobekli-hero .gobekli-feature-card strong {
    font-size: 22px;
  }

  .gobekli-public-page #gobekli-hero .gobekli-feature-card .gobekli-feature-copy > span {
    font-size: 12px;
    line-height: 1.32;
  }

  .gobekli-public-page #gobekli-hero .gobekli-feature-card em {
    font-size: 12px;
  }

  .gobekli-public-page #gobekli-hero .gobekli-feature-card img {
    width: 62px;
    height: 82px;
  }
}

/* Tour conversion polish: fewer sections, stronger trust, clearer booking path. */
.tour-static-page {
  background:
    radial-gradient(ellipse at 78% 4%, rgba(215, 173, 120, 0.09), transparent 32%),
    radial-gradient(ellipse at 18% 22%, rgba(104, 177, 198, 0.045), transparent 30%),
    linear-gradient(180deg, #080907 0%, #050706 44%, #080907 100%);
}

.tour-static-page article {
  max-width: 1240px;
}

.tour-static-page .tour-section-heading h2 {
  margin: 8px 0 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
}

.tour-static-page .tour-section-heading p {
  color: #d7ad78;
}

.tour-static-page #tour-options,
.tour-static-page #what-you-see,
.tour-static-page #what-you-get,
.tour-static-page #request-heading {
  scroll-margin-top: 118px;
}

.tour-booking-hero {
  min-height: min(700px, calc(100svh - 112px));
  margin-bottom: clamp(22px, 4vw, 46px);
}

.tour-booking-hero .tour-premium-copy {
  gap: 0;
}

.tour-booking-hero .tour-premium-copy > p:first-child {
  color: #d7ad78;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tour-booking-hero .tour-premium-copy h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  color: #fff8ed;
  font-size: clamp(48px, 5.4vw, 76px);
  letter-spacing: 0;
  line-height: 0.96;
}

.tour-booking-hero .tour-premium-copy > p:last-of-type {
  max-width: 650px;
  color: rgba(238, 231, 220, 0.78);
  font-size: clamp(18px, 1.28vw, 21px);
  line-height: 1.45;
}

.tour-booking-hero .tour-hero-image {
  position: relative;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.5);
}

.tour-booking-hero .tour-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, 0), rgba(5, 7, 6, 0.08) 48%, rgba(5, 7, 6, 0.38)),
    radial-gradient(ellipse at 18% 12%, rgba(255, 230, 186, 0.16), transparent 38%);
  pointer-events: none;
}

.tour-booking-hero .tour-hero-image img {
  height: clamp(360px, 42vw, 560px);
  filter: saturate(0.92) contrast(1.04);
}

.tour-booking-hero .tour-hero-image figcaption {
  position: absolute;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 2;
  max-width: 360px;
  border-left: 1px solid rgba(230, 189, 133, 0.45);
  background: linear-gradient(90deg, rgba(2, 5, 7, 0.72), rgba(2, 5, 7, 0.28));
  color: rgba(255, 248, 237, 0.86);
  padding: 12px 0 12px 14px;
}

.tour-conversion-strip {
  margin: 0 0 clamp(50px, 7vw, 86px);
}

.tour-conversion-strip article {
  min-height: 0;
  border: 0;
  border-top: 1px solid rgba(230, 189, 133, 0.24);
  border-radius: 0;
  background: transparent;
  padding: 18px 4px 0;
}

.tour-conversion-strip strong {
  color: #fff4df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 500;
}

.tour-conversion-strip span {
  color: rgba(232, 224, 211, 0.7);
  font-size: 14px;
}

.tour-conversion-routes {
  align-items: stretch;
  scroll-margin-top: 104px;
}

.tour-conversion-routes .tour-section-heading {
  max-width: 760px;
  margin-bottom: 14px;
}

.tour-conversion-routes .tour-route-card {
  min-height: 0;
  border-radius: 6px;
  padding: clamp(20px, 2.6vw, 30px);
}

.tour-conversion-routes .tour-route-card h3 {
  max-width: 320px;
  color: #fff4df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 500;
  line-height: 1.02;
}

.tour-conversion-routes .tour-route-card > p {
  color: rgba(232, 224, 211, 0.78);
}

.tour-conversion-routes .tour-route-card-featured {
  transform: translateY(-8px);
}

.tour-visual-proof,
.tour-experience-section,
.tour-final-cta {
  margin-top: clamp(54px, 7vw, 92px);
  scroll-margin-top: 104px;
}

.tour-visual-proof {
  display: grid;
  gap: 18px;
}

.tour-visual-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 14px;
  height: clamp(560px, 52vw, 680px);
}

.tour-visual-proof-grid > * {
  min-height: 0;
}

.tour-visual-proof figure {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  margin: 0;
  border: 1px solid rgba(230, 189, 133, 0.16);
  border-radius: 6px;
  background: #040608;
}

.tour-visual-proof-main {
  min-height: 0;
  max-height: 100%;
}

.tour-visual-proof-side {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
  min-height: 0;
}

.tour-visual-proof-side figure {
  min-height: 0;
  max-height: 100%;
}

.tour-visual-proof img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.tour-visual-proof-main img {
  min-height: 0;
  max-height: 100%;
}

.tour-visual-proof figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  background: linear-gradient(180deg, rgba(3, 5, 7, 0), rgba(3, 5, 7, 0.8));
  padding: 42px 18px 16px;
}

.tour-visual-proof strong {
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.tour-visual-proof span {
  max-width: 440px;
  color: rgba(238, 231, 220, 0.76);
  font-size: 14px;
  line-height: 1.42;
}

.tour-experience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tour-experience-grid article {
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(230, 189, 133, 0.18);
  padding: 18px 4px 0;
}

.tour-experience-grid h3 {
  color: #fff4df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.55vw, 27px);
  font-weight: 500;
}

.tour-final-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  border-radius: 6px;
}

.tour-final-cta .tour-section-heading {
  grid-column: auto;
  margin: 0;
}

.tour-final-cta-copy h2 {
  max-width: 420px;
  color: #fff8ed;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
}

.tour-final-facts {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tour-final-facts li {
  position: relative;
  margin: 0;
  color: rgba(232, 224, 211, 0.78);
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.35;
}

.tour-final-facts li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d7ad78;
  box-shadow: 0 0 16px rgba(215, 173, 120, 0.48);
}

.tour-final-cta .tour-request-form {
  margin-top: 0;
}

@media (max-width: 980px) {
  .tour-booking-hero,
  .tour-visual-proof-grid,
  .tour-final-cta {
    grid-template-columns: 1fr;
  }

  .tour-booking-hero {
    min-height: 0;
  }

  .tour-booking-hero .tour-hero-image img {
    height: clamp(260px, 60vw, 420px);
  }

  .tour-conversion-routes .tour-route-card-featured {
    transform: none;
  }

  .tour-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tour-static-page {
    padding: 94px 18px 44px;
  }

  .tour-booking-hero .tour-premium-copy h1 {
    font-size: clamp(42px, 12.5vw, 58px);
  }

  .tour-booking-hero .tour-hero-image figcaption {
    display: none;
  }

  .tour-conversion-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tour-conversion-routes,
  .tour-experience-grid,
  .tour-request-form {
    grid-template-columns: 1fr;
  }

  .tour-visual-proof-main,
  .tour-visual-proof-main img {
    height: 290px;
    min-height: 0;
  }

  .tour-visual-proof-grid {
    height: auto;
  }

  .tour-visual-proof-side {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .tour-visual-proof figure {
    height: auto;
  }

  .tour-visual-proof .tour-visual-proof-main {
    height: 290px;
  }

  .tour-visual-proof .tour-visual-proof-main img {
    height: 100%;
  }

  .tour-visual-proof-side figure {
    height: 156px;
  }

  .tour-visual-proof img {
    height: 100%;
    min-height: 0;
  }

  .tour-final-cta {
    padding: 22px 18px;
  }
}

/* Homepage user-ready pass: one guided path, no old interface fragments. */
.tas-official-home {
  overflow-x: clip;
  background:
    radial-gradient(ellipse at 52% 14%, rgba(226, 168, 72, 0.055), transparent 38%),
    linear-gradient(180deg, #030609 0%, #04070a 42%, #030609 100%);
}

.tas-photo-hero {
  min-height: clamp(620px, calc(100vh - 44px), 820px);
}

.tas-photo-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: clamp(120px, 18vw, 240px);
  background: linear-gradient(180deg, rgba(3, 6, 9, 0), #030609 88%);
  pointer-events: none;
}

.tas-photo-hero-shade {
  background:
    radial-gradient(ellipse at 70% 38%, rgba(226, 168, 72, 0.12), transparent 36%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.96) 0%, rgba(3, 6, 9, 0.76) 28%, rgba(3, 6, 9, 0.26) 58%, rgba(3, 6, 9, 0.7) 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.34) 0%, rgba(3, 6, 9, 0.08) 42%, #030609 100%);
}

.tas-photo-hero-copy {
  min-height: clamp(620px, calc(100vh - 44px), 820px);
  gap: clamp(12px, 1.7vw, 20px);
  padding-bottom: clamp(88px, 10vw, 142px);
}

.tas-photo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(8px, 1.3vw, 18px);
}

.tas-photo-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(226, 168, 72, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(226, 168, 72, 0.22), rgba(118, 223, 255, 0.07)),
    rgba(3, 6, 9, 0.5);
  color: #fff6e8;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.12),
    0 18px 46px rgba(0, 0, 0, 0.28);
}

.tas-photo-hero-actions a + a {
  border-color: rgba(118, 223, 255, 0.22);
  background: rgba(3, 8, 12, 0.46);
}

.tas-orientation-band,
.tas-start-band,
.tas-discovery-band,
.tas-visit-band {
  margin-top: -1px;
  padding-right: clamp(22px, 6vw, 92px);
  padding-left: clamp(22px, 6vw, 92px);
}

.tas-orientation-band {
  padding-top: clamp(42px, 5vw, 74px);
  padding-bottom: clamp(42px, 5vw, 72px);
  background:
    radial-gradient(ellipse at 52% 18%, rgba(226, 168, 72, 0.09), transparent 42%),
    radial-gradient(ellipse at 84% 62%, rgba(118, 223, 255, 0.055), transparent 34%),
    linear-gradient(180deg, #030609 0%, #05090d 56%, #030609 100%);
}

.tas-orientation-copy {
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  row-gap: clamp(20px, 2vw, 30px);
}

.tas-orientation-heading {
  display: grid;
  gap: 10px;
}

.tas-orientation-heading p {
  margin: 0;
  color: #76dfff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.tas-orientation-heading h2 {
  max-width: 10ch;
}

.tas-orientation-lede {
  max-width: 760px;
  padding: clamp(18px, 2vw, 26px) 0 clamp(4px, 1vw, 12px);
}

.tas-orientation-lede p:first-of-type {
  max-width: 620px;
}

.tas-network-map-panel {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1180px;
  min-height: clamp(410px, 47vw, 620px);
  margin: clamp(2px, 1vw, 12px) auto 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
}

.tas-network-map-panel .tas-map-bg {
  top: clamp(-46px, -3vw, -24px);
  right: clamp(-32px, -2vw, -18px);
  bottom: clamp(-48px, -3vw, -26px);
  left: clamp(-32px, -2vw, -18px);
  width: auto;
  height: auto;
  opacity: 0.88;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
}

.tas-network-map-panel .tas-map-shade {
  background:
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.42) 13%, rgba(3, 6, 9, 0.08) 50%, rgba(3, 6, 9, 0.5) 88%, #030609 100%),
    linear-gradient(180deg, #030609 0%, rgba(3, 6, 9, 0.08) 18%, rgba(3, 6, 9, 0.1) 72%, #030609 100%),
    radial-gradient(ellipse at 50% 52%, rgba(226, 168, 72, 0.12), transparent 36%);
}

.tas-network-path-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(1040px, 100%);
  margin: clamp(8px, 1.5vw, 20px) auto 0;
}

.tas-network-path-strip a {
  display: grid;
  gap: 7px;
  min-height: 118px;
  border: 1px solid rgba(226, 168, 72, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 9, 13, 0.58);
  color: inherit;
  padding: 18px;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 244, 221, 0.07);
}

.tas-network-path-strip small,
.tas-network-path-strip strong,
.tas-network-path-strip span {
  display: block;
}

.tas-network-path-strip small {
  color: #76dfff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.tas-network-path-strip strong {
  color: #fff5e6;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.08;
}

.tas-network-path-strip span {
  color: rgba(235, 229, 218, 0.68);
  font-size: 14px;
  line-height: 1.42;
}

.tas-hero-timeline {
  display: none !important;
}

.tas-start-band,
.tas-discovery-band,
.tas-visit-band {
  padding-top: clamp(48px, 5.4vw, 78px);
  padding-bottom: clamp(54px, 5.8vw, 86px);
}

.tas-start-band {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226, 168, 72, 0.08), transparent 38%),
    linear-gradient(180deg, #030609 0%, #05090d 54%, #030609 100%);
}

.tas-start-heading,
.tas-discovery-heading {
  margin-bottom: clamp(16px, 2vw, 28px);
}

.tas-start-heading h2,
.tas-discovery-heading h2 {
  text-wrap: balance;
}

.tas-start-grid,
.tas-discovery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.tas-start-card b {
  color: #9ceaff;
}

.tas-discovery-band {
  background:
    radial-gradient(ellipse at 22% 12%, rgba(226, 168, 72, 0.09), transparent 36%),
    linear-gradient(180deg, #030609 0%, #05090d 48%, #030609 100%);
}

.tas-discovery-heading {
  width: min(1180px, 100%);
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.tas-visit-band {
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  background:
    radial-gradient(ellipse at 78% 28%, rgba(226, 168, 72, 0.14), transparent 36%),
    radial-gradient(ellipse at 48% 82%, rgba(118, 223, 255, 0.055), transparent 32%),
    linear-gradient(180deg, #030609 0%, #060a0e 52%, #030609 100%);
}

.tas-visit-band-copy {
  max-width: 680px;
}

.tas-visit-band-copy h2 {
  max-width: 12ch;
  letter-spacing: 0;
  text-transform: none;
}

.tas-visit-band-copy span + span {
  margin-top: 6px;
}

.tas-visit-route-chooser {
  display: grid;
  gap: 10px;
}

.tas-visit-route-chooser > p {
  margin: 0 0 2px;
  color: #76dfff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tas-visit-route-chooser a {
  position: relative;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(226, 168, 72, 0.17);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(5, 9, 13, 0.72);
  color: inherit;
  padding: 18px 52px 18px 18px;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.075),
    0 20px 54px rgba(0, 0, 0, 0.18);
}

.tas-visit-route-chooser a::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  color: #9ceaff;
  font-size: 24px;
  font-weight: 800;
  transform: translateY(-50%);
}

.tas-visit-route-chooser small {
  color: #e5ba72;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tas-visit-route-chooser strong {
  color: #fff5e6;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.08;
}

.tas-visit-route-chooser span {
  color: rgba(235, 229, 218, 0.68);
  font-size: 14px;
  line-height: 1.42;
}

.tas-visit-action {
  grid-column: 2;
  display: grid;
  gap: 9px;
  justify-items: start;
}

.tas-visit-action > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  border: 1px solid rgba(226, 168, 72, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(226, 168, 72, 0.26), rgba(118, 223, 255, 0.09)),
    rgba(226, 168, 72, 0.085);
  color: #fff8ed;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.tas-visit-action em {
  color: #9ceaff;
  font-style: normal;
}

.tas-visit-action > span {
  color: rgba(235, 229, 218, 0.58);
  font-size: 13px;
  line-height: 1.4;
}

.tas-visit-band > a,
.tas-visit-route-preview {
  display: none !important;
}

@media (max-width: 900px) {
  .tas-photo-hero {
    min-height: 620px;
  }

  .tas-photo-hero-copy {
    width: min(680px, 100%);
    min-height: 620px;
    padding: 112px 24px 92px;
  }

  .tas-orientation-copy,
  .tas-visit-band {
    grid-template-columns: 1fr;
  }

  .tas-orientation-heading h2 {
    max-width: none;
  }

  .tas-orientation-lede {
    grid-column: 1;
    max-width: none;
    padding-top: 0;
  }

  .tas-network-map-panel {
    min-height: 390px;
  }

  .tas-network-path-strip {
    grid-template-columns: 1fr;
  }

  .tas-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tas-discovery-grid {
    grid-template-columns: 1fr;
  }

  .tas-discovery-drawer-list {
    grid-template-rows: none;
  }

  .tas-discovery-card-compact {
    min-height: 190px;
  }

  .tas-visit-action {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .site-universal-nav .tas-home-links {
    display: none;
  }

  .tas-photo-hero {
    min-height: 560px;
  }

  .tas-photo-hero-media img {
    object-position: 62% center;
  }

  .tas-photo-hero-copy {
    min-height: 560px;
    padding: 106px 28px 68px;
  }

  .tas-photo-hero-copy h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .tas-photo-hero-copy span,
  .tas-photo-hero-copy strong {
    max-width: 12ch;
    font-size: clamp(20px, 6vw, 25px);
  }

  .tas-photo-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(260px, 100%);
  }

  .tas-orientation-band,
  .tas-start-band,
  .tas-discovery-band,
  .tas-visit-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  .tas-orientation-band {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .tas-orientation-heading,
  .tas-orientation-lede {
    text-align: left;
  }

  .tas-orientation-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .tas-orientation-lede::before {
    width: 58px;
  }

  .tas-orientation-lede p,
  .tas-orientation-lede p:first-of-type,
  .tas-orientation-lede p:last-of-type {
    max-width: none;
    text-wrap: auto;
  }

  .tas-orientation-lede p:first-of-type {
    font-size: clamp(27px, 8vw, 34px);
  }

  .tas-network-map-panel {
    min-height: 300px;
    margin-top: 8px;
  }

  .tas-network-map-panel .tas-network-sites,
  .tas-network-map-panel .tas-network-svg,
  .tas-network-map-panel .tas-node-info-card {
    display: none !important;
  }

  .tas-network-map-panel .tas-map-bg {
    top: 0;
    right: -60px;
    bottom: 0;
    left: -60px;
    opacity: 0.74;
  }

.tas-network-path-strip a {
    min-height: 0;
  }

  .tas-start-band,
  .tas-discovery-band,
  .tas-visit-band {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .tas-start-heading,
  .tas-discovery-heading {
    justify-items: start;
    text-align: left;
  }

  .tas-start-heading p {
    justify-self: start;
  }

  .tas-start-heading h2,
  .tas-discovery-heading h2,
  .tas-visit-band-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .tas-start-grid {
    grid-template-columns: 1fr;
  }

  .tas-start-card {
    min-height: 320px;
  }

  .tas-discovery-card-featured {
    min-height: 360px;
  }

  .tas-discovery-card-featured strong {
    font-size: clamp(42px, 13vw, 60px);
  }

  .tas-discovery-card-compact {
    min-height: 220px;
  }

  .tas-discovery-card-compact img {
    width: 100%;
    opacity: 0.32;
  }

  .tas-discovery-card-compact > span {
    background: linear-gradient(180deg, rgba(3, 6, 9, 0.2), rgba(3, 6, 9, 0.9));
  }

  .tas-visit-band-copy h2 {
    max-width: 10ch;
  }

  .tas-visit-route-chooser a {
    padding: 17px 44px 17px 16px;
  }
}

/* Homepage deep-time strip: restores the timeline idea without the old broken controls. */
.tas-home-era-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr) auto;
  gap: clamp(16px, 2.4vw, 32px);
  align-items: center;
  width: min(1120px, 100%);
  margin: clamp(10px, 1.8vw, 24px) auto 0;
  border-top: 1px solid rgba(226, 168, 72, 0.22);
  border-bottom: 1px solid rgba(118, 223, 255, 0.08);
  background:
    radial-gradient(ellipse at 46% 50%, rgba(226, 168, 72, 0.07), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006));
  padding: clamp(18px, 2.2vw, 26px) 0;
}

.tas-home-era-heading {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.tas-home-era-heading p {
  margin: 0;
  color: #76dfff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.tas-home-era-heading strong {
  color: #fff5e6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.tas-home-era-strip ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tas-home-era-strip ol::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 168, 72, 0.8), rgba(118, 223, 255, 0.18));
}

.tas-home-era-strip li {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 32px clamp(10px, 1.1vw, 16px) 0 0;
}

.tas-home-era-strip li a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 8px;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.tas-home-era-strip li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 245, 224, 0.74);
  border-radius: 999px;
  background: #d9a755;
  box-shadow:
    0 0 0 7px rgba(226, 168, 72, 0.11),
    0 0 22px rgba(226, 168, 72, 0.42);
}

.tas-home-era-strip li small {
  grid-column: 1;
  color: #e5ba72;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-transform: uppercase;
}

.tas-home-era-strip li strong {
  grid-column: 1;
  color: #fff6e8;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.08;
}

.tas-home-era-strip li span {
  grid-column: 1;
  max-width: 24ch;
  color: rgba(235, 229, 218, 0.65);
  font-size: 12.5px;
  font-weight: 560;
  line-height: 1.35;
}

.tas-home-era-strip li a > em {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: start;
  color: rgba(156, 234, 255, 0.66);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.tas-home-era-strip li:hover::before,
.tas-home-era-strip li:has(a:focus-visible)::before {
  box-shadow:
    0 0 0 9px rgba(226, 168, 72, 0.16),
    0 0 30px rgba(226, 168, 72, 0.62);
}

.tas-home-era-strip li a:hover > em,
.tas-home-era-strip li a:focus-visible > em {
  opacity: 1;
  color: #9ceaff;
  transform: translateX(0);
}

.tas-home-era-strip li a:hover strong,
.tas-home-era-strip li a:focus-visible strong {
  color: #ffffff;
}

.tas-home-era-strip li a:focus-visible {
  outline: 1px solid rgba(118, 223, 255, 0.42);
  outline-offset: 8px;
  border-radius: 8px;
}

.tas-home-era-strip > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(226, 168, 72, 0.3);
  border-radius: 999px;
  background: rgba(226, 168, 72, 0.08);
  color: #fff6e8;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.tas-home-era-strip > a em {
  color: #9ceaff;
  font-style: normal;
}

.tas-network-path-strip {
  display: none !important;
}

@media (max-width: 980px) {
  .tas-home-era-strip {
    grid-template-columns: 1fr;
  }

  .tas-home-era-strip ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .tas-home-era-strip ol::before {
    display: none;
  }

  .tas-home-era-strip li {
    border-left: 1px solid rgba(226, 168, 72, 0.2);
    padding: 0 0 0 24px;
  }

  .tas-home-era-strip li::before {
    top: 2px;
    left: -7px;
  }
}

@media (max-width: 620px) {
  .tas-home-era-strip {
    margin-top: 12px;
    padding: 18px 0 0;
  }

  .tas-home-era-strip ol {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tas-home-era-heading strong {
    max-width: 12ch;
    font-size: clamp(26px, 8vw, 34px);
  }

  .tas-home-era-strip li span {
    max-width: none;
    font-size: 13px;
  }

  .tas-home-era-strip > a {
    width: 100%;
  }
}

/* Homepage image-blend pass: soften rectangular asset edges into the dark atlas field. */
.tas-network-map-panel {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(226, 168, 72, 0.055), transparent 54%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.96), rgba(3, 6, 9, 0.32) 26%, rgba(3, 6, 9, 0.3) 68%, rgba(3, 6, 9, 0.96));
  mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 11%, #000 22%, #000 74%, rgba(0, 0, 0, 0.72) 88%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.76) 8%, #000 18%, #000 82%, rgba(0, 0, 0, 0.68) 92%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 11%, #000 22%, #000 74%, rgba(0, 0, 0, 0.72) 88%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.76) 8%, #000 18%, #000 82%, rgba(0, 0, 0, 0.68) 92%, transparent 100%);
}

.tas-network-map-panel::before,
.tas-network-map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.tas-network-map-panel::before {
  background:
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.72) 7%, rgba(3, 6, 9, 0.18) 20%, transparent 38%, transparent 64%, rgba(3, 6, 9, 0.18) 80%, rgba(3, 6, 9, 0.72) 93%, #030609 100%),
    linear-gradient(180deg, #030609 0%, rgba(3, 6, 9, 0.54) 9%, rgba(3, 6, 9, 0.08) 24%, transparent 52%, rgba(3, 6, 9, 0.28) 76%, #030609 100%);
}

.tas-network-map-panel::after {
  background:
    radial-gradient(ellipse at 50% 45%, transparent 0 46%, rgba(3, 6, 9, 0.24) 72%, #030609 100%),
    radial-gradient(ellipse at 50% 104%, #030609 0%, rgba(3, 6, 9, 0.66) 18%, transparent 42%);
}

.tas-network-map-panel .tas-map-bg {
  opacity: 0.76;
  filter: saturate(0.86) contrast(0.98) brightness(0.72);
}

.tas-network-map-panel .tas-map-shade {
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(226, 168, 72, 0.1), transparent 38%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.78) 0%, rgba(3, 6, 9, 0.18) 24%, rgba(3, 6, 9, 0.08) 54%, rgba(3, 6, 9, 0.3) 78%, rgba(3, 6, 9, 0.82) 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.76) 0%, rgba(3, 6, 9, 0.1) 20%, rgba(3, 6, 9, 0.16) 72%, rgba(3, 6, 9, 0.86) 100%);
}

.tas-start-card img,
.tas-discovery-card img {
  opacity: 0.38;
  filter: saturate(0.82) contrast(0.96) brightness(0.76);
}

.tas-start-card > span,
.tas-discovery-card > span {
  background:
    linear-gradient(180deg, rgba(3, 6, 9, 0.22), rgba(3, 6, 9, 0.66) 52%, rgba(3, 6, 9, 0.92)),
    radial-gradient(ellipse at 18% 86%, rgba(226, 168, 72, 0.12), transparent 46%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.34), transparent 36%, rgba(3, 6, 9, 0.36));
}

.tas-start-card,
.tas-discovery-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.06),
    inset 0 -40px 80px rgba(3, 6, 9, 0.28),
    0 24px 70px rgba(0, 0, 0, 0.2);
}

.tas-start-band::after,
.tas-discovery-band::after,
.tas-visit-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(44px, 6vw, 88px);
  background: linear-gradient(180deg, rgba(3, 6, 9, 0), #030609);
  pointer-events: none;
}

@media (max-width: 620px) {
  .tas-home-era-strip li a > em {
    opacity: 1;
    transform: none;
  }

  .tas-network-map-panel {
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 72%, transparent 100%);
  }
}

/* Final Göbekli profile composition pass: remove mismatched heading widths and dead right space. */
@media (min-width: 860px) {
  .gobekli-public-page.atomic-site-page .atomic-section .dossier-section-heading,
  .gobekli-public-page.atomic-site-page .profile-photo-heading,
  .gobekli-public-page.atomic-site-page #gobekli-discoveries .dossier-section-heading,
  .gobekli-public-page.atomic-site-page .gobekli-chronology-section .dossier-section-heading,
  .gobekli-public-page.atomic-site-page .gobekli-learn-hub-heading {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
    gap: clamp(30px, 4vw, 60px);
    align-items: end;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 clamp(20px, 2.6vw, 30px);
  }

  .gobekli-public-page.atomic-site-page .atomic-section .dossier-section-heading h2,
  .gobekli-public-page.atomic-site-page .profile-photo-heading h2,
  .gobekli-public-page.atomic-site-page .gobekli-learn-hub-heading h2 {
    grid-column: 1;
    max-width: 12ch;
    margin: 0;
    font-size: clamp(30px, 3.15vw, 44px);
    line-height: 1.02;
  }

  .gobekli-public-page.atomic-site-page .atomic-section .profile-section-summary,
  .gobekli-public-page.atomic-site-page .profile-photo-heading .profile-section-summary,
  .gobekli-public-page.atomic-site-page .gobekli-learn-hub-heading p {
    grid-column: 2;
    max-width: 58ch;
    margin: 0;
    color: rgba(245, 249, 255, 0.72);
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.5;
  }

  .gobekli-public-page.atomic-site-page .gobekli-learn-hub-heading span {
    display: none;
  }

  .gobekli-public-page.atomic-site-page .atomic-section:not(.gobekli-map-section):not(.gobekli-network-section) {
    padding-top: clamp(42px, 4.8vw, 62px);
    padding-bottom: clamp(36px, 4.2vw, 54px);
  }

  .gobekli-public-page.atomic-site-page .gobekli-chronology-section {
    margin-top: clamp(-16px, -1.2vw, -10px);
    padding-top: clamp(42px, 4.8vw, 62px);
  }

  .gobekli-public-page.atomic-site-page .gobekli-learn-hub-section {
    margin-top: 0;
  }

  .gobekli-public-page.atomic-site-page .gobekli-key-discoveries article {
    min-height: 150px;
  }

  .gobekli-public-page.atomic-site-page .gobekli-learn-card {
    min-height: 184px;
  }

  .gobekli-public-page.atomic-site-page #gobekli-visit {
    padding-top: clamp(36px, 4vw, 52px);
    padding-bottom: clamp(24px, 3.2vw, 38px);
  }

  .gobekli-public-page.atomic-site-page #gobekli-visit .atomic-visitor-grid,
  .gobekli-public-page.atomic-site-page #gobekli-visit .atomic-cta-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 12px;
    padding: 0;
  }

  .gobekli-public-page.atomic-site-page #gobekli-visit .atomic-cta-grid {
    margin-top: 12px;
  }

  .gobekli-public-page.atomic-site-page #gobekli-visit .atomic-info-card,
  .gobekli-public-page.atomic-site-page #gobekli-visit .atomic-cta-card {
    min-height: 0;
  }

  .gobekli-public-page.atomic-site-page .gobekli-visit-planner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
    gap: 16px;
    align-items: stretch;
  }

  .gobekli-public-page.atomic-site-page .gobekli-visit-routes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

.gobekli-visit-planner {
  display: grid;
  gap: 14px;
}

.gobekli-visit-routes {
  display: grid;
  gap: 12px;
}

.gobekli-visit-route,
.gobekli-visit-essentials {
  border: 1px solid rgba(245, 165, 36, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(245, 165, 36, 0.04), transparent 38%),
    rgba(7, 8, 8, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.045),
    0 18px 42px rgba(0, 0, 0, 0.16);
}

.gobekli-visit-route {
  display: grid;
  align-content: start;
  min-height: 304px;
  padding: clamp(20px, 2.2vw, 26px);
  color: #f5f9ff;
}

.gobekli-visit-route.featured {
  border-color: rgba(245, 165, 36, 0.34);
  background:
    radial-gradient(circle at 22% 0%, rgba(245, 165, 36, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(245, 165, 36, 0.075), transparent 46%),
    rgba(12, 11, 10, 0.68);
}

.gobekli-visit-route small,
.gobekli-visit-essentials p {
  margin: 0;
  color: #f2b65c;
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gobekli-visit-route h3,
.gobekli-visit-essentials h3 {
  margin: 12px 0 0;
  color: #fff6e8;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 760;
  letter-spacing: -0.018em;
  line-height: 1.02;
}

.gobekli-visit-route p {
  margin: 14px 0 0;
  color: rgba(245, 249, 255, 0.74);
  font-size: 15px;
  line-height: 1.48;
}

.gobekli-visit-route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.gobekli-visit-route-meta span {
  border: 1px solid rgba(126, 225, 255, 0.16);
  border-radius: 999px;
  background: rgba(126, 225, 255, 0.055);
  color: rgba(219, 245, 255, 0.82);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 760;
}

.gobekli-visit-route ol {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.gobekli-visit-route li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: rgba(245, 249, 255, 0.82);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.25;
}

.gobekli-visit-route li span {
  color: rgba(245, 165, 36, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.gobekli-visit-route a {
  align-self: end;
  width: fit-content;
  margin-top: 18px;
  border: 1px solid rgba(245, 165, 36, 0.28);
  border-radius: 999px;
  background: rgba(245, 165, 36, 0.08);
  color: #ffd08c;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.gobekli-visit-route.featured a {
  background: #f5a524;
  color: #081018;
}

.gobekli-visit-essentials {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 2.2vw, 26px);
}

.gobekli-visit-essentials article {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 14px;
}

.gobekli-visit-essentials strong,
.gobekli-visit-essentials span {
  display: block;
}

.gobekli-visit-essentials strong {
  color: #fff6e8;
  font-size: 15px;
  line-height: 1.2;
}

.gobekli-visit-essentials span {
  margin-top: 6px;
  color: rgba(245, 249, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .gobekli-public-page.atomic-site-page .gobekli-visit-planner {
    grid-template-columns: 1fr;
  }

  .gobekli-public-page.atomic-site-page .gobekli-visit-routes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gobekli-public-page.atomic-site-page .gobekli-visit-routes {
    grid-template-columns: 1fr;
  }

.gobekli-visit-route {
    min-height: 0;
  }
}

/* Göbekli profile completion pass: consistent rail, mobile explorer, compact premium rhythm. */
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-body {
  grid-template-columns: minmax(0, 1fr) !important;
  width: min(1180px, calc(100vw - 48px));
  margin-inline: auto;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  border: 1px solid rgba(126, 213, 255, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(126, 213, 255, 0.08), transparent 38%),
    #05090d;
  overflow: hidden;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .interactive-site-map {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: inherit;
  background: #03070a;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .interactive-site-map-frame {
  height: clamp(430px, calc(100svh - 150px), 620px);
  min-height: 0;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-section:not(.gobekli-map-section):not(.gobekli-network-section) {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-section,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-learn-hub-section,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-discoveries,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .profile-photo-section,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-structures,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-visit {
  border-top: 1px solid rgba(245, 165, 36, 0.08);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-section {
  margin-top: clamp(18px, 2.6vw, 34px);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-shell {
  min-height: 0;
  align-items: stretch;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-detail {
  min-height: 0;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .profile-photo-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 32%);
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 165, 36, 0.45) rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .profile-photo-card {
  width: auto;
  max-width: none;
  height: clamp(210px, 20vw, 280px);
  flex: none;
  scroll-snap-align: start;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .profile-photo-card figcaption {
  padding: 16px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-structures {
  padding-bottom: clamp(34px, 3.8vw, 50px);
}

@media (max-width: 760px) {
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-inline: auto;
    overflow: hidden;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-body > .atomic-section,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .interactive-site-map,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-shell,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .profile-photo-gallery,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-visit-planner {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .gobekli-public-page #gobekli-hero.atomic-hero {
    min-height: 92svh;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header h1 {
    max-width: 10ch;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header .atomic-hero-summary {
    max-width: 18ch;
  }

  .gobekli-public-page #gobekli-hero.gobekli-light-header .gobekli-hero-reveal {
    font-size: clamp(19px, 5vw, 24px);
  }

  .gobekli-public-page #gobekli-hero .gobekli-feature-card {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .gobekli-public-page .atomic-page-index,
  .atomic-site-page > .atomic-page-index {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    justify-content: stretch;
    height: 56px;
    overflow: hidden;
    padding: 0 8px !important;
    gap: 4px !important;
    border-radius: 0;
  }

  .gobekli-public-page .atomic-page-index a,
  .atomic-site-page > .atomic-page-index a {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    padding: 0 4px !important;
    font-size: clamp(10px, 2.7vw, 12px) !important;
    line-height: 1.05;
    text-align: center;
  }

  .atomic-site-page > .atomic-page-index.nav-pinned + .atomic-page-body {
    padding-top: 56px !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section {
    margin-top: 10px;
    border-radius: 16px;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(245, 165, 36, 0.1), transparent 38%),
      linear-gradient(180deg, rgba(9, 12, 13, 0.92), rgba(5, 8, 10, 0.96));
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-site-map-frame {
    height: min(72svh, 640px);
    min-height: 420px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-zoom-controls {
    top: 10px;
    right: 10px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-section,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-learn-hub-section,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-discoveries,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .profile-photo-section,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-structures,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-visit {
    margin-top: 12px;
    padding: 34px 0 36px;
  }

  .gobekli-public-page.atomic-site-page .atomic-section .dossier-section-heading,
  .gobekli-public-page.atomic-site-page .profile-photo-heading,
  .gobekli-public-page.atomic-site-page #gobekli-discoveries .dossier-section-heading,
  .gobekli-public-page.atomic-site-page .gobekli-chronology-section .dossier-section-heading,
  .gobekli-public-page.atomic-site-page .gobekli-learn-hub-heading {
    padding-inline: 0;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-shell {
    display: grid;
    gap: 14px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-steps {
    display: grid;
    gap: 9px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-steps::before {
    display: none;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step {
    min-height: 0;
    border-radius: 12px;
    padding: 14px 14px 14px 42px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step::before {
    top: 18px;
    left: 16px;
    transform: none;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step em {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.34;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-detail {
    padding: 16px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .profile-photo-gallery {
    grid-auto-columns: minmax(270px, 82%);
    margin-inline: -2px;
    padding: 0 2px 10px;
    overflow-x: auto;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .profile-photo-card {
    height: 220px;
    min-width: 0;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-visit-planner {
    gap: 10px;
  }
}

/* Homepage map/timeline repair: remove the black trough and make the rail feel integrated. */
.tas-orientation-band {
  padding-bottom: clamp(24px, 3.4vw, 46px);
}

.tas-network-map-panel {
  min-height: clamp(330px, 36vw, 480px);
  margin-top: clamp(-4px, -0.4vw, 0px);
  margin-bottom: 0;
  overflow: visible;
  background: transparent;
  mask-image:
    radial-gradient(ellipse at 50% 46%, #000 0 48%, rgba(0, 0, 0, 0.74) 68%, transparent 92%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.76) 9%, #000 18%, #000 82%, rgba(0, 0, 0, 0.68) 92%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse at 50% 46%, #000 0 48%, rgba(0, 0, 0, 0.74) 68%, transparent 92%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.76) 9%, #000 18%, #000 82%, rgba(0, 0, 0, 0.68) 92%, transparent 100%);
}

.tas-network-map-panel .tas-map-bg {
  top: clamp(-82px, -6vw, -54px);
  right: clamp(-76px, -5vw, -44px);
  bottom: clamp(-92px, -7vw, -56px);
  left: clamp(-76px, -5vw, -44px);
  background-size: cover;
  background-position: center 42%;
  opacity: 0.92;
  filter: saturate(0.9) contrast(1.02) brightness(0.8);
}

.tas-network-map-panel::before {
  background:
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.62) 6%, rgba(3, 6, 9, 0.1) 18%, transparent 38%, transparent 64%, rgba(3, 6, 9, 0.1) 82%, rgba(3, 6, 9, 0.62) 94%, #030609 100%),
    linear-gradient(180deg, #030609 0%, rgba(3, 6, 9, 0.36) 8%, rgba(3, 6, 9, 0.03) 24%, transparent 58%, rgba(3, 6, 9, 0.26) 82%, #030609 100%);
}

.tas-network-map-panel::after {
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0 52%, rgba(3, 6, 9, 0.22) 78%, #030609 100%),
    linear-gradient(180deg, transparent 0%, rgba(3, 6, 9, 0.1) 62%, #030609 100%);
}

.tas-network-map-panel .tas-map-shade {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(226, 168, 72, 0.08), transparent 42%),
    linear-gradient(90deg, rgba(3, 6, 9, 0.7) 0%, rgba(3, 6, 9, 0.12) 24%, rgba(3, 6, 9, 0.05) 54%, rgba(3, 6, 9, 0.2) 78%, rgba(3, 6, 9, 0.76) 100%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.62) 0%, rgba(3, 6, 9, 0.04) 24%, rgba(3, 6, 9, 0.08) 70%, rgba(3, 6, 9, 0.76) 100%);
}

.tas-home-era-strip {
  position: relative;
  z-index: 16;
  grid-template-columns: minmax(110px, 0.14fr) minmax(0, 1fr) auto;
  gap: clamp(12px, 1.5vw, 24px);
  width: min(1120px, 100%);
  margin: clamp(-36px, -3vw, -20px) auto 0;
  border: 1px solid rgba(226, 168, 72, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(12, 16, 18, 0.82), rgba(4, 7, 10, 0.72)),
    rgba(3, 6, 9, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 221, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.28);
  padding: clamp(12px, 1.4vw, 18px);
}

.tas-home-era-heading {
  gap: 5px;
}

.tas-home-era-heading strong {
  max-width: 13ch;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 850;
  line-height: 1.18;
}

.tas-home-era-strip ol {
  align-items: start;
}

.tas-home-era-strip ol::before {
  top: 8px;
  right: 8%;
  left: 8%;
  opacity: 0.72;
}

.tas-home-era-strip li {
  padding-top: 22px;
}

.tas-home-era-strip li::before {
  top: 2px;
  width: 11px;
  height: 11px;
  box-shadow:
    0 0 0 6px rgba(226, 168, 72, 0.1),
    0 0 18px rgba(226, 168, 72, 0.38);
}

.tas-home-era-strip li span {
  display: none;
}

.tas-home-era-strip > a {
  min-height: 40px;
  padding: 0 14px;
}

.tas-start-band {
  padding-top: clamp(34px, 4.2vw, 58px);
}

.tas-start-band::before {
  opacity: 0.45;
}

@media (max-width: 980px) {
  .tas-home-era-strip {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .tas-home-era-heading strong {
    max-width: none;
  }

  .tas-home-era-strip li span {
    display: block;
  }
}

@media (max-width: 620px) {
  .tas-network-map-panel {
    min-height: 230px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 68%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 68%, transparent 100%);
  }

  .tas-network-map-panel .tas-map-bg {
    top: -24px;
    right: -86px;
    bottom: -32px;
    left: -86px;
    opacity: 0.8;
  }

  .tas-home-era-strip {
    margin-top: -8px;
    border-radius: 12px;
    padding: 16px;
  }

  .tas-home-era-strip ol {
    gap: 11px;
  }

  .tas-home-era-strip li {
    padding-top: 0;
  }
}

/* Final homepage rail treatment: timeline as a light map overlay, not a heavy section. */
@media (min-width: 981px) {
  .tas-home-era-strip {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    width: min(860px, calc(100% - 220px));
    margin: clamp(-76px, -5vw, -52px) auto 0;
    border: 0;
    border-top: 1px solid rgba(226, 168, 72, 0.2);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(3, 6, 9, 0.16), rgba(3, 6, 9, 0));
    box-shadow: none;
    padding: 8px 0 0;
  }

  .tas-home-era-heading {
    align-self: start;
    gap: 0;
    padding-top: 13px;
  }

  .tas-home-era-heading strong,
  .tas-home-era-strip > a {
    display: none;
  }

  .tas-home-era-heading p {
    color: rgba(118, 223, 255, 0.88);
    font-size: 10px;
    line-height: 1.05;
  }

  .tas-home-era-strip ol {
    column-gap: 20px;
  }

  .tas-home-era-strip ol::before {
    top: 9px;
    right: 12%;
    left: 5%;
    background: linear-gradient(90deg, rgba(226, 168, 72, 0.6), rgba(118, 223, 255, 0.12));
  }

  .tas-home-era-strip li {
    padding-top: 21px;
  }

  .tas-home-era-strip li::before {
    top: 3px;
    width: 10px;
    height: 10px;
  }

  .tas-home-era-strip li small {
    color: rgba(229, 186, 114, 0.86);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .tas-home-era-strip li strong {
    max-width: 13ch;
    font-size: clamp(12px, 0.92vw, 15px);
    line-height: 1.05;
  }

  .tas-home-era-strip li a > em {
    grid-row: 1 / span 2;
    padding-top: 16px;
  }

  .tas-start-band {
    padding-top: clamp(18px, 2.6vw, 38px);
  }
}

.tas-start-card,
.tas-discovery-card,
.tas-home-era-strip {
  backdrop-filter: blur(1px);
}

/* Homepage timeline restoration: keep the real timeline, without the dead black slab. */
@media (min-width: 981px) {
  .tas-home-era-strip {
    display: grid;
    grid-template-columns: minmax(230px, 0.24fr) minmax(0, 1fr);
    gap: clamp(16px, 1.8vw, 26px);
    width: min(1120px, calc(100% - 96px));
    margin: clamp(-50px, -3.4vw, -32px) auto 0;
    border: 1px solid rgba(226, 168, 72, 0.16);
    border-radius: 18px;
    background:
      radial-gradient(ellipse at 30% 0%, rgba(226, 168, 72, 0.08), transparent 42%),
      linear-gradient(180deg, rgba(12, 16, 18, 0.76), rgba(4, 7, 10, 0.48));
    box-shadow:
      inset 0 1px 0 rgba(255, 244, 221, 0.055),
      0 20px 70px rgba(0, 0, 0, 0.24);
    padding: clamp(14px, 1.3vw, 19px);
  }

  .tas-home-era-heading {
    align-self: start;
    gap: 7px;
    padding-top: 0;
  }

  .tas-home-era-heading strong {
    display: block;
    max-width: 17ch;
    color: #fff5e6;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 1.48vw, 25px);
    font-weight: 500;
    line-height: 1.02;
  }

  .tas-home-era-heading p {
    color: #76dfff;
    font-size: 11px;
    line-height: 1;
  }

  .tas-home-era-strip ol {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-items: start;
    column-gap: 16px;
  }

  .tas-home-era-strip ol::before {
    top: 12px;
    right: 10%;
    left: 5%;
    background: linear-gradient(90deg, rgba(226, 168, 72, 0.72), rgba(118, 223, 255, 0.18));
  }

  .tas-home-era-strip li {
    padding-top: 29px;
  }

  .tas-home-era-strip li::before {
    top: 6px;
    width: 13px;
    height: 13px;
    box-shadow:
      0 0 0 7px rgba(226, 168, 72, 0.11),
      0 0 22px rgba(226, 168, 72, 0.42);
  }

  .tas-home-era-strip li small {
    color: #e5ba72;
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .tas-home-era-strip li strong {
    max-width: none;
    color: #fff6e8;
    font-size: clamp(15px, 1.08vw, 18px);
    line-height: 1.08;
  }

  .tas-home-era-strip li span {
    display: block;
    max-width: 24ch;
    color: rgba(235, 229, 218, 0.66);
    font-size: 12px;
    font-weight: 560;
    line-height: 1.3;
  }

  .tas-home-era-strip li a > em {
    grid-row: 2 / span 2;
    padding-top: 0;
  }

  .tas-home-era-strip > a {
    grid-column: 1;
    justify-self: start;
    display: inline-flex;
    min-height: 42px;
    padding: 0 16px;
    align-self: end;
    border-color: rgba(226, 168, 72, 0.28);
    background: rgba(226, 168, 72, 0.08);
  }

  .tas-start-band {
    padding-top: clamp(34px, 4vw, 54px);
  }
}

/* Finished booking page: scoped conversion layout, independent from profile/article blocks. */
body.tour-booking-page {
  background: #030605;
}

body.tour-booking-page .tour-static-page {
  position: relative;
  overflow-x: clip;
  min-height: 100vh;
  padding: 78px 0 0;
  background:
    radial-gradient(ellipse at 72% 8%, rgba(215, 173, 120, 0.1), transparent 34%),
    radial-gradient(ellipse at 16% 18%, rgba(103, 191, 219, 0.06), transparent 30%),
    linear-gradient(180deg, #040706 0%, #070806 46%, #030605 100%);
}

body.tour-booking-page .tour-static-page::before {
  content: "";
  position: fixed;
  inset: 78px 0 auto;
  height: 65vh;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 78%);
  opacity: 0.34;
}

body.tour-booking-page .tour-static-page > article {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
}

body.tour-booking-page .site-universal-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  height: 78px;
  border-bottom: 1px solid rgba(231, 190, 134, 0.14);
  background: rgba(2, 5, 7, 0.9);
  padding: 0 32px;
  backdrop-filter: blur(16px);
}

body.tour-booking-page .site-universal-nav .atlas-home-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

body.tour-booking-page .site-universal-nav .atlas-home-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

body.tour-booking-page .site-universal-nav .atlas-home-brand small {
  display: block;
  margin-top: 6px;
  color: rgba(226, 206, 174, 0.58);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.28em;
}

body.tour-booking-page .site-universal-nav .tas-home-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(28px, 3.4vw, 52px);
}

body.tour-booking-page .site-universal-nav a,
body.tour-booking-page .site-universal-nav .tas-nav-trigger {
  border: 0;
  background: transparent;
  color: rgba(236, 230, 219, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
}

body.tour-booking-page .tas-nav-item {
  position: relative;
}

body.tour-booking-page .site-universal-nav .tas-nav-trigger {
  cursor: pointer;
  padding: 26px 0;
}

body.tour-booking-page .site-universal-nav a:hover,
body.tour-booking-page .site-universal-nav .tas-nav-item:hover .tas-nav-trigger,
body.tour-booking-page .site-universal-nav .tas-nav-item:focus-within .tas-nav-trigger,
body.tour-booking-page .site-universal-nav [aria-current="page"] {
  color: #fff8ed;
}

body.tour-booking-page .site-universal-nav .tas-nav-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  display: grid;
  min-width: 220px;
  border: 1px solid rgba(231, 190, 134, 0.18);
  border-radius: 8px;
  background: rgba(5, 8, 9, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

body.tour-booking-page .site-universal-nav .tas-nav-item:hover .tas-nav-menu,
body.tour-booking-page .site-universal-nav .tas-nav-item:focus-within .tas-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

body.tour-booking-page .site-universal-nav .tas-nav-menu a {
  border-radius: 6px;
  color: rgba(238, 231, 220, 0.86);
  font-size: 13px;
  font-weight: 750;
  padding: 11px 12px;
}

body.tour-booking-page .site-universal-nav .tas-nav-menu a:hover {
  background: rgba(231, 190, 134, 0.08);
  color: #fff8ed;
}

body.tour-booking-page .static-breadcrumbs {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

body.tour-booking-page .tour-booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  grid-template-areas: "copy route";
  gap: 22px 34px;
  align-items: center;
  min-height: calc(100svh - 78px);
  margin: 0;
  padding: clamp(34px, 5vw, 58px) 0;
}

body.tour-booking-page .tour-booking-hero::after {
  content: none;
}

body.tour-booking-page .tour-booking-hero .tour-premium-copy {
  grid-area: copy;
  align-content: end;
  min-width: 0;
  padding-top: clamp(20px, 3vw, 36px);
}

body.tour-booking-page .tour-booking-hero .tour-premium-copy > p:first-child,
body.tour-booking-page .tour-section-heading p,
body.tour-booking-page .tour-conversion-strip small,
body.tour-booking-page .tour-route-card small,
body.tour-booking-page .tour-hero-route-card > p,
body.tour-booking-page .tour-final-cta-copy > p {
  color: #d7ad78;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.tour-booking-page .tour-booking-hero .tour-premium-copy h1 {
  max-width: 690px;
  margin: 12px 0 16px;
  color: #fff8ed;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

body.tour-booking-page .tour-booking-hero .tour-premium-copy > p:last-of-type {
  max-width: 57ch;
  color: rgba(239, 232, 219, 0.82);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.46;
}

body.tour-booking-page .tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

body.tour-booking-page .tour-hero-actions a,
body.tour-booking-page .tour-hero-route-card a,
body.tour-booking-page .tour-route-card > a,
body.tour-booking-page .tour-request-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(231, 190, 134, 0.42);
  border-radius: 999px;
  background: rgba(231, 190, 134, 0.12);
  color: #fff5e5;
  padding: 0 18px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

body.tour-booking-page .tour-hero-actions a:first-child,
body.tour-booking-page .tour-hero-route-card a,
body.tour-booking-page .tour-route-card-featured > a,
body.tour-booking-page .tour-request-form button {
  border-color: rgba(231, 190, 134, 0.82);
  background:
    linear-gradient(135deg, rgba(231, 190, 134, 0.26), rgba(106, 190, 216, 0.08)),
    rgba(231, 190, 134, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

body.tour-booking-page .tour-hero-actions a:hover,
body.tour-booking-page .tour-hero-actions a:focus-visible,
body.tour-booking-page .tour-hero-route-card a:hover,
body.tour-booking-page .tour-hero-route-card a:focus-visible,
body.tour-booking-page .tour-route-card > a:hover,
body.tour-booking-page .tour-route-card > a:focus-visible,
body.tour-booking-page .tour-request-form button:hover,
body.tour-booking-page .tour-request-form button:focus-visible {
  border-color: rgba(255, 226, 179, 0.92);
  background: rgba(231, 190, 134, 0.22);
  outline: 0;
}

body.tour-booking-page .tour-hero-route-card {
  grid-area: route;
  display: grid;
  align-content: start;
  min-height: 500px;
  border: 1px solid rgba(231, 190, 134, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 12% 0%, rgba(215, 173, 120, 0.18), transparent 34%),
    rgba(5, 8, 8, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  padding: clamp(24px, 3vw, 34px);
}

body.tour-booking-page .tour-hero-route-card h2 {
  max-width: 13ch;
  margin: 12px 0 28px;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
}

body.tour-booking-page .tour-hero-route-card ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.tour-booking-page .tour-hero-route-card li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 60px;
  border-top: 1px solid rgba(231, 190, 134, 0.18);
  color: #efe5d7;
}

body.tour-booking-page .tour-hero-route-card li:last-child {
  border-bottom: 1px solid rgba(231, 190, 134, 0.18);
}

body.tour-booking-page .tour-hero-route-card li span {
  color: rgba(215, 173, 120, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 850;
}

body.tour-booking-page .tour-hero-route-card li strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
}

body.tour-booking-page .tour-hero-route-card a {
  justify-self: start;
  margin-top: 28px;
}

body.tour-booking-page .tour-hero-route-map {
  display: none;
  grid-area: map;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-top: 1px solid rgba(231, 190, 134, 0.16);
  border-bottom: 1px solid rgba(231, 190, 134, 0.16);
  background:
    radial-gradient(ellipse at 44% 48%, rgba(231, 190, 134, 0.15), transparent 34%),
    #030605;
}

body.tour-booking-page .tour-hero-route-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #040706 0%, rgba(4, 7, 6, 0.12) 34%, rgba(4, 7, 6, 0.28) 70%, #040706 100%),
    linear-gradient(180deg, rgba(4, 7, 6, 0.16), #040706 100%);
  pointer-events: none;
}

body.tour-booking-page .tour-hero-route-map img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.82) contrast(1.08);
}

body.tour-booking-page .tour-map-stop {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(231, 190, 134, 0.42);
  border-radius: 999px;
  background: rgba(2, 5, 6, 0.68);
  color: #fff5e5;
  padding: 0 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 0 26px rgba(215, 173, 120, 0.22);
}

body.tour-booking-page .tour-map-stop-gobekli {
  top: 32%;
  left: 50%;
}

body.tour-booking-page .tour-map-stop-karahan {
  top: 56%;
  left: 66%;
}

body.tour-booking-page .tour-map-stop-urfa {
  top: 46%;
  left: 38%;
}

body.tour-booking-page .tour-conversion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(231, 190, 134, 0.2);
  border-bottom: 1px solid rgba(231, 190, 134, 0.14);
}

body.tour-booking-page .tour-conversion-strip article {
  min-height: 0;
  border: 0;
  border-right: 1px solid rgba(231, 190, 134, 0.12);
  border-radius: 0;
  background: transparent;
  padding: 20px clamp(14px, 2vw, 24px) 22px;
}

body.tour-booking-page .tour-conversion-strip article:last-child {
  border-right: 0;
}

body.tour-booking-page .tour-conversion-strip strong {
  margin-top: 8px;
  color: #fff4df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.75vw, 28px);
  font-weight: 500;
  line-height: 1;
}

body.tour-booking-page .tour-conversion-strip span {
  margin-top: 10px;
  color: rgba(232, 224, 211, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

body.tour-booking-page .tour-conversion-routes,
body.tour-booking-page .tour-visual-proof,
body.tour-booking-page .tour-experience-section,
body.tour-booking-page .tour-final-cta {
  margin-top: clamp(56px, 7vw, 92px);
  scroll-margin-top: 104px;
}

body.tour-booking-page .tour-conversion-routes {
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) repeat(2, minmax(240px, 0.86fr));
  gap: 14px;
  align-items: stretch;
}

body.tour-booking-page .tour-section-heading {
  grid-column: 1 / -1;
  max-width: 780px;
  margin-bottom: 14px;
}

body.tour-booking-page .tour-section-heading h2 {
  max-width: 820px;
  margin: 8px 0 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: none;
}

body.tour-booking-page .tour-section-heading span {
  display: block;
  max-width: 710px;
  margin-top: 8px;
  color: rgba(232, 224, 211, 0.74);
  font-size: 16px;
  line-height: 1.5;
}

body.tour-booking-page .tour-route-card {
  display: grid;
  align-content: start;
  min-height: 392px;
  border: 1px solid rgba(231, 190, 134, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(4, 7, 7, 0.58);
  padding: clamp(20px, 2.4vw, 30px);
  transform: none;
  box-shadow: none;
}

body.tour-booking-page .tour-route-card-featured {
  border-color: rgba(231, 190, 134, 0.44);
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 173, 120, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.024)),
    rgba(8, 8, 6, 0.82);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

body.tour-booking-page .tour-route-card h3 {
  max-width: 11ch;
  margin: 14px 0 12px;
  color: #fff6e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 2.45vw, 39px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

body.tour-booking-page .tour-route-card p {
  margin: 0;
  color: rgba(232, 224, 211, 0.78);
  line-height: 1.45;
}

body.tour-booking-page .tour-route-card p strong {
  color: #f0c990;
}

body.tour-booking-page .tour-route-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

body.tour-booking-page .tour-route-card li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(232, 224, 211, 0.72);
  font-size: 15px;
  line-height: 1.42;
}

body.tour-booking-page .tour-route-card li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #d7ad78;
  box-shadow: 0 0 14px rgba(215, 173, 120, 0.48);
}

body.tour-booking-page .tour-route-card > a {
  justify-self: start;
  margin-top: 24px;
}

body.tour-booking-page .tour-visual-proof {
  display: grid;
  gap: 20px;
}

body.tour-booking-page .tour-visual-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 14px;
  height: clamp(480px, 44vw, 590px);
}

body.tour-booking-page .tour-visual-proof figure {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(231, 190, 134, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 12%, rgba(215, 173, 120, 0.16), transparent 34%),
    #040706;
}

body.tour-booking-page .tour-visual-proof figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 7, 0.04), rgba(3, 6, 7, 0.78)),
    radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

body.tour-booking-page .tour-visual-proof img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.8) contrast(1.08);
}

body.tour-booking-page .tour-visual-proof-side {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}

body.tour-booking-page .tour-visual-proof-side img {
  object-fit: contain;
  padding: 22px;
}

body.tour-booking-page .tour-photo-slot-map img {
  object-fit: cover;
  padding: 0;
}

body.tour-booking-page .tour-visual-proof figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 6px;
  background: linear-gradient(180deg, rgba(3, 6, 7, 0), rgba(3, 6, 7, 0.86));
  padding: 70px 20px 18px;
}

body.tour-booking-page .tour-visual-proof strong {
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1;
}

body.tour-booking-page .tour-visual-proof span {
  max-width: 420px;
  color: rgba(238, 231, 220, 0.76);
  font-size: 14px;
  line-height: 1.42;
}

body.tour-booking-page .tour-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(231, 190, 134, 0.18);
  border-bottom: 1px solid rgba(231, 190, 134, 0.12);
}

body.tour-booking-page .tour-experience-grid article {
  border: 0;
  border-right: 1px solid rgba(231, 190, 134, 0.12);
  border-radius: 0;
  background: transparent;
  padding: 22px clamp(14px, 2vw, 24px) 24px;
}

body.tour-booking-page .tour-experience-grid article:last-child {
  border-right: 0;
}

body.tour-booking-page .tour-experience-grid h3 {
  margin: 0 0 10px;
  color: #fff4df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 500;
  line-height: 1.04;
}

body.tour-booking-page .tour-experience-grid p {
  margin: 0;
  color: rgba(232, 224, 211, 0.68);
  font-size: 14px;
  line-height: 1.46;
}

body.tour-booking-page .tour-final-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  border: 1px solid rgba(231, 190, 134, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(215, 173, 120, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 8, 8, 0.72);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

body.tour-booking-page .tour-final-cta .tour-section-heading {
  grid-column: auto;
  margin: 0;
}

body.tour-booking-page .tour-final-cta-copy h2 {
  max-width: 420px;
  color: #fff8ed;
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

body.tour-booking-page .tour-final-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

body.tour-booking-page .tour-final-facts li {
  position: relative;
  margin: 0;
  color: rgba(232, 224, 211, 0.76);
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.38;
}

body.tour-booking-page .tour-final-facts li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d7ad78;
}

body.tour-booking-page .tour-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 14px;
  max-width: none;
  margin: 0;
}

body.tour-booking-page .tour-request-form label {
  display: grid;
  gap: 8px;
  color: #e2bd86;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.tour-booking-page .tour-request-form input,
body.tour-booking-page .tour-request-form select,
body.tour-booking-page .tour-request-form textarea {
  width: 100%;
  border: 1px solid rgba(231, 190, 134, 0.2);
  border-radius: 8px;
  background: rgba(1, 4, 5, 0.74);
  color: #fff8ed;
  padding: 13px 14px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

body.tour-booking-page .tour-request-form input:focus,
body.tour-booking-page .tour-request-form select:focus,
body.tour-booking-page .tour-request-form textarea:focus {
  border-color: rgba(231, 190, 134, 0.58);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(231, 190, 134, 0.08);
}

body.tour-booking-page .tour-form-wide,
body.tour-booking-page .tour-request-form button,
body.tour-booking-page .tour-request-form > p {
  grid-column: 1 / -1;
}

body.tour-booking-page .tour-request-form button {
  cursor: pointer;
  justify-self: start;
  min-height: 48px;
  margin-top: 4px;
}

body.tour-booking-page .tour-request-form > p {
  margin: 0;
  color: rgba(232, 224, 211, 0.66);
  font-size: 13px;
  line-height: 1.42;
}

body.tour-booking-page .site-wide-lower-header {
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid rgba(231, 190, 134, 0.16);
  background: rgba(2, 5, 7, 0.74);
  padding: 26px 0;
}

body.tour-booking-page .site-wide-lower-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

body.tour-booking-page .site-wide-lower-brand span,
body.tour-booking-page .site-wide-sister-sites span {
  display: block;
  color: #fff8ed;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.tour-booking-page .site-wide-lower-brand p {
  margin: 8px 0 0;
  color: rgba(232, 224, 211, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

body.tour-booking-page .site-wide-lower-brand small {
  display: block;
  margin-top: 4px;
  color: rgba(232, 224, 211, 0.52);
}

body.tour-booking-page .site-wide-lower-actions,
body.tour-booking-page .site-wide-sister-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

body.tour-booking-page .site-wide-lower-actions a,
body.tour-booking-page .site-wide-sister-sites a,
body.tour-booking-page .site-wide-lower-brand a {
  color: #e6bd85;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

body.tour-booking-page .site-wide-lower-actions a:hover,
body.tour-booking-page .site-wide-sister-sites a:hover,
body.tour-booking-page .site-wide-lower-brand a:hover {
  color: #fff8ed;
}

@media (max-width: 980px) {
  body.tour-booking-page .tour-booking-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "route"
      "map";
    padding-top: 36px;
  }

  body.tour-booking-page .tour-hero-route-card {
    min-height: 0;
  }

  body.tour-booking-page .tour-hero-route-card h2 {
    max-width: 16ch;
  }

  body.tour-booking-page .tour-conversion-strip,
  body.tour-booking-page .tour-conversion-routes,
  body.tour-booking-page .tour-visual-proof-grid,
  body.tour-booking-page .tour-final-cta {
    grid-template-columns: 1fr;
  }

  body.tour-booking-page .site-universal-nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.tour-booking-page .site-universal-nav .tas-nav-item,
  body.tour-booking-page .site-universal-nav .tas-visit-link,
  body.tour-booking-page .site-universal-nav .tas-home-links > a:not(.tas-visit-link) {
    display: none;
  }

  body.tour-booking-page .site-wide-lower-inner {
    grid-template-columns: 1fr;
  }

  body.tour-booking-page .tour-conversion-strip article,
  body.tour-booking-page .tour-experience-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(231, 190, 134, 0.12);
  }

  body.tour-booking-page .tour-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.tour-booking-page .tour-experience-grid article:nth-child(2n) {
    border-right: 0;
  }
}

/* Homepage excavation framework: cinematic entry, scroll reveal, atlas transition. */
.tas-official-home {
  --atlas-gold: #d8ad6a;
  --atlas-gold-soft: rgba(216, 173, 106, 0.62);
  --atlas-starlight: #fff6e8;
  --atlas-ink: #030609;
  background:
    radial-gradient(ellipse at 52% 7%, rgba(216, 173, 106, 0.08), transparent 34%),
    linear-gradient(180deg, #010306 0%, #030609 42%, #020406 100%);
}

.tas-home-nav {
  grid-template-columns: minmax(210px, 1fr) auto;
  height: 62px;
  min-height: 62px;
  border-bottom-color: rgba(216, 173, 106, 0.075);
  background:
    linear-gradient(180deg, rgba(1, 3, 6, 0.72), rgba(1, 3, 6, 0.22));
  padding: 0 clamp(18px, 3vw, 44px);
  backdrop-filter: blur(10px);
}

.tas-home-nav .atlas-home-brand {
  justify-self: start;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0.24em;
  opacity: 0.88;
}

.tas-home-nav .atlas-home-brand::before {
  width: 28px;
  height: 28px;
  border-color: rgba(216, 173, 106, 0.55);
  color: rgba(216, 173, 106, 0.9);
  font-size: 15px;
  box-shadow: 0 0 24px rgba(216, 173, 106, 0.08);
}

.tas-home-nav .atlas-home-brand small {
  margin-top: 3px;
  font-size: 7px;
  letter-spacing: 0.42em;
}

.tas-home-links {
  justify-self: end;
  gap: clamp(18px, 2.8vw, 44px);
}

.tas-home-nav a,
.tas-nav-trigger {
  color: rgba(255, 246, 232, 0.66);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tas-nav-item {
  min-height: 62px;
}

.tas-nav-menu {
  top: calc(100% - 4px);
  border-radius: 8px;
  background: rgba(2, 5, 8, 0.92);
}

.tas-excavation-hero {
  --excavation-progress: 0;
  min-height: 100svh;
  max-height: none;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(255, 246, 232, 0.08), transparent 28%),
    #010306;
}

.tas-excavation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(rgba(216, 173, 106, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 173, 106, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.7)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.6));
  -webkit-mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.7)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.6));
  opacity: 0.42;
}

.tas-excavation-hero::after {
  height: clamp(240px, 32vw, 420px);
  background:
    linear-gradient(180deg, rgba(1, 3, 6, 0), rgba(3, 6, 9, 0.68) 58%, #030609 96%),
    radial-gradient(ellipse at 50% 0%, rgba(216, 173, 106, 0.1), transparent 58%);
}

.tas-excavation-sky {
  inset: -4vh -3vw;
  will-change: transform;
}

.tas-excavation-sky img {
  object-position: center 48%;
  filter: saturate(0.82) contrast(1.08) brightness(0.48);
  transform: scale(1.08);
}

.tas-excavation-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 246, 232, 0.72) 0 1px, transparent 1.6px),
    radial-gradient(circle at 64% 18%, rgba(255, 246, 232, 0.54) 0 1px, transparent 1.6px),
    radial-gradient(circle at 82% 38%, rgba(216, 173, 106, 0.6) 0 1px, transparent 1.8px),
    radial-gradient(circle at 42% 34%, rgba(255, 246, 232, 0.5) 0 0.8px, transparent 1.5px);
  background-size: 280px 220px, 360px 260px, 310px 240px, 220px 180px;
  opacity: 0.42;
  will-change: transform;
}

.tas-excavation-hero .tas-photo-hero-shade {
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(216, 173, 106, 0.11), transparent 34%),
    radial-gradient(ellipse at 50% 14%, rgba(255, 246, 232, 0.09), transparent 28%),
    linear-gradient(90deg, rgba(1, 3, 6, 0.92) 0%, rgba(1, 3, 6, 0.48) 30%, rgba(1, 3, 6, 0.22) 62%, rgba(1, 3, 6, 0.7) 100%),
    linear-gradient(180deg, rgba(1, 3, 6, 0.36) 0%, rgba(1, 3, 6, 0.04) 38%, #030609 96%);
}

.tas-excavation-foreground {
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  height: min(62svh, 620px);
  pointer-events: none;
  will-change: transform;
}

.tas-excavation-pillar {
  position: absolute;
  bottom: clamp(-260px, -18vw, -150px);
  width: clamp(220px, 25vw, 430px);
  opacity: 0.82;
  filter:
    saturate(0.68)
    contrast(1.08)
    brightness(0.58)
    drop-shadow(0 34px 90px rgba(0, 0, 0, 0.82));
}

.tas-excavation-pillar-left {
  left: clamp(-58px, 5vw, 110px);
  transform: rotate(-1.5deg);
}

.tas-excavation-pillar-right {
  right: clamp(-92px, 3vw, 80px);
  transform: scaleX(-1) rotate(2deg);
  opacity: 0.72;
}

.tas-excavation-copy {
  position: relative;
  top: 0;
  z-index: 6;
  place-content: center;
  justify-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  width: min(980px, calc(100% - 48px));
  min-height: 100svh;
  max-height: none;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 122px) 0 clamp(104px, 11vw, 160px);
  text-align: center;
}

.tas-excavation-kicker {
  color: rgba(216, 173, 106, 0.74);
  font-size: clamp(9px, 0.8vw, 12px);
  letter-spacing: 0.42em;
  opacity: 1;
}

.tas-excavation-line {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.2, 0.72, 0.18, 1);
}

.tas-excavation-line-small {
  max-width: 42ch;
  color: rgba(255, 246, 232, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  animation-name: excavationFadeUp;
  animation-duration: 720ms;
  animation-delay: 80ms;
  opacity: 1;
}

.tas-excavation-line-main {
  max-width: 10.6ch;
  color: var(--atlas-starlight);
  font-size: clamp(58px, 8.4vw, 138px);
  font-weight: 500;
  line-height: 0.88;
  text-shadow:
    0 26px 90px rgba(0, 0, 0, 0.78),
    0 0 52px rgba(216, 173, 106, 0.13);
  animation-name: excavationFadeUp;
  animation-duration: 820ms;
  animation-delay: 220ms;
  opacity: 1;
}

.tas-excavation-reveal {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  z-index: 4;
  width: min(620px, calc(100vw - 48px));
  margin-top: clamp(4px, 0.6vw, 10px);
  color: rgba(255, 246, 232, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.35vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  opacity: 1;
  text-align: center;
  transform: none;
  text-shadow:
    0 30px 88px rgba(0, 0, 0, 0.88),
    0 0 42px rgba(216, 173, 106, 0.1);
  will-change: opacity, transform;
  animation: excavationFadeUp 820ms cubic-bezier(0.2, 0.72, 0.18, 1) 520ms both;
}

.tas-excavation-reveal::before,
.tas-excavation-reveal::after {
  content: "";
  display: block;
  width: min(180px, 28vw);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 106, 0.68), transparent);
  opacity: 0.78;
}

.tas-excavation-reveal::before {
  margin-bottom: clamp(14px, 1.8vw, 24px);
}

.tas-excavation-reveal::after {
  margin-top: clamp(14px, 1.8vw, 24px);
}

.tas-excavation-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 5vh, 54px);
  z-index: 12;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 246, 232, 0.66);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.28em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: clamp(0, calc(1 - (var(--excavation-progress) * 3)), 1);
}

.tas-excavation-scroll span {
  display: block;
  width: 1px;
  height: 78px;
  background: linear-gradient(180deg, rgba(216, 173, 106, 0), rgba(216, 173, 106, 0.82), rgba(216, 173, 106, 0));
}

.tas-excavation-scroll em {
  font-style: normal;
  white-space: nowrap;
}

.tas-excavation-coordinates {
  position: absolute;
  inset: clamp(82px, 9vh, 128px) clamp(18px, 3vw, 44px) auto;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(216, 173, 106, 0.34);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.22em;
  pointer-events: none;
  text-transform: uppercase;
}

.tas-excavation-hero + .tas-orientation-band {
  position: relative;
  margin-top: 0;
  padding-top: clamp(76px, 9vw, 132px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(216, 173, 106, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(3, 6, 9, 0) 0%, #030609 18%, #05090d 60%, #030609 100%);
}

.tas-orientation-band::before {
  content: "";
  position: absolute;
  inset: 0 clamp(18px, 3vw, 44px) auto;
  height: min(620px, 58vw);
  pointer-events: none;
  background:
    linear-gradient(rgba(216, 173, 106, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 173, 106, 0.032) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 88%);
  opacity: 0.52;
}

.tas-orientation-heading p,
.tas-home-era-heading p,
.tas-network-path-strip small,
.tas-discovery-heading p,
.tas-start-heading p,
.tas-visit-route-chooser > p {
  color: rgba(216, 173, 106, 0.82);
}

.tas-home-era-strip li a > em,
.tas-network-path-strip small,
.tas-start-card b,
.tas-visit-action em,
.tas-visit-route-chooser a::after {
  color: #fff6e8;
}

@keyframes excavationFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tas-excavation-line {
    animation: none;
  }

  .tas-excavation-line-small,
  .tas-excavation-line-main,
  .tas-excavation-reveal {
    opacity: 1;
    transform: none;
  }

  .tas-excavation-scroll {
    opacity: 0.72;
  }
}

@media (max-width: 860px) {
  .tas-home-nav {
    grid-template-columns: 1fr auto;
    height: 58px;
    min-height: 58px;
    padding-inline: 16px;
  }

  .tas-home-nav .atlas-home-brand {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .tas-home-nav .atlas-home-brand small,
  .tas-home-links > a:not(.tas-visit-link),
  .tas-home-links .tas-nav-item {
    display: none;
  }

  .tas-home-links {
    gap: 0;
  }

  .tas-excavation-hero {
    min-height: 100svh;
  }

  .tas-excavation-copy {
    width: min(100% - 36px, 640px);
    padding-top: 76px;
  }

  .tas-excavation-line-main {
    font-size: clamp(48px, 14vw, 78px);
  }

  .tas-excavation-line-small {
    font-size: clamp(17px, 5vw, 24px);
  }

  .tas-excavation-pillar {
    bottom: -120px;
    width: clamp(190px, 42vw, 330px);
  }

  .tas-excavation-pillar-left {
    left: -78px;
  }

  .tas-excavation-pillar-right {
    right: -118px;
  }

  .tas-excavation-coordinates {
    display: none;
  }

  .tas-excavation-hero + .tas-orientation-band {
    margin-top: -14svh;
    padding-top: 120px;
  }
}

@media (max-width: 760px) {
  body.tour-booking-page .tour-static-page {
    padding-top: 66px;
  }

  body.tour-booking-page .tour-static-page > article {
    width: min(100% - 36px, 560px);
  }

  body.tour-booking-page .tour-booking-hero {
    gap: 18px;
    padding: 30px 0 24px;
  }

  body.tour-booking-page .tour-booking-hero .tour-premium-copy {
    padding-top: 10px;
  }

  body.tour-booking-page .tour-booking-hero .tour-premium-copy h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.98;
  }

  body.tour-booking-page .tour-booking-hero .tour-premium-copy > p:last-of-type {
    font-size: 16px;
  }

  body.tour-booking-page .tour-hero-actions a {
    flex: 1 1 150px;
    padding-inline: 14px;
  }

  body.tour-booking-page .tour-hero-route-card {
    padding: 22px 18px;
  }

  body.tour-booking-page .tour-hero-route-card h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  body.tour-booking-page .tour-hero-route-map {
    min-height: 210px;
  }

  body.tour-booking-page .tour-hero-route-map img {
    min-height: 210px;
  }

  body.tour-booking-page .tour-map-stop {
    font-size: 10px;
  }

  body.tour-booking-page .tour-map-stop-gobekli {
    left: 46%;
  }

  body.tour-booking-page .tour-map-stop-karahan {
    left: 54%;
  }

  body.tour-booking-page .tour-map-stop-urfa {
    left: 20%;
  }

  body.tour-booking-page .tour-conversion-strip article {
    padding: 18px 0;
  }

  body.tour-booking-page .tour-conversion-routes,
  body.tour-booking-page .tour-visual-proof,
  body.tour-booking-page .tour-experience-section,
  body.tour-booking-page .tour-final-cta {
    margin-top: 48px;
  }

  body.tour-booking-page .tour-route-card {
    min-height: 0;
    padding: 22px 18px;
  }

  body.tour-booking-page .tour-route-card h3 {
    max-width: 15ch;
  }

  body.tour-booking-page .tour-visual-proof-grid {
    height: auto;
  }

  body.tour-booking-page .tour-visual-proof-main {
    height: 300px;
  }

  body.tour-booking-page .tour-visual-proof-side {
    grid-template-rows: none;
    height: auto;
  }

  body.tour-booking-page .tour-visual-proof-side figure {
    height: 172px;
  }

  body.tour-booking-page .tour-experience-grid {
    grid-template-columns: 1fr;
  }

  body.tour-booking-page .tour-experience-grid article {
    padding: 18px 0;
  }

  body.tour-booking-page .tour-final-cta {
    gap: 24px;
    padding: 22px 18px;
  }

body.tour-booking-page .tour-request-form {
    grid-template-columns: 1fr;
  }
}

/* Homepage excavation refinement: less literal image, stronger uncovering, activated atlas. */
.tas-excavation-hero {
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 246, 232, 0.12), transparent 24%),
    radial-gradient(ellipse at 18% 42%, rgba(216, 173, 106, 0.08), transparent 34%),
    radial-gradient(ellipse at 82% 38%, rgba(94, 126, 142, 0.12), transparent 36%),
    #010306;
}

.tas-excavation-hero::before {
  opacity: 0.34;
  background:
    linear-gradient(rgba(216, 173, 106, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 173, 106, 0.034) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(255, 246, 232, 0.22) 0 1px, transparent 1.6px),
    radial-gradient(circle at 66% 22%, rgba(216, 173, 106, 0.2) 0 1px, transparent 1.6px);
  background-size: 130px 130px, 130px 130px, 260px 220px, 340px 260px;
}

.tas-excavation-sky::before,
.tas-excavation-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tas-excavation-sky::before {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 14%, rgba(255, 246, 232, 0.16), transparent 28%),
    radial-gradient(ellipse at 50% 48%, rgba(1, 3, 6, 0.1), rgba(1, 3, 6, 0.64) 74%),
    linear-gradient(180deg, rgba(1, 3, 6, 0.2), rgba(1, 3, 6, 0.72));
  mix-blend-mode: screen;
  opacity: 0.54;
}

.tas-excavation-sky::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(1, 3, 6, 0.88), rgba(1, 3, 6, 0.18) 32%, rgba(1, 3, 6, 0.24) 66%, rgba(1, 3, 6, 0.9)),
    linear-gradient(180deg, rgba(1, 3, 6, 0.16), rgba(1, 3, 6, 0.28) 44%, #030609 100%);
}

.tas-excavation-sky img {
  opacity: 0.72;
  object-position: center 46%;
  filter: saturate(0.66) contrast(1.1) brightness(0.44) blur(0.25px);
  transform: scale(1.14);
}

.tas-excavation-copy {
  transform: translateY(clamp(-28px, -3vh, -12px));
}

.tas-excavation-line-small {
  color: rgba(255, 246, 232, 0.72);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.84);
}

.tas-excavation-line-main {
  max-width: 11ch;
  text-shadow:
    0 30px 100px rgba(0, 0, 0, 0.88),
    0 0 58px rgba(216, 173, 106, 0.12);
}

.tas-excavation-reveal {
  width: min(760px, calc(100vw - 52px));
  color: rgba(255, 246, 232, 0.94);
  opacity: 1;
}

.tas-excavation-foreground {
  height: min(66svh, 680px);
  opacity: clamp(0.62, calc(0.58 + var(--excavation-progress) * 0.34), 0.92);
}

.tas-excavation-pillar {
  bottom: clamp(-285px, -19vw, -156px);
  filter:
    saturate(0.58)
    contrast(1.12)
    brightness(0.52)
    drop-shadow(0 40px 110px rgba(0, 0, 0, 0.88));
}

.tas-excavation-pillar-left {
  left: clamp(-78px, 3vw, 88px);
}

.tas-excavation-pillar-right {
  right: clamp(-116px, 1.5vw, 52px);
}

.tas-excavation-hero + .tas-orientation-band {
  margin-top: 0;
  padding-top: clamp(76px, 9vw, 132px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(216, 173, 106, 0.14), transparent 30%),
    radial-gradient(ellipse at 50% 20%, rgba(255, 246, 232, 0.04), transparent 38%),
    linear-gradient(180deg, rgba(3, 6, 9, 0) 0%, rgba(3, 6, 9, 0.9) 14%, #030609 26%, #05090d 62%, #030609 100%);
}

.tas-orientation-band::before {
  height: min(740px, 64vw);
  background:
    linear-gradient(rgba(216, 173, 106, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 173, 106, 0.036) 1px, transparent 1px),
    radial-gradient(circle at 17% 34%, rgba(216, 173, 106, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 52%, rgba(255, 246, 232, 0.16) 0 1px, transparent 2px);
  background-size: 88px 88px, 88px 88px, 240px 200px, 320px 260px;
  opacity: 0.64;
}

.tas-orientation-copy {
  position: relative;
  z-index: 1;
}

.tas-orientation-lede {
  border-top: 1px solid rgba(216, 173, 106, 0.22);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(216, 173, 106, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 246, 232, 0.018), rgba(255, 246, 232, 0));
  padding-inline: clamp(16px, 2vw, 26px);
}

.tas-network-map-panel {
  margin-top: clamp(20px, 3vw, 44px);
  mask-image:
    radial-gradient(ellipse at 50% 48%, #000 0 56%, rgba(0, 0, 0, 0.72) 74%, transparent 96%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse at 50% 48%, #000 0 56%, rgba(0, 0, 0, 0.72) 74%, transparent 96%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
}

.tas-network-map-panel::before {
  background:
    radial-gradient(ellipse at 50% 44%, rgba(216, 173, 106, 0.1), transparent 42%),
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.42) 10%, rgba(3, 6, 9, 0.04) 48%, rgba(3, 6, 9, 0.44) 90%, #030609 100%),
    linear-gradient(180deg, #030609 0%, rgba(3, 6, 9, 0.04) 20%, rgba(3, 6, 9, 0.12) 76%, #030609 100%);
}

.tas-network-map-panel .tas-map-bg {
  opacity: 0.82;
  filter: saturate(0.78) contrast(1.12) brightness(0.72);
}

.tas-map-node-label {
  border-color: rgba(216, 173, 106, 0.28);
  background: rgba(1, 3, 6, 0.66);
  color: rgba(255, 246, 232, 0.88);
}

.tas-map-node:hover .tas-map-node-label,
.tas-map-node:focus-visible .tas-map-node-label,
.tas-map-node.rail-active .tas-map-node-label {
  border-color: rgba(216, 173, 106, 0.62);
  color: #fff6e8;
}

@media (max-width: 860px) {
  .tas-excavation-sky img {
    opacity: 0.66;
    object-position: 50% 44%;
    transform: scale(1.18);
  }

  .tas-excavation-copy {
    transform: translateY(-18px);
  }

  .tas-excavation-reveal {
    font-size: clamp(24px, 7vw, 38px);
  }

  .tas-excavation-pillar {
    bottom: -132px;
    opacity: 0.78;
  }

  .tas-excavation-hero + .tas-orientation-band {
    margin-top: 0;
    padding-top: 82px;
  }
}

.gobekli-domestic-drawer {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(126, 213, 255, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 0%, rgba(126, 213, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(12, 18, 22, 0.88), rgba(7, 10, 13, 0.94));
}

.gobekli-domestic-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 0;
  padding: 22px 24px;
  color: var(--gobekli-text);
  cursor: pointer;
  list-style: none;
}

.gobekli-domestic-drawer summary::-webkit-details-marker {
  display: none;
}

.gobekli-domestic-drawer summary span {
  display: grid;
  gap: 6px;
}

.gobekli-domestic-drawer summary small {
  color: var(--gobekli-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gobekli-domestic-drawer summary strong {
  color: var(--gobekli-text);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

.gobekli-domestic-drawer summary em {
  flex: 0 0 auto;
  border: 1px solid rgba(126, 213, 255, 0.22);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--gobekli-accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gobekli-domestic-drawer[open] summary {
  border-bottom: 1px solid rgba(126, 213, 255, 0.11);
}

.gobekli-domestic-drawer[open] summary em {
  color: rgba(245, 251, 255, 0.72);
}

.gobekli-domestic-drawer-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: 24px;
}

.gobekli-domestic-drawer-body figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(126, 213, 255, 0.12);
  border-radius: 18px;
  background: #05080b;
}

.gobekli-domestic-drawer-body img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gobekli-domestic-drawer-body figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 9, 0.84));
  color: rgba(245, 251, 255, 0.82);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.38;
}

.gobekli-domestic-drawer-body p {
  margin: 0 0 16px;
  color: rgba(222, 235, 241, 0.8);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 560;
  line-height: 1.45;
}

.gobekli-domestic-drawer-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gobekli-domestic-drawer-body li {
  position: relative;
  padding-left: 18px;
  color: rgba(222, 235, 241, 0.66);
  font-size: 15px;
  line-height: 1.45;
}

.gobekli-domestic-drawer-body li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gobekli-accent);
  box-shadow: 0 0 12px rgba(128, 220, 255, 0.55);
}

@media (max-width: 980px) {
  .gobekli-domestic-drawer summary {
    align-items: flex-start;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 20px;
  }

  .gobekli-domestic-drawer-body {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

/* Homepage atlas spine refinement: clear actions, preserved map, full 12-site entry. */
.tas-official-home .tas-excavation-actions {
  justify-content: center;
  margin-top: clamp(10px, 1.6vw, 20px);
}

.tas-official-home .tas-excavation-line-small {
  max-width: 54ch;
  color: rgba(235, 229, 218, 0.76);
  font-family: var(--font-body, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: clamp(16px, 1.18vw, 22px);
  font-weight: 620;
  line-height: 1.46;
}

.tas-official-home .tas-excavation-reveal {
  max-width: 42ch;
  font-size: clamp(19px, 1.65vw, 29px);
  line-height: 1.22;
}

.tas-official-home .tas-excavation-actions a {
  min-width: clamp(154px, 12vw, 198px);
}

.tas-official-home .tas-network-map-panel {
  width: min(1180px, 100%);
  max-width: 100%;
  margin: clamp(10px, 1.8vw, 22px) auto 0;
}

.tas-official-home .tas-network-map-panel .tas-map-bg {
  opacity: 0.94;
  filter: saturate(0.96) contrast(1.08) brightness(0.9);
}

.tas-official-home .tas-network-map-panel .tas-network-sites,
.tas-official-home .tas-network-map-panel .tas-network-svg {
  display: block !important;
}

.tas-home-sites-rail {
  position: relative;
  z-index: 12;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  width: min(1180px, 100%);
  margin: clamp(16px, 2.2vw, 32px) auto 0;
  border-top: 1px solid rgba(216, 173, 106, 0.16);
  padding-top: clamp(16px, 2vw, 26px);
}

.tas-home-sites-rail-heading {
  display: grid;
  align-content: start;
  gap: 8px;
}

.tas-home-sites-rail-heading p {
  grid-column: auto;
  margin: 0;
  color: rgba(216, 173, 106, 0.84);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.tas-home-sites-rail-heading h3 {
  margin: 0;
  color: #fff6e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.tas-home-sites-rail-heading span {
  max-width: 34ch;
  color: rgba(235, 229, 218, 0.66);
  font-size: 14px;
  font-weight: 590;
  line-height: 1.42;
}

.tas-home-sites-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.tas-home-site-pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number status";
  column-gap: 10px;
  row-gap: 3px;
  align-items: center;
  min-height: 72px;
  border: 1px solid rgba(255, 244, 221, 0.075);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 244, 221, 0.035), rgba(255, 244, 221, 0.01)),
    rgba(1, 4, 7, 0.48);
  color: inherit;
  padding: 11px 12px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tas-home-site-pill small {
  grid-area: number;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(216, 173, 106, 0.22);
  border-radius: 999px;
  color: rgba(216, 173, 106, 0.82);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.tas-home-site-pill strong {
  grid-area: title;
  min-width: 0;
  color: rgba(255, 246, 232, 0.92);
  font-size: clamp(14px, 1.06vw, 17px);
  font-weight: 760;
  line-height: 1.05;
}

.tas-home-site-pill span {
  grid-area: status;
  color: rgba(235, 229, 218, 0.52);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.15;
}

.tas-home-site-pill.is-live {
  border-color: rgba(216, 173, 106, 0.24);
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 173, 106, 0.12), transparent 42%),
    rgba(5, 9, 13, 0.62);
}

.tas-home-site-pill:hover,
.tas-home-site-pill:focus-visible {
  outline: 0;
  border-color: rgba(216, 173, 106, 0.52);
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 173, 106, 0.16), transparent 44%),
    rgba(7, 12, 16, 0.72);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .tas-home-sites-rail {
    grid-template-columns: 1fr;
  }

  .tas-home-sites-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .tas-home-nav .tas-home-links .tas-nav-item {
    display: flex;
    min-height: 58px;
  }

  .tas-home-nav .tas-nav-trigger,
  .tas-home-nav .tas-visit-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
  }

  .tas-home-nav .tas-nav-menu {
    right: 0;
    left: auto;
    min-width: 188px;
    transform: translateY(8px);
  }

  .tas-home-nav .tas-nav-item:hover .tas-nav-menu,
  .tas-home-nav .tas-nav-item:focus-within .tas-nav-menu {
    transform: translateY(0);
  }

  .tas-official-home .tas-excavation-actions {
    justify-content: center;
  }

  .tas-official-home .tas-excavation-line-small {
    max-width: 31ch;
    margin-inline: auto;
    font-size: clamp(15px, 4.1vw, 18px);
    font-weight: 640;
    line-height: 1.42;
    text-align: center;
  }

  .tas-official-home .tas-excavation-reveal {
    max-width: 23ch;
    margin-inline: auto;
    font-size: clamp(20px, 5.4vw, 24px);
    text-align: center;
  }

  .tas-official-home .tas-excavation-actions a {
    min-width: 142px;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .tas-official-home .tas-network-map-panel {
    width: 100%;
    min-height: clamp(270px, 72vw, 360px);
    margin: 18px 0 0;
  }

  .tas-official-home .tas-network-map-panel .tas-network-sites,
  .tas-official-home .tas-network-map-panel .tas-network-svg {
    top: 10px;
    right: auto;
    bottom: auto;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .tas-home-sites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .tas-home-sites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .tas-home-site-pill {
    min-height: 62px;
    padding: 9px 10px;
  }

  .tas-home-site-pill small {
    width: 26px;
    height: 26px;
  }

  .tas-home-site-pill strong {
    font-size: 13px;
  }
}

/* Homepage atlas reset: map, site chooser, and timeline are separate sections. */
.tas-official-home .tas-excavation-hero {
  min-height: clamp(680px, 92svh, 860px);
  margin-bottom: 0;
}

.tas-official-home .tas-excavation-foreground {
  display: none;
}

.tas-official-home .tas-excavation-pillar {
  bottom: clamp(-300px, -20vw, -190px);
  width: clamp(190px, 21vw, 350px);
  opacity: 0.56;
}

.tas-official-home .tas-excavation-pillar-left {
  left: clamp(-80px, 4vw, 76px);
}

.tas-official-home .tas-excavation-pillar-right {
  right: clamp(-110px, 2vw, 54px);
}

.tas-official-home .tas-excavation-hero + .tas-orientation-band {
  margin-top: 0;
  padding-top: clamp(46px, 5vw, 76px);
}

.tas-official-home .tas-orientation-band {
  position: relative;
  padding: clamp(34px, 4vw, 58px) clamp(22px, 6vw, 92px) clamp(12px, 2vw, 26px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(216, 173, 106, 0.08), transparent 34%),
    linear-gradient(180deg, #030609 0%, #04080c 100%);
}

.tas-official-home .tas-orientation-band::before {
  opacity: 0.28;
}

.tas-official-home .tas-orientation-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.5fr);
  gap: clamp(22px, 4vw, 68px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.tas-official-home .tas-orientation-label {
  grid-column: 1 / -1;
  margin: 0 0 -8px;
  color: rgba(216, 173, 106, 0.84);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.tas-official-home .tas-orientation-heading h2 {
  max-width: 10ch;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.92;
}

.tas-official-home .tas-orientation-copy > h2 {
  max-width: 13ch;
  margin: 0;
  color: #fff6e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

.tas-official-home .tas-orientation-lede {
  display: grid;
  gap: 12px;
  max-width: 530px;
  padding: 0;
  border-top: 1px solid rgba(216, 173, 106, 0.2);
  padding-top: 18px;
}

.tas-official-home .tas-orientation-lede p:first-of-type {
  max-width: none;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
}

.tas-official-home .tas-orientation-lede p {
  max-width: none;
  margin: 0;
  color: rgba(235, 229, 218, 0.72);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 620;
  line-height: 1.48;
}

.tas-home-map-band {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 2vw, 30px) clamp(20px, 5vw, 76px) 0;
  background:
    linear-gradient(180deg, #04080c 0%, #030609 82%);
}

.tas-home-map-band .tas-network-map-panel,
.tas-official-home .tas-home-map-band .tas-network-map-panel {
  width: min(1240px, 100%);
  min-height: clamp(430px, 43vw, 610px);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
}

.tas-home-map-band .tas-network-map-panel .tas-map-bg {
  top: clamp(-70px, -5vw, -42px);
  right: clamp(-72px, -5vw, -40px);
  bottom: clamp(-76px, -5vw, -44px);
  left: clamp(-72px, -5vw, -40px);
  opacity: 0.94;
  filter: saturate(0.94) contrast(1.06) brightness(0.84);
}

.tas-home-map-band .tas-network-map-panel::before {
  background:
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.54) 7%, transparent 22%, transparent 78%, rgba(3, 6, 9, 0.54) 93%, #030609 100%),
    linear-gradient(180deg, #030609 0%, rgba(3, 6, 9, 0.16) 18%, transparent 54%, rgba(3, 6, 9, 0.22) 84%, #030609 100%);
}

.tas-home-map-band .tas-network-map-panel::after {
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0 58%, rgba(3, 6, 9, 0.22) 80%, #030609 100%),
    linear-gradient(180deg, transparent 0%, rgba(3, 6, 9, 0.08) 68%, #030609 100%);
}

.tas-home-map-band .tas-network-map-panel .tas-network-sites,
.tas-home-map-band .tas-network-map-panel .tas-network-svg {
  display: block !important;
}

.tas-official-home .tas-home-sites-rail {
  z-index: 1;
  grid-column: auto;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: clamp(30px, 4vw, 58px) auto 0;
  border-top: 1px solid rgba(216, 173, 106, 0.2);
  padding-top: clamp(24px, 3vw, 38px);
}

.tas-official-home .tas-home-sites-rail-heading h3 {
  max-width: 9ch;
}

.tas-official-home .tas-home-sites-rail-heading span {
  max-width: 30ch;
  color: rgba(235, 229, 218, 0.7);
}

.tas-official-home .tas-home-sites-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.tas-official-home .tas-home-site-pill {
  min-height: 78px;
  border-color: rgba(216, 173, 106, 0.13);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 244, 221, 0.04), rgba(255, 244, 221, 0.012)),
    rgba(2, 5, 8, 0.52);
  padding: 12px 13px;
}

.tas-official-home .tas-home-site-pill span {
  max-width: 28ch;
  color: rgba(235, 229, 218, 0.6);
  font-size: 11.5px;
  line-height: 1.24;
}

.tas-official-home .tas-home-site-pill.is-live span {
  color: rgba(235, 229, 218, 0.72);
}

.tas-official-home .tas-home-era-strip,
.tas-official-home .tas-home-era-strip:is(div) {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.26fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 44px);
  width: min(1180px, calc(100% - 48px));
  margin: clamp(38px, 5vw, 70px) auto 0;
  border: 0;
  border-top: 1px solid rgba(216, 173, 106, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(24px, 3vw, 38px) 0 0;
  backdrop-filter: none;
}

.tas-official-home .tas-home-era-heading {
  gap: 9px;
  padding: 0;
}

.tas-official-home .tas-home-era-heading strong {
  display: block;
  max-width: 17ch;
  color: #fff6e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.2vw, 37px);
  font-weight: 500;
  line-height: 1.02;
}

.tas-official-home .tas-home-era-strip ol {
  grid-column: 2;
  grid-row: 1 / span 2;
  column-gap: clamp(14px, 2vw, 30px);
}

.tas-official-home .tas-home-era-strip ol::before {
  top: 13px;
  right: 9%;
  left: 6%;
}

.tas-official-home .tas-home-era-strip li {
  padding-top: 32px;
}

.tas-official-home .tas-home-era-strip li span {
  display: block;
  max-width: 25ch;
  color: rgba(235, 229, 218, 0.64);
  font-size: 13px;
  line-height: 1.35;
}

.tas-official-home .tas-home-era-strip > a {
  grid-column: 1;
  justify-self: start;
  align-self: end;
  display: inline-flex;
}

@media (max-width: 980px) {
  .tas-official-home .tas-orientation-copy,
  .tas-official-home .tas-home-sites-rail,
  .tas-official-home .tas-home-era-strip,
  .tas-official-home .tas-home-era-strip:is(div) {
    grid-template-columns: 1fr;
  }

  .tas-official-home .tas-home-sites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tas-official-home .tas-home-era-strip ol {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .tas-official-home .tas-excavation-hero {
    min-height: 820px;
  }

  .tas-official-home .tas-excavation-pillar {
    bottom: -138px;
    opacity: 0.38;
  }

  .tas-official-home .tas-excavation-hero + .tas-orientation-band {
    margin-top: 0;
    padding-top: 44px;
  }

  .tas-official-home .tas-orientation-band {
    padding: 44px 20px 18px;
  }

  .tas-official-home .tas-orientation-heading h2 {
    max-width: 8ch;
    font-size: clamp(38px, 12vw, 52px);
  }

  .tas-official-home .tas-orientation-copy > h2 {
    max-width: 11ch;
    font-size: clamp(36px, 11vw, 52px);
  }

  .tas-official-home .tas-orientation-lede {
    padding-top: 16px;
  }

  .tas-home-map-band {
    padding: 8px 20px 0;
  }

  .tas-home-map-band .tas-network-map-panel,
  .tas-official-home .tas-home-map-band .tas-network-map-panel {
    min-height: 310px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 82%, transparent 100%);
  }

  .tas-home-map-band .tas-network-map-panel .tas-network-sites,
  .tas-home-map-band .tas-network-map-panel .tas-network-svg {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .tas-official-home .tas-home-sites-rail {
    width: calc(100% - 40px);
    margin-top: 26px;
  }

  .tas-official-home .tas-home-sites-grid {
    grid-template-columns: 1fr;
  }

  .tas-official-home .tas-home-site-pill {
    min-height: 64px;
  }

  .tas-official-home .tas-home-era-strip,
  .tas-official-home .tas-home-era-strip:is(div) {
    width: calc(100% - 40px);
    margin-top: 34px;
  }

  .tas-official-home .tas-home-era-strip ol {
    grid-template-columns: 1fr;
  }

  .tas-official-home .tas-home-era-strip ol::before,
  .tas-official-home .tas-home-era-strip li::before {
    display: none;
  }

  .tas-official-home .tas-home-era-strip li {
    padding-top: 0;
  }
}

/* Final Göbekli profile stage repair: map-first rhythm, single-view base map, calmer inspection packet. */
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.atomic-hero {
  height: auto;
  min-height: clamp(430px, 62svh, 560px);
  padding: clamp(26px, 3.2vw, 44px) 0 clamp(28px, 3.6vw, 48px);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero .gobekli-hero-shell {
  min-height: 0;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.gobekli-light-header h1 {
  font-size: clamp(50px, 6.2vw, 92px);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.gobekli-light-header .atomic-hero-summary {
  font-size: clamp(22px, 2.3vw, 32px);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.gobekli-light-header .atomic-thesis {
  font-size: clamp(15px, 1vw, 18px);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero .gobekli-feature-card {
  bottom: clamp(16px, 2.3vw, 30px);
  width: min(330px, calc(100% - 44px));
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-index {
  height: 54px;
  border-radius: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  gap: clamp(8px, 2.4vw, 38px);
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.95), rgba(3, 7, 10, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(126, 213, 255, 0.08), transparent 34%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-index a {
  min-height: 34px;
  padding: 0 10px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 760;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page).atomic-site-page > .atomic-page-index.nav-pinned + .atomic-page-body {
  padding-top: 54px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section {
  margin-top: 0;
  padding: clamp(10px, 1.3vw, 18px);
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(75, 205, 255, 0.09), transparent 46%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.98), rgba(3, 7, 10, 0.94));
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-site-map {
  display: flex;
  justify-content: center;
  background: transparent;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-site-map-frame {
  --gobekli-map-stage-height: clamp(440px, calc(100svh - 120px), 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--gobekli-map-stage-height);
  min-height: 0;
  border: 1px solid rgba(126, 213, 255, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(21, 73, 92, 0.22), transparent 62%),
    #020609;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-crop {
  position: relative;
  inset: auto;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 724 / 543;
  transform-origin: center;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-site-map-frame::before {
  height: 64px;
  background: linear-gradient(180deg, rgba(3, 7, 10, 0.72), rgba(3, 7, 10, 0));
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-drawer {
  width: min(330px, calc(100vw - 40px));
  max-height: min(440px, calc(100% - 36px));
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-close {
  width: 44px;
  height: 44px;
}

@media (max-width: 980px) {
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.atomic-hero {
    min-height: auto;
    padding: 34px 0 28px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-index {
    height: 48px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page).atomic-site-page > .atomic-page-index.nav-pinned + .atomic-page-body {
    padding-top: 48px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section {
    padding: 8px;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-site-map-frame {
    --gobekli-map-stage-height: min(72svh, 610px);
  }
}

/* Final nav compactness override for the Göbekli dossier index. */
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) > .atomic-page-index,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-index {
  height: 54px !important;
  min-height: 54px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) > .atomic-page-index a,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-index a {
  min-height: 34px !important;
  font-size: clamp(12px, 1vw, 14px) !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page).atomic-site-page > .atomic-page-index.nav-pinned + .atomic-page-body {
  padding-top: 54px !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-drawer {
  gap: 8px;
  width: min(310px, calc(100vw - 40px));
  max-height: min(390px, calc(100% - 36px));
  padding: 14px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-drawer-media {
  max-height: 116px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-drawer-intro {
  font-size: 13px;
  line-height: 1.36;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-drawer-group {
  gap: 6px;
  padding-top: 9px;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-drawer-group li {
  grid-template-columns: minmax(66px, 0.36fr) minmax(0, 1fr);
  gap: 7px;
  padding-top: 5px;
}

/* Göbekli visual repair: keep the hero readable, make the map primary, stabilize chronology, and calm the structure chooser. */
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.atomic-hero {
  min-height: min(690px, 100svh) !important;
  padding: clamp(28px, 3.6vw, 50px) 0 clamp(18px, 2.6vw, 34px) !important;
  overflow: hidden;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero .gobekli-hero-shell {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr) !important;
  max-width: 1560px !important;
  min-height: min(608px, calc(100svh - 82px)) !important;
  padding-inline: clamp(28px, 5vw, 86px) !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero .gobekli-hero-copy {
  align-self: center;
  max-width: 660px !important;
  padding-top: 0;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.gobekli-light-header h1 {
  max-width: 7.8ch !important;
  font-size: clamp(58px, 6.8vw, 104px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.04em !important;
  overflow: visible;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.gobekli-light-header .atomic-hero-summary {
  max-width: 13.5ch !important;
  font-size: clamp(24px, 2.6vw, 36px) !important;
  line-height: 1.06 !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.gobekli-light-header .atomic-thesis {
  max-width: 58ch !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .atomic-page-body {
  width: min(1240px, calc(100vw - 44px)) !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section {
  position: relative;
  left: 50%;
  width: min(1680px, calc(100vw - 20px)) !important;
  max-width: calc(100vw - 20px) !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  transform: translateX(-50%);
  padding: clamp(8px, 1vw, 14px) !important;
  border-color: rgba(126, 213, 255, 0.14) !important;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(75, 205, 255, 0.13), transparent 48%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.99), rgba(3, 7, 10, 0.95)) !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-site-map-frame {
  --gobekli-map-stage-height: clamp(540px, calc(100svh - 156px), 780px);
  height: var(--gobekli-map-stage-height) !important;
  border-radius: 18px !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-crop {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-map-crop img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-shell {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr) !important;
  gap: 18px !important;
  height: 400px !important;
  min-height: 400px !important;
  align-items: stretch !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-steps {
  min-height: 244px !important;
  align-self: start;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step {
  min-height: 244px !important;
  padding: 54px 16px 18px !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step::before {
  width: 15px !important;
  height: 15px !important;
  transform: none !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step:hover::before,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step:focus-visible::before,
.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step.active::before {
  transform: none !important;
  box-shadow:
    0 0 0 8px rgba(83, 204, 255, 0.12),
    0 0 32px rgba(83, 204, 255, 0.56) !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-detail {
  min-height: 244px !important;
  padding: 20px !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-structures {
  padding-top: clamp(44px, 5vw, 72px) !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-doorways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile {
  height: clamp(210px, 18vw, 260px) !important;
  aspect-ratio: auto !important;
  border-color: rgba(232, 217, 193, 0.12);
  border-radius: 18px;
  background: rgba(9, 10, 11, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.22);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile {
  height: clamp(210px, 18vw, 260px) !important;
  border-radius: 18px !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2) 34%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 82% 12%, rgba(199, 163, 106, 0.2), transparent 28%);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile-copy {
  grid-template-columns: 1fr auto;
  align-content: end;
  align-items: end;
  gap: 6px 10px;
  padding: clamp(16px, 1.7vw, 22px);
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile-copy {
  gap: 6px 10px !important;
  padding: clamp(16px, 1.7vw, 22px) !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile-copy small {
  color: #c7a36a;
  font-size: 11px !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile-copy strong {
  font-size: clamp(20px, 1.7vw, 28px);
  text-transform: none;
  letter-spacing: 0;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-structure-strip .gobekli-enclosure-tile-copy strong {
  font-size: clamp(20px, 1.7vw, 27px) !important;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile-copy span {
  grid-column: 1 / -1;
  max-width: 36ch;
  color: rgba(255, 248, 237, 0.76);
  font-size: 13.5px;
  font-weight: 520;
  line-height: 1.38;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile-copy b {
  color: #80dcff;
  font-size: 13px;
  font-weight: 760;
}

.gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile-copy em {
  align-self: end;
  color: #80dcff;
}

@media (max-width: 1080px) {
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero .gobekli-hero-shell {
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: 0 !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.gobekli-light-header h1 {
    max-width: 9ch !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-shell {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-doorways {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.atomic-hero {
    min-height: auto !important;
    padding: 30px 0 28px !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) #gobekli-hero.gobekli-light-header h1 {
    font-size: clamp(48px, 16vw, 72px) !important;
    line-height: 0.98 !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section {
    width: calc(100vw - 12px) !important;
    max-width: calc(100vw - 12px) !important;
    padding: 6px !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-map-section .interactive-site-map-frame {
    --gobekli-map-stage-height: min(78svh, 680px);
    min-height: 520px !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-steps,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-step,
  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-chronology-detail {
    min-height: 0 !important;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-doorways {
    grid-template-columns: 1fr;
  }

  .gobekli-public-page:not(.karahan-public-page):not(.sayburc-public-page):not(.universal-public-page) .gobekli-enclosure-tile {
    aspect-ratio: 1.45 / 1;
  }
}

@media (min-width: 1081px) {
  .atomic-site-page.gobekli-public-page .gobekli-chronology-shell {
    height: 400px !important;
    min-height: 400px !important;
    align-items: stretch !important;
  }

  .atomic-site-page.gobekli-public-page .gobekli-chronology-detail {
    height: 100% !important;
  }
}

/* Homepage reveal correction: keep the map as the chooser, make the scroll copy feel uncovered. */
.tas-official-home .tas-excavation-hero {
  min-height: clamp(720px, 98svh, 900px);
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255, 246, 232, 0.07), transparent 30%),
    radial-gradient(ellipse at 50% 98%, rgba(216, 173, 106, 0.08), transparent 34%),
    #010306;
}

.tas-official-home .tas-excavation-copy {
  gap: clamp(11px, 1.4vw, 18px);
  min-height: clamp(720px, 98svh, 900px);
  padding-bottom: clamp(118px, 14vw, 184px);
}

.tas-official-home .tas-excavation-line-main {
  max-width: 11.4ch;
  transform: translateY(calc(var(--excavation-progress) * -10px));
  transition: opacity 120ms linear;
}

.tas-official-home .tas-excavation-reveal {
  display: grid;
  gap: clamp(8px, 1vw, 12px);
  max-width: min(660px, calc(100vw - 48px));
  margin-top: clamp(2px, 0.5vw, 8px);
  animation: none;
}

.tas-official-home .tas-excavation-reveal span,
.tas-official-home .tas-excavation-reveal strong {
  display: block;
  color: rgba(255, 246, 232, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
  text-shadow:
    0 30px 88px rgba(0, 0, 0, 0.9),
    0 0 42px rgba(216, 173, 106, 0.1);
  will-change: opacity, transform;
}

.tas-official-home .tas-excavation-reveal span {
  font-size: clamp(19px, 1.75vw, 30px);
  opacity: clamp(0, calc((var(--excavation-progress) - 0.06) * 5), 1);
  transform: translateY(calc((1 - var(--excavation-progress)) * 14px));
}

.tas-official-home .tas-excavation-reveal strong {
  font-size: clamp(24px, 2.4vw, 42px);
  opacity: clamp(0, calc((var(--excavation-progress) - 0.34) * 4.2), 1);
  transform: translateY(calc((1 - var(--excavation-progress)) * 20px));
}

.tas-official-home .tas-excavation-reveal::before,
.tas-official-home .tas-excavation-reveal::after {
  opacity: clamp(0, calc((var(--excavation-progress) - 0.24) * 4), 0.72);
}

.tas-official-home .tas-excavation-actions {
  opacity: clamp(0, calc((var(--excavation-progress) - 0.52) * 3.8), 1);
  transform: translateY(calc((1 - var(--excavation-progress)) * 16px));
  will-change: opacity, transform;
}

.tas-home-map-prompt {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin: clamp(2px, 0.6vw, 8px) auto 0;
  border-top: 1px solid rgba(216, 173, 106, 0.14);
  padding: clamp(14px, 1.7vw, 22px) 0 0;
}

.tas-home-map-prompt span {
  color: rgba(235, 229, 218, 0.68);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 640;
  line-height: 1.4;
}

.tas-home-map-prompt a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(216, 173, 106, 0.3);
  border-radius: 999px;
  background: rgba(8, 10, 11, 0.42);
  color: #f4d08f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.tas-home-map-prompt a:hover,
.tas-home-map-prompt a:focus-visible {
  outline: 0;
  border-color: rgba(216, 173, 106, 0.62);
  background: rgba(216, 173, 106, 0.12);
}

@media (max-width: 620px) {
  .tas-official-home .tas-excavation-hero,
  .tas-official-home .tas-excavation-copy {
    min-height: 800px;
  }

  .tas-official-home .tas-excavation-actions {
    grid-template-columns: 1fr;
    width: min(280px, 100%);
    margin-inline: auto;
  }

  .tas-home-map-prompt {
    display: grid;
    width: calc(100% - 40px);
    margin-top: 10px;
  }

  .tas-home-map-prompt a {
    justify-self: start;
  }
}
