/* ============================================================
   TeaterHotellet · v2 · Editorial boutique-hotel
   Palette: dyb sort + off-white + burgundy som signaturfarve
   Typografi: Cormorant Garamond (display) + Inter (brød)
   ============================================================ */

:root {
    /* Palette */
    --th-ink:        #0E0E0C;
    --th-ink-soft:   #2A2622;
    --th-paper:      #F7F4ED;
    --th-paper-soft: #EFE9DD;
    --th-paper-warm: #E9E0CF;
    --th-wine:       #5C2A3A;
    --th-wine-deep:  #3F1B27;
    --th-bronze:     #9C7548;
    --th-bronze-soft:#B89466;
    --th-line:       rgba(14, 14, 12, 0.10);
    --th-line-warm:  rgba(247, 244, 237, 0.18);

    /* Typografi (2 fonts, strammet skala til 5 niveauer) */
    --th-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
    --th-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Skala: kun 5 hovedstørrelser */
    --th-fs-hero:  clamp(3.6rem, 7vw + 1rem, 7.2rem);   /* hero H1 (kæmpe) */
    --th-fs-h1:    clamp(2.4rem, 3vw + 1rem, 3.8rem);   /* sektion-overskrift */
    --th-fs-h2:    clamp(1.8rem, 2vw + 0.8rem, 2.6rem); /* under-overskrift */
    --th-fs-h3:    1.15rem;                              /* sub-titel */
    --th-fs-lead:  1.125rem;                             /* lead-tekst */
    --th-fs-body:  16px;
    --th-fs-small: 13px;
    --th-fs-eyebrow: 11px;

    /* Layout (mere kompakt) */
    --th-maxw:    1320px;
    --th-maxw-narrow: 880px;
    --th-gutter:  32px;
    --th-section: clamp(56px, 6vw, 96px);
    --th-section-lg: clamp(72px, 8vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--th-body);
    font-size: var(--th-fs-body);
    line-height: 1.65;
    color: var(--th-ink);
    background: var(--th-paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1em; max-width: 60ch; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.75; }

/* ====== Typografi (stramt system) ====== */
h1, h2, h3, h4, h5 {
    font-family: var(--th-display);
    font-weight: 400;
    color: var(--th-ink);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
}
/* Hero H1 = den eneste sted med kæmpe display */
.th-hero__title { font-family: var(--th-display); font-weight: 400; font-size: var(--th-fs-hero); line-height: 1.04; letter-spacing: -0.015em; }
/* Sektion-overskrifter */
.th-h1 { font-size: var(--th-fs-h1); font-weight: 400; }
.th-h2 { font-size: var(--th-fs-h2); font-weight: 400; }
/* Sub-titel og rene Inter-overskrifter */
.th-h3 { font-size: var(--th-fs-h3); font-weight: 600; font-family: var(--th-body); letter-spacing: 0.02em; }
/* Lead-tekst */
.th-lead { font-size: var(--th-fs-lead); line-height: 1.6; color: var(--th-ink-soft); max-width: 56ch; }

/* Kursiv accent (kun ÉT sted: hero-em + romertal-prefix) */
.th-hero__title em { font-style: italic; font-weight: 400; color: var(--th-bronze-soft); }
.th-h1 em, .th-h2 em { font-style: italic; font-weight: 400; color: var(--th-wine); }

/* Eyebrow: Inter caps med tynd linje (erstatter romertal hvis brugt) */
.th-roman, .th-caps {
    display: inline-block;
    font-family: var(--th-body);
    font-size: var(--th-fs-eyebrow);
    letter-spacing: 0.28em;
    color: var(--th-bronze);
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-left: 36px;
    font-weight: 600;
}
.th-roman::before, .th-caps::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 24px; height: 1px;
    background: var(--th-bronze);
}

.th-skiplink {
    position: absolute; left: -9999px; top: 0;
    background: var(--th-ink); color: var(--th-paper); padding: 12px 18px; z-index: 9999;
}
.th-skiplink:focus { left: 16px; top: 16px; }

/* ====== Container ====== */
.th-container { max-width: var(--th-maxw); margin: 0 auto; padding: 0 var(--th-gutter); }
.th-container--narrow { max-width: var(--th-maxw-narrow); margin: 0 auto; padding: 0 var(--th-gutter); }

/* ====== Knapper (linje-underline + minimal rect) ====== */
.th-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border: 1px solid currentColor;
    background: transparent;
    color: var(--th-ink);
    font-family: var(--th-body);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    border-radius: 0;
    text-decoration: none;
    line-height: 1;
}
.th-btn:hover { background: var(--th-ink); color: var(--th-paper); opacity: 1; }

.th-btn--primary { background: var(--th-ink); color: var(--th-paper); border-color: var(--th-ink); }
.th-btn--primary:hover { background: var(--th-wine); border-color: var(--th-wine); color: var(--th-paper); }

.th-btn--wine { background: var(--th-wine); color: var(--th-paper); border-color: var(--th-wine); }
.th-btn--wine:hover { background: var(--th-wine-deep); border-color: var(--th-wine-deep); }

.th-btn--light { color: var(--th-paper); border-color: var(--th-paper); }
.th-btn--light:hover { background: var(--th-paper); color: var(--th-ink); }

