/* =============================================================
   Deal Circle Salzburg — Brand Style Sheet
   Palette: Onyx · Ink · Ivory · Champagne · Wine
   Type:    Fraunces (display) + Inter (body)
   ============================================================= */

:root{
  --onyx:        #0A0A0F;
  --onyx-2:      #0F0F16;
  --ink:         #13131A;
  --ink-2:       #1A1A22;
  --ivory:       #F4EFE6;
  --ivory-dim:   #C9C2B4;
  --ivory-mute:  #8B8576;
  --gold:        #C9A66B;
  --gold-hi:     #F0DDA8;
  --gold-lo:     #8E6F3E;
  --wine:        #3D1518;
  --wine-hi:     #5C1A1B;

  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
  --rule: rgba(201, 166, 107, 0.22);
  --rule-strong: rgba(201, 166, 107, 0.55);

  --serif: 'Fraunces', 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.2,.7,.1,1);
}

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

body{
  background: var(--onyx);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100dvh;
  position: relative;
}

a { color: inherit; text-decoration: none; }
a:focus-visible{
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

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

::selection{
  background: var(--gold);
  color: var(--onyx);
}

/* =========================================================
   AMBIENT
   ========================================================= */

.ambient{
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  color: var(--gold);
}
.ambient-grain{
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: screen;
  opacity: .35;
}
.ambient-glow{
  position: absolute;
  width: 70vmax; height: 70vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  mix-blend-mode: screen;
}
.ambient-glow--a{
  top: -25vmax; left: -20vmax;
  background: radial-gradient(circle, rgba(201,166,107,.55), transparent 60%);
  animation: floatA 18s ease-in-out infinite alternate;
}
.ambient-glow--b{
  bottom: -25vmax; right: -20vmax;
  background: radial-gradient(circle, rgba(92,26,27,.55), transparent 60%);
  animation: floatB 22s ease-in-out infinite alternate;
}
.ambient-corner{
  position: absolute;
  bottom: 6vh; right: 4vw;
  width: 220px; height: 220px;
  opacity: .35;
  animation: spin 80s linear infinite;
}
@keyframes floatA{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(6vw, 4vh, 0); }
}
@keyframes floatB{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(-5vw, -3vh, 0); }
}
@keyframes spin{
  to{ transform: rotate(360deg); }
}

/* =========================================================
   TOP BAR
   ========================================================= */

.topbar{
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding: 18px var(--pad-x);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(10,10,15,.85) 0%, rgba(10,10,15,.4) 100%);
  border-bottom: 1px solid var(--rule);
}
.topbar__brand{
  display: inline-flex; align-items: center; gap: 14px;
}
.topbar__seal{
  width: 44px; height: 44px;
  animation: spin 60s linear infinite;
  filter: drop-shadow(0 0 20px rgba(201,166,107,.25));
}
.topbar__brand-text{
  display: flex; flex-direction: column; line-height: 1;
}
.topbar__brand-line{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.topbar__brand-line em{
  font-style: italic;
  color: var(--gold-hi);
  font-weight: 500;
}
.topbar__brand-sub{
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--ivory-mute);
  margin-top: 6px;
  text-transform: uppercase;
}

.topbar__nav{
  display: flex; gap: clamp(14px, 2vw, 32px);
  justify-content: center;
  font-size: 13px;
  color: var(--ivory-dim);
  letter-spacing: .04em;
}
.topbar__nav a{
  position: relative;
  padding: 6px 0;
  transition: color .35s var(--ease);
}
.topbar__nav a::after{
  content:""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right center;
  transition: transform .5s var(--ease);
}
.topbar__nav a:hover{ color: var(--ivory); }
.topbar__nav a:hover::after{ transform: scaleX(1); transform-origin: left center; }

.topbar__cta{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  font-size: 13px; letter-spacing: .04em;
  color: var(--onyx);
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-lo) 100%);
  border-radius: 999px;
  font-weight: 500;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), filter .4s var(--ease);
  box-shadow: 0 6px 30px -8px rgba(201,166,107,.55);
}
.topbar__cta .arrow{
  display: inline-block;
  transition: transform .4s var(--ease);
}
.topbar__cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 40px -10px rgba(240,221,168,.6);
}
.topbar__cta:hover .arrow{ transform: translateX(4px); }

