:root {
  --bg: #ffffff;
  --surface: #f6f6f6;
  --brand: #000000;
  --brand-2: #2f2f2f;
  --accent: #e61c28;
  --text: #111111;
  --muted: #4d4d4d;
  --line: #dfdfdf;
  --radius: 14px;
  --header-offset: 140px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-padding-top: var(--header-offset);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  z-index: 2000;
}
.skip-link:focus { top: 8px; }

a { color: var(--brand); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #111;
  outline-offset: 2px;
  box-shadow: 0 0 0 8px #ffd24d;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-top {
  background: #fff;
}
.header-top-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
}
.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #000;
  text-decoration: none;
  font-weight: 400;
}
.header-contact a:hover { color: var(--accent); }
.contact-icon {
  flex: 0 0 auto;
  color: #000;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  display: block;
  width: clamp(190px, 20vw, 230px);
  height: auto;
}

.navbar {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.main-nav { display: flex; gap: 30px; order: 1; }
.main-nav a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  padding: 18px 0;
}
.main-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  order: 2;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  min-height: 44px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.nav-toggle-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #000;
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, .64), rgba(0, 0, 0, .64)),
    url("../assets/images/hero-kuechentrend.jpg") center/cover no-repeat;
  padding: 90px 0 96px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}
.hero-grid-single {
  grid-template-columns: 1fr;
  max-width: 980px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.15;
}
.lead {
  margin: 0;
  font-size: clamp(18px, 2vw, 20px);
  color: #fff;
  max-width: 920px;
}
.hero .eyebrow {
  color: #fff;
}

.stats-strip {
  background:
    linear-gradient(rgba(0, 0, 0, .84), rgba(0, 0, 0, .84)),
    url("../assets/images/gallery-4.jpeg") center/cover no-repeat;
  color: #fff;
  border-bottom: 1px solid #262626;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.stat-item {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid #242424;
}
.stat-item:last-child { border-right: 0; }
.stat-item strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #ff5560;
}
.stat-item span {
  color: #d8d8d8;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-card,
.content-card,
.contact-box {
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 0;
  box-shadow: none;
}
.content-card,
.contact-box {
  padding: 28px 26px;
  background: rgba(255, 255, 255, .96);
  transition: transform .25s ease, box-shadow .25s ease;
}
.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}
.hero-card h2,
.content-card h2,
.contact-box h2,
.section-head h2 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  position: relative;
  padding-bottom: 8px;
}
.content-card h2::after,
.contact-box h2::after,
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--accent);
}
.hero-card ul { margin: 0; padding-left: 20px; }