/* Tekst-link med tynd underline-animation */
.th-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--th-body);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--th-ink);
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
}
.th-link:hover { color: var(--th-wine); opacity: 1; }
.th-link--light { color: var(--th-paper); }
.th-link--light:hover { color: var(--th-bronze-soft); }

/* ====== Header (over hero, sticky efter scroll) ====== */
.th-header {
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 50;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;
}
.th-header.is-sticky {
    position: fixed; top: 0;
    background: rgba(247, 244, 237, 0.98);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--th-line);
}
.th-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 24px var(--th-gutter);
    max-width: var(--th-maxw); margin: 0 auto;
    transition: padding 0.3s ease;
}
.th-header.is-sticky .th-header__inner { padding: 14px var(--th-gutter); }

.th-header__logo { display: inline-block; flex-shrink: 0; }
.th-logo {
    font-family: var(--th-display);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.01em;
    color: var(--th-ink);
    line-height: 1;
    display: inline-block;
}
.th-logo small {
    display: block;
    font-family: var(--th-body);
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--th-bronze);
    margin-top: 5px;
    font-weight: 500;
}
.th-header.is-sticky .th-logo { font-size: 22px; }
.th-header.is-sticky .th-logo small { font-size: 8px; margin-top: 3px; }

/* Over mørk hero: lyse farver med subtil tekstskygge */
.th-header:not(.is-sticky):not(.is-light) .th-logo { color: var(--th-paper); text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.th-header:not(.is-sticky):not(.is-light) .th-logo small { color: var(--th-bronze-soft); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.th-header:not(.is-sticky):not(.is-light) .th-nav__list a { color: var(--th-paper); text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.th-header:not(.is-sticky):not(.is-light) .th-burger span { background: var(--th-paper); }
.th-header:not(.is-sticky):not(.is-light) .th-header__phone { color: var(--th-paper); text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
/* Når header er light (ingen mørk hero) eller sticky: ink farver */
.th-header.is-light { background: rgba(247, 244, 237, 0.98); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--th-line); }

.th-nav { flex: 1; display: flex; justify-content: center; }
.th-nav__list {
    display: flex; gap: 32px;
    list-style: none; margin: 0; padding: 0;
    align-items: center;
}
.th-nav__list a {
    color: var(--th-ink);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}
.th-nav__list a::after {
    content: "";
    position: absolute; left: 0; bottom: 0; right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.th-nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }

.th-header__right {
    display: flex; gap: 24px; align-items: center; flex-shrink: 0;
}
.th-header__phone {
    font-family: var(--th-body);
    font-size: 13px; letter-spacing: 0.06em;
    color: var(--th-ink);
    font-weight: 500;
    text-decoration: none;
}
.th-header.is-sticky .th-header__phone { font-size: 12px; }

.th-burger { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; flex-direction: column; gap: 5px; }
.th-burger span { width: 24px; height: 1px; background: var(--th-ink); display: block; }

/* ====== Hero ====== */
.th-hero {
    position: relative;
    min-height: 82vh;
    color: var(--th-paper);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 140px var(--th-gutter) 80px;
}
.th-hero__bg, .th-hero__bg-stack { position: absolute; inset: 0; z-index: 0; }
.th-hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: th-hero-fade 24s infinite ease-in-out;
}
.th-hero__bg-stack .th-hero__img:nth-child(1) { animation-delay: 0s; }
.th-hero__bg-stack .th-hero__img:nth-child(2) { animation-delay: 8s; }
.th-hero__bg-stack .th-hero__img:nth-child(3) { animation-delay: 16s; }
@keyframes th-hero-fade {
    0%, 28%   { opacity: 0.62; }
    35%, 92%  { opacity: 0; }
    100%      { opacity: 0.62; }
}
.th-hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(95deg, rgba(14,14,12,0.92) 0%, rgba(14,14,12,0.78) 25%, rgba(14,14,12,0.45) 50%, rgba(14,14,12,0.15) 75%, rgba(14,14,12,0) 100%),
        linear-gradient(180deg, rgba(14,14,12,0.55) 0%, rgba(14,14,12,0.15) 25%, rgba(14,14,12,0.15) 55%, rgba(14,14,12,0.85) 100%);
}
.th-hero__inner {
    position: relative; z-index: 2;
    max-width: var(--th-maxw); margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}
.th-hero__lead-block {
    max-width: 720px;
    position: relative;
}
.th-hero__lead-block::before {
    content: "";
    position: absolute;
    left: -40px; right: -40px;
    top: -40px; bottom: -40px;
    background: radial-gradient(ellipse at left center, rgba(14,14,12,0.55) 0%, rgba(14,14,12,0.35) 40%, rgba(14,14,12,0) 75%);
    z-index: -1;
    pointer-events: none;
    filter: blur(20px);
}
.th-hero__welcome {
    font-family: var(--th-display);
    font-style: italic;
    font-size: 22px;
    color: var(--th-bronze-soft);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.th-hero__title {
    /* font-size styres af regel i typografi-blok via --th-fs-hero */
    margin: 0 0 28px;
    color: var(--th-paper);
    text-shadow: 0 4px 28px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
.th-hero__sub { text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.th-hero__sub {
    font-size: 17px;
    color: var(--th-paper);
    opacity: 0.85;
    max-width: 520px;
    margin: 0 0 36px;
}
.th-hero__cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.th-hero__scroll {
    position: absolute; left: 50%; bottom: 32px;
    transform: translateX(-50%);
    color: var(--th-paper);
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    z-index: 2;
    opacity: 0.7;
}
.th-hero__scroll::after {
    content: ""; display: block;
    width: 1px; height: 40px;
    background: var(--th-paper);
    margin: 12px auto 0;
    animation: th-scroll 2s infinite ease-in-out;
}
@keyframes th-scroll { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.6); transform-origin: top; } }

/* ====== Booking-stripe (under hero) ====== */
.th-bookstripe {
    background: var(--th-ink);
    color: var(--th-paper);
    padding: 22px var(--th-gutter);
}
.th-bookstripe__inner {
    max-width: var(--th-maxw); margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}
.th-bookstripe__title {
    font-family: var(--th-display);
    font-style: italic;
    font-size: 22px;
    color: var(--th-bronze-soft);
}
.th-bookstripe form {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr auto;
    gap: 16px;
    align-items: end;
}
.th-bookstripe__field { display: flex; flex-direction: column; gap: 4px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--th-bronze); font-weight: 600; }
.th-bookstripe__field input,
.th-bookstripe__field select {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--th-line-warm);
    padding: 8px 0;
    color: var(--th-paper);
    font-family: var(--th-body);
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    min-width: 0;
}
.th-bookstripe__field input:focus,
.th-bookstripe__field select:focus { outline: 0; border-bottom-color: var(--th-bronze); }

