:root {
  --bg: #faf8f3;
  --bg-alt: #f1ede4;
  --paper: #ffffff;
  --ink: #15171c;
  --ink-soft: #2a2d36;
  --ink-mute: #5a5f6b;
  --muted: #8b8d95;
  --line: #d8d4c8;
  --line-soft: #ebe7dc;
  --accent: #8b6914;
  --accent-soft: #b8924a;
  --shadow-sm: 0 1px 3px rgba(21, 23, 28, 0.06);
  --shadow: 0 8px 40px rgba(21, 23, 28, 0.12);
  --maxw: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 400;
}

body.en [data-lang="da"] { display: none !important; }
body.da [data-lang="en"] { display: none !important; }

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

/* ────────── Topbar ────────── */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250, 248, 243, 0.92);
}

.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 8px;
  text-transform: uppercase;
}

.brand-text {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink);
}

nav.main {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: opacity .2s ease;
}

nav.main a:hover { opacity: 0.5; }

nav.main a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent);
}

.lang-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
}

.lang-toggle button {
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 6px 12px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.lang-toggle button.active {
  background: var(--ink);
  color: var(--bg);
}

.lang-toggle button:hover:not(.active) {
  background: var(--line-soft);
}

/* ────────── Hero (full-bleed photo) ────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.0) 65%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 60px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  letter-spacing: 6px;
  font-size: 11px;
  text-transform: uppercase;
  color: #f0e7d6;
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 30px;
  max-width: 920px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #fff;
  opacity: 0.85;
}

.hero .lede {
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
  font-style: italic;
  max-width: 640px;
  color: #f0e7d6;
  opacity: 0.92;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 60px;
  z-index: 3;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: #fff;
  opacity: 0.7;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(21, 23, 28, 0.85);
  backdrop-filter: blur(6px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-meta div {
  padding: 26px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #d9cfb9;
}

.hero-meta div:last-child { border-right: 0; }

.hero-meta strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-meta span {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-soft);
}

@media (max-width: 720px) {
  .hero-content { padding: 40px 24px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 24px; }
  .hero-meta strong { font-size: 28px; }
  .hero-scroll { display: none; }
}

/* ────────── Main layout ────────── */
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px 40px;
}

main.wide { max-width: 100%; padding-left: 0; padding-right: 0; }

.section {
  margin-bottom: 140px;
}

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

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
  color: var(--ink);
  max-width: 18ch;
}

h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mute);
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  margin-top: 36px;
  color: var(--ink);
}

p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  max-width: 64ch;
  font-size: 19px;
  line-height: 1.65;
}

p.lead {
  font-size: 24px;
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 30ch;
  font-weight: 400;
}

/* Two-column intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ────────── Full-bleed banner ────────── */
.banner-full {
  position: relative;
  height: 92vh;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
}

.banner-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
}

.banner-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  color: #fff;
  z-index: 2;
}

.banner-text .num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.banner-text h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  max-width: 18ch;
  margin: 0 0 18px;
  line-height: 1;
}

.banner-text p {
  color: #e8e2d0;
  max-width: 56ch;
  font-style: italic;
  font-size: 18px;
  margin: 0;
}

/* ────────── Castle gallery (editorial big-photo) ────────── */
.castle-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.castle {
  position: relative;
}

.castle-photo {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  margin: 0;
}

.castle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}

.castle:hover .castle-photo img { transform: scale(1.03); }

.castle-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
}

.castle-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 60px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  color: #fff;
}

.castle-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.castle-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.9;
  margin: 0 0 12px;
  letter-spacing: -1px;
}

.castle-overlay .place {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #e8e2d0;
  text-transform: uppercase;
}

.castle-body {
  background: var(--bg);
  padding: 80px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.castle-body .side .years {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.castle-body dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.castle-body dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.castle-body dt {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.castle-body dd {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 860px) {
  .castle-body { grid-template-columns: 1fr; padding: 50px 24px; gap: 32px; }
  .castle-photo { height: 70vh; min-height: 420px; }
  .castle-overlay { padding: 36px 24px; }
}

/* ────────── Editorial split (alternating) ────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0;
}

.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }

.split-img {
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
}

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

.split-text {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}

.split-text h2 {
  margin-bottom: 28px;
}

.split-text p { font-size: 18px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.flip { direction: ltr; }
  .split-img { height: 60vh; min-height: 380px; }
  .split-text { padding: 50px 28px; }
}

/* ────────── Index card grid (overview) ────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 60px;
}

.card {
  background: var(--bg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: background .25s ease;
}

.card:hover { background: var(--paper); }

.card .num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.card .year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--ink);
  display: block;
  margin-bottom: 10px;
  letter-spacing: -1px;
  font-weight: 400;
}

.card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.card p {
  font-size: 16px;
  margin: 0;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* ────────── Timeline (refined) ────────── */
.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 0;
  border-left: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 60px;
  padding: 36px 0;
  border-top: 1px solid var(--line-soft);
}

.timeline-item:last-child { border-bottom: 1px solid var(--line-soft); }

.timeline-item .year {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 6px;
}

.timeline-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.timeline-item p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 64ch;
}

@media (max-width: 720px) {
  .timeline-item { grid-template-columns: 1fr; gap: 14px; }
}

/* ────────── Pullquote ────────── */
.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
  padding: 120px 40px;
  max-width: 1000px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.pullquote cite {
  display: block;
  margin-top: 36px;
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ────────── Fact box ────────── */
.fact-box {
  background: var(--paper);
  padding: 44px 48px;
  margin: 48px 0;
  border: 1px solid var(--line-soft);
}

.fact-box h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.fact-box ul {
  list-style: none;
  padding: 0;
}

.fact-box li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
}

.fact-box li:last-child { border-bottom: 0; }

.fact-box li > span:first-child { color: var(--ink-mute); }
.fact-box li > span:last-child { color: var(--ink); font-weight: 500; text-align: right; }

/* ────────── Region grid ────────── */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 60px;
}