@media (max-width: 980px){
  .topbar{ grid-template-columns: auto auto; }
  .topbar__nav{ display: none; }
}
@media (max-width: 540px){
  .topbar__brand-text{ display: none; }
  .topbar__cta{ font-size: 12px; padding: 10px 14px; }
}

/* =========================================================
   HERO
   ========================================================= */

.hero{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.6fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(48px, 9vh, 120px) var(--pad-x) clamp(60px, 10vh, 140px);
  align-items: center;
  min-height: 92dvh;
  border-bottom: 1px solid var(--rule);
}

.hero__seal-wrap{
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 28px;
}
.hero__seal{
  width: clamp(220px, 30vw, 360px);
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(201,166,107,.18));
  animation: spin 90s linear infinite;
}
@media (prefers-reduced-motion: reduce){
  .hero__seal, .topbar__seal, .ambient-corner{ animation: none; }
}
.hero__seal-tag{
  display: inline-flex; align-items: center; gap: 10px;
  padding-left: 18px;
  border-left: 1px solid var(--rule-strong);
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-hi);
  font-size: 16px;
  letter-spacing: .02em;
}

.eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 28px;
  padding: 8px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  background: rgba(255,255,255,.02);
}
.eyebrow__dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-hi);
  box-shadow: 0 0 12px var(--gold-hi);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(.7); opacity: .55; }
}

.display{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(58px, 11.5vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--ivory);
}
.display__row{
  display: block;
  overflow: hidden;
}
.display__row::after{
  content: ""; display: inline-block; width: 0;
}
.display__row--italic{
  font-style: italic;
  color: var(--gold-hi);
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 60%, var(--gold-lo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(clamp(20px, 4vw, 80px));
}

.hero__lede{
  max-width: 56ch;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.65;
  color: var(--ivory-dim);
  margin: 0 0 32px;
}

.hero__cta-row{
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}

.hero__stamps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.hero__stamps > div{
  padding: 18px 16px 0 0;
  border-right: 1px solid var(--rule);
}
.hero__stamps > div:last-child{ border-right: none; padding-right: 0; }
.hero__stamps dt{
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ivory-mute); margin-bottom: 6px;
}
.hero__stamps dd{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ivory);
}

@media (max-width: 980px){
  .hero{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
  }
  .hero__seal-wrap{ flex-direction: row; align-items: center; gap: 18px; }
  .hero__seal{ width: 110px; }
  .hero__stamps{ grid-template-columns: repeat(2, 1fr); }
  .hero__stamps > div{ border-bottom: 1px solid var(--rule); padding: 14px 0; }
  .hero__stamps > div:nth-child(2){ border-right: none; }
  .display__row--italic{ transform: translateX(0); }
}

/* =========================================================
   TICKER
   ========================================================= */

.hero__ticker{
  position: absolute;
  left: 0; right: 0;
  bottom: 16px;
  overflow: hidden;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(244,239,230,.45);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  background: rgba(10,10,15,.4);
}
.ticker{
  display: inline-flex; gap: 30px;
  white-space: nowrap;
  padding-left: 100%;
  animation: tick 60s linear infinite;
}
@keyframes tick{
  to{ transform: translateX(-100%); }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn{
  --btn-fg: var(--onyx);
  --btn-bg: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-lo) 100%);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .03em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .35s var(--ease);
}
.btn--primary{
  color: var(--btn-fg);
  background: var(--btn-bg);
  box-shadow: 0 12px 40px -10px rgba(201,166,107,.55);
}
.btn--primary::before{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #fff 0%, var(--gold-hi) 60%, var(--gold) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.btn--primary:hover::before{ opacity: 1; }
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -10px rgba(240,221,168,.65);
}
.btn--primary svg{ transition: transform .4s var(--ease); }
.btn--primary:hover svg{ transform: translateX(5px); }

.btn--ghost{
  color: var(--ivory);
  background: transparent;
  border: 1px solid var(--rule-strong);
}
.btn--ghost:hover{
  border-color: var(--gold-hi);
  color: var(--gold-hi);
  transform: translateY(-1px);
}