/* ====== Sektion base ====== */
.th-section { padding: var(--th-section) 0; }
.th-section--lg { padding: var(--th-section-lg) 0; }
.th-section--compact { padding: clamp(48px, 6vw, 80px) 0; }

/* reveal-animationer fjernet i v2.5 */
.th-reveal { opacity: 1; transform: none; }
.th-section--ink { background: var(--th-ink); color: var(--th-paper); }
.th-section--ink h1, .th-section--ink h2, .th-section--ink h3 { color: var(--th-paper); }
.th-section--ink .th-lead { color: rgba(247, 244, 237, 0.78); }
.th-section--ink .th-roman { color: var(--th-bronze-soft); }
.th-section--ink .th-roman::before { background: var(--th-bronze-soft); }
.th-section--paper-soft { background: var(--th-paper-soft); }
.th-section--paper-warm { background: var(--th-paper-warm); }

/* ====== Intro / Velkomst ====== */
.th-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
.th-intro__copy { max-width: 540px; }
.th-intro__copy p:first-of-type::first-letter {
    font-family: var(--th-display);
    font-size: 5.4em;
    line-height: 0.9;
    float: left;
    margin: 0.05em 0.12em 0 0;
    color: var(--th-wine);
    font-weight: 400;
}
.th-intro__visual {
    position: relative;
    padding: 0 24px 24px 0;
}
.th-intro__visual::before {
    content: "";
    position: absolute;
    inset: 24px 0 0 24px;
    border: 1px solid var(--th-bronze);
    pointer-events: none;
}
.th-intro__visual img {
    position: relative;
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    z-index: 1;
    max-height: 640px;
}
.th-intro__sign {
    font-family: var(--th-display);
    font-style: italic;
    font-size: 24px;
    color: var(--th-wine);
    margin-top: 20px;
}

/* ====== Vaerelser (editorial-præsentation) ====== */
.th-rooms { display: flex; flex-direction: column; gap: clamp(60px, 7vw, 110px); }
.th-room {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}
.th-room:nth-child(even) {
    grid-template-columns: 5fr 7fr;
}
.th-room:nth-child(even) .th-room__media { order: 2; }
.th-room:nth-child(even) .th-room__body  { order: 1; }
.th-room__media { position: relative; overflow: hidden; display: block; cursor: pointer; }
.th-room__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1s cubic-bezier(0.2, 0.6, 0.2, 1); }
.th-room__media:hover img { transform: scale(1.04); }
.th-room__num {
    position: absolute; top: -24px; left: -16px;
    font-family: var(--th-display);
    font-style: italic;
    font-size: 80px;
    color: var(--th-bronze);
    line-height: 1;
    opacity: 0.4;
}
.th-room__body { max-width: 480px; }
.th-room__name {
    font-family: var(--th-display);
    font-size: clamp(2rem, 3vw + 0.5rem, 3.4rem);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 18px;
}
.th-room__name em { font-style: italic; color: var(--th-wine); }
.th-room__lead { font-size: 17px; color: var(--th-ink-soft); margin-bottom: 22px; max-width: 46ch; }
.th-room__facts {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
    border-top: 1px solid var(--th-line);
    border-bottom: 1px solid var(--th-line);
    padding: 18px 0;
}
.th-room__facts li { font-size: 13px; letter-spacing: 0.06em; }
.th-room__facts strong { display: block; font-family: var(--th-body); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--th-bronze); margin-bottom: 4px; }
.th-room__price {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 24px;
}
.th-room__price-from { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--th-bronze); }
.th-room__price-num {
    font-family: var(--th-display);
    font-size: 44px;
    color: var(--th-ink);
    font-weight: 400;
    line-height: 1;
}
.th-room__cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ====== Inkluderet (i ink/sort sektion, editorial liste) ====== */
.th-included {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--th-line-warm);
}
.th-included__item {
    display: flex; flex-direction: column; gap: 12px;
    text-align: left;
}
.th-included__item span:first-child {
    font-family: var(--th-display);
    font-style: italic;
    font-size: 14px;
    color: var(--th-bronze-soft);
    letter-spacing: 0.1em;
}
.th-included__item strong {
    font-family: var(--th-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--th-paper);
}
.th-included__item p {
    font-size: 14px;
    color: rgba(247, 244, 237, 0.7);
    margin: 0;
    line-height: 1.55;
}

