:root {
  color-scheme: light;
  --bg: #f7fbfe;
  --paper: #ffffff;
  --paper-blue: #eaf4fa;
  --blue: #236b99;
  --blue-dark: #174d73;
  --blue-deep: #10384f;
  --blue-soft: #d7ecf7;
  --cyan: #83bfdc;
  --text: #173344;
  --muted: #5c7584;
  --line: #cfdfE8;
  --success: #2b806a;
  --shadow: rgba(21, 69, 97, .12);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--bg); }
body.modal-open { overflow: hidden; }
.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-page .nav { flex-wrap: wrap; gap: 12px; padding-block: 14px; }
.legal-content { flex: 1; max-width: 900px; padding-block: clamp(40px, 7vw, 80px); }
.legal-content h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
.legal-card { padding: clamp(24px, 5vw, 48px); border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.legal-card section + section { margin-top: 32px; }
.legal-card h2 { font-size: clamp(1.15rem, 3vw, 1.4rem); line-height: 1.4; letter-spacing: -.02em; overflow-wrap: anywhere; }
.legal-card address { font-style: normal; line-height: 1.8; }
.legal-card p { margin-bottom: 0; }
.legal-card a { text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.legal-page a:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
.legal-footer, .legal-footer nav { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.legal-footer { justify-content: space-between; }
.legal-footer a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(3.1rem, 7vw, 6.4rem); font-weight: 500; line-height: .96; letter-spacing: -.065em; }
h2 { margin-bottom: 20px; font-size: clamp(2.15rem, 4.8vw, 4.3rem); font-weight: 500; line-height: 1.02; letter-spacing: -.05em; }
h3 { margin-bottom: 12px; font-size: 1.25rem; font-weight: 500; line-height: 1.28; }
p { line-height: 1.7; }
.shell { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--blue); font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.large-copy { color: var(--text) !important; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.55; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 20px; border-radius: 999px; font-weight: 500; transition: transform .18s ease, background-color .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { border: 1px solid var(--blue); color: #fff; background: var(--blue); }
.button-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.button-secondary { border: 1px solid var(--blue); color: var(--blue-dark); background: transparent; }
.button-secondary:hover { background: var(--blue-soft); }
.button-light { border: 1px solid #fff; color: var(--blue-dark); background: #fff; }
.button-quiet { border: 1px solid transparent; color: var(--muted); background: transparent; }
.button-quiet:hover { color: var(--blue-dark); background: var(--blue-soft); }
.emergency { padding: 8px 20px; color: #fff; background: var(--blue-deep); font-size: .72rem; text-align: center; }

.header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid rgba(207, 223, 232, .8); background: rgba(247, 251, 254, .92); backdrop-filter: blur(14px); }
.nav { display: flex; align-items: center; gap: 26px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand > span:last-child { display: grid; gap: 2px; }
.brand strong { font-weight: 500; }
.brand small { color: var(--muted); font-size: .68rem; }
.brand-mark { display: grid; align-content: center; width: 38px; height: 38px; padding: 9px 7px; border-radius: 13px 13px 13px 3px; background: var(--blue-soft); }
.brand-mark span { display: block; width: 100%; height: 1px; margin: 2px 0; background: var(--blue); transform-origin: center; }
.brand-mark span:first-child { transform: rotate(-5deg); }
.brand-mark span:last-child { transform: rotate(5deg); }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: .86rem; }
.nav-links a:hover { color: var(--blue); }
.language-switch { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.language-switch button { min-width: 36px; height: 32px; padding: 0 8px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; font-size: .72rem; font-weight: 500; }
.language-switch button[aria-pressed="true"] { color: #fff; background: var(--blue); }
.nav-cta { min-height: 40px; padding: 9px 16px; }

.hero { position: relative; overflow: hidden; background: linear-gradient(130deg, var(--bg), var(--blue-soft)); }
.hero::before { content: ""; position: absolute; width: 600px; height: 600px; right: -280px; top: -320px; border: 90px solid rgba(131, 191, 220, .16); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 58px; align-items: center; min-height: 760px; padding-block: 76px; position: relative; }
.hero-copy { max-width: 690px; }
.hero-lead { margin-bottom: 14px; color: var(--blue-dark); font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
.hero-text { max-width: 650px; margin-bottom: 28px; color: var(--muted); font-size: 1.05rem; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 34px; color: var(--muted); font-size: .77rem; }
.hero-meta > span { display: flex; align-items: center; gap: 7px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.portrait-stage { position: relative; min-height: 560px; }
.portrait-art { position: absolute; inset: 0 0 0 8%; overflow: hidden; border-radius: 220px 220px 30px 30px; background: linear-gradient(145deg, #b9dceb, #4f8aac); box-shadow: 0 28px 70px var(--shadow); }
.portrait-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.video-chip { position: absolute; left: 0; bottom: 28px; display: flex; align-items: center; gap: 12px; max-width: 290px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.8); border-radius: 16px; color: var(--text); background: rgba(255,255,255,.9); box-shadow: 0 18px 44px var(--shadow); text-align: left; }
.video-chip > span:last-child { display: grid; gap: 3px; }
.video-chip strong { font-size: .83rem; font-weight: 500; }
.video-chip small { color: var(--muted); font-size: .68rem; }
.play, .media-play { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: var(--blue); font-size: .72rem; }
.availability { position: absolute; right: -6px; top: 70px; display: flex; align-items: center; gap: 7px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: 0 14px 38px var(--shadow); color: var(--blue-dark); font-size: .72rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

.intro-section { padding-block: 92px; background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .22fr .78fr; gap: 44px; }
.section-number { color: var(--cyan); font-size: 5rem; font-weight: 500; letter-spacing: -.06em; }
.intro-grid > div { max-width: 820px; }
.intro-grid > div > p:not(.eyebrow):not(.large-copy) { color: var(--muted); }
blockquote { margin: 34px 0 0; padding: 24px 0 0 28px; border-left: 3px solid var(--cyan); color: var(--blue-dark); font-family: Georgia, serif; font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.45; }
.intro-photos { display: grid; grid-template-columns: 1.12fr .88fr; gap: 12px; margin-top: 36px; }
.intro-photos figure { height: 300px; margin: 0; overflow: hidden; border-radius: 20px; }
.intro-photos figure:last-child { margin-top: 42px; }
.intro-photos img { width: 100%; height: 100%; object-fit: cover; }
.intro-photos figure:first-child img { object-position: center 38%; }
.intro-photos figure:last-child img { object-position: center 34%; }
.section { padding-block: 96px; }
.tinted { background: var(--paper-blue); }
.section-heading { display: grid; grid-template-columns: 1fr .82fr; gap: 54px; align-items: end; margin-bottom: 40px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 570px; margin-bottom: 4px; color: var(--muted); }

.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.topic-card { min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.topic-card.featured { color: #fff; background: var(--blue); border-color: var(--blue); }
.card-index { display: inline-block; margin-bottom: 54px; color: var(--cyan); font-size: .72rem; }
.topic-card p { max-width: 520px; color: var(--muted); font-size: .9rem; }
.topic-card.featured p, .topic-card.featured .card-index { color: rgba(255,255,255,.78); }
.room-photo { position: relative; height: 430px; margin: 18px 0 0; overflow: hidden; border-radius: 26px; }
.room-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.room-photo::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(10,42,59,.78)); }
.room-photo figcaption { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 24px; max-width: 560px; color: #fff; font-family: Georgia, serif; font-size: clamp(1.25rem, 2.8vw, 2rem); line-height: 1.35; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.about-visual { position: relative; display: flex; min-height: 590px; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 28px; border-radius: 32px 180px 32px 32px; color: #fff; background: linear-gradient(145deg, #b7d8e8, #3c789b); }
.about-main { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.about-detail { position: absolute; z-index: 2; right: 18px; bottom: 82px; width: 34%; height: 190px; object-fit: cover; object-position: center 32%; border: 5px solid rgba(255,255,255,.94); border-radius: 18px; box-shadow: 0 16px 34px rgba(11,45,63,.2); }
.about-visual p { position: relative; margin: 0; padding: 13px 16px; border-radius: 13px; background: rgba(16,56,79,.58); backdrop-filter: blur(8px); font-size: .78rem; }
.about-copy > p:not(.eyebrow):not(.large-copy) { color: var(--muted); }
.about-quote { display: grid; gap: 5px; margin-top: 28px; padding: 20px 22px; border-radius: 16px; background: var(--blue-soft); color: var(--blue-dark); }
.about-quote strong { font-size: 1.2rem; font-weight: 500; }

.process-section { color: #fff; background: var(--blue-deep); }
.process-section .eyebrow { color: var(--cyan); }
.process-list { border-top: 1px solid rgba(255,255,255,.18); }
.process-list article { display: grid; grid-template-columns: 100px .6fr 1fr; gap: 32px; align-items: start; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-list article > span { color: var(--cyan); font-size: .75rem; }
.process-list h3 { font-size: 1.5rem; }
.process-list p { margin: 0; color: rgba(255,255,255,.7); }

.methods-section { background: var(--paper); }
.methods-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.methods-grid > div:last-child > p:not(.large-copy):not(.method-focus) { color: var(--muted); }
.method-focus { margin: 26px 0; padding-left: 20px; border-left: 3px solid var(--blue); color: var(--blue-dark); font-size: 1.1rem; font-weight: 500; }
.method-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.method-tags span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--bg); font-size: .72rem; }

.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.offer-card { display: flex; min-height: 340px; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.offer-card.urgent { background: var(--blue-soft); }
.offer-label { min-height: 30px; margin-bottom: 38px; color: var(--blue); font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.offer-card p:not(.offer-label) { color: var(--muted); font-size: .86rem; }
.price { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.price strong { color: var(--blue-dark); font-size: 1.7rem; font-weight: 500; }
.price span { color: var(--muted); font-size: .7rem; }
.price.stacked { align-items: flex-start; flex-direction: column; }
.price.stacked strong { font-size: 1rem; }
.packages { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; margin-top: 50px; padding: 36px; border-radius: 26px; color: #fff; background: var(--blue-dark); }
.packages .eyebrow { color: var(--cyan); }
.packages-copy h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.packages-copy p:last-child { margin-bottom: 0; color: rgba(255,255,255,.72); }
.package-options { display: grid; gap: 9px; }
.package-options article { display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 15px; }
.package-options article.selected { color: var(--blue-dark); background: #fff; border-color: #fff; }
.package-options article > span { font-size: 1.8rem; font-weight: 500; }
.package-options div { display: grid; gap: 2px; }
.package-options strong, .package-options b { font-weight: 500; }
.package-options small { color: rgba(255,255,255,.6); }
.package-options .selected small { color: var(--muted); }

.media-section { background: var(--paper); }
.media-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; }
.media-card { position: relative; display: flex; min-height: 300px; align-items: flex-end; overflow: hidden; padding: 24px; border: 0; border-radius: 24px; color: #fff; background: linear-gradient(145deg, #9bc9df, #2e6c8f); text-align: left; }
.media-card:first-child { min-height: 390px; }
.media-card:nth-child(2) { background: linear-gradient(145deg, #badbea, #537f98); }
.media-card:nth-child(3) { background: linear-gradient(145deg, #74abc8, #174d73); }
.media-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.media-card:first-child > img { object-position: center 48%; }
.media-card:nth-child(2) > img { object-position: center 48%; }
.media-card:nth-child(3) > img { object-position: center 43%; }
.media-card:hover > img { transform: scale(1.025); }
.media-shade { position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(7,35,50,.84)); }
.media-card > span:last-child { position: relative; display: grid; gap: 4px; max-width: 320px; }
.media-card strong { font-size: 1.1rem; font-weight: 500; }
.media-card small { color: rgba(255,255,255,.72); }
.media-card .media-play { position: absolute; z-index: 1; top: 20px; right: 20px; color: var(--blue-dark); background: rgba(255,255,255,.9); }
.inline-video-player { display: block; width: 100%; padding: 0; background: #071d28; object-fit: contain; }
.hero-inline-video { display: block; width: 100%; height: 100%; border-radius: inherit; background: #071d28; object-fit: contain; }
.custom-content-section { border-top: 1px solid var(--line); background: var(--paper); }
.custom-content-section:nth-child(even) { background: var(--blue-pale); }
.custom-content-shell { max-width: 900px; }
.custom-content-shell h2 { max-width: 760px; }
.custom-content-copy { max-width: 780px; margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.75; white-space: pre-line; }
.custom-content-blue { color: #fff; border-top: 0; background: var(--blue-dark) !important; }
.custom-content-blue .eyebrow { color: var(--cyan); }
.custom-content-blue .custom-content-copy { color: rgba(255,255,255,.76); }

.cta-section { padding-block: 68px; color: #fff; background: var(--blue); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-section .eyebrow { color: rgba(255,255,255,.72); }
.cta-section h2 { max-width: 760px; }
.cta-section p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.78); }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > button { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding: 22px 0; border: 0; color: var(--text); background: transparent; text-align: left; font-weight: 500; }
.faq-item i { font-size: 1.5rem; font-style: normal; font-weight: 400; transition: transform .18s ease; }
.faq-item > div { display: none; max-width: 700px; padding: 0 38px 20px 0; color: var(--muted); }
.faq-item > div p { margin: 0; }
.faq-item.open > div { display: block; }
.faq-item.open i { transform: rotate(45deg); }

.contact-section { background: var(--paper-blue); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 68px; }
.contact-grid > div > p:not(.eyebrow) { color: var(--muted); }
.location-card { display: flex; align-items: center; gap: 14px; max-width: 360px; margin-top: 28px; padding: 16px; border-radius: 16px; background: var(--paper); }
.location-pin { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--blue-dark); background: var(--blue-soft); font-size: 1.3rem; }
.location-card div { display: grid; gap: 3px; }
.location-card strong { font-weight: 500; }
.location-card small { color: var(--muted); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label, .modal-field { display: grid; gap: 7px; color: var(--muted); font-size: .75rem; }
.contact-form label:nth-child(n+3), .form-note { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea, .modal-field input, .modal-field select { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 13px; color: var(--text); background: var(--paper); outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus, .modal-field input:focus, .modal-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,107,153,.12); }
.contact-form textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: .68rem; }
.contact-form .button { grid-column: 1 / -1; justify-self: start; }

.crisis { padding: 18px 0; border-block: 1px solid var(--line); color: var(--muted); background: var(--paper); font-size: .72rem; }
.crisis strong { color: var(--text); font-weight: 500; }
.footer { padding: 54px 0 24px; color: #fff; background: var(--blue-deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 44px; }
.footer-brand { color: #fff; }
.footer-brand small, .footer-grid p { color: rgba(255,255,255,.65); }
.footer-grid p { max-width: 430px; margin-top: 18px; font-size: .8rem; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 10px; color: rgba(255,255,255,.68); font-size: .75rem; }
.footer-grid > div:not(:first-child) > strong { margin-bottom: 6px; color: #fff; font-weight: 500; }
.copyright { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.48); font-size: .66rem; }

.modal { width: min(590px, calc(100% - 28px)); max-height: calc(100% - 32px); padding: 28px; border: 1px solid var(--line); border-radius: 24px; color: var(--text); background: var(--paper); box-shadow: 0 30px 90px rgba(8,35,50,.28); }
.modal::backdrop { background: rgba(10,39,55,.66); backdrop-filter: blur(6px); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.modal-head h2 { margin: 0; font-size: 2rem; }
.modal-head .eyebrow { margin-bottom: 9px; }
.modal-close { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--text); background: transparent; font-size: 1.4rem; }
.modal > p { color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 18px 0; }
.choice { display: grid; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; color: var(--text); background: transparent; text-align: left; }
.choice strong { font-weight: 500; }
.choice small { color: var(--muted); }
.choice.selected { border-color: var(--blue); background: var(--blue-soft); }
.modal-field { margin-top: 12px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 22px; }
.progress { height: 6px; overflow: hidden; margin-bottom: 16px; border-radius: 999px; background: var(--blue-soft); }
.progress span { display: block; width: 33.333%; height: 100%; background: var(--blue); transition: width .2s ease; }
.progress[data-step="2"] span { width: 66.666%; }
.progress[data-step="3"] span { width: 100%; }
.test-count { color: var(--muted); font-size: .72rem; }
.test-question { font-size: 1.25rem; }
.answer-list { display: grid; gap: 8px; margin: 18px 0; }
.answer-list button { padding: 12px 14px; border: 1px solid var(--line); border-radius: 13px; color: var(--text); background: transparent; text-align: left; }
.answer-list button.selected { border-color: var(--blue); background: var(--blue-soft); }
.test-result-view { padding: 12px 2px 2px; text-align: center; }
.test-result-mark { display: grid; width: 62px; height: 62px; margin: 0 auto 18px; place-items: center; border-radius: 50%; color: #fff; background: var(--success); font-size: 1.5rem; }
.test-result-view h3 { margin-bottom: 12px; font-size: 1.55rem; font-weight: 520; }
.test-result-view > p { max-width: 480px; margin: 0 auto; color: var(--muted); line-height: 1.65; }
.test-result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 25px; }
.test-result-actions .test-result-restart { grid-column: 1 / -1; }
.toast { position: fixed; z-index: 60; top: 18px; right: 18px; display: none; max-width: 360px; padding: 14px 17px; border-radius: 14px; color: #fff; background: var(--success); box-shadow: 0 18px 45px rgba(8,35,50,.22); }
.toast.show { display: block; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .about-grid, .section-heading, .methods-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .portrait-stage { min-height: 520px; }
  .portrait-art { inset-inline: 12%; }
  .topic-grid, .offers-grid { grid-template-columns: 1fr 1fr; }
  .process-list article { grid-template-columns: 70px .6fr 1fr; }
  .packages { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-card:first-child { grid-column: 1 / -1; }
  .faq-layout { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 30px, 1180px); }
  .emergency { text-align: left; }
  .nav { min-height: 70px; gap: 9px; }
  .brand small { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .language-switch button { min-width: 31px; padding-inline: 6px; }
  .nav-cta { padding-inline: 12px; font-size: .75rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-grid { min-height: 0; padding-block: 60px; }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .button { width: 100%; }
  .portrait-stage { min-height: 410px; }
  .portrait-art { inset-inline: 2%; }
  .availability { top: 30px; right: 0; }
  .video-chip { left: 0; bottom: 20px; }
  .intro-section, .section { padding-block: 68px; }
  .intro-grid { grid-template-columns: 1fr; gap: 10px; }
  .section-number { margin-bottom: 0; font-size: 3.4rem; }
  .intro-photos { grid-template-columns: 1fr; }
  .intro-photos figure { height: 260px; }
  .intro-photos figure:last-child { margin-top: 0; }
  .topic-grid, .offers-grid, .media-grid, .contact-form { grid-template-columns: 1fr; }
  .topic-card, .offer-card { min-height: 0; }
  .card-index, .offer-label { margin-bottom: 30px; }
  .room-photo { height: 320px; }
  .room-photo figcaption { left: 20px; right: 20px; bottom: 18px; }
  .about-visual { min-height: 460px; border-radius: 26px 120px 26px 26px; }
  .about-detail { right: 12px; bottom: 74px; width: 38%; height: 140px; border-width: 4px; }
  .process-list article { grid-template-columns: 48px 1fr; gap: 16px; }
  .process-list article > div { grid-column: 2; }
  .packages { padding: 26px 20px; }
  .package-options article { grid-template-columns: 48px 1fr auto; }
  .media-card:first-child { grid-column: auto; min-height: 320px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-grid .button { width: 100%; }
  .contact-form label:nth-child(n+3), .form-note, .contact-form .button { grid-column: auto; }
  .contact-form .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { align-items: flex-start; flex-direction: column; }
  .choice-grid { grid-template-columns: 1fr; }
  .modal { padding: 22px 18px; }
  .modal-actions { align-items: stretch; flex-direction: column-reverse; }
  .modal-actions .button { width: 100%; }
  .test-result-actions { grid-template-columns: 1fr; }
  .test-result-actions .test-result-restart { grid-column: auto; }
}

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

.current-offers-section { background: var(--paper-blue); }
.current-offers-layout { display: grid; gap: 36px; align-items: start; }
.current-offers-layout.has-flyer { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.current-offer-flyer { display: grid; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); color: var(--blue-dark); }
.current-offer-flyer img { display: block; width: 100%; height: auto; }
.current-offer-flyer span { text-align: center; }
.current-offer-flyer:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.current-offers-text { white-space: pre-wrap; overflow-wrap: anywhere; font-size: 1.1rem; }
@media (max-width: 700px) {
  .current-offers-layout.has-flyer { grid-template-columns: minmax(0, 1fr); }
}

.current-events-nav { white-space: nowrap; }
#aktuelle-events { scroll-margin-top: 110px; }
@media (max-width: 1100px) and (min-width: 981px) {
  .nav.has-current-events { gap: 16px; }
  .has-current-events .nav-links { gap: 14px; }
}
@media (max-width: 980px) {
  .nav.has-current-events { flex-wrap: wrap; padding-block: 12px; row-gap: 12px; }
  .has-current-events .nav-links { display: flex; order: 5; width: 100%; justify-content: center; }
  .has-current-events .nav-links a:not(.current-events-nav) { display: none; }
  #aktuelle-events { scroll-margin-top: 145px; }
}

.current-event-price { font-size: 1.45rem; color: var(--blue-dark); font-weight: 600; white-space: pre-wrap; overflow-wrap: anywhere; }
.current-event-details { min-width: 0; }
.flyer-modal { width: min(1100px, 96vw); max-width: 96vw; padding: 52px 16px 16px; }
.flyer-modal > .modal-close { position: sticky; top: 0; display: block; margin: -40px 0 12px auto; background: var(--paper); }
.enlarged-flyer { display: block; width: 100%; height: auto; }
.event-name-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.event-form-error { color: #9a2535; }
.event-success { padding: 24px; background: var(--paper-blue); border-radius: 16px; }
.event-submit:disabled { cursor: wait; opacity: .6; }
@media (max-width: 680px) { .event-name-fields { grid-template-columns: 1fr; gap: 0; } }

.current-event-details .event-main-heading { font-size: clamp(1.65rem, 2.8vw, 2.5rem); color: var(--blue-dark); }
.current-event-details h3:not(.event-main-heading) { margin-top: 28px; color: var(--blue); font-size: 1.45rem; }
.current-event-date { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); white-space: pre-wrap; font-size: 1.25rem; font-weight: 600; color: var(--blue-dark); }
.current-event-details h3, .current-event-date { overflow-wrap: anywhere; }
