:root {
  color-scheme: light;
  --navy: #101c3f;
  --navy-2: #172651;
  --gold: #d99b37;
  --gold-2: #e5b45d;
  --paper: #ffffff;
  --warm: #f6f4ef;
  --muted: #657085;
  --ink: #121826;
  --line: #e1e5ec;
  --danger: #a83b3b;
  --success: #1f7a59;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(16, 28, 63, 0.12);
  --heading: "Libre Baskerville", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 0 clamp(16px, 4vw, 48px);
  color: #fff;
  background: rgba(16, 28, 63, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(16, 28, 63, 0.97);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 700;
}

.brand-text {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-nav .nav-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 6px;
  background: var(--gold);
  color: var(--navy);
}

.site-nav .nav-login:hover,
.site-nav .nav-login:focus-visible {
  background: var(--gold-2);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 28, 63, 0.95) 0%, rgba(16, 28, 63, 0.75) 42%, rgba(16, 28, 63, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 28, 63, 0.78) 0%, rgba(16, 28, 63, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 116px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.hotel-card h3,
.booking-panel h3,
.venue-grid h2,
.form-copy h2,
.travel-layout h2,
.legal-card h1 {
  font-family: var(--heading);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.35rem);
  line-height: 1.02;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(217, 155, 55, 0.28);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-2);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 58px 0 0;
}