/* ====== Backstage (visuelt forløb) ====== */
.th-backstage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: stretch;
}
.th-backstage__visual { position: relative; min-height: 580px; overflow: hidden; }
.th-backstage__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.th-backstage__copy { padding: 40px 0; max-width: 560px; align-self: center; }
.th-backstage__quote {
    font-family: var(--th-display);
    font-style: italic;
    font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
    line-height: 1.25;
    color: var(--th-paper);
    margin: 28px 0;
    border-left: 1px solid var(--th-bronze);
    padding-left: 28px;
}
.th-backstage__pakker {
    list-style: none; padding: 0; margin: 32px 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--th-line-warm);
}
.th-backstage__pakker li {
    border-bottom: 1px solid var(--th-line-warm);
    padding: 18px 0;
    display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
}
.th-backstage__pakker li:nth-child(odd) { border-right: 1px solid var(--th-line-warm); padding-right: 24px; }
.th-backstage__pakker li:nth-child(even) { padding-left: 24px; }
.th-backstage__pakker strong { font-family: var(--th-display); font-size: 19px; font-weight: 400; color: var(--th-paper); }
.th-backstage__pakker span { font-size: 14px; color: var(--th-bronze-soft); }

/* ====== Ophold / opholdspakker (editorial-cards med stor billede) ====== */
.th-ophold-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.th-ophold-card {
    display: flex; flex-direction: column;
    color: var(--th-ink);
    background: transparent;
}
.th-ophold-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.th-ophold-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2,0.6,0.2,1); }
.th-ophold-card:hover { opacity: 1; }
.th-ophold-card:hover .th-ophold-card__media img { transform: scale(1.05); }
.th-ophold-card:hover .th-ophold-card__name { color: var(--th-wine); }
.th-ophold-card__name { transition: color 0.3s ease; }
.th-ophold-card__num {
    position: absolute; top: 16px; left: 16px;
    font-family: var(--th-display); font-style: italic;
    font-size: 28px; color: var(--th-paper);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.th-ophold-card__body { padding-top: 24px; }
.th-ophold-card__tagline { font-family: var(--th-display); font-style: italic; color: var(--th-wine); font-size: 16px; margin-bottom: 6px; }
.th-ophold-card__name {
    font-family: var(--th-display);
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 10px;
}
.th-ophold-card__short { color: var(--th-ink-soft); font-size: 15px; margin-bottom: 16px; max-width: 38ch; }
.th-ophold-card__meta { display: flex; align-items: baseline; gap: 16px; padding-top: 14px; border-top: 1px solid var(--th-line); }
.th-ophold-card__price { font-family: var(--th-display); font-size: 22px; }
.th-ophold-card__from { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--th-bronze); }

/* ====== Product-grid (værelser som produkter) ====== */
.th-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.th-product {
    display: flex;
    flex-direction: column;
    background: var(--th-paper);
    border: 1px solid var(--th-line);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.th-product:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(14,14,12,0.08); }
.th-product__media { position: relative; overflow: hidden; aspect-ratio: 4/3; display: block; }
.th-product__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2,0.6,0.2,1); }
.th-product:hover .th-product__img { transform: scale(1.05); }
.th-product__badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--th-paper);
    color: var(--th-ink);
    padding: 8px 14px;
    font-family: var(--th-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.th-product__body {
    padding: 24px 28px 28px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.th-product__name {
    font-family: var(--th-display);
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}
.th-product__name a { color: var(--th-ink); }
.th-product__name a:hover { color: var(--th-wine); }
.th-product__tagline {
    font-family: var(--th-display);
    font-style: italic;
    font-size: 16px;
    color: var(--th-wine);
    margin: 0;
}
.th-product__facts {
    list-style: none; padding: 14px 0 0; margin: 0;
    border-top: 1px solid var(--th-line);
    display: flex; flex-direction: column; gap: 8px;
    font-size: 14px;
    color: var(--th-ink-soft);
    flex: 1;
}
.th-product__facts li { display: inline-flex; align-items: center; gap: 8px; }
.th-product__facts .th-icon { color: var(--th-bronze); width: 14px; height: 14px; }
.th-product__cta {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--th-line);
}
.th-product__cta .th-btn { flex: 1; justify-content: center; min-width: 140px; }

/* ====== Kontakt-grid (tre tiles) ====== */
.th-kontakt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--th-line);
}
.th-kontakt-tile {
    padding: 40px 32px;
    border-right: 1px solid var(--th-line);
    color: var(--th-ink);
    display: flex; flex-direction: column; gap: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.th-kontakt-tile:last-child { border-right: 0; }
.th-kontakt-tile:hover { background: var(--th-paper-soft); opacity: 1; }
.th-kontakt-tile__icon { width: 28px; height: 28px; color: var(--th-bronze); margin-bottom: 8px; }
.th-kontakt-tile__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--th-bronze); font-weight: 600; }
.th-kontakt-tile__value { font-family: var(--th-display); font-size: 26px; font-weight: 400; line-height: 1.2; color: var(--th-ink); }
.th-kontakt-tile__note { font-size: 13px; color: var(--th-ink-soft); }