.region {
  background: var(--bg);
  padding: 32px 28px;
}

.region small {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.region h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.region ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.region li {
  padding: 8px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}

.region li:last-child { border-bottom: 0; }

/* ────────── Page header (non-hero pages) ────────── */
.page-head {
  position: relative;
  height: 70vh;
  min-height: 440px;
  overflow: hidden;
  color: #fff;
}

.page-head-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.55));
}

.page-head-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.page-head .eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.page-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  margin: 0 0 22px;
  line-height: 0.95;
  letter-spacing: -1px;
  max-width: 18ch;
}

.page-head h1 em { color: #fff; opacity: 0.75; font-style: italic; font-weight: 300; }

.page-head p {
  color: #e8e2d0;
  max-width: 720px;
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
}

/* ────────── Contact / form ────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

.contact-info dl {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-info dl > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-info dt {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info dd {
  font-size: 18px;
  color: var(--ink);
}

form.contact {
  display: grid;
  gap: 22px;
}

form.contact .field {
  display: grid;
  gap: 6px;
}

form.contact label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

form.contact input,
form.contact textarea {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
  resize: none;
}

form.contact input:focus,
form.contact textarea:focus {
  border-bottom-color: var(--accent);
}

form.contact textarea {
  min-height: 140px;
  font-family: 'Cormorant Garamond', serif;
}

form.contact .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 600px) {
  form.contact .field-row { grid-template-columns: 1fr; }
}

form.contact button {
  margin-top: 14px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  padding: 18px 36px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  justify-self: start;
  transition: background .2s ease;
}

form.contact button:hover { background: var(--accent); }

form.contact .form-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
}

.form-success {
  display: none;
  padding: 24px 28px;
  border: 1px solid var(--accent);
  background: var(--paper);
  margin-top: 20px;
  font-size: 16px;
  color: var(--ink);
}

.form-success.show { display: block; }

/* ────────── Footer ────────── */
footer {
  background: var(--ink);
  color: #c9c4b3;
  padding: 100px 40px 40px;
  margin-top: 0;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }

footer h5 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--accent-soft);
  margin-bottom: 22px;
  text-transform: uppercase;
}

footer .brand-foot {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
  font-weight: 400;
}

footer p {
  color: #a09c8e;
  font-size: 16px;
  line-height: 1.6;
  max-width: none;
}

footer ul { list-style: none; }

footer ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

footer a {
  color: #c9c4b3;
  text-decoration: none;
  transition: color .2s ease;
}

footer a:hover { color: var(--accent-soft); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 70px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: #7a7568;
  letter-spacing: 3px;
  text-transform: uppercase;
  flex-wrap: wrap;
}

/* ────────── Cookie banner ────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  margin: 0;
  background: var(--ink);
  color: #e8e2d0;
  padding: 28px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  z-index: 100;
  display: none;
  border-top: 2px solid var(--accent);
}

.cookie-banner.show { display: block; }

.cookie-banner h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent-soft);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0 0 22px;
  font-size: 15px;
  color: #c9c4b3;
  line-height: 1.6;
  max-width: none;
}

.cookie-banner a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner button {
  background: transparent;
  color: #e8e2d0;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 22px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .15s ease;
}

.cookie-banner button.primary {
  background: var(--accent-soft);
  color: var(--ink);
  border-color: var(--accent-soft);
}

.cookie-banner button:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.cookie-banner button.primary:hover {
  background: #fff;
  border-color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 22px 22px; }
}

/* ────────── Legal pages ────────── */
.legal { max-width: 760px; margin: 0 auto; padding: 100px 40px; }

.legal h2 {
  font-size: 32px;
  margin-top: 56px;
  margin-bottom: 16px;
  max-width: none;
}

.legal h2:first-child { margin-top: 0; }

.legal h3 { font-size: 22px; margin-top: 30px; margin-bottom: 10px; }

.legal p, .legal li {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: none;
}

.legal ul { margin-left: 22px; margin-bottom: 18px; }
.legal ul li { margin-bottom: 8px; }

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 16px;
}

.legal table th, .legal table td {
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.legal table th {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.legal table code {
  font-family: 'JetBrains Mono', 'Menlo', monospace;
  font-size: 13px;
  color: var(--accent);
  background: var(--bg-alt);
  padding: 2px 6px;
}

.divider {
  text-align: center;
  margin: 60px 0;
  font-family: 'Cinzel', serif;
  color: var(--muted);
  letter-spacing: 8px;
  font-size: 11px;
}

/* ────────── Hamburger / mobile nav ────────── */
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 6px 14px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .topbar-inner { padding: 16px 24px; }
  nav.main { display: none; }
  nav.main.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding: 22px 0 10px;
    border-top: 1px solid var(--line-soft);
    margin-top: 14px;
  }
  .menu-btn { display: block; }
  .topbar-inner { flex-wrap: wrap; }
}

/* ────────── Misc ────────── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.chip {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: 6px 12px;
}

figure { margin: 0; }
figcaption {
  margin-top: 14px;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.3px;
}