.hero-cta-wrap {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #111;
}
.btn-primary { background: #111; color: #fff; }
.btn-primary:hover { background: #2a2a2a; color: #fff; }
.btn-ghost {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .15); }
.btn-outline {
  background: transparent;
  color: #111;
  border-color: #111;
}
.btn-outline:hover {
  background: #111;
  color: #fff;
}

.section { padding: 62px 0; }
.section-head {
  max-width: 820px;
  margin: 0 0 34px;
}
.section-head .section-intro {
  margin: 14px 0 0;
  font-size: 17px;
  color: var(--muted);
}
.section-exhibition {
  background:
    linear-gradient(rgba(255, 255, 255, .95), rgba(255, 255, 255, .95)),
    url("../assets/images/gallery-4.jpeg") center/cover no-repeat;
}
.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-ideas {
  background:
    linear-gradient(rgba(246, 246, 246, .95), rgba(246, 246, 246, .95)),
    url("../assets/images/gallery-2.jpeg") center/cover no-repeat;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.content-card p { margin: 0 0 12px; }
.content-card p:last-child { margin-bottom: 0; }
.content-card ul {
  margin: 0 0 12px;
  padding-left: 22px;
}
.content-card li {
  margin-bottom: 6px;
}
.text-link { font-weight: 700; }
.text-link:hover { text-decoration-thickness: 2px; }
.contact-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  margin: 0 0 12px;
}
.contact-list dt {
  font-weight: 700;
}
.contact-list dd {
  margin: 0;
}
.contact-list a { font-weight: 700; }
.inline-image {
  margin: 0 0 14px;
  border-radius: 10px;
  overflow: hidden;
}
.inline-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-rooms {
  background: #fff;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.room-card {
  position: relative;
  background: var(--surface);
  border-top: 3px solid var(--accent);
  padding: 26px 24px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
}
.room-index {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.room-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--brand);
}
.room-card p {
  margin: 0 0 10px;
  color: var(--muted);
}
.room-card p:last-child { margin-bottom: 0; }
.room-card-cta {
  background: #111;
  border-top-color: var(--accent);
}
.room-card-cta h3 { color: #fff; }
.room-card-cta p { color: #d9d9d9; }
.room-card-cta a { color: #fff; }
.room-card-cta a:hover { color: #ff8a92; }

.check-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 22px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.parallax-overlay .check-list li::before {
  border-left-color: #fff;
  border-bottom-color: #fff;
}
.pull-quote {
  margin: 6px 0 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.section-audience {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.audience-card {
  background: #fff;
  padding: 24px 22px;
  border-bottom: 3px solid var(--accent);
  transition: transform .25s ease, box-shadow .25s ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}
.audience-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
  color: var(--brand);
}
.audience-card p {
  margin: 0;
  color: var(--muted);
}

.section-region {
  background:
    linear-gradient(rgba(255, 255, 255, .95), rgba(255, 255, 255, .95)),
    url("../assets/images/gallery-3.jpeg") center/cover no-repeat;
}
.region-text p {
  margin: 0 0 26px;
  max-width: 900px;
}
.region-subhead,
.visit-subhead {
  margin: 0 0 16px;
  font-size: 20px;
  color: var(--brand);
}
.region-grid {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.region-item {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.region-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}
.region-distance {
  font-size: 13px;
  color: var(--muted);
}
.region-note {
  margin: 0;
  max-width: 900px;
  color: var(--muted);
}

.section-tour {
  background: #fff;
}
.tour-note {
  font-size: 15px;
  color: var(--muted);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 12px;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.hours-table th {
  font-weight: 700;
  padding-right: 16px;
}
.visit-note {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.section-faq {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.faq-list {
  border-top: 1px solid var(--line);
  background: #fff;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 18px 58px 18px 22px;
  min-height: 44px;
  color: var(--brand);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #fafafa; }
.faq-question {
  margin: 0;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--brand);
}
.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  background: var(--accent);
  transition: transform .25s ease, opacity .25s ease;
}
.faq-item summary::before {
  width: 16px;
  height: 2px;
  margin-top: -1px;
}
.faq-item summary::after {
  width: 2px;
  height: 16px;
  margin: -8px 7px 0 0;
}
.faq-item[open] summary::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item[open] summary {
  background: #fafafa;
}
.faq-answer {
  padding: 0 22px 20px;
  max-width: 900px;
}
.faq-answer p {
  margin: 0;
  color: var(--muted);
}
.faq-cta {
  margin: 22px 0 0;
  font-size: 16px;
}
.faq-cta a { font-weight: 700; }

.section-final-cta {
  background: #111;
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
}
.final-cta p { margin: 0 auto; max-width: 720px; color: #dcdcdc; }
.final-cta .hero-cta-wrap { justify-content: center; }
.final-cta .btn-outline {
  color: #fff;
  border-color: #fff;
}
.final-cta .btn-outline:hover {
  background: #fff;
  color: #111;
}
.final-cta .btn-primary {
  background: #fff;
  border-color: #fff;
  color: #111;
}
.final-cta .btn-primary:hover {
  background: #ececec;
  border-color: #ececec;
  color: #111;
}

.lightbox-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  cursor: zoom-in;
}
.lightbox-trigger::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(17, 17, 17, .72);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .55);
}
@media (forced-colors: active) {
  .lightbox-trigger::before {
    border: 2px solid ButtonText;
    background: ButtonFace;
  }
  .lightbox-trigger::after {
    forced-color-adjust: none;
    background:
      linear-gradient(ButtonText, ButtonText) center/16px 2px no-repeat,
      linear-gradient(ButtonText, ButtonText) center/2px 16px no-repeat;
  }
}
.lightbox-trigger::after {
  content: "";
  position: absolute;
  right: 21px;
  bottom: 21px;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(#fff, #fff) center/16px 2px no-repeat,
    linear-gradient(#fff, #fff) center/2px 16px no-repeat;
}
.lightbox-trigger:hover::before {
  background: rgba(17, 17, 17, .9);
}
.lightbox-trigger:focus-visible {
  outline: 3px solid #111;
  outline-offset: -6px;
  box-shadow: none;
}
.lightbox-trigger:focus-visible img {
  outline: 3px solid #fff;
  outline-offset: -3px;
}
body.lightbox-open {
  overflow: hidden;
}
body.lightbox-open .site-header {
  visibility: hidden;
}

.lightbox {
  padding: 0;
  margin: auto;
  border: none;
  background: transparent;
  color: #f5f5f5;
  box-shadow: none;
  border-radius: 0;
  width: fit-content;
  max-width: min(96vw, 1680px);
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}
.lightbox__inner {
  position: relative;
  padding: 0;
  margin: 0;
}
.lightbox__close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 12px));
  right: max(12px, env(safe-area-inset-right, 12px));
  z-index: 2147483647;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
}
.lightbox__close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.lightbox img {
  display: block;
  max-width: min(96vw, 1680px);
  max-height: 90vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
}
.lightbox__caption {
  margin: 16px 0 0;
  padding: 0 8px;
  font-size: 15px;
  line-height: 1.45;
  color: #e8e8e8;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}
.lightbox__caption:empty {
  display: none;
}

.contact-visual-section {
  background:
    linear-gradient(rgba(245, 245, 245, .84), rgba(245, 245, 245, .84)),
    url("../assets/images/kt-home-ausstellung.jpg") center/cover no-repeat;
}

.parallax-section {
  min-height: 520px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 84px 0;
}
.parallax-section + .parallax-section {
  margin-top: 0;
}
.parallax-service {
  background-image: url("../assets/images/bg-service.jpg");
}
.parallax-visit {
  background-image: url("../assets/images/bg-visit-cta.jpg");
}
.parallax-overlay {
  width: min(820px, 100%);
  background: linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .62));
  color: #fff;
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--accent);
}
.parallax-overlay .eyebrow,
.parallax-overlay h2,
.parallax-overlay p,
.parallax-overlay li,
.parallax-overlay a {
  color: #fff;
}
.parallax-overlay h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
}
.parallax-overlay p {
  font-size: 17px;
}

.gallery-section {
  padding-top: 0;
  padding-bottom: 0;
  background: #0d0d0d;
}
.image-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.image-row figure {
  margin: 0;
  overflow: hidden;
}
.image-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.image-row figure:hover img {
  transform: scale(1.06);
}

.site-footer {
  background: var(--brand);
  color: #fff;
  margin-top: 0;
  padding: 64px 0;
  border-top: 1px solid #2f2f2f;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.footer-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.contact-address {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  font-style: normal;
}
.contact-box .contact-address {
  color: var(--text);
}
.site-footer a {
  color: #ddd;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.reveal {
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 4px 20px 12px;
    flex-direction: column;
    gap: 0;
    max-height: calc(100dvh - var(--header-offset));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .region-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-grid, .two-col, .image-row, .stats-grid, .visit-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-right: 0;
    border-bottom: 1px solid #242424;
  }
  .stat-item:last-child {
    border-bottom: 0;
  }
  .parallax-section {
    background-attachment: scroll;
    min-height: 380px;
    padding: 56px 0;
  }
  .image-row img {
    height: 220px;
  }
  .header-top-inner {
    min-height: 0;
    padding: 12px 0;
    gap: 6px 18px;
  }
  .header-contact {
    flex-wrap: wrap;
    gap: 0 12px;
    font-size: 14px;
  }
  .hero-cta-wrap .btn {
    width: 100%;
  }
  .check-list { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 46px 0; }
}

@media (max-width: 640px) {
  .room-grid, .audience-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .faq-item summary {
    padding: 16px 52px 16px 16px;
  }
  .faq-question { font-size: 16px; }
  .faq-answer { padding: 0 16px 18px; }
  .content-card, .contact-box { padding: 22px 18px; }
  .parallax-overlay { padding: 26px 20px 24px; }
}

@media (max-width: 360px) {
  .header-contact a[href^="mailto"] { display: none; }
}

@media (max-height: 450px) {
  .site-header { position: static; }
  html { scroll-padding-top: 8px; }
}

@supports (-webkit-touch-callout: none) {
  .parallax-section { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .parallax-section { background-attachment: scroll; }
  .content-card:hover,
  .room-card:hover,
  .audience-card:hover,
  .image-row figure:hover img {
    transform: none;
  }
}