/* ====== Kontakt-split (form + info) ====== */
.th-kontakt-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.th-kontakt-hours {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: flex; flex-direction: column; gap: 0;
    border-top: 1px solid var(--th-line);
}
.th-kontakt-hours li {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--th-line);
    font-size: 15px;
}
.th-kontakt-hours strong { font-weight: 600; color: var(--th-ink); }
.th-kontakt-split__note { margin-top: 24px; color: var(--th-ink-soft); font-size: 15px; }
.th-kontakt-split__map { margin-top: 28px; }
.th-kontakt-split__map iframe { border: 0; width: 100%; height: 280px; }

/* ====== Praktisk-grid ====== */
.th-praktisk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--th-line);
    border-left: 1px solid var(--th-line);
}
.th-praktisk-card {
    padding: 36px 32px;
    border-right: 1px solid var(--th-line);
    border-bottom: 1px solid var(--th-line);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.th-praktisk-card__icon { width: 32px; height: 32px; color: var(--th-bronze); margin-bottom: 8px; }
.th-praktisk-card h3 { font-family: var(--th-display); font-size: 26px; font-weight: 400; margin: 0; }
.th-praktisk-card p { color: var(--th-ink-soft); font-size: 15px; margin: 0; }
.th-praktisk-card__list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.th-praktisk-card__list li { display: flex; justify-content: space-between; gap: 8px; padding: 6px 0; border-bottom: 1px dotted var(--th-line); }
.th-praktisk-card__list li:last-child { border-bottom: 0; }
.th-praktisk-card__list strong { font-weight: 600; color: var(--th-ink); }

/* ====== Hub-grid (Møder og selskaber-hub) ====== */
.th-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.th-hub-card {
    display: flex; flex-direction: column;
    color: var(--th-ink);
    text-decoration: none;
}
.th-hub-card:hover { opacity: 1; }
.th-hub-card:hover .th-h2 { color: var(--th-wine); }
.th-hub-card:hover .th-hub-card__img { transform: scale(1.04); }
.th-hub-card__media { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 24px; }
.th-hub-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2,0.6,0.2,1); }
.th-hub-card__body .th-h2 { transition: color 0.3s ease; margin: 12px 0 12px; }
.th-hub-card__body p { color: var(--th-ink-soft); margin-bottom: 14px; }
.th-hub-card .th-roman { margin-bottom: 4px; }

/* ====== Pakker (Backstage) ====== */
.th-pakker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--th-line); }
.th-pakke {
    padding: 36px 32px 32px;
    border-right: 1px solid var(--th-line);
    border-bottom: 1px solid var(--th-line);
    display: flex; flex-direction: column;
    background: var(--th-paper);
    position: relative;
}
.th-pakke:last-child { border-right: 0; }
.th-pakke__num {
    font-family: var(--th-display); font-style: italic;
    font-size: 14px; letter-spacing: 0.06em;
    color: var(--th-bronze); margin-bottom: 18px;
}
.th-pakke__name { font-family: var(--th-display); font-size: 28px; font-weight: 400; margin: 0 0 8px; }
.th-pakke__time { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--th-bronze-dark, var(--th-bronze)); margin-bottom: 18px; font-weight: 500; }
.th-pakke__includes { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--th-ink-soft); flex: 1; }
.th-pakke__includes li { padding-left: 16px; position: relative; }
.th-pakke__includes li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 8px; height: 1px; background: var(--th-bronze);
}
.th-pakke__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; padding-top: 18px; border-top: 1px solid var(--th-line); }
.th-pakke__price span { font-family: var(--th-display); font-size: 30px; color: var(--th-wine); }
.th-pakke__price small { font-size: 12px; color: var(--th-ink-soft); }

/* ====== Room-hero (single-vaerelse) ====== */
.th-room-hero { margin: 0; position: relative; }
.th-room-hero__img { width: 100%; height: clamp(360px, 50vw, 600px); object-fit: cover; display: block; }
.th-room-aside {
    background: var(--th-paper-soft);
    padding: 36px 32px;
    position: sticky;
    top: 120px;
}
.th-room-features {
    list-style: none; padding: 0; margin: 14px 0 0;
    display: flex; flex-direction: column; gap: 8px;
    font-size: 14px;
}
.th-room-features li { padding-left: 18px; position: relative; }
.th-room-features li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 8px; height: 1px; background: var(--th-bronze);
}

/* ====== Signaturbillede (fullbleed) ====== */
.th-signature { margin: 0; position: relative; overflow: hidden; }
.th-signature__img { width: 100%; height: clamp(320px, 38vw, 540px); object-fit: cover; display: block; }
.th-signature__caption {
    position: absolute; bottom: 28px; left: 40px; right: 40px;
    font-family: var(--th-display);
    font-style: italic;
    font-size: 18px;
    color: var(--th-paper);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    max-width: 60ch;
}

