:root {
  --bg: #060505;
  --bg-soft: #12100f;
  --panel: rgba(20, 12, 10, 0.9);
  --panel-strong: rgba(34, 18, 13, 0.95);
  --line: rgba(216, 173, 101, 0.3);
  --gold: #f0d28b;
  --gold-soft: #c9a86b;
  --red: #8d2c22;
  --red-bright: #b33d2f;
  --copy: #f5ead3;
  --muted: #d5b88a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--copy);
  background:
    radial-gradient(circle at top, rgba(172, 56, 37, 0.24), transparent 32%),
    linear-gradient(180deg, #1d0907 0%, #090707 28%, #040303 100%);
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: #ffe5aa;
}

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

.tal-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.tal-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.tal-hero,
.tal-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 211, 128, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(44, 18, 12, 0.92), rgba(13, 10, 9, 0.96));
  box-shadow: var(--shadow);
}

.tal-hero {
  padding: clamp(28px, 5vw, 48px);
  margin-bottom: 24px;
}

.tal-hero::before,
.tal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 198, 120, 0.08), transparent 30%, transparent 70%, rgba(173, 52, 34, 0.12));
  pointer-events: none;
}

.tal-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.tal-kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(240, 210, 139, 0.24);
  background: rgba(240, 210, 139, 0.08);
  color: #f5dca8;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tal-hero h1,
.tal-panel h2,
.tal-panel h3 {
  margin: 0;
  line-height: 1.05;
  color: #fff3d1;
}

.tal-hero h1 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.tal-subtitle {
  margin: 10px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #f1ca77;
}

.tal-hero p,
.tal-panel p,
.tal-panel li {
  position: relative;
  color: var(--copy);
  line-height: 1.7;
}

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

.tal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 122, 0.32);
  background: linear-gradient(180deg, #b5412f 0%, #702218 100%);
  color: #fff4df;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(121, 32, 19, 0.35);
}

.tal-button:hover {
  color: #fff8ec;
  transform: translateY(-1px);
}

.tal-button.secondary {
  background: linear-gradient(180deg, rgba(240, 210, 139, 0.14), rgba(240, 210, 139, 0.05));
  color: var(--gold);
  box-shadow: none;
}

.tal-preview {
  position: relative;
  min-height: 300px;
}

.tal-preview-stack {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto;
}

.tal-preview-stack img {
  border-radius: 18px;
  border: 1px solid rgba(255, 219, 157, 0.26);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  background: #160d0a;
}

.tal-preview-stack img:nth-child(2),
.tal-preview-stack img:nth-child(3) {
  position: absolute;
  inset: 0;
}

.tal-preview-stack img:nth-child(1) {
  transform: rotate(-8deg) translate(-18px, 22px);
}

.tal-preview-stack img:nth-child(2) {
  transform: rotate(7deg) translate(28px, -14px);
}

.tal-preview-stack img:nth-child(3) {
  position: relative;
  transform: none;
}

.tal-main {
  display: grid;
  gap: 24px;
}

.tal-panel {
  padding: 24px;
}

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

.tal-section-head p {
  margin: 0;
  color: var(--muted);
}

.tal-info-grid,
.tal-gallery-grid,
.tal-link-grid {
  display: grid;
  gap: 16px;
}

.tal-info-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tal-info-card,
.tal-link-card,
.tal-gallery-card {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(240, 210, 139, 0.16);
  background: linear-gradient(180deg, rgba(255, 221, 165, 0.06), rgba(22, 14, 11, 0.82));
}

.tal-info-card strong,
.tal-link-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff2cb;
  font-size: 1.02rem;
}

.tal-info-card p,
.tal-link-card p,
.tal-gallery-card p {
  margin: 0;
  color: var(--muted);
}

.tal-gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tal-gallery-card {
  padding: 12px;
}

.tal-gallery-card img {
  aspect-ratio: 3 / 5;
  //width: 100%;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.tal-gallery-card.wide img {
  aspect-ratio: 16 / 10;
}

.tal-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tal-list {
  margin: 0;
  padding-left: 20px;
}

.tal-list li + li {
  margin-top: 10px;
}

.tal-note {
  color: var(--muted);
  font-style: italic;
}

.tal-footer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 860px) {
  .tal-hero-grid {
    grid-template-columns: 1fr;
  }

  .tal-preview {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .tal-page {
    width: min(100% - 20px, 1120px);
    padding-top: 20px;
  }

  .tal-hero,
  .tal-panel {
    border-radius: 22px;
  }

  .tal-panel {
    padding: 20px;
  }
}