.hero-facts div {
  min-height: 106px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-muted,
.quick-section {
  background: var(--warm);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.venue-grid h2,
.form-copy h2,
.travel-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
}

.section-heading p:last-child,
.section-intro,
.form-copy > p,
.travel-layout > div > p {
  color: var(--muted);
  font-size: 1rem;
}

.quick-section {
  padding: 28px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-card,
.guide-card,
.travel-grid article,
.booking-panel,
.rsvp-form,
.legal-card,
.info-list article {
  border: 1px solid rgba(16, 28, 63, 0.1);
  border-radius: 8px;
  background: var(--paper);
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 16px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover,
.guide-card:hover,
.travel-grid article:hover {
  border-color: rgba(217, 155, 55, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quick-card i,
.guide-card i,
.travel-grid i,
.info-list i {
  color: var(--gold);
  font-size: 1.35rem;
}

.hotel-layout,
.form-layout,
.venue-grid,
.travel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.hotel-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hotel-card img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
}

.hotel-card-body,
.booking-panel,
.rsvp-form {
  padding: clamp(24px, 4vw, 36px);
}

.tag {
  display: inline-flex;
  margin: 0 0 16px;
  border-radius: 999px;
  background: rgba(217, 155, 55, 0.12);
  color: #8a5b16;
  padding: 6px 12px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hotel-card h3,
.booking-panel h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.feature-list i {
  color: var(--success);
}

.booking-panel {
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow);
}

.booking-panel dl {
  display: grid;
  gap: 18px;
  margin: 22px 0;
}

.booking-panel dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-panel dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.form-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.form-copy {
  position: sticky;
  top: 100px;
}

.notice {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(16, 28, 63, 0.1);
}

.notice i {
  color: var(--success);
  font-size: 1.4rem;
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.rsvp-form {
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rsvp-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  font-weight: 500;
}

.rsvp-form textarea {
  padding-top: 12px;
  resize: vertical;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  outline: 3px solid rgba(217, 155, 55, 0.22);
  border-color: var(--gold);
}

.rsvp-form .is-invalid {
  border-color: var(--danger);
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 11px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.check-row input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--muted);
  font-weight: 700;
}

.form-status[data-type="success"] {
  color: var(--success);
}

.form-status[data-type="error"] {
  color: var(--danger);
}

.venue-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.info-list article {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.info-list h3,
.guide-card h3,
.travel-grid h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.info-list p,
.guide-card p,
.travel-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.venue-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.venue-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.venue-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 8px;
  background: rgba(16, 28, 63, 0.9);
  color: #fff;
  padding: 16px;
  font-weight: 700;
}

.agenda-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.agenda-tab {
  min-height: 58px;
  border: 1px solid rgba(16, 28, 63, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}

.agenda-tab span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.agenda-tab.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.agenda-tab.is-active span {
  color: rgba(255, 255, 255, 0.68);
}

.agenda-panel {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.agenda-panel[hidden] {
  display: none;
}

.agenda-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  border: 1px solid rgba(16, 28, 63, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.agenda-item time {
  color: var(--gold);
  font-weight: 800;
}

.agenda-item h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
}

.agenda-item p {
  margin: 0;
  color: var(--muted);
}

.agenda-item span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.guide-card,
.travel-grid article {
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.guide-card i,
.travel-grid i {
  display: inline-flex;
  margin-bottom: 18px;
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-navy .eyebrow {
  color: var(--gold);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.68);
}

.travel-layout {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.travel-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.travel-grid h3 {
  color: #fff;
}

.site-footer {
  background: #0a1229;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 56px 0;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px max(16px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.8rem;
}

.event-auth-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(10, 18, 41, 0.68);
  padding: 24px;
}

.event-auth-modal[hidden] {
  display: none;
}

body.auth-modal-open {
  overflow: hidden;
}

.event-auth-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  width: min(900px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.event-auth-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(16, 28, 63, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  cursor: pointer;
}

.event-auth-close:hover,
.event-auth-close:focus-visible {
  background: #fff;
}

.event-auth-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(16, 28, 63, 0.34), rgba(16, 28, 63, 0.95)),
    url("../img/milan-hero.jpg") center/cover;
  color: #fff;
  padding: clamp(28px, 4vw, 42px);
}

.event-auth-visual h2,
.event-auth-content h3 {
  margin: 0;
  font-family: var(--heading);
  letter-spacing: 0;
  line-height: 1.12;
}

.event-auth-visual h2 {
  max-width: 360px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.event-auth-visual p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.event-auth-visual ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.event-auth-visual li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.event-auth-visual i {
  color: var(--gold);
}

.event-auth-content {
  display: grid;
  align-content: center;
  min-height: 560px;
  padding: clamp(28px, 5vw, 52px);
}

.event-auth-view[hidden] {
  display: none;
}

.event-auth-content h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 2.45rem);
}

.event-auth-help,
.event-auth-switch {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.event-auth-help {
  margin-bottom: 20px;
}

.event-auth-form {
  display: grid;
  gap: 16px;
}

.event-auth-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.event-auth-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  font-weight: 500;
}

.event-auth-form input:focus {
  outline: 3px solid rgba(217, 155, 55, 0.22);
  border-color: var(--gold);
}

.event-auth-form .is-invalid {
  border-color: var(--danger);
}

.event-auth-form .field-error {
  margin: -8px 0 0;
  color: var(--danger);
  font-size: 0.84rem;
  font-weight: 700;
}

.event-auth-form .btn {
  width: 100%;
}

.event-auth-switch {
  margin-top: 18px;
}

.event-auth-switch button {
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 0;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(16, 28, 63, 0.96);
  color: #fff;
  padding: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-actions a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.legal-page {
  background: var(--warm);
}

.legal-page .site-header {
  position: sticky;
}

.legal-nav {
  display: flex;
}

.legal-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-card {
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 6vw, 3.3rem);
}

.legal-card h2 {
  margin: 34px 0 8px;
  font-size: 1.1rem;
}

.legal-card p {
  color: var(--muted);
}

.legal-card a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(16, 28, 63, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-login {
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .quick-grid,
  .guide-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-layout,
  .form-layout,
  .venue-grid,
  .travel-layout {
    grid-template-columns: 1fr;
  }

  .event-auth-dialog {
    grid-template-columns: 1fr;
  }

  .event-auth-visual,
  .event-auth-content {
    min-height: auto;
  }

  .event-auth-visual {
    padding-top: 72px;
  }

  .booking-panel,
  .form-copy {
    position: static;
  }

  .venue-visual img {
    height: 390px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding: 0 12px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-content {
    padding-top: 98px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }

  .hero-actions,
  .legal-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-facts,
  .quick-grid,
  .form-grid,
  .guide-grid,
  .travel-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hotel-card-body,
  .booking-panel,
  .rsvp-form {
    padding: 22px;
  }

  .agenda-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .agenda-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .venue-visual img {
    height: 310px;
  }

  .footer-bottom,
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-auth-modal {
    padding: 12px;
  }

  .event-auth-dialog {
    width: 100%;
  }

  .event-auth-visual,
  .event-auth-content {
    padding: 24px;
  }

  .event-auth-close {
    top: 10px;
    right: 10px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}
