:root {
    --coal: #0e0d0b;
    --ash: #1a1814;
    --ember: #c8742a;
    --ember-light: #e8924a;
    --gold: #d4a853;
    --cream: #f0ebe0;
    --bone: #c9c2b0;
    --mid: #6e6658;
    --rule: rgba(200,116,42,0.25);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--coal);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  :focus-visible {
    outline: 2px solid var(--ember);
    outline-offset: 3px;
  }

  .skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    background: var(--ember);
    color: var(--coal);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.2s;
  }

  .skip-link:focus { top: 0.5rem; }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem 4rem;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0px);
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  }

  nav.nav-scrolled {
    background: rgba(14,13,11,0.88);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(200,116,42,0.12);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--cream);
    text-decoration: none;
    justify-self: start;
  }

  .nav-logo span { color: var(--ember); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--bone);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] { color: var(--ember); }

  .nav-mobile-cta { display: none; }

  .nav-cta {
    background: var(--ember);
    color: var(--coal) !important;
    padding: 0.55rem 1.4rem;
    font-size: 0.8rem;
    font-weight: 500 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s !important;
  }

  .nav-cta:hover { background: var(--ember-light) !important; color: var(--coal) !important; }
  .nav-cta:active { transform: scale(0.97) !important; }

  /* ── HAMBURGER ── */
  .nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.4rem;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--bone);
    transition: transform 0.3s, opacity 0.3s;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    z-index: 1;
  }

  .hero .marquee-strip {
    position: relative;
    z-index: 1;
    border-bottom: none;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200,116,42,0.12) 0%, transparent 65%),
      radial-gradient(ellipse 40% 40% at 10% 90%, rgba(200,116,42,0.07) 0%, transparent 60%);
    z-index: 0;
  }

  .hero-tag {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.01em;
    max-width: 900px;
    text-wrap: balance;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--ember);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--bone);
    max-width: 520px;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.9s 0.55s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .hero-actions .btn-primary {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }

  .cta .btn-primary {
    min-width: 280px;
  }

  .btn-primary {
    background: var(--ember);
    color: var(--coal);
    padding: 0.85rem 2.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--ember-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 116, 42, 0.28);
  }

  .btn-primary:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: none;
  }

  .btn-ghost {
    color: var(--bone);
    padding: 0.85rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    transition: color 0.3s, border-color 0.3s;
    display: inline-block;
  }

  .btn-ghost:hover { color: var(--ember); border-color: var(--ember); }
  .btn-ghost:active { opacity: 0.7; }

  /* ── MARQUEE ── */
  .marquee-strip {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: var(--ash);
  }

  .marquee-inner {
    display: inline-block;
    animation: marquee 35s linear infinite;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--bone);
    letter-spacing: 0.05em;
  }

  .marquee-inner span { color: var(--ember); margin: 0 1.5rem; }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── SECTIONS ── */
  section {
    position: relative;
    z-index: 1;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  .section-title em { font-style: italic; color: var(--ember); }

  /* ── WHAT IS ── */
  .what {
    padding: 8rem 0;
  }

  .what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
  }

  .what-body {
    color: var(--bone);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 2rem;
  }

  .what-body p + p { margin-top: 1.2rem; }

  .what-body-note {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--mid);
    letter-spacing: 0.05em;
  }

  .what-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-left: 1px solid var(--rule);
    padding-left: 3rem;
    margin-top: 1rem;
  }

  .quote-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--rule);
  }

  .quote-block:first-child { padding-top: 0; }
  .quote-block:last-child { border-bottom: none; }

  .quote-block blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--cream);
  }

  .quote-attr {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 1rem;
  }

  /* ── TEMPERATURE ── */
  .temperature {
    background: var(--ash);
    padding: 8rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .temp-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
  }

  .temp-visual {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .temp-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid var(--ember);
    position: relative;
    animation: pulse 4s ease-in-out infinite;
  }

  .temp-circle::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(200,116,42,0.4);
    animation: pulse 4s ease-in-out infinite reverse;
  }

  .temp-circle::after {
    content: 'T°';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-style: italic;
    color: var(--ember);
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
  }

  .temp-content .section-title { margin-top: 1rem; }

  .temp-body {
    color: var(--bone);
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
  }

  .temp-body p + p { margin-top: 1rem; }

  .temp-triad {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .triad-item {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid var(--rule);
    background: rgba(200,116,42,0.04);
  }

  .triad-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--ember);
    line-height: 1;
  }

  .triad-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bone);
    margin-top: 0.6rem;
    font-weight: 500;
  }

  .triad-desc {
    font-size: 0.82rem;
    color: var(--mid);
    margin-top: 0.4rem;
    line-height: 1.5;
  }

  /* ── ROLLER ── */
  .roller {
    padding: 8rem 0;
  }

  .roller-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 3rem;
  }

  .roller-intro {
    max-width: 480px;
    color: var(--bone);
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .role-card {
    background: var(--coal);
    padding: 2.5rem;
    transition: background 0.4s;
    cursor: default;
  }

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

  .role-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--ember);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .role-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.4rem;
  }

  .role-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1.5rem;
  }

  .role-desc {
    color: var(--bone);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .role-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--rule);
    padding-top: 1.5rem;
  }

  .role-bullets li {
    font-size: 0.82rem;
    color: var(--mid);
    padding-left: 1rem;
    position: relative;
  }

  .role-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ember);
  }

  .role-warning {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .role-w-item {
    background: #1d150d;
    padding: 1.2rem 1.5rem;
    font-size: 0.82rem;
    color: var(--bone);
  }

  .role-w-item strong {
    color: var(--ember);
    font-weight: 500;
  }

  /* ── FASER ── */
  .faser {
    background: var(--ash);
    padding: 8rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .faser-head { margin-bottom: 4rem; }

  .faser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .fase-card {
    background: var(--ash);
    padding: 2rem;
    transition: background 0.3s;
  }

  .fase-card:hover { background: #1f1d19; }

  .fase-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-style: italic;
    color: rgba(200,116,42,0.3);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .fase-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.8rem;
  }

  .fase-desc {
    font-size: 0.85rem;
    color: var(--bone);
    line-height: 1.6;
  }

  /* ── PUST ── */
  .pust {
    padding: 8rem 0;
    background: var(--ash);
  }

  .pust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .pust-letters {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .pust-row {
    display: flex;
    background: var(--coal);
    transition: background 0.3s;
    cursor: default;
  }

  .pust-row:hover { background: var(--ash); }

  .pust-letter-box {
    width: 80px;
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,116,42,0.08);
    border-right: 1px solid var(--rule);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-style: italic;
    color: var(--ember);
  }

  .pust-text {
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pust-key {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 0.3rem;
  }

  .pust-val {
    font-size: 0.9rem;
    color: var(--bone);
    line-height: 1.5;
  }

  .pust-right .section-label { margin-bottom: 1rem; }
  .pust-right .section-title { margin-bottom: 1.5rem; }

  .pust-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--bone);
    line-height: 1.5;
    border-left: 2px solid var(--ember);
    padding-left: 1.5rem;
    margin: 2rem 0;
  }

  .pust-body {
    color: var(--bone);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  /* ── SKAM SECTION ── */
  .skam {
    background: var(--coal);
    padding: 6rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .skam-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .skam-inner .section-label { margin-bottom: 1rem; }
  .skam-inner .section-title { margin-bottom: 2rem; }

  .skam-body {
    color: var(--bone);
    font-size: 1rem;
    line-height: 1.8;
  }

  .skam-body p + p { margin-top: 1rem; }

  .skam-pull {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-style: italic;
    color: var(--cream);
    margin: 3rem 0;
    line-height: 1.4;
  }

  .skam-pull em { color: var(--ember); }

  /* ── TEAM ── */
  .team {
    padding: 8rem 0;
  }

  .team-head { margin-bottom: 4rem; }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .team-video-col {
    background: var(--coal);
    padding: 0;
    overflow: hidden;
  }

  .team-video-wrap {
    width: 100%;
    height: 100%;
    min-height: 480px;
    position: relative;
  }

  .team-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .team-card {
    background: var(--coal);
    padding: 3rem;
    transition: background 0.3s;
  }

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

  .team-role {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 0.6rem;
  }

  .team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .team-bio {
    color: var(--bone);
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .team-bio p + p { margin-top: 1rem; }

  /* ── FOR HVEM ── */
  .for-hvem {
    background: var(--ash);
    padding: 8rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .for-hvem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
  }

  .hvem-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .hvem-item {
    background: var(--ash);
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    color: var(--bone);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.25s;
  }

  .hvem-item:hover { background: #1f1d19; }

  .hvem-item::before {
    content: '—';
    color: var(--ember);
    flex-shrink: 0;
  }

  .hvem-right {
    display: flex;
    flex-direction: column;
  }

  .hvem-img-wrap {
    flex: 1;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid var(--rule);
    margin-bottom: 2.5rem;
  }

  .hvem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.8s ease;
  }

  .hvem-img-wrap:hover .hvem-img { transform: scale(1.03); }

  .hvem-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: var(--cream);
    border-left: 2px solid var(--ember);
    padding-left: 1.5rem;
    margin: 2rem 0;
  }

  .hvem-note {
    font-size: 0.82rem;
    color: var(--mid);
    line-height: 1.6;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--rule);
  }

  .hvem-pilot-note {
    font-size: 0.82rem;
    color: var(--mid);
    margin-top: 1rem;
    line-height: 1.6;
  }

  /* ── CTA ── */
  .cta {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,116,42,0.1) 0%, transparent 70%);
  }

  .cta-inner {
    position: relative;
    z-index: 1;
  }

  .cta .section-label { margin-bottom: 1.5rem; }

  .cta .section-title {
    max-width: 700px;
    margin: 0 auto 1.5rem;
  }

  .cta-body {
    color: var(--bone);
    max-width: 480px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ember);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 0.2rem;
    transition: color 0.3s, border-color 0.3s;
    display: block;
    width: 280px;
    text-align: center;
    margin: 1.5rem auto 0;
  }

  .cta-email:hover { color: var(--ember-light); border-color: var(--ember); }

  /* ── BOOKING MODAL ── */
  .booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .booking-modal.open {
    opacity: 1;
    pointer-events: auto;
  }

  .booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 7, 0.82);
    backdrop-filter: blur(6px);
  }

  .booking-modal-box {
    position: relative;
    z-index: 1;
    background: var(--ash);
    border: 1px solid var(--rule);
    border-radius: 6px;
    width: min(860px, 92vw);
    max-height: 90dvh;
    overflow-y: auto;
    padding: 2rem;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .booking-modal.open .booking-modal-box {
    transform: translateY(0) scale(1);
  }

  .booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: 1px solid var(--rule);
    color: var(--bone);
    font-size: 1.4rem;
    line-height: 1;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
  }

  .booking-modal-close:hover {
    border-color: var(--ember);
    color: var(--ember);
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--rule);
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bone);
  }

  .footer-logo span { color: var(--ember); }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.72rem;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.3s;
  }

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

  .footer-note {
    font-size: 0.75rem;
    color: var(--mid);
    letter-spacing: 0.05em;
  }

  /* ── HERO PHOTO ── */
  .hero-photo {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center 35%;
    opacity: 0.18;
    z-index: 0;
    mix-blend-mode: luminosity;
    will-change: transform;
  }

  /* ── TEAM PHOTOS ── */
  .team-card { overflow: hidden; }

  .team-photo-wrap {
    width: calc(100% + 6rem);
    margin: -3rem -3rem 2.5rem;
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
  }

  .team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    filter: grayscale(15%) brightness(0.9);
    transition: transform 0.8s ease;
  }

  .team-card:hover .team-photo { transform: scale(1.04); }
  .team-photo--mirror { transform: scaleX(-1); }
  .team-card:hover .team-photo--mirror { transform: scaleX(-1) scale(1.04); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .booking-modal {
      align-items: flex-end;
    }
    .booking-modal-box {
      width: 100%;
      max-height: 92dvh;
      border-radius: 12px 12px 0 0;
      padding: 1.25rem 1rem;
      transform: translateY(100%);
    }
    .booking-modal.open .booking-modal-box {
      transform: translateY(0);
    }
  }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; grid-template-columns: 1fr auto; }
    .hamburger { display: flex; }
    .nav-right { gap: 0; }
    .nav-right .nav-cta { display: none; }
    .nav-mobile-cta { display: block; }

    nav.nav-open {
      background: #0e0d0b;
      border-bottom-color: rgba(200,116,42,0.12);
    }

    /* logo and close button must render above the nav-links panel */
    nav.nav-open .nav-logo { position: relative; z-index: 100; }
    nav.nav-open .nav-right { position: relative; z-index: 100; }

    .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 100vh;
      background: #0e0d0b;
      padding: 4.5rem 1.5rem 1.5rem;
      flex-direction: column;
      gap: 0;
      z-index: 99;
      overflow-y: auto;
    }

    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(200,116,42,0.1); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { padding: 0.9rem 0; display: block; font-size: 0.85rem; }
    .nav-mobile-cta { margin-top: auto; padding-bottom: env(safe-area-inset-bottom, 0); }
    .nav-mobile-cta .nav-cta {
      display: block;
      width: 100%;
      padding: 0.85rem 1.4rem;
      margin: 0.5rem 0;
      text-align: center;
    }

    .hero { padding: 0; }
    .hero-content { padding: 5rem 1.5rem 2rem; }
    .hero .marquee-strip { padding: 0.625rem 0; }
    .container { padding: 0 1.5rem; }
    .what-grid, .temp-inner, .pust-inner, .for-hvem-inner { grid-template-columns: 1fr; gap: 3rem; }
    .team-grid { grid-template-columns: 1fr; gap: 1px; }
    .team-video-wrap { min-height: 0; aspect-ratio: 9 / 16; max-width: 260px; margin: 0 auto; }
    .roles-grid, .faser-grid { grid-template-columns: 1fr; }
    .role-warning { grid-template-columns: 1fr; }
    .temp-triad { flex-direction: column; }
    .hero h1 { font-size: 2.8rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { justify-content: center; }
    .what-right { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 2rem; }
    .team-photo-wrap { height: 240px; }
  }