.btn--xl{
  padding: 22px 34px;
  font-size: 17px;
  color: var(--btn-fg);
  background: var(--btn-bg);
  box-shadow: 0 18px 50px -12px rgba(201,166,107,.55);
}
.btn--xl:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 70px -10px rgba(240,221,168,.7);
}
.btn--xl svg{ transition: transform .4s var(--ease); }
.btn--xl:hover svg{ transform: translateX(6px); }

.btn--inverted{
  color: var(--onyx);
  background: var(--ivory);
  box-shadow: 0 18px 50px -10px rgba(244,239,230,.4);
}
.btn--inverted:hover{
  background: var(--gold-hi);
  color: var(--onyx);
}

/* =========================================================
   BLOCKS — Editorial Sections
   ========================================================= */

.block{
  position: relative; z-index: 1;
  padding: clamp(80px, 12vh, 160px) var(--pad-x);
  border-bottom: 1px solid var(--rule);
}
.block__index{
  position: absolute;
  top: clamp(40px, 8vh, 90px);
  right: var(--pad-x);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 500;
  line-height: 1;
  color: rgba(201,166,107,0.07);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.block__head{ margin-bottom: 56px; max-width: 900px; position: relative; z-index: 1; }
.kicker{
  display: inline-block;
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 32px;
  position: relative;
}
.kicker::before{
  content:""; position: absolute; left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--gold);
}
.section-h{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 7.5vw, 110px);
  line-height: .98;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ivory);
}
.section-h em{
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold-lo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lede{
  max-width: 60ch;
  font-size: clamp(16px, 1.1vw, 19px);
  color: var(--ivory-dim);
  line-height: 1.6;
}

/* ------- 01 Zirkel ------- */
.pillars{
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 56px);
  border-top: 1px solid var(--rule);
}
.pillars li{
  padding-top: 28px;
  position: relative;
}
.pillars li:not(:last-child){
  border-right: 1px solid var(--rule);
  padding-right: clamp(20px, 3vw, 56px);
}
.pillars__num{
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
}
.pillars h3{
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ivory);
}
.pillars p{
  margin: 0;
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 880px){
  .pillars{ grid-template-columns: 1fr; }
  .pillars li:not(:last-child){
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-right: 0;
    padding-bottom: 28px;
  }
}

/* ------- 02 Schloss ------- */
.block__body--split{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
}
.schloss-card{
  margin: 0;
  position: relative;
  border: 1px solid var(--rule-strong);
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(201,166,107,.06);
  transition: transform .8s var(--ease);
}
.schloss-card:hover{ transform: translateY(-4px); }
.schloss-card svg,
.schloss-card img{
  display: block; width: 100%; height: clamp(320px, 56vh, 560px);
  object-fit: cover;
  filter: brightness(1.02) saturate(1.05);
}
.schloss-card figcaption{
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ivory-mute);
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.4));
}
.schloss-card__lat{ color: var(--gold); }

.schloss-text{
  display: flex; flex-direction: column; gap: 24px;
  justify-content: center;
}
.schloss-list{
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--rule);
}
.schloss-list li{
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding .4s var(--ease), border-color .4s var(--ease);
}
.schloss-list li:hover{
  padding-left: 12px;
  border-bottom-color: var(--gold);
}
.schloss-list span{
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ivory);
}
.schloss-list em{
  font-style: italic;
  color: var(--ivory-dim);
  font-family: var(--serif);
  font-size: 16px;
}
.link-arrow{
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
  font-size: 14px; letter-spacing: .04em;
  color: var(--gold-hi);
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule-strong);
  transition: gap .4s var(--ease), border-color .4s var(--ease);
}
.link-arrow:hover{ gap: 16px; border-color: var(--gold-hi); }

@media (max-width: 880px){
  .block__body--split{ grid-template-columns: 1fr; }
}

