:root {
  --ink: #2b2420;
  --wine: #7a241f;
  --wine-dark: #4b1d1b;
  --paper: #f7f4ef;
  --paper-deep: #eae4da;
  --line: rgba(43, 36, 32, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
img { display: block; width: 100%; }
a { color: inherit; }

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 108px; padding: 18px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.brand { width: clamp(170px, 18vw, 250px); filter: brightness(0) invert(1); }
.brand img { max-height: 68px; object-fit: contain; }
.main-nav { display: flex; gap: clamp(18px, 2.5vw, 42px); align-items: center; }
.main-nav a { color: #fff; text-decoration: none; font-size: .9rem; letter-spacing: .04em; }
.main-nav a::after { content: ""; display: block; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.menu-button { display: none; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.7); padding: 10px 14px; font: inherit; }

.hero { position: relative; min-height: min(900px, 100svh); color: #fff; overflow: hidden; }
.hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 50% 52%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,13,13,.45), rgba(14,13,13,.05) 38%, rgba(14,13,13,.46)); }
.hero-copy { position: absolute; left: clamp(24px, 8vw, 145px); bottom: clamp(88px, 13vh, 145px); max-width: 790px; }
.eyebrow, .kicker { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; }
.hero h1 { max-width: 800px; margin: 0 0 38px; font-family: var(--serif); font-weight: 400; font-size: clamp(3rem, 6vw, 6.4rem); line-height: .99; letter-spacing: -.035em; text-shadow: 0 2px 28px rgba(0,0,0,.25); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 22px; text-decoration: none; border: 1px solid transparent; font-size: .85rem; font-weight: 700; letter-spacing: .035em; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: #fff; color: var(--ink); }
.button-outline { border-color: rgba(255,255,255,.8); color: #fff; background: rgba(0,0,0,.08); backdrop-filter: blur(4px); }
.button-outline:hover { background: #fff; color: var(--ink); }
.button-dark { background: var(--wine-dark); color: #fff; }
.scroll-hint { position: absolute; right: clamp(24px,5vw,80px); bottom: 32px; color: #fff; text-decoration: none; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.scroll-hint span { margin-left: 10px; font-size: 1rem; }

.section { padding: clamp(80px, 11vw, 160px) clamp(24px, 7vw, 120px); }
.intro { text-align: center; max-width: 1120px; margin: auto; }
.kicker { color: var(--wine); }
.intro h2, .section-heading h2, .rooms h2, .story h2, .contact h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 4.7rem); line-height: 1.06; font-weight: 400; letter-spacing: -.025em;
}
.intro-text { max-width: 750px; margin: 30px auto 0; font-family: var(--serif); font-size: clamp(1.2rem, 1.65vw, 1.5rem); line-height: 1.65; }

.paths { display: grid; grid-template-columns: 1fr 1fr; padding-top: 0; gap: 1px; }
.path-card { position: relative; min-height: 680px; color: #fff; overflow: hidden; }
.path-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.path-card:hover img { transform: scale(1.025); }
.path-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(18,13,11,.82)); }
.path-content { position: absolute; z-index: 2; left: clamp(28px, 4vw, 68px); right: clamp(28px, 4vw, 68px); bottom: clamp(34px, 5vw, 70px); max-width: 530px; }
.path-content .kicker { color: #fff; opacity: .82; }
.path-content h2 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4.8rem); font-weight: 400; line-height: 1.02; }
.path-content p:not(.kicker) { max-width: 500px; }
.path-content a { display: inline-block; margin-top: 14px; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.55); }

.events { background: #fff; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 58px; }
.text-link { text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; font-weight: 700; white-space: nowrap; }
.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2.4vw, 40px); }
.event-card a { text-decoration: none; }
.event-image { aspect-ratio: 4/3; overflow: hidden; background: #ddd; }
.event-image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.whisky-card img { object-position: 52% 48%; }
.event-card:hover img { transform: scale(1.03); }
.event-info { padding-top: 24px; }
.event-info .date { color: var(--wine); text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; font-weight: 800; }
.event-info h3 { margin: 8px 0 10px; font-family: var(--serif); font-size: clamp(1.6rem, 2.1vw, 2.3rem); font-weight: 400; line-height: 1.15; }
.event-info p:last-child { margin: 0; color: #665e58; }

.rooms { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(48px, 8vw, 120px); align-items: center; background: var(--paper-deep); }
.rooms-photo { min-height: 620px; }
.rooms-photo img { height: 100%; min-height: 620px; object-fit: cover; }
.rooms-copy p:not(.kicker) { margin: 28px 0 34px; max-width: 540px; }

.story { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(50px, 8vw, 130px); background: #fff; }
.story-copy p:not(.kicker) { margin: 28px 0; max-width: 600px; }
.story-photo { min-height: 540px; }
.story-photo img { min-height: 540px; height: 100%; object-fit: cover; }

.contact { padding: clamp(90px, 12vw, 170px) 24px; text-align: center; color: #fff; background: var(--wine-dark); }
.contact .kicker { color: #e8c6b3; }
.contact p:not(.kicker) { max-width: 670px; margin: 28px auto 35px; font-size: 1.1rem; }
footer { display: grid; grid-template-columns: 220px 1fr auto; gap: 40px; align-items: center; padding: 48px clamp(24px, 7vw, 120px); background: #211b18; color: #dfd7cf; font-size: .86rem; }
footer img { max-width: 200px; filter: brightness(0) invert(1); }
footer p { margin: 2px 0; }
.footer-links { display: flex; gap: 20px; }

.inner-page .site-header { background: linear-gradient(180deg, rgba(25,18,16,.62), transparent); }
.celebration-hero { position: relative; min-height: min(780px, 88svh); color: #fff; overflow: hidden; }
.celebration-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 50% 46%; }
.celebration-hero-copy { position: absolute; z-index: 2; left: clamp(24px, 8vw, 145px); bottom: clamp(70px, 11vh, 125px); }
.celebration-hero h1 { margin: 0; max-width: 900px; font-family: var(--serif); font-size: clamp(3.2rem, 6.7vw, 7rem); font-weight: 400; line-height: .96; letter-spacing: -.035em; text-shadow: 0 2px 28px rgba(0,0,0,.3); }
.celebration-intro { display: grid; grid-template-columns: minmax(190px,.38fr) minmax(0,1fr); gap: clamp(35px,8vw,140px); align-items: start; }
.celebration-intro h2, .service-statement h2, .room-feature h2, .ceremony h2, .planning h2, .good-to-know h2, .inquiry h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem,4.5vw,4.7rem); line-height: 1.05; font-weight: 400; letter-spacing: -.025em; }
.celebration-intro .lead { margin: 0 0 24px; max-width: 820px; font-family: var(--serif); font-size: clamp(1.25rem,1.8vw,1.65rem); line-height: 1.55; }
.celebration-intro div > p:last-child { max-width: 760px; }
.service-statement { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(45px,7vw,115px); padding: 25px clamp(24px,7vw,120px) 110px; background: var(--paper); }
.service-statement > * { padding: 42px 0; border-top: 1px solid var(--line); }
.service-number { margin: 0; color: var(--wine); font-family: var(--serif); font-size: 1.15rem; }
.service-statement h2 { font-size: clamp(1.7rem,2.5vw,2.8rem); }
.service-statement div p { max-width: 510px; margin: 13px 0 0; }
.rooms-editorial { background: #fff; }
.room-feature { display: grid; grid-template-columns: minmax(0,1.28fr) minmax(300px,.72fr); gap: clamp(40px,7vw,110px); align-items: center; }
.room-feature img { min-height: 620px; height: 100%; object-fit: cover; }
.room-feature div p:last-child { max-width: 520px; margin-top: 25px; }
.room-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,48px); margin: clamp(70px,10vw,150px) 0; }
.room-pair figure { margin: 0; }
.room-pair figure:nth-child(2) { margin-top: 0; }
.room-pair img { aspect-ratio: 4/3; object-fit: cover; }
.room-pair figcaption { display: flex; gap: 15px 30px; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--ink); }
.room-pair strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; white-space: nowrap; }
.room-pair span { max-width: 370px; color: #665e58; }
.room-feature-reverse { grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); }
.room-feature-reverse img { order: 2; }
.ceremony { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px,8vw,120px); align-items: center; background: var(--paper-deep); }
.ceremony-copy p:last-child { margin-top: 28px; max-width: 570px; }
.ceremony > img { min-height: 540px; height: 100%; object-fit: cover; }
.planning { background: #fff; }
.planning > h2 { max-width: 770px; }
.planning-steps { list-style: none; margin: 65px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(45px,8vw,120px); }
.planning-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.planning-steps li > span { color: var(--wine); font-family: var(--serif); }
.planning-steps strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.planning-steps p { margin: 8px 0 0; color: #665e58; }
.good-to-know { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(40px,9vw,150px); padding: clamp(85px,11vw,150px) clamp(24px,7vw,120px); color: #fff; background: #302723; align-items: end; }
.good-to-know .kicker { color: #e8c6b3; }
.good-to-know > p { max-width: 600px; margin: 0; font-family: var(--serif); font-size: clamp(1.15rem,1.7vw,1.45rem); line-height: 1.6; }
.inquiry { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px,8vw,130px); color: #fff; background: var(--wine-dark); }
.inquiry .kicker { color: #e8c6b3; }
.inquiry-intro > p:last-child { max-width: 470px; margin-top: 25px; }
.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 0; color: #fff; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); border-radius: 0; font: inherit; }
.field textarea { border: 1px solid rgba(255,255,255,.55); padding: 13px; resize: vertical; }
.field select option { color: var(--ink); }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: .84rem; }
.consent input { margin-top: 5px; }
.inquiry-form button { border: 0; cursor: pointer; }
.form-note { margin: 12px 0 0; color: rgba(255,255,255,.7); font-size: .78rem; }

.event-page { background: #fff; }
.event-header { position: relative; background: #241d1a; }
.event-overview-head { position: relative; min-height: min(740px,82svh); overflow: hidden; color: #fff; }
.event-overview-head > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 44%; }
.event-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(15,12,11,.78) 0%,rgba(15,12,11,.42) 48%,rgba(15,12,11,.1) 80%),linear-gradient(0deg,rgba(15,12,11,.5),transparent 50%); }
.event-overview-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); bottom: clamp(65px,10vh,120px); max-width: 780px; }
.event-overview-head .kicker { color: #efd5c5; }
.event-overview-head h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.5rem,7vw,7.7rem); line-height: .91; font-weight: 400; letter-spacing: -.045em; text-shadow: 0 2px 28px rgba(0,0,0,.28); }
.event-lead { max-width: 630px; margin: 32px 0 0; font-family: var(--serif); font-size: clamp(1.2rem,1.65vw,1.5rem); line-height: 1.55; }
.date-index { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); padding: 0 clamp(24px,7vw,120px); color: #fff; background: var(--wine-dark); }
.date-index a { min-height: 168px; padding: 28px clamp(18px,2vw,34px); border-right: 1px solid rgba(255,255,255,.2); text-decoration: none; transition: background .2s ease; }
.date-index a:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.date-index a:hover, .date-index a:focus-visible { background: rgba(255,255,255,.09); }
.date-index time, .date-index span, .date-index small { display: block; }
.date-index time { color: #e8c6b3; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.date-index span { margin-top: 18px; font-family: var(--serif); font-size: clamp(1.25rem,1.65vw,1.75rem); line-height: 1.15; }
.date-index small { margin-top: 7px; color: rgba(255,255,255,.65); font-size: .76rem; }
.event-list { padding: 0; }
.event-feature { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr); gap: clamp(42px,8vw,130px); align-items: center; margin: 0; padding: clamp(85px,11vw,155px) clamp(24px,7vw,120px); scroll-margin-top: 30px; }
.event-feature:nth-child(even) { background: var(--paper-deep); }
.event-feature-image { min-height: 560px; overflow: hidden; }
.event-feature-image img { min-height: 560px; height: 100%; object-fit: cover; }
.event-feature-wide .event-feature-image img { object-position: center 58%; }
.raunacht-image img { object-position: 57% 58%; }
.event-feature-reverse { grid-template-columns: minmax(320px,.8fr) minmax(0,1.2fr); }
.event-feature-reverse .event-feature-image { order: 2; }
.event-feature-copy { max-width: 590px; }
.event-feature-copy .date { margin: 0 0 18px; color: var(--wine); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.event-feature-copy h2, .event-outlook h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.6rem,4.6vw,5rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.event-feature-copy > p:not(.date) { margin: 27px 0; }
.event-feature-copy .event-note { padding-left: 18px; border-left: 2px solid var(--wine); color: #665e58; font-size: .9rem; }
.event-outlook { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,8vw,130px); padding: clamp(85px,11vw,155px) clamp(24px,7vw,120px); background: var(--paper-deep); }
.event-outlook-intro p:last-child { max-width: 540px; margin: 26px 0 0; }
.future-dates { border-top: 1px solid var(--ink); }
.future-date { display: grid; grid-template-columns: minmax(125px,.42fr) 1fr 24px; gap: 25px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.future-date time { color: var(--wine); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.future-date strong, .future-date small { display: block; }
.future-date strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.2; }
.future-date small { margin-top: 5px; color: #665e58; font-size: .82rem; }
.future-date b { font-weight: 400; transition: transform .2s ease; }
.future-date[href]:hover b { transform: translateX(4px); }
.future-date-pending { color: #4f4843; }
.event-contact { background: #302723; }

.castle-hero { position: relative; min-height: min(790px,88svh); overflow: hidden; color: #fff; }
.castle-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 46%; }
.castle-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); bottom: clamp(70px,11vh,125px); }
.castle-hero h1 { max-width: 950px; margin: 0; font-family: var(--serif); font-size: clamp(3.2rem,6.7vw,7rem); font-weight: 400; line-height: .94; letter-spacing: -.04em; text-shadow: 0 2px 28px rgba(0,0,0,.32); }
.castle-intro { display: grid; grid-template-columns: minmax(190px,.38fr) minmax(0,1fr); gap: clamp(35px,8vw,140px); align-items: start; }
.castle-intro h2, .castle-architecture h2, .castle-history h2, .castle-life h2, .castle-place h2, .castle-visit h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem,4.5vw,4.7rem); line-height: 1.05; font-weight: 400; letter-spacing: -.025em; }
.castle-intro .lead { margin: 0 0 24px; max-width: 820px; font-family: var(--serif); font-size: clamp(1.25rem,1.8vw,1.65rem); line-height: 1.55; }
.castle-intro div > p:last-child { max-width: 780px; }
.castle-architecture { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px,8vw,125px); align-items: center; background: var(--paper-deep); }
.castle-architecture-copy p:not(.kicker) { max-width: 560px; margin: 27px 0 0; }
.castle-architecture-images { display: grid; grid-template-columns: 1.18fr .82fr; align-items: end; gap: clamp(15px,2vw,30px); }
.castle-architecture-images img { height: 560px; object-fit: cover; }
.castle-architecture-images img:last-child { height: 430px; }
.castle-history { background: #fff; }
.castle-history-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(35px,8vw,130px); align-items: start; }
.castle-timeline { list-style: none; margin: clamp(60px,8vw,110px) 0 0; padding: 0; border-top: 1px solid var(--ink); }
.castle-timeline li { display: grid; grid-template-columns: minmax(110px,.38fr) .62fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.castle-timeline time { color: var(--wine); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.castle-timeline h3 { margin: 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.castle-timeline p { max-width: 700px; margin: 8px 0 0; color: #665e58; }
.castle-life { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px,8vw,120px); align-items: center; color: #fff; background: #302723; }
.castle-life-image img { min-height: 570px; height: 100%; object-fit: cover; }
.castle-life .kicker { color: #e8c6b3; }
.castle-life-copy > p:not(.kicker) { max-width: 570px; margin: 27px 0 0; }
.castle-life-links { display: flex; flex-wrap: wrap; gap: 25px 34px; margin-top: 35px; }
.castle-place { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,8vw,120px); align-items: center; background: var(--paper); }
.castle-place-copy p:not(.kicker) { max-width: 580px; margin: 27px 0 0; }
.castle-place > img { min-height: 540px; height: 100%; object-fit: cover; }
.castle-visit { padding: clamp(95px,12vw,170px) 24px; text-align: center; color: #fff; background: var(--wine-dark); }
.castle-visit .kicker { color: #e8c6b3; }
.castle-visit > p:not(.kicker) { max-width: 720px; margin: 28px auto 36px; font-size: 1.05rem; }

/* Contact and arrival */
.contact-hero { position: relative; min-height: min(680px,78svh); overflow: hidden; color: #fff; }
.contact-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 44%; }
.contact-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); bottom: clamp(65px,10vh,110px); }
.contact-hero h1 { max-width: 950px; margin: 0; font-family: var(--serif); font-size: clamp(3.1rem,6.4vw,6.7rem); font-weight: 400; line-height: .96; letter-spacing: -.04em; text-shadow: 0 2px 28px rgba(0,0,0,.32); }
.contact-intro { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px,10vw,165px); align-items: start; }
.contact-intro h2, .arrival-map h2, .accessibility h2, .contact-closing h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem,4.5vw,4.7rem); line-height: 1.05; font-weight: 400; letter-spacing: -.025em; }
.contact-address address { margin: 32px 0 22px; font-family: var(--serif); font-size: 1.55rem; line-height: 1.55; font-style: normal; }
.contact-address a:not(.button) { color: var(--ink); text-decoration-color: rgba(52,43,38,.3); text-underline-offset: 5px; }
.contact-address .button { margin-top: 20px; color: #fff; background: var(--wine-dark); }
.contact-copy .lead { margin: 28px 0 20px; max-width: 720px; font-family: var(--serif); font-size: clamp(1.25rem,1.8vw,1.65rem); line-height: 1.55; }
.contact-copy > p:last-child { max-width: 720px; }
.arrival-map { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px,8vw,125px); align-items: center; background: var(--paper-deep); }
.arrival-map p:not(.kicker) { max-width: 520px; margin-top: 27px; }
.arrival-map img { width: min(100%,760px); justify-self: end; box-shadow: 0 22px 65px rgba(67,48,38,.13); }
.accessibility { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(55px,9vw,145px); align-items: start; background: #fff; }
.accessibility-heading > p:last-child { max-width: 540px; margin-top: 27px; }
.accessibility-list { border-top: 1px solid var(--ink); }
.accessibility-list article { display: grid; grid-template-columns: 52px 1fr; gap: 25px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.accessibility-list article > span { color: var(--wine); font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
.accessibility-list h3 { margin: 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.accessibility-list p { max-width: 760px; margin: 9px 0 0; color: #665e58; }
.contact-closing { padding: clamp(90px,11vw,155px) 24px; text-align: center; color: #fff; background: var(--wine-dark); }
.contact-closing .kicker { color: #e8c6b3; }
.contact-closing > p:not(.kicker) { max-width: 700px; margin: 27px auto 35px; }
.contact-closing > div { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 25px 34px; }
.contact-mail { color: #fff; }

/* Whisky fair */
.whisky-page { --whisky: #b16b31; --whisky-dark: #181311; --whisky-warm: #efe2d0; background: #f7f2e9; }
.whisky-hero { position: relative; min-height: min(850px,92svh); overflow: hidden; color: #fff; background: var(--whisky-dark); }
.whisky-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 52% 48%; filter: saturate(.84) contrast(1.05); }
.whisky-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(18,13,11,.88) 0%,rgba(18,13,11,.55) 45%,rgba(18,13,11,.12) 78%),linear-gradient(0deg,rgba(15,10,8,.64),transparent 48%); }
.whisky-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); bottom: clamp(58px,10vh,110px); }
.whisky-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem,8.2vw,8.6rem); font-weight: 400; line-height: .88; letter-spacing: .025em; font-kerning: none; }
.whisky-motto { margin: 28px 0 36px; color: #e3b885; font-size: .82rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.whisky-ticket-button { color: #1c130e; background: #d49a59; }
.whisky-jump { display: grid; grid-template-columns: repeat(4,1fr); color: #f4e9dc; background: #201916; border-top: 1px solid rgba(255,255,255,.16); }
.whisky-jump a { padding: 24px clamp(16px,2.5vw,40px); border-right: 1px solid rgba(255,255,255,.12); color: inherit; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.whisky-intro { display: grid; grid-template-columns: .38fr .62fr; gap: clamp(40px,8vw,140px); }
.whisky-intro-media img { width: 100%; height: clamp(390px,42vw,590px); margin-top: 38px; object-fit: cover; object-position: 47% center; }
.whisky-intro h2,.whisky-facts h2,.whisky-tastings h2,.whisky-exhibitors h2,.whisky-music h2,.whisky-visit h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.6rem,4.8vw,5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.whisky-intro .lead { margin: 0 0 24px; max-width: 780px; font-family: var(--serif); font-size: clamp(1.3rem,2vw,1.75rem); line-height: 1.5; }
.whisky-intro div > p:last-child { max-width: 780px; }
.whisky-experience { display: grid; grid-template-columns: repeat(3,1fr); background: var(--whisky-dark); color: #f7eee4; }
.whisky-experience article { min-height: 500px; padding: clamp(45px,6vw,90px) clamp(26px,4vw,68px); border-right: 1px solid rgba(255,255,255,.13); }
.whisky-experience h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(2rem,3.3vw,3.5rem); font-weight: 400; line-height: 1.04; }
.whisky-experience p { max-width: 490px; color: #d8ccc3; }
.whisky-note { color: #e3b885 !important; font-size: .86rem; font-weight: 700; letter-spacing: .03em; }
.whisky-sold-out { display: inline-block; margin-top: 25px; padding: 7px 12px; color: #f2c48e !important; border: 1px solid rgba(227,184,133,.7); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.whisky-sold-out-inline { color: #874b27 !important; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.whisky-facts { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,9vw,145px); background: var(--whisky-warm); }
.whisky-facts-heading > p:last-child { max-width: 500px; margin-top: 28px; }
.whisky-days { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #5c4637; border-bottom: 1px solid #5c4637; }
.whisky-days article { padding: 25px 22px 25px 0; }
.whisky-days time { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.whisky-days h3 { margin: 12px 0 4px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.whisky-days p { margin: 0; color: #735c4c; font-size: .84rem; }
.whisky-prices { margin: 40px 0 25px; }
.whisky-prices div { display: grid; grid-template-columns: 1fr auto; gap: 25px; padding: 15px 0; border-bottom: 1px solid rgba(73,53,40,.22); }
.whisky-prices strong { color: #7a421f; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.whisky-glass-note { max-width: 690px; margin: 25px 0 30px; color: #665247; font-size: .9rem; }
.whisky-facts .button { color: #fff; background: #6f3d22; }
.whisky-tastings { background: #f8f4ed; }
.whisky-tastings-head { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(40px,8vw,130px); }
.whisky-tasting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px,3vw,45px); margin-top: clamp(55px,8vw,105px); }
.whisky-tasting-grid article { display: grid; grid-template-rows: auto auto 1fr auto; padding: clamp(35px,5vw,65px); background: #fff; border-top: 4px solid var(--whisky); }
.whisky-type { margin: 0 0 18px; color: #8a4d25; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.whisky-tasting-grid h3 { min-height: 2.04em; margin: 0 0 13px; font-family: var(--serif); font-size: clamp(2.5rem,4vw,4.15rem); font-weight: 400; line-height: 1.02; letter-spacing: -.025em; }
.whisky-tasting-grid dl { margin: 35px 0 0; border-top: 1px solid var(--line); }
.whisky-tasting-grid dl div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.whisky-tasting-grid dt { font-weight: 800; }
.whisky-tasting-grid dd { margin: 0; }
.whisky-booking-note { max-width: 790px; margin: 35px 0 0; color: #6f625a; }
.whisky-availability-note { max-width: 790px; margin: 12px 0 0; color: #874b27; font-weight: 700; }
.whisky-tasting-ticket { margin-top: 25px; color: #fff; background: #6f3d22; }
.whisky-exhibitors { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,9vw,145px); color: #f5eadf; background: #28201c; }
.whisky-exhibitors .kicker { color: #dda66c; }
.whisky-exhibitors-head > p:last-child { max-width: 480px; color: #cfc1b8; }
.whisky-exhibitor-details { border-top: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.whisky-exhibitor-details summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-family: var(--serif); font-size: 1.35rem; list-style: none; }
.whisky-exhibitor-details summary::-webkit-details-marker { display: none; }
.whisky-exhibitor-details[open] summary span { transform: rotate(45deg); }
.whisky-exhibitor-details ul { columns: 2; column-gap: 45px; margin: 10px 0 30px; padding: 0; list-style: none; }
.whisky-exhibitor-details li { break-inside: avoid; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: #d6cac1; }
.whisky-music { padding: clamp(90px,12vw,170px) 24px; text-align: center; color: #2c211a; background: #c8894d; }
.whisky-music .kicker { color: #5f341c; }
.whisky-music p:last-child { margin: 25px auto 0; }
.whisky-visit { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px,8vw,130px); align-items: center; }
.whisky-visit-links { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.whisky-visit .button { margin-top: 12px; color: #fff; background: #6f3d22; }

/* Advent im Schloss */
.advent-page { --advent-red: #7d211c; --advent-dark: #171411; --advent-gold: #d4a965; --advent-cream: #f6f0e5; background: var(--advent-cream); }
.advent-hero { position: relative; min-height: min(880px,96svh); overflow: hidden; color: #fff; background: var(--advent-dark); }
.advent-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 48%; }
.advent-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(15,12,10,.76),rgba(15,12,10,.23) 68%),linear-gradient(0deg,rgba(15,12,10,.65),transparent 55%); }
.advent-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); bottom: clamp(65px,11vh,125px); max-width: 950px; }
.advent-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem,8vw,8.4rem); font-weight: 400; line-height: .86; letter-spacing: -.035em; text-shadow: 0 3px 28px rgba(0,0,0,.35); }
.advent-hero-date { margin: 30px 0 0; color: #efd5a7; font-weight: 700; letter-spacing: .08em; }
.advent-jump { display: grid; grid-template-columns: repeat(5,1fr); color: #f4e9dc; background: #221b17; }
.advent-jump a { padding: 23px 18px; color: inherit; border-right: 1px solid rgba(255,255,255,.13); text-align: center; text-decoration: none; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.advent-intro { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: clamp(45px,7vw,115px); align-items: start; }
.advent-intro h2,.advent-weekends h2,.advent-nikolaus h2,.advent-facts h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.6rem,4.8vw,5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.advent-intro .lead { margin: 0 0 24px; max-width: 780px; font-family: var(--serif); font-size: clamp(1.3rem,2vw,1.75rem); line-height: 1.5; }
.advent-intro img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; align-self: center; }
.advent-pillars { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); background: var(--advent-red); color: #fff8ed; }
.advent-pillars article { min-width: 0; min-height: 390px; padding: clamp(42px,4vw,68px); border-right: 1px solid rgba(255,255,255,.17); }
.advent-pillars h2 { margin: 0 0 24px; overflow-wrap: anywhere; hyphens: auto; font-family: var(--serif); font-size: clamp(1.8rem,2.8vw,3.15rem); font-weight: 400; line-height: 1.05; }
.advent-pillars p { color: #ead7cb; }
.advent-craft { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(48px,8vw,135px); align-items: center; overflow: hidden; }
.advent-craft-copy h2 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(2.7rem,5vw,5.25rem); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.advent-craft-copy p:not(.kicker) { max-width: 700px; }
.advent-craft-images { position: relative; min-height: clamp(520px,48vw,760px); }
.advent-craft-images img { position: absolute; display: block; object-fit: cover; box-shadow: 0 20px 55px rgba(51,31,19,.22); }
.advent-craft-main { inset: 0 0 9% 12%; width: 88%; height: 91%; object-position: center; }
.advent-craft-detail { left: 0; bottom: 0; width: 43%; height: 42%; border: 10px solid var(--advent-cream); object-position: center; }
.advent-weekends { background: #efe4d2; }
.advent-weekends-head { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(40px,8vw,130px); }
.advent-weekend-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; margin-top: clamp(55px,8vw,100px); background: rgba(73,51,38,.22); }
.advent-weekend { padding: clamp(35px,5vw,65px); background: #f8f2e8; }
.advent-weekend time { color: var(--advent-red); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.advent-weekend h3 { margin: 18px 0 24px; font-family: var(--serif); font-size: clamp(2rem,3vw,3rem); font-weight: 400; }
.advent-weekend p { max-width: 470px; color: #6d5b4e; }
.advent-program-note { margin: 35px 0 0; color: #6d5b4e; }
.advent-nikolaus { display: grid; grid-template-columns: 1fr 1fr; min-height: 690px; color: #fff; background: var(--advent-dark); }
.advent-nikolaus-photo { width: 100%; height: 100%; min-height: 690px; object-fit: cover; object-position: 50% 58%; }
.advent-nikolaus-copy { padding: clamp(55px,8vw,125px); align-self: center; }
.advent-nikolaus .kicker { color: var(--advent-gold); }
.advent-nikolaus p:last-child { max-width: 650px; color: #d8ccc3; }
.advent-gallery { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(16px,2.2vw,34px); padding: clamp(40px,6vw,88px) clamp(24px,7vw,120px); background: #6c201c; }
.advent-gallery figure { margin: 0; overflow: hidden; background: #2a1714; box-shadow: 0 16px 36px rgba(35,10,8,.24); }
.advent-gallery img { height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.advent-gallery figure:first-child img { object-position: 50% 65%; }
.advent-gallery figure:nth-child(2) img { object-position: 48% center; }
.advent-gallery figure:last-child img { object-position: center; }
.advent-facts { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,8vw,130px); align-items: start; }
.advent-fact-list { border-top: 1px solid #665143; }
.advent-fact-list div { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid rgba(73,51,38,.2); }
.advent-fact-list dt { font-weight: 800; }
.advent-fact-list dd { margin: 0; }
.advent-contact { background: var(--advent-red); }
.advent-contact .hero-actions { justify-content: center; }

/* Raunachtklang */
.raunacht-page { --night: #10161c; --night-soft: #1b252b; --ember: #a85e38; --copper: #c28b59; --mist: #e8e5df; background: #f1eee8; }
.raunacht-hero { position: relative; min-height: min(880px,96svh); overflow: hidden; color: #fff; background: var(--night); }
.raunacht-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 54%; }
.raunacht-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(6,10,14,.88),rgba(6,10,14,.42) 58%,rgba(6,10,14,.14)),linear-gradient(0deg,rgba(6,10,14,.72),transparent 58%); }
.raunacht-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); right: 24px; bottom: clamp(65px,11vh,125px); max-width: 980px; }
.raunacht-hero-copy .eyebrow { color: #e5c6a6; }
.raunacht-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem,8vw,8.2rem); font-weight: 400; line-height: .88; letter-spacing: -.045em; text-shadow: 0 3px 30px rgba(0,0,0,.4); }
.raunacht-hero-copy > p:not(.eyebrow) { margin: 24px 0 30px; font-family: var(--serif); font-size: clamp(1.35rem,2.3vw,2rem); }
.raunacht-ticket-button { color: #17120f; background: #e3b988; }
.raunacht-jump { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); color: #e9e4dc; background: var(--night); }
.raunacht-jump a { padding: 23px 18px; border-right: 1px solid rgba(255,255,255,.12); text-align: center; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.raunacht-intro { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr); gap: clamp(50px,8vw,135px); align-items: center; }
.raunacht-intro h2,.raunacht-sound h2,.raunacht-dates h2,.raunacht-facts h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.65rem,4.8vw,5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.raunacht-intro .lead,.raunacht-sound .lead { margin: 28px 0 20px; font-family: var(--serif); font-size: clamp(1.25rem,1.8vw,1.6rem); line-height: 1.55; }
.raunacht-intro img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 58%; }
.raunacht-stages { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); color: #f6f1e9; background: var(--night); }
.raunacht-stages article { min-width: 0; min-height: 390px; padding: clamp(42px,5vw,78px); border-right: 1px solid rgba(255,255,255,.12); }
.raunacht-stages span { color: var(--copper); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.raunacht-stages h2 { margin: 42px 0 22px; font-family: var(--serif); font-size: clamp(2.2rem,3.4vw,3.7rem); font-weight: 400; line-height: 1; }
.raunacht-stages p { max-width: 430px; color: #c9c6c0; }
.raunacht-sound { display: grid; grid-template-columns: minmax(0,.9fr) minmax(340px,1.1fr); gap: clamp(50px,8vw,135px); align-items: center; background: #d9d2c7; }
.raunacht-sound-copy { max-width: 650px; }
.raunacht-sound img { min-height: 620px; height: 100%; object-fit: cover; object-position: 50% 60%; }
.raunacht-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--night); }
.raunacht-gallery figure { margin: 0; min-width: 0; overflow: hidden; }
.raunacht-gallery img { height: clamp(500px,56vw,820px); object-fit: cover; }
.raunacht-gallery figure:first-child img { object-position: 50% 52%; }
.raunacht-gallery figure:last-child img { object-position: 50% 58%; }
.raunacht-dates { color: #f5f0e8; background: var(--night-soft); }
.raunacht-dates-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(45px,8vw,130px); }
.raunacht-dates .kicker { color: var(--copper); }
.raunacht-date-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: clamp(55px,8vw,100px); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.raunacht-date-grid article { min-width: 0; padding: clamp(30px,4vw,55px); border-right: 1px solid rgba(255,255,255,.2); }
.raunacht-date-grid article:last-child { border-right: 0; }
.raunacht-date-grid time span,.raunacht-date-grid time strong { display: block; }
.raunacht-date-grid time span { color: var(--copper); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.raunacht-date-grid time strong { margin-top: 12px; font-family: var(--serif); font-size: clamp(1.65rem,2.5vw,2.7rem); font-weight: 400; line-height: 1.1; }
.raunacht-date-grid p { margin: 18px 0 0; color: #c9c6c0; }
.raunacht-booking { display: flex; justify-content: flex-end; align-items: center; gap: 35px; margin-top: 46px; }
.raunacht-booking p { display: flex; align-items: baseline; gap: 20px; margin: 0; }
.raunacht-booking strong { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; white-space: nowrap; }
.raunacht-booking span { max-width: 430px; color: #c9c6c0; }
.raunacht-facts { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(45px,8vw,130px); align-items: start; }
.raunacht-facts dl { margin: 0; border-top: 1px solid #6e675e; }
.raunacht-facts dl div { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid rgba(43,36,32,.18); }
.raunacht-facts dt { font-weight: 800; }
.raunacht-facts dd { margin: 0; }
.raunacht-contact { background: #713b2d; }

/* Frühlingsmarkt */
.spring-page { --spring-green: #28462f; --spring-light: #eef0df; --spring-gold: #c98536; background: #f7f4ec; }
.spring-hero { position: relative; min-height: min(850px,94svh); overflow: hidden; color: #fff; background: var(--spring-green); }
.spring-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.spring-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(20,35,24,.82),rgba(20,35,24,.28) 62%,rgba(20,35,24,.08)),linear-gradient(0deg,rgba(20,35,24,.58),transparent 55%); }
.spring-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); right: 24px; bottom: clamp(62px,10vh,118px); max-width: 1080px; }
.spring-hero-copy .eyebrow { color: #f0d6a1; }
.spring-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.8rem,7.6vw,7.8rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; text-shadow: 0 3px 28px rgba(0,0,0,.28); }
.spring-hero-copy > p:last-child { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(1.3rem,2.3vw,2rem); }
.spring-jump { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); color: #f2efe7; background: var(--spring-green); }
.spring-jump a { padding: 23px 18px; border-right: 1px solid rgba(255,255,255,.16); text-align: center; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.spring-intro { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: clamp(50px,8vw,135px); align-items: center; }
.spring-intro h2,.spring-market h2,.spring-facts h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.65rem,4.8vw,5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.spring-intro .lead { margin: 28px 0 20px; font-family: var(--serif); font-size: clamp(1.25rem,1.8vw,1.6rem); line-height: 1.55; }
.spring-intro img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.spring-market { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 720px; color: #f5f1e7; background: var(--spring-green); }
.spring-market-photo img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; object-position: 50% 60%; }
.spring-market-copy { max-width: 760px; padding: clamp(55px,8vw,125px); align-self: center; }
.spring-market-copy .kicker { color: #e7bc78; }
.spring-market-copy p { color: #d9dfd4; }
.spring-facts { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,8vw,130px); align-items: start; background: var(--spring-light); }
.spring-facts dl { margin: 0; border-top: 1px solid #65705f; }
.spring-facts dl div { display: grid; grid-template-columns: 160px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid rgba(40,70,47,.2); }
.spring-facts dt { font-weight: 800; }
.spring-facts dd { margin: 0; }
.spring-contact { background: #9b552b; }
.spring-contact .hero-actions { justify-content: center; }

/* Pfingst-Ritter-Spiele */
.ritter-page { --ritter-dark: #191611; --ritter-red: #7b241d; --ritter-gold: #d19a4d; background: #f0eadf; }
.ritter-hero { position: relative; min-height: min(860px,94svh); overflow: hidden; color: #fff; background: var(--ritter-dark); }
.ritter-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.ritter-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(20,16,11,.88),rgba(20,16,11,.34) 62%,rgba(20,16,11,.08)),linear-gradient(0deg,rgba(20,16,11,.68),transparent 55%); }
.ritter-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); right: 24px; bottom: clamp(60px,10vh,115px); max-width: 950px; }
.ritter-hero-copy .eyebrow { color: #e7c38d; }
.ritter-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem,8vw,8.2rem); font-weight: 400; line-height: .86; letter-spacing: -.045em; text-shadow: 0 3px 30px rgba(0,0,0,.42); }
.ritter-hero-copy > p:not(.eyebrow) { margin: 24px 0 30px; font-family: var(--serif); font-size: clamp(1.35rem,2.3vw,2rem); }
.ritter-button { color: #19130d; background: #e0b16c; }
.ritter-intro { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: clamp(50px,8vw,135px); align-items: start; }
.ritter-intro h2,.ritter-more h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.65rem,4.9vw,5.15rem); font-weight: 400; line-height: 1.02; letter-spacing: -.038em; }
.ritter-intro .lead { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(1.28rem,1.9vw,1.65rem); line-height: 1.5; }
.ritter-glimpse { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ritter-dark); }
.ritter-glimpse figure { margin: 0; min-width: 0; overflow: hidden; }
.ritter-glimpse img { width: 100%; height: clamp(500px,52vw,780px); object-fit: cover; }
.ritter-glimpse figure:first-child img { object-position: 52% center; }
.ritter-glimpse figure:last-child img { object-position: 50% center; }
.ritter-more { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: clamp(50px,8vw,135px); align-items: center; color: #f6f0e6; background: var(--ritter-red); }
.ritter-more .kicker { color: #eccb94; }
.ritter-more p { margin-top: 0; color: #ead8cd; }
.ritter-more .button { display: inline-block; margin-top: 18px; color: #26140f; background: #f0d19e; }

/* Walpurgisnacht Rock */
.walpurgis-page { --walp-dark: #0d0c0f; --walp-red: #8c261c; --walp-ember: #ef7634; background: #f1ede7; }
.walpurgis-hero { position: relative; min-height: min(870px,95svh); overflow: hidden; color: #fff; background: var(--walp-dark); }
.walpurgis-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: brightness(1.1); }
.walpurgis-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(6,5,8,.82),rgba(6,5,8,.34) 62%,rgba(6,5,8,.08)),linear-gradient(0deg,rgba(6,5,8,.68),transparent 58%); }
.walpurgis-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); right: 24px; bottom: clamp(60px,10vh,115px); max-width: 1050px; }
.walpurgis-hero-copy .eyebrow { color: #f0a067; }
.walpurgis-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem,8vw,8.15rem); font-weight: 400; line-height: .86; letter-spacing: -.045em; text-shadow: 0 3px 32px rgba(0,0,0,.52); }
.walpurgis-hero-copy > p:last-child { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(1.35rem,2.3vw,2rem); }
.walpurgis-jump { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); color: #f2ece8; background: var(--walp-dark); }
.walpurgis-jump a { padding: 23px 18px; border-right: 1px solid rgba(255,255,255,.14); text-align: center; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.walpurgis-intro { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(320px,.88fr); gap: clamp(50px,8vw,135px); align-items: start; }
.walpurgis-intro h2,.walpurgis-stage h2,.walpurgis-program h2,.walpurgis-facts h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.65rem,4.85vw,5.05rem); font-weight: 400; line-height: 1.02; letter-spacing: -.037em; }
.walpurgis-intro .lead { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(1.28rem,1.9vw,1.65rem); line-height: 1.5; }
.walpurgis-stage { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 730px; color: #f7f0ea; background: var(--walp-dark); }
.walpurgis-stage > img { width: 100%; height: 100%; min-height: 730px; object-fit: cover; object-position: center; }
.walpurgis-stage-copy { max-width: 700px; padding: clamp(55px,8vw,125px); align-self: center; }
.walpurgis-stage-copy .kicker { color: #f39b5b; }
.walpurgis-stage-copy p { color: #ccc4c2; }
.walpurgis-program { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,8vw,135px); align-items: center; background: #e2d9d0; }
.walpurgis-program-copy { max-width: 680px; }
.walpurgis-program img { width: 100%; min-height: 620px; height: 100%; object-fit: cover; object-position: center 55%; }
.walpurgis-facts { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,8vw,130px); align-items: start; }
.walpurgis-facts dl { margin: 0; border-top: 1px solid #625a58; }
.walpurgis-facts dl div { display: grid; grid-template-columns: 155px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid rgba(50,40,40,.2); }
.walpurgis-facts dt { font-weight: 800; }
.walpurgis-facts dd { margin: 0; }
.walpurgis-contact { background: var(--walp-red); }
.walpurgis-contact .hero-actions { justify-content: center; }

/* Sächsische Bläserphilharmonie Open Air */
.concert-page,.blaeser-page { --blaeser-night: #102126; --blaeser-blue: #183b46; --blaeser-gold: #c7a56b; background: #f0eee8; }
.blaeser-hero { position: relative; min-height: min(870px,95svh); overflow: hidden; color: #fff; background: var(--blaeser-night); }
.blaeser-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }
.blaeser-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,18,22,.9),rgba(7,18,22,.38) 60%,rgba(7,18,22,.08)),linear-gradient(0deg,rgba(7,18,22,.72),transparent 58%); }
.blaeser-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); right: 24px; bottom: clamp(60px,10vh,115px); max-width: 1100px; }
.blaeser-hero-copy .eyebrow { color: #e4c68f; }
.blaeser-hero h1 { max-width: 950px; margin: 0; font-family: var(--serif); font-size: clamp(3.6rem,6.5vw,7rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; text-shadow: 0 3px 30px rgba(0,0,0,.45); }
.blaeser-hero-copy > p:last-child { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(1.35rem,2.3vw,2rem); }
.blaeser-jump { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); color: #f4f0e8; background: var(--blaeser-night); }
.blaeser-jump a { padding: 23px 18px; border-right: 1px solid rgba(255,255,255,.14); text-align: center; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.blaeser-intro { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: clamp(50px,8vw,135px); align-items: start; }
.blaeser-intro h2,.blaeser-orchestra h2,.blaeser-program h2,.blaeser-facts h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.65rem,4.8vw,5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.037em; }
.blaeser-intro .lead { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(1.28rem,1.9vw,1.65rem); line-height: 1.5; }
.blaeser-orchestra { position: relative; display: flex; min-height: 690px; padding: clamp(60px,9vw,145px); align-items: center; color: #f6f2e9; background: var(--blaeser-blue); }
.blaeser-orchestra-copy { max-width: 900px; }
.blaeser-orchestra-copy .kicker { color: #e3c488; }
.blaeser-orchestra-copy p { max-width: 760px; color: #d9e0df; }
.blaeser-orchestra-copy .button { display: inline-block; margin-top: 18px; }
.blaeser-credit { position: absolute; z-index: 2; right: clamp(20px,3vw,50px); bottom: 18px; margin: 0; color: rgba(255,255,255,.68); font-size: .78rem; }
.blaeser-program { text-align: center; background: #d9d3c8; }
.blaeser-program h2 { max-width: 950px; margin-inline: auto; }
.blaeser-program > p:last-child { max-width: 760px; margin: 26px auto 0; }
.blaeser-facts { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,8vw,130px); align-items: start; }
.blaeser-facts dl { margin: 0; border-top: 1px solid #5d6868; }
.blaeser-facts dl div { display: grid; grid-template-columns: 155px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid rgba(30,55,60,.2); }
.blaeser-facts dt { font-weight: 800; }
.blaeser-facts dd { margin: 0; }
.blaeser-contact { background: var(--blaeser-blue); }
.blaeser-contact .hero-actions { justify-content: center; }

/* Schloss- & Gartenmarkt */
.garden-page { --garden-dark: #263126; --garden-plum: #653a3f; --garden-gold: #d4a354; background: #f2ede3; }
.garden-hero { position: relative; min-height: min(860px,94svh); overflow: hidden; color: #fff; background: var(--garden-dark); }
.garden-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 57%; filter: saturate(.88) contrast(1.04); }
.garden-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(23,30,22,.88),rgba(23,30,22,.35) 62%,rgba(23,30,22,.08)),linear-gradient(0deg,rgba(23,30,22,.7),transparent 57%); }
.garden-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); right: 24px; bottom: clamp(60px,10vh,115px); max-width: 1100px; }
.garden-hero-copy .eyebrow { color: #efc785; }
.garden-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.9rem,7.8vw,8.1rem); font-weight: 400; line-height: .87; letter-spacing: -.045em; text-shadow: 0 3px 30px rgba(0,0,0,.42); }
.garden-hero-copy > p:last-child { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(1.35rem,2.3vw,2rem); }
.garden-jump { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); color: #f4eee5; background: var(--garden-dark); }
.garden-jump a { padding: 23px 18px; border-right: 1px solid rgba(255,255,255,.14); text-align: center; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.garden-intro { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(320px,.96fr); gap: clamp(50px,8vw,135px); align-items: start; }
.garden-intro h2,.garden-market h2,.garden-detail h2,.garden-facts h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.65rem,4.8vw,5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.037em; }
.garden-intro .lead { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(1.28rem,1.9vw,1.65rem); line-height: 1.5; }
.garden-market { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 720px; color: #f6f0e8; background: var(--garden-plum); }
.garden-market-copy { max-width: 760px; padding: clamp(55px,8vw,125px); align-self: center; }
.garden-market-copy .kicker { color: #ecc589; }
.garden-market-copy p { color: #eadbd8; }
.garden-market > img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; object-position: 48% 58%; }
.garden-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,8vw,135px); align-items: center; background: #dfd8c8; }
.garden-detail img { width: 100%; max-height: 650px; object-fit: cover; object-position: center; }
.garden-detail p:last-child { max-width: 680px; }
.garden-facts { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,8vw,130px); align-items: start; }
.garden-facts dl { margin: 0; border-top: 1px solid #62665b; }
.garden-facts dl div { display: grid; grid-template-columns: 155px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid rgba(45,60,43,.2); }
.garden-facts dt { font-weight: 800; }
.garden-facts dd { margin: 0; }
.garden-contact { background: var(--garden-dark); }
.garden-contact .hero-actions { justify-content: center; }

/* Antik- & Trödelmarkt */
.troedel-page { --troedel-dark: #27211c; --troedel-rust: #8b4428; --troedel-gold: #d3a45f; background: #f3eee5; }
.troedel-hero { position: relative; min-height: min(850px,94svh); overflow: hidden; color: #fff; background: var(--troedel-dark); }
.troedel-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.troedel-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(14,11,9,.3),transparent 58%),linear-gradient(0deg,rgba(24,19,15,.55),transparent 56%); }
.troedel-hero-copy { position: absolute; z-index: 2; left: clamp(24px,8vw,145px); right: 24px; bottom: clamp(60px,10vh,115px); max-width: 1080px; }
.troedel-hero-copy .eyebrow { color: #edc98d; }
.troedel-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.8rem,7.6vw,7.7rem); font-weight: 400; line-height: .88; letter-spacing: -.045em; text-shadow: 0 3px 30px rgba(0,0,0,.48); }
.troedel-hero-copy > p:last-child { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(1.35rem,2.3vw,2rem); }
.troedel-jump { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); color: #f5eee5; background: var(--troedel-dark); }
.troedel-jump a { padding: 23px 18px; border-right: 1px solid rgba(255,255,255,.14); text-align: center; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.troedel-intro { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: clamp(50px,8vw,135px); align-items: start; }
.troedel-intro h2,.troedel-pillars h2,.troedel-waldi h2,.troedel-facts h2,.troedel-sellers h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.65rem,4.8vw,5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.037em; }
.troedel-intro .lead,.troedel-waldi .lead { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(1.28rem,1.9vw,1.65rem); line-height: 1.5; }
.troedel-pillars { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); color: #f7f0e7; background: var(--troedel-rust); }
.troedel-pillars article { min-width: 0; min-height: 380px; padding: clamp(42px,4.5vw,72px); border-right: 1px solid rgba(255,255,255,.16); }
.troedel-pillars h2 { margin-bottom: 24px; font-size: clamp(2rem,3vw,3.2rem); }
.troedel-pillars p { color: #ead8ca; }
.troedel-waldi { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 760px; color: #f7f1e9; background: var(--troedel-dark); }
.troedel-waldi > img { width: 100%; height: 100%; min-height: 760px; object-fit: cover; object-position: 50% 20%; }
.troedel-waldi-copy { max-width: 780px; padding: clamp(55px,8vw,125px); align-self: center; }
.troedel-waldi-copy .kicker { color: var(--troedel-gold); }
.troedel-waldi-copy p { color: #d8ccc2; }
.troedel-waldi-copy .lead { color: #f4eee7; }
.troedel-waldi-copy .button { display: inline-block; margin-top: 18px; }
.troedel-facts { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,8vw,130px); align-items: start; }
.troedel-facts dl { margin: 0; border-top: 1px solid #6a5d53; }
.troedel-facts dl div { display: grid; grid-template-columns: 155px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid rgba(70,52,40,.2); }
.troedel-facts dt { font-weight: 800; }
.troedel-facts dd { margin: 0; }
.troedel-sellers { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,8vw,130px); align-items: center; color: #f6efe7; background: var(--troedel-rust); }
.troedel-sellers > div:last-child { max-width: 760px; }
.troedel-sellers .kicker { color: #f2cf96; }
.troedel-sellers p { color: #eddcd0; }
.troedel-sellers .hero-actions { margin-top: 30px; }
.troedel-contact { background: var(--troedel-dark); }
.troedel-contact .hero-actions { justify-content: center; }

/* Keep iOS data detection from changing editorial typography. */
a[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; font: inherit !important; }

.back-to-top { position: fixed; z-index: 20; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; background: rgba(33,27,24,.9); box-shadow: 0 8px 24px rgba(0,0,0,.24); font: 700 1.25rem/1 var(--sans); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease,transform .2s ease,visibility .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Legal pages */
.legal-hero { padding: clamp(150px,18vw,245px) clamp(24px,8vw,150px) clamp(70px,9vw,120px); color: #fff; background: #302723; }
.legal-hero .eyebrow { color: #e8c6b3; }
.legal-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.5rem,7vw,7.2rem); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.legal-content { max-width: 980px; margin: 0 auto; padding: clamp(70px,9vw,125px) clamp(24px,5vw,70px); }
.legal-content section + section { margin-top: 52px; padding-top: 45px; border-top: 1px solid #d7cec5; }
.legal-content h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(1.75rem,2.8vw,2.7rem); font-weight: 400; line-height: 1.08; }
.legal-content p { max-width: 800px; margin: 0 0 16px; }
.legal-content a { color: var(--wine); text-underline-offset: 3px; }
.legal-lead { margin: 0 0 65px !important; font-family: var(--serif); font-size: clamp(1.25rem,1.9vw,1.65rem); line-height: 1.55; }
.consent a { color: inherit; text-underline-offset: 3px; }

@media (max-width: 920px) {
  .site-header { min-height: 82px; }
  .brand { width: 165px; }
  .main-nav { display: none; position: absolute; top: 82px; left: 0; right: 0; padding: 24px; flex-direction: column; align-items: flex-start; gap: 18px; background: rgba(33,27,24,.97); }
  .main-nav.open { display: flex; }
  .menu-button { display: block; }
  .hero { min-height: 780px; }
  .hero > img { object-position: 53% 50%; }
  .paths, .rooms, .story, .celebration-intro, .room-feature, .room-feature-reverse, .ceremony, .good-to-know, .inquiry, .event-overview-head, .event-feature, .event-feature-reverse, .event-outlook, .castle-intro, .castle-architecture, .castle-history-heading, .castle-life, .castle-place, .contact-intro, .arrival-map, .accessibility, .whisky-intro, .whisky-facts, .whisky-tastings-head, .whisky-exhibitors, .whisky-visit, .raunacht-intro, .raunacht-sound, .raunacht-dates-head, .raunacht-facts { grid-template-columns: 1fr; }
  .whisky-experience { grid-template-columns: 1fr; }
  .spring-intro,.spring-market,.spring-facts { grid-template-columns: 1fr; }
  .ritter-intro,.ritter-more { grid-template-columns: 1fr; }
  .walpurgis-intro,.walpurgis-stage,.walpurgis-program,.walpurgis-facts { grid-template-columns: 1fr; }
  .blaeser-intro,.blaeser-facts { grid-template-columns: 1fr; }
  .garden-intro,.garden-market,.garden-detail,.garden-facts { grid-template-columns: 1fr; }
  .troedel-intro,.troedel-waldi,.troedel-facts,.troedel-sellers { grid-template-columns: 1fr; }
  .troedel-waldi > img { min-height: 620px; max-height: 820px; }
  .troedel-pillars { grid-template-columns: 1fr; }
  .troedel-pillars article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .garden-market > img { min-height: 560px; max-height: 760px; }
  .walpurgis-stage > img { min-height: 560px; max-height: 760px; }
  .walpurgis-program img { min-height: 520px; }
  .spring-market-photo img { min-height: 560px; max-height: 760px; }
  .whisky-experience article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .path-card { min-height: 600px; }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .advent-intro,.advent-craft,.advent-weekends-head,.advent-nikolaus,.advent-facts { grid-template-columns: 1fr; }
  .advent-craft-images { min-height: 680px; }
  .advent-nikolaus-photo { min-height: 600px; max-height: 780px; }
  .advent-pillars { grid-template-columns: 1fr; }
  .advent-pillars article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .raunacht-stages { grid-template-columns: 1fr; }
  .raunacht-stages article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .raunacht-sound img { min-height: 500px; }
  .raunacht-date-grid { grid-template-columns: 1fr; }
  .raunacht-date-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .raunacht-date-grid article:last-child { border-bottom: 0; }
  .raunacht-booking { align-items: flex-start; flex-direction: column; }
  .rooms-photo { order: 2; }
  .story-photo { min-height: 420px; }
  .story-photo img { min-height: 420px; }
  .service-statement { grid-template-columns: 1fr 1fr; }
  .room-feature-reverse img { order: 0; }
  .event-feature-reverse .event-feature-image { order: 0; }
  .date-index { grid-template-columns: repeat(2,1fr); }
  .date-index a:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.2); }
  .event-outlook { grid-template-columns: 1fr; }
  .castle-architecture-images { max-width: 760px; }
  .castle-life-image { order: 2; }
  .arrival-map img { justify-self: start; }
  .room-feature img, .ceremony > img { min-height: 470px; }
  footer { grid-template-columns: 180px 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .advent-jump { grid-template-columns: 1fr; }
  .spring-jump { grid-template-columns: 1fr; }
  .spring-hero h1 { font-size: clamp(3.2rem,15vw,4.8rem); }
  .spring-hero > img { object-position: 58% center; }
  .spring-market-photo img { min-height: 480px; }
  .spring-facts dl div { grid-template-columns: 1fr; gap: 5px; }
  .ritter-hero h1 { font-size: clamp(3.25rem,16vw,5rem); }
  .ritter-hero > img { object-position: 58% center; }
  .ritter-glimpse { grid-template-columns: 1fr; }
  .ritter-glimpse img { height: 500px; }
  .walpurgis-jump { grid-template-columns: 1fr; }
  .walpurgis-hero h1 { font-size: clamp(3.15rem,15vw,4.8rem); }
  .walpurgis-hero > img { object-position: 57% center; }
  .walpurgis-stage > img,.walpurgis-program img { min-height: 470px; }
  .walpurgis-facts dl div { grid-template-columns: 1fr; gap: 5px; }
  .blaeser-jump { grid-template-columns: 1fr; }
  .blaeser-hero h1 { font-size: clamp(3.05rem,14vw,4.7rem); }
  .blaeser-hero > img { object-position: 61% center; }
  .blaeser-facts dl div { grid-template-columns: 1fr; gap: 5px; }
  .garden-jump { grid-template-columns: 1fr; }
  .garden-hero h1 { font-size: clamp(3.05rem,14vw,4.7rem); }
  .garden-hero > img { object-position: 58% center; }
  .garden-market > img { min-height: 480px; }
  .garden-facts dl div { grid-template-columns: 1fr; gap: 5px; }
  .troedel-jump { grid-template-columns: 1fr 1fr; }
  .troedel-hero h1 { font-size: clamp(3.05rem,14vw,4.7rem); }
  .troedel-hero > img { object-position: 78% center; }
  .troedel-hero-shade { background: linear-gradient(90deg,rgba(12,9,7,.82),rgba(12,9,7,.2) 82%),linear-gradient(0deg,rgba(24,19,15,.58),transparent 58%); }
  .troedel-waldi > img { min-height: 560px; }
  .troedel-facts dl div { grid-template-columns: 1fr; gap: 5px; }
  .raunacht-jump { grid-template-columns: 1fr 1fr; }
  .raunacht-hero h1 { font-size: clamp(3.45rem,16vw,5rem); }
  .raunacht-stages,.raunacht-gallery { grid-template-columns: 1fr; }
  .raunacht-stages article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .raunacht-gallery img { height: 560px; }
  .raunacht-booking p { align-items: flex-start; flex-direction: column; gap: 4px; }
  .raunacht-facts dl div { grid-template-columns: 1fr; gap: 5px; }
  .advent-nikolaus-photo { min-height: 560px; }
  .advent-craft { gap: 42px; }
  .advent-craft-images { display: grid; gap: 14px; min-height: 0; }
  .advent-craft-images img { position: static; width: 100%; height: auto; border: 0; box-shadow: none; }
  .advent-craft-main { aspect-ratio: 4 / 3; }
  .advent-craft-detail { aspect-ratio: 3 / 2; }
  .advent-weekend-grid,.advent-gallery { grid-template-columns: 1fr; }
  .advent-hero h1 { font-size: clamp(3.5rem,18vw,5.5rem); }
  .advent-fact-list div { grid-template-columns: 1fr; gap: 5px; }
  .site-header { padding-inline: 18px; }
  .hero { min-height: 720px; }
  .hero > img { object-position: 50% 50%; }
  .hero-shade { background: linear-gradient(180deg, rgba(14,13,13,.58), rgba(14,13,13,.05) 35%, rgba(14,13,13,.65)); }
  .hero-copy { left: 20px; right: 20px; bottom: 86px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.1rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
  .section { padding: 76px 20px; }
  .intro { padding-block: 86px; }
  .paths { padding: 0; }
  .path-card { min-height: 580px; }
  .path-content { left: 22px; right: 22px; bottom: 34px; }
  .section-heading { display: block; }
  .section-heading .text-link { display: inline-block; margin-top: 24px; }
  .event-grid { grid-template-columns: 1fr; gap: 46px; }
  .date-index { grid-template-columns: 1fr; padding-inline: 20px; }
  .date-index a { min-height: 0; display: grid; grid-template-columns: 132px 1fr auto; align-items: center; gap: 12px; padding: 21px 4px; border: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .date-index time { white-space: nowrap; }
  .date-index a:first-child { border-left: 0; }
  .date-index a:nth-child(odd) { border-left: 0; }
  .date-index span, .date-index small { margin-top: 0; }
  .date-index span { font-size: 1.2rem; }
  .event-feature { gap: 35px; margin: 0; }
  .event-feature-image, .event-feature-image img { min-height: 360px; }
  .event-outlook { gap: 25px; }
  .event-overview-head { min-height: 650px; }
  .event-overview-head > img { object-position: 58% center; }
  .event-hero-shade { background: linear-gradient(0deg,rgba(15,12,11,.78),rgba(15,12,11,.08) 72%); }
  .event-overview-copy { left: 20px; right: 20px; bottom: 54px; }
  .future-date { grid-template-columns: 105px 1fr 18px; gap: 14px; }
  .castle-hero { min-height: 0; color: #fff; background: #171411; }
  .castle-hero > img { position: relative; inset: auto; display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: contain; object-position: center; }
  .castle-hero .hero-shade { display: none; }
  .castle-hero-copy { position: relative; left: auto; right: auto; bottom: auto; padding: 42px 20px 56px; background: #171411; }
  .castle-hero h1 { max-width: 100%; font-size: clamp(2.6rem,10.7vw,3.1rem); line-height: .98; text-shadow: none; }
  .castle-architecture-images { grid-template-columns: 1fr; }
  .castle-architecture-images img, .castle-architecture-images img:last-child { height: 390px; }
  .castle-timeline li { grid-template-columns: 90px 1fr; gap: 16px; }
  .castle-life-image img, .castle-place > img { min-height: 390px; }
  .contact-hero { min-height: 610px; }
  .contact-hero > img { object-position: 53% center; }
  .contact-hero-copy { left: 20px; right: 20px; bottom: 58px; }
  .accessibility-list article { grid-template-columns: 40px 1fr; gap: 15px; }
  .whisky-hero { min-height: 720px; }
  .whisky-hero > img { object-position: 60% 50%; }
  .whisky-hero-shade { background: linear-gradient(0deg,rgba(18,13,11,.9),rgba(18,13,11,.12) 75%); }
  .whisky-hero-copy { left: 20px; right: 20px; bottom: 55px; }
  .whisky-intro-media img { height: 360px; margin-top: 25px; object-position: 50% 42%; }
  .whisky-jump { grid-template-columns: 1fr 1fr; }
  .whisky-jump a { border-bottom: 1px solid rgba(255,255,255,.12); }
  .whisky-days,.whisky-tasting-grid { grid-template-columns: 1fr; }
  .whisky-tasting-grid h3 { min-height: 0; }
  .whisky-days article { border-bottom: 1px solid rgba(73,53,40,.22); }
  .whisky-prices div { grid-template-columns: 1fr; gap: 4px; }
  .whisky-exhibitor-details ul { columns: 1; }
  .rooms { padding-inline: 0; gap: 52px; }
  .rooms-copy { padding: 0 20px; }
  .rooms-photo, .rooms-photo img { min-height: 430px; }
  .story { padding-inline: 20px; }
  .story-photo, .story-photo img { min-height: 380px; }
  .celebration-hero { min-height: 650px; }
  .celebration-hero > img { object-position: 58% 50%; }
  .service-statement { grid-template-columns: 1fr; padding-bottom: 70px; }
  .room-pair, .planning-steps, .inquiry-form { grid-template-columns: 1fr; }
  .room-pair figure:nth-child(2) { margin-top: 45px; }
  .room-pair figcaption { display: block; }
  .room-pair figcaption span { display: block; margin-top: 7px; }
  .room-feature img, .ceremony > img { min-height: 380px; }
  footer { grid-template-columns: 1fr; }
  footer img { max-width: 180px; }
  .footer-links { grid-column: auto; }
}

@media (min-width: 921px) {
  .back-to-top { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