/* ====== Wine Hour (med billed-baggrund) ====== */
.th-winehour-section {
    position: relative;
    overflow: hidden;
    color: var(--th-paper);
    min-height: 460px;
    display: flex;
    align-items: center;
}
.th-winehour-bg { position: absolute; inset: 0; z-index: 0; }
.th-winehour-bg img { width: 100%; height: 100%; object-fit: cover; }
.th-winehour-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(135deg, rgba(14,14,12,0.78) 0%, rgba(63,27,39,0.65) 100%);
}
.th-winehour-inner {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 720px;
}
.th-winehour-inner .th-roman { color: var(--th-bronze-soft); }
.th-winehour-inner .th-roman::before { background: var(--th-bronze-soft); }
.th-winehour-line {
    display: block;
    width: 80px; height: 1px;
    background: var(--th-bronze-soft);
    margin: 28px auto 0;
}

/* ====== Reviews (kæmpe-citat editorial) ====== */
.th-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}
.th-review {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--th-line);
    padding-top: 24px;
}
.th-review__stars { color: var(--th-bronze); margin-bottom: 18px; display: inline-flex; gap: 2px; }
.th-review__stars svg { width: 14px; height: 14px; }
.th-review blockquote {
    margin: 0 0 20px;
    font-family: var(--th-display);
    font-size: clamp(1.4rem, 1.5vw + 0.8rem, 1.9rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--th-ink);
}
.th-review figcaption { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--th-bronze); }
.th-review figcaption strong { display: block; color: var(--th-ink); font-family: var(--th-body); font-weight: 600; }

/* ====== Lokal kontakt ====== */
.th-localcontact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: stretch;
}
.th-localcontact__copy { padding: 20px 0; }
.th-localcontact__copy ul { list-style: none; padding: 0; margin: 32px 0; display: flex; flex-direction: column; gap: 14px; }
.th-localcontact__copy li { font-size: 15px; }
.th-localcontact__copy li strong { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--th-bronze); margin-bottom: 4px; }
.th-localcontact__map iframe { border: 0; width: 100%; height: 100%; min-height: 460px; }

/* ====== FAQ (subtil accordion) ====== */
.th-faq { display: flex; flex-direction: column; }
.th-faq__item { border-bottom: 1px solid var(--th-line); padding: 26px 0; }
.th-faq__item:first-child { border-top: 1px solid var(--th-line); }
.th-faq__item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--th-display);
    font-size: clamp(1.2rem, 1vw + 0.8rem, 1.5rem);
    font-weight: 400;
    color: var(--th-ink);
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.th-faq__item summary::-webkit-details-marker { display: none; }
.th-faq__item summary::after { content: "+"; font-family: var(--th-display); font-size: 28px; color: var(--th-wine); transition: transform 0.3s ease; }
.th-faq__item[open] summary::after { content: "−"; }
.th-faq__item p { margin: 16px 0 0; color: var(--th-ink-soft); max-width: 70ch; }

/* ====== Final CTA ====== */
.th-finalcta {
    text-align: center;
    color: var(--th-paper);
    padding: clamp(120px, 14vw, 200px) var(--th-gutter);
    background: var(--th-ink);
    position: relative;
    overflow: hidden;
}
.th-finalcta__bg { position: absolute; inset: 0; opacity: 0.25; }
.th-finalcta__bg img { width: 100%; height: 100%; object-fit: cover; }
.th-finalcta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.th-finalcta h2 { font-size: clamp(2.4rem, 5vw, 5rem); color: var(--th-paper); margin-bottom: 28px; font-weight: 300; }
.th-finalcta__cta { margin-top: 32px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }

/* ====== Footer ====== */
.th-footer {
    background: var(--th-ink); color: var(--th-paper);
    padding: 90px 0 24px;
    font-size: 14px;
}
.th-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--th-line-warm);
}
.th-footer__brand .th-logo {
    color: var(--th-paper);
    margin-bottom: 28px;
    display: inline-block;
    font-size: 36px;
    font-family: var(--th-display);
    font-weight: 400;
    letter-spacing: 0.01em;
}
.th-footer__brand .th-logo small { color: var(--th-bronze-soft); font-size: 10px; letter-spacing: 0.32em; margin-top: 8px; }
.th-footer__address { color: rgba(247, 244, 237, 0.8); line-height: 1.8; font-size: 15px; }
.th-footer__address a { color: var(--th-paper); border-bottom: 1px solid transparent; }
.th-footer__address a:hover { border-color: var(--th-bronze); }
.th-footer__social { display: flex; gap: 14px; margin-top: 24px; }
.th-footer__social a { color: var(--th-paper); opacity: 0.7; }
.th-footer__social a:hover { opacity: 1; color: var(--th-bronze-soft); }
.th-footer__col h4 {
    font-family: var(--th-body);
    font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--th-bronze);
    margin-bottom: 18px; font-weight: 600;
}
.th-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.th-footer__col a { color: rgba(247, 244, 237, 0.8); }
.th-footer__col a:hover { color: var(--th-paper); }
.th-footer__bottom {
    padding-top: 24px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    color: rgba(247, 244, 237, 0.6);
    font-size: 12px; letter-spacing: 0.06em;
}
.th-footer__bottom a { color: rgba(247, 244, 237, 0.6); }
.th-footer__bottom a:hover { color: var(--th-paper); }
.th-footer__smiley { display: inline-block; margin-top: 14px; font-size: 12px; color: var(--th-bronze-soft); }