/* ------- 03 Abend (Agenda) ------- */
.agenda{
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: ag;
}
.agenda li{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(22px, 4vh, 36px) 0;
  border-top: 1px solid var(--rule);
  position: relative;
  transition: background .5s var(--ease);
}
.agenda li:last-child{ border-bottom: 1px solid var(--rule); }
.agenda li:hover{
  background: linear-gradient(90deg, rgba(201,166,107,.04), transparent 60%);
}
.agenda__time{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 50px);
  color: var(--gold-hi);
  letter-spacing: -0.02em;
  line-height: 1;
  align-self: start;
  padding-top: 4px;
}
.agenda__body h3{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ivory);
}
.agenda__body p{
  max-width: 64ch;
  color: var(--ivory-dim);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
@media (max-width: 720px){
  .agenda li{ grid-template-columns: 1fr; gap: 8px; }
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery{
  position: relative; z-index: 1;
  padding: clamp(80px, 12vh, 160px) var(--pad-x) clamp(60px, 10vh, 120px);
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(201,166,107,.06), transparent 70%),
    linear-gradient(180deg, var(--onyx) 0%, var(--ink) 100%);
}
.gallery__head{
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: left;
}
.gallery__head .section-h{
  margin-bottom: 18px;
}
.gallery__lede{
  max-width: 60ch;
  font-size: clamp(15px, 1.05vw, 18px);
  color: var(--ivory-dim);
  line-height: 1.65;
  margin: 0;
}

.gallery__grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(150px, 16vw, 230px);
  gap: clamp(8px, 1vw, 14px);
}
.gallery__item{
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(201,166,107,0.08);
  background: var(--ink-2);
  isolation: isolate;
  transition: transform .8s var(--ease), border-color .6s var(--ease);
}
.gallery__item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02) brightness(0.95);
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
}
.gallery__item::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(10,10,15,0.4) 100%);
  pointer-events: none;
  opacity: .7;
  transition: opacity .6s var(--ease);
}
.gallery__item:hover{
  transform: translateY(-3px);
  border-color: var(--rule-strong);
  z-index: 2;
}
.gallery__item:hover img{
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.04) brightness(1);
}
.gallery__item:hover::after{ opacity: .35; }

/* Asymmetric ribbon — varying spans */
.gallery__item--a{ grid-column: span 7; grid-row: span 2; }
.gallery__item--b{ grid-column: span 5; grid-row: span 2; }
.gallery__item--c{ grid-column: span 4; grid-row: span 2; }
.gallery__item--d{ grid-column: span 8; grid-row: span 2; }
.gallery__item--e{ grid-column: span 6; grid-row: span 2; }
.gallery__item--f{ grid-column: span 6; grid-row: span 2; }
.gallery__item--g{ grid-column: span 5; grid-row: span 2; }
.gallery__item--h{ grid-column: span 7; grid-row: span 2; }
.gallery__item--i{ grid-column: span 7; grid-row: span 2; }
.gallery__item--j{ grid-column: span 5; grid-row: span 2; }

@media (max-width: 880px){
  .gallery__grid{
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(140px, 32vw, 210px);
  }
  .gallery__item--a,
  .gallery__item--d,
  .gallery__item--h,
  .gallery__item--i{ grid-column: span 6; }
  .gallery__item--b,
  .gallery__item--c,
  .gallery__item--e,
  .gallery__item--f,
  .gallery__item--g,
  .gallery__item--j{ grid-column: span 3; }
}

.gallery__credit{
  margin: clamp(28px, 4vw, 48px) 0 0;
  text-align: center;
}
.gallery__credit a{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; letter-spacing: .04em;
  color: var(--gold-hi);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule-strong);
  transition: gap .4s var(--ease), border-color .4s var(--ease);
}
.gallery__credit a:hover{ gap: 16px; border-color: var(--gold-hi); }

/* =========================================================
   BEITRITT / JOIN CARD
   ========================================================= */