/* ====== Floating + sticky ====== */
.th-floating {
    position: fixed; right: 28px; bottom: 28px;
    z-index: 80;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.th-floating.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.th-floating__btn {
    background: var(--th-ink); color: var(--th-paper);
    padding: 14px 22px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(14,14,12,0.3);
    border: 0; cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
}
.th-floating__btn:hover { background: var(--th-wine); opacity: 1; }
.th-stickybar { display: none; }

/* ====== Drawer (mobil) ====== */
.th-drawer {
    display: none;
    visibility: hidden;
    pointer-events: none;
    position: fixed; inset: 0;
    background: var(--th-ink); color: var(--th-paper);
    z-index: 200;
    padding: 40px var(--th-gutter);
}
.th-drawer[aria-hidden="false"] { display: block; visibility: visible; pointer-events: auto; }
.th-drawer__close {
    background: transparent; border: 0; color: var(--th-paper);
    font-size: 32px; line-height: 1; cursor: pointer; padding: 0;
    margin-bottom: 40px;
}
.th-drawer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.th-drawer__list a {
    font-family: var(--th-display);
    font-size: 36px; font-weight: 400;
    color: var(--th-paper);
}
.th-drawer__cta { margin-top: 60px; display: flex; flex-direction: column; gap: 16px; }
.th-drawer__contact { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--th-line-warm); }

/* ====== Cookie ====== */
.th-cookie {
    position: fixed; bottom: 24px; left: 24px; right: 24px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--th-ink); color: var(--th-paper);
    padding: 24px 28px;
    z-index: 250;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.th-cookie__text { font-size: 13px; margin: 0 0 16px; color: rgba(247,244,237,0.85); }
.th-cookie__text a { color: var(--th-bronze-soft); border-bottom: 1px solid currentColor; }
.th-cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ====== Lightbox ====== */
.th-lightbox {
    position: fixed; inset: 0;
    background: rgba(14,14,12,0.96);
    z-index: 300;
    display: none;
    align-items: center; justify-content: center;
    padding: 24px;
}
.th-lightbox.is-open { display: flex; }
.th-lightbox__stage { margin: 0; max-width: 90vw; max-height: 90vh; text-align: center; }
.th-lightbox__img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.th-lightbox__caption { color: var(--th-bronze-soft); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 14px; }
.th-lightbox__close, .th-lightbox__prev, .th-lightbox__next {
    background: transparent; border: 0; color: var(--th-paper);
    font-size: 32px; cursor: pointer; padding: 10px;
}
.th-lightbox__close { position: absolute; top: 24px; right: 24px; }
.th-lightbox__prev  { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); font-size: 48px; }
.th-lightbox__next  { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 48px; }

/* ====== Galleri (editorial-grid) ====== */
.th-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.th-gallery__item { display: block; overflow: hidden; aspect-ratio: 1; }
.th-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.th-gallery__item:hover img { transform: scale(1.05); }
.th-gallery__item--lead { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }

/* ====== Forms (kompakt + 2-kolonne grid) ====== */
.th-form {
    background: var(--th-paper);
    border: 1px solid var(--th-line);
    padding: 28px;
}
.th-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}
.th-form__field {
    display: flex; flex-direction: column;
    gap: 6px;
}
.th-form__field--span2 { grid-column: span 2; }
.th-form__field > span {
    font-family: var(--th-body);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--th-bronze);
    font-weight: 600;
}
.th-form__field > span em { color: var(--th-wine); font-style: normal; }
.th-form input, .th-form textarea, .th-form select {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--th-line);
    padding: 8px 0;
    font: inherit;
    color: var(--th-ink);
    border-radius: 0;
    min-height: 38px;
}
.th-form textarea { resize: vertical; min-height: 80px; }
.th-form input:focus, .th-form textarea:focus, .th-form select:focus {
    outline: 0; border-bottom-color: var(--th-wine);
}
.th-form__honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; }
.th-form__bottom {
    display: flex; justify-content: space-between; align-items: center;
    gap: 18px; flex-wrap: wrap;
    margin-top: 24px; padding-top: 18px;
    border-top: 1px solid var(--th-line);
}
.th-form__consent {
    display: inline-flex; gap: 10px; align-items: center;
    font-size: 13px; color: var(--th-ink-soft);
}
.th-form__consent input { width: 18px; height: 18px; min-height: 0; margin: 0; }
.th-form__consent a { border-bottom: 1px solid currentColor; }

/* Form i ink-baggrund (Backstage-forespørgsel) */
.th-section--ink .th-form { background: rgba(255,255,255,0.04); border-color: var(--th-line-warm); color: var(--th-paper); }
.th-section--ink .th-form input, .th-section--ink .th-form textarea, .th-section--ink .th-form select { color: var(--th-paper); border-bottom-color: var(--th-line-warm); }
.th-section--ink .th-form input:focus, .th-section--ink .th-form textarea:focus, .th-section--ink .th-form select:focus { border-bottom-color: var(--th-bronze); }
.th-section--ink .th-form__field > span { color: var(--th-bronze-soft); }
.th-section--ink .th-form__bottom { border-top-color: var(--th-line-warm); }
.th-section--ink .th-form__consent { color: rgba(247,244,237,0.8); }
.th-section--ink .th-form__consent a { color: var(--th-paper); }