.join-card{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--rule-strong);
  border-radius: 6px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(201,166,107,.08), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  overflow: hidden;
  box-shadow: 0 50px 120px -40px rgba(0,0,0,.8), inset 0 0 0 1px rgba(201,166,107,.05);
}
.join-card__face{
  padding: clamp(32px, 5vw, 64px);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 22px;
}
.join-card__seal-line{
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ivory-mute); margin: 0;
}
.join-card__seal{
  width: 38px; height: 38px;
  animation: spin 60s linear infinite;
}
.join-card__title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ivory);
}
.join-card__copy{
  margin: 0; max-width: 50ch;
  color: var(--ivory-dim); font-size: 15.5px; line-height: 1.65;
}
.join-card__small{
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ivory-mute); margin: 4px 0 0;
}
.join-card__meta{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.join-card__meta li{
  padding: clamp(20px, 3vw, 30px) clamp(24px, 4vw, 44px);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
}
.join-card__meta li:last-child{ border-bottom: none; }
.join-card__meta span{
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ivory-mute);
}
.join-card__meta em{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ivory);
}
@media (max-width: 880px){
  .join-card{ grid-template-columns: 1fr; }
  .join-card__face{ border-right: none; border-bottom: 1px solid var(--rule); }
}

/* =========================================================
   STRIP (FAQ-LIKE)
   ========================================================= */

.strip{
  padding: clamp(60px, 10vh, 120px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.strip details{
  border: 1px solid var(--rule);
  margin: -0.5px;
  padding: 28px clamp(20px, 3vw, 40px);
  cursor: pointer;
  transition: background .4s var(--ease);
  background: rgba(255,255,255,0.005);
}
.strip details:hover{ background: rgba(201,166,107,.03); }
.strip summary{
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ivory);
  letter-spacing: -0.01em;
  position: relative;
}
.strip summary::-webkit-details-marker{ display: none; }
.strip summary::after{
  content: "+";
  font-family: var(--serif); font-style: italic;
  font-size: 32px;
  color: var(--gold);
  transition: transform .4s var(--ease);
  line-height: 1;
}
.strip details[open] summary::after{
  content: "—";
  transform: rotate(0deg);
}
.strip details p{
  margin: 14px 0 0;
  color: var(--ivory-dim);
  font-size: 15px; line-height: 1.65;
  max-width: 60ch;
}
@media (max-width: 720px){
  .strip{ grid-template-columns: 1fr; }
}

/* =========================================================
   CLOSING
   ========================================================= */

.closing{
  position: relative; z-index: 1;
  padding: clamp(80px, 16vh, 200px) var(--pad-x);
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(92,26,27,.45), transparent 70%),
    linear-gradient(180deg, var(--onyx) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--rule);
}
.closing__inner{
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.closing__eyebrow{
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.closing__h{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 7.5vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ivory);
}
.closing__h em{
  font-style: italic;
  color: var(--gold-hi);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  position: relative; z-index: 1;
  padding: clamp(60px, 10vh, 100px) var(--pad-x) 32px;
  background: var(--onyx);
}
.footer__top{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  padding-bottom: 48px;
}
.footer__seal{
  width: 96px; height: 96px;
  animation: spin 90s linear infinite;
  filter: drop-shadow(0 0 24px rgba(201,166,107,.2));
}
.footer__cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 56px);
}
.footer__h{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--ivory);
}
.footer__small{
  margin: 0; font-size: 13.5px; line-height: 1.7;
  color: var(--ivory-dim);
}
.footer__small a{
  color: var(--ivory-dim);
  border-bottom: 1px solid var(--rule);
  transition: color .3s, border-color .3s;
}
.footer__small a:hover{ color: var(--gold-hi); border-color: var(--gold); }

.footer__rule{
  height: 1px;
  background: var(--rule);
  margin: 0 0 24px;
}
.footer__bottom{
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory-mute);
  flex-wrap: wrap; gap: 12px;
}
.footer__motto{
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
  font-size: 14px;
}

@media (max-width: 880px){
  .footer__top{ grid-template-columns: 1fr; }
  .footer__cols{ grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   LEGAL
   ========================================================= */

.legal{
  margin-top: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  color: var(--ivory-dim);
}
.legal h2{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--ivory);
}
.legal p{ margin: 0 0 12px; font-size: 13.5px; line-height: 1.7; }
.legal__small{ font-size: 12px; color: var(--ivory-mute); }

/* =========================================================
   REVEAL ANIMATIONS (JS-toggled)
   ========================================================= */

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in{
  opacity: 1;
  transform: none;
}
.reveal--delay-1{ transition-delay: .08s; }
.reveal--delay-2{ transition-delay: .16s; }
.reveal--delay-3{ transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.is-in{ opacity: 1; transform: none; transition: none; }
}