/* ====== Breadcrumb ====== */
.th-breadcrumb {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--th-bronze);
    margin-bottom: 24px;
    display: flex; gap: 10px;
}
.th-breadcrumb__sep { opacity: 0.5; }

/* ====== Pagehero (med billed-baggrund som standard) ====== */
.th-pagehero {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 55vh, 560px);
    padding: clamp(160px, 14vw, 220px) 0 80px;
    color: var(--th-paper);
    display: flex;
    align-items: flex-end;
    background: var(--th-ink);
}
.th-pagehero__bg { position: absolute; inset: 0; z-index: 0; }
.th-pagehero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.th-pagehero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(14,14,12,0.45) 0%, rgba(14,14,12,0) 30%, rgba(14,14,12,0.7) 100%);
}
.th-pagehero .th-container { position: relative; z-index: 2; }
.th-pagehero .th-h1 { font-size: clamp(2.8rem, 5vw + 1rem, 5rem); margin-bottom: 24px; color: var(--th-paper); }
.th-pagehero__lead { font-size: var(--th-fs-lead); color: rgba(247, 244, 237, 0.88); max-width: 60ch; }
.th-pagehero .th-roman { color: var(--th-bronze-soft); margin-bottom: 20px; }
.th-pagehero .th-roman::before { background: var(--th-bronze-soft); }
.th-pagehero .th-breadcrumb,
.th-pagehero .th-breadcrumb a { color: rgba(247, 244, 237, 0.7); }
.th-pagehero .th-breadcrumb a:hover { color: var(--th-paper); }

/* Lys pagehero som alternativ (uden billede) */
.th-pagehero--light {
    background: var(--th-paper-soft); color: var(--th-ink);
    min-height: auto; padding: clamp(140px, 11vw, 180px) 0 70px;
}
.th-pagehero--light .th-h1 { color: var(--th-ink); }
.th-pagehero--light .th-pagehero__lead { color: var(--th-ink-soft); }
.th-pagehero--light .th-roman { color: var(--th-bronze); }
.th-pagehero--light .th-roman::before { background: var(--th-bronze); }
.th-pagehero--light .th-breadcrumb,
.th-pagehero--light .th-breadcrumb a { color: var(--th-bronze); }

/* Misc */
.th-icon { display: inline-flex; width: 18px; height: 18px; flex-shrink: 0; }
.th-icon svg { width: 100%; height: 100%; }
.th-mt { margin-top: 32px; }
.th-mb { margin-bottom: 32px; }
.th-tc { text-align: center; }

/* Prose */
.th-prose { max-width: 70ch; }
.th-prose h2 { margin-top: 1.6em; font-size: clamp(1.6rem, 2vw + 0.8rem, 2.4rem); }
.th-prose h3 { margin-top: 1.4em; }
.th-prose ul { padding-left: 1.4em; }
.th-prose ul li { margin-bottom: 8px; }

/* 404 og tak */
.th-404, .th-tak { text-align: center; padding: 140px 0; max-width: 640px; margin: 0 auto; }
.th-404__links, .th-tak__cta { display: flex; gap: 18px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* Pristrin */
.th-pristrin { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.th-pristrin__card { padding: 40px 36px; border-right: 1px solid var(--th-line); }
.th-pristrin__card:last-child { border-right: 0; }
.th-pristrin__card--featured { background: var(--th-ink); color: var(--th-paper); }
.th-pristrin__card--featured h3, .th-pristrin__card--featured .th-pristrin__rabat { color: var(--th-paper); }
.th-pristrin__level { font-family: var(--th-display); font-style: italic; font-size: 16px; color: var(--th-bronze); margin-bottom: 12px; display: block; }
.th-pristrin__rabat { font-family: var(--th-display); font-size: 40px; color: var(--th-wine); margin: 16px 0; }

/* Opstillinger */
.th-opstillinger { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--th-line-warm); border-bottom: 1px solid var(--th-line-warm); }
.th-opstilling { padding: 32px 24px; border-right: 1px solid var(--th-line-warm); text-align: center; color: var(--th-paper); }
.th-opstilling:last-child { border-right: 0; }
.th-opstilling__icon { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--th-bronze-soft); }
.th-opstilling__icon svg { width: 100%; height: 100%; }
.th-opstilling h3 { font-family: var(--th-display); color: var(--th-paper); margin: 0 0 8px; font-size: 22px; }
.th-opstilling__kapacitet { font-family: var(--th-display); font-style: italic; font-size: 18px; color: var(--th-bronze-soft); }
.th-opstilling__note { font-size: 13px; color: rgba(247,244,237,0.7); margin: 8px 0 0; }

/* Event-cards (Det sker i Horsens) */
.th-event-card { display: flex; flex-direction: column; gap: 16px; }
.th-event-card__img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.th-event-card__date { font-family: var(--th-display); font-style: italic; font-size: 16px; color: var(--th-bronze); }
.th-event-card h3 { font-family: var(--th-display); font-size: 24px; margin: 0; font-weight: 400; }
.th-event-card__venue { font-size: 13px; color: var(--th-ink-soft); }
.th-event-card__cta { margin-top: 8px; display: flex; gap: 18px; }
