:root {
  --ink: #123a42;
  --ink-soft: #49636a;
  --pine: #155e56;
  --pine-dark: #0d4640;
  --sky: #eaf6f5;
  --cream: #fbf8f1;
  --warm: #f3ead9;
  --terracotta: #b85d40;
  --terracotta-dark: #91412b;
  --white: #ffffff;
  --line: #d7e5e2;
  --shadow: 0 18px 45px rgba(21, 94, 86, .12);
  --shadow-soft: 0 10px 30px rgba(18, 58, 66, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --wrap: min(1160px, calc(100% - 40px));
  --ease: 190ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; }
button, .button { cursor: pointer; }
:focus-visible { outline: 3px solid #d48a3c; outline-offset: 3px; }
.skip-link {
  position: fixed; top: -80px; left: 18px; z-index: 2000;
  padding: 10px 16px; border-radius: 8px; background: var(--ink); color: white;
}
.skip-link:focus { top: 18px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 92px 0; }
.section--sky { background: var(--sky); }
.section--white { background: var(--white); }
.section--warm { background: var(--warm); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 14px;
  color: var(--pine); font-family: Manrope, sans-serif; font-size: .78rem;
  font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; content: ""; background: currentColor; }
h1, h2, h3, h4 { margin-top: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; line-height: 1.15; }
h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(2.55rem, 5.7vw, 5.2rem); letter-spacing: -.055em; }
h2 { margin-bottom: 17px; font-size: clamp(2rem, 3.7vw, 3.25rem); letter-spacing: -.045em; }
h3 { margin-bottom: 10px; font-size: 1.25rem; letter-spacing: -.025em; }
p { margin: 0 0 1.05em; }
.lead { max-width: 690px; color: var(--ink-soft); font-size: clamp(1.13rem, 1.8vw, 1.35rem); line-height: 1.55; }
.muted { color: var(--ink-soft); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; border: 1px solid transparent; border-radius: 999px;
  color: var(--white); background: var(--pine); font-family: Manrope, sans-serif;
  font-size: .94rem; font-weight: 800; line-height: 1; text-align: center; text-decoration: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.button:hover { background: var(--pine-dark); box-shadow: 0 8px 18px rgba(13, 70, 64, .23); transform: translateY(-2px); }
.button--warm { background: var(--terracotta); }
.button--warm:hover { background: var(--terracotta-dark); }
.button--line { border-color: var(--pine); color: var(--pine); background: transparent; }
.button--line:hover { color: white; background: var(--pine); }
.button--small { min-height: 42px; padding: 9px 14px; font-size: .84rem; }

/* Header */
.topline { color: #eafff9; background: var(--pine-dark); font-size: .86rem; }
.topline .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 38px; }
.topline p { margin: 0; }
.topline a { color: white; }
.site-header { position: relative; z-index: 50; background: rgba(251, 248, 241, .97); border-bottom: 1px solid rgba(18, 58, 66, .08); }
.nav { display: flex; min-height: 83px; align-items: center; justify-content: space-between; gap: 25px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; }
.brand-mark {
  display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%;
  color: white; background: var(--pine); font-family: Manrope, sans-serif; font-size: 1.05rem; font-weight: 800;
}
.brand-text { display: grid; line-height: 1.08; }
.brand-text b { font-family: Manrope, sans-serif; font-size: 1rem; letter-spacing: -.03em; }
.brand-text small { margin-top: 3px; color: var(--ink-soft); font-size: .66rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-links a { padding: 8px 0; color: var(--ink); font-family: Manrope, sans-serif; font-size: .85rem; font-weight: 700; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--terracotta); }
.nav-action { flex: 0 0 auto; }
.menu-button { display: none; min-width: 44px; min-height: 44px; border: 1px solid var(--line); border-radius: 10px; color: var(--pine); background: white; }

/* Home */
.hero { overflow: hidden; position: relative; padding: 86px 0 72px; background: linear-gradient(115deg, #fbf8f1 0%, #f6f0e3 52%, #e1f1ed 100%); }
.hero::after { position: absolute; top: -190px; right: -130px; width: 520px; height: 520px; border: 1px solid rgba(21, 94, 86, .14); border-radius: 50%; content: ""; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(36px, 6vw, 90px); }
.hero-copy { padding: 20px 0; }
.hero-note { display: flex; align-items: flex-start; gap: 10px; max-width: 580px; margin-top: 23px; color: var(--ink-soft); font-size: .93rem; }
.hero-note svg { flex: 0 0 20px; margin-top: 4px; color: var(--pine); }
.hero-scene { position: relative; min-height: 490px; }
.scene-main {
  position: absolute; inset: 20px 0 0 34px; overflow: hidden; border-radius: 40px 40px 40px 130px;
  background: linear-gradient(150deg, #c9e6e1 0%, #eaf3df 65%, #eed9bd 100%); box-shadow: var(--shadow);
}
.scene-main::before { position: absolute; right: -74px; bottom: -110px; width: 300px; height: 300px; border-radius: 50%; content: ""; background: rgba(255,255,255,.5); }
.scene-caption {
  position: absolute; z-index: 2; bottom: 20px; left: 0; max-width: 270px; padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-sm); background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}
.scene-caption strong { display: block; margin-bottom: 3px; font-family: Manrope, sans-serif; font-size: .94rem; }
.scene-caption span { color: var(--ink-soft); font-size: .84rem; }
.house-svg { position: absolute; right: 4%; bottom: 7%; width: 90%; height: auto; }
.home-pill {
  position: absolute; z-index: 3; top: 0; right: 0; display: flex; align-items: center; gap: 10px;
  padding: 13px 17px; border-radius: 999px; color: var(--pine-dark); background: white; box-shadow: var(--shadow-soft);
  font-size: .86rem; font-weight: 700;
}
.home-pill span { display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: white; background: var(--terracotta); }
.trust-strip { margin-top: -1px; color: #eafff9; background: var(--pine-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; min-height: 117px; align-items: center; gap: 15px; padding: 25px 29px; border-right: 1px solid rgba(234, 255, 249, .22); }
.trust-item:last-child { border: 0; }
.trust-number { color: #aee0d2; font-family: Manrope, sans-serif; font-size: 1.55rem; font-weight: 800; }
.trust-item p { margin: 0; font-size: .95rem; line-height: 1.35; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 6px 22px rgba(21,94,86,.045); }
.feature-card svg, .service-icon { width: 30px; height: 30px; margin-bottom: 20px; color: var(--terracotta); }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
.split { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.image-card { position: relative; overflow: hidden; min-height: 430px; border-radius: 34px; background: linear-gradient(150deg, #e1c7a9, #f4e7d4 47%, #b9d8d0 48%, #cae3de 100%); }
.image-card::before { position: absolute; top: 11%; left: 9%; width: 57%; height: 43%; border-radius: 50% 50% 12px 12px; content: ""; background: #f7f0e6; box-shadow: 0 14px 0 #b1694d; }
.image-card::after { position: absolute; right: 8%; bottom: -4%; width: 55%; height: 65%; border-radius: 50% 50% 0 0; content: ""; background: #568c80; }
.image-label { position: absolute; z-index: 2; right: 22px; bottom: 22px; left: 22px; padding: 19px 21px; border-radius: 13px; color: white; background: rgba(13,70,64,.92); font-family: Manrope, sans-serif; font-size: .92rem; font-weight: 700; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 26px 0 30px; list-style: none; }
.check-list li { display: flex; gap: 11px; color: var(--ink-soft); }
.check-list svg { flex: 0 0 21px; margin-top: 3px; color: var(--pine); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card { overflow: hidden; border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.program-visual { display: grid; min-height: 166px; place-items: center; color: var(--pine); background: #dcefe9; }
.program-visual--warm { color: var(--terracotta); background: #f1dfc6; }
.program-visual--blue { color: #326e86; background: #dcebf0; }
.program-visual svg { width: 79px; height: 79px; }
.program-content { padding: 25px; }
.program-content p { margin-bottom: 16px; color: var(--ink-soft); font-size: .95rem; }
.text-link { color: var(--pine); font-family: Manrope, sans-serif; font-size: .88rem; font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--terracotta); text-decoration: underline; }
.quote { padding: 42px; border-radius: var(--radius); color: white; background: var(--pine); }
.quote-mark { color: #aee0d2; font-family: Georgia, serif; font-size: 4.3rem; line-height: .5; }
.quote p { max-width: 800px; margin: 14px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2.3vw, 1.8rem); font-weight: 600; line-height: 1.45; }
.quote footer { color: #cbe6e0; font-size: .93rem; }
.cta-band { padding: 73px 0; color: white; background: linear-gradient(115deg, var(--pine-dark), var(--pine)); }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2, .cta-band .lead { color: white; }
.cta-band .lead { margin-bottom: 0; color: #d8f0ea; }
.cta-band .button { color: var(--pine-dark); background: #fcf5e8; }
.cta-band .button:hover { color: white; background: var(--terracotta); }

/* Generic pages */
.page-hero { padding: 65px 0 61px; background: linear-gradient(115deg, #e6f3ef, #f9f4e9); }
.page-hero .lead { margin-bottom: 0; }
.crumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; color: var(--ink-soft); font-size: .9rem; }
.crumbs a { color: var(--pine); }
.crumbs span { opacity: .65; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.info-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .96rem; }
.info-card--accent { border: 0; color: white; background: var(--pine); }
.info-card--accent h3, .info-card--accent p { color: white; }
.info-card--accent p { color: #d6efea; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.note-box { padding: 23px 25px; border-left: 4px solid var(--terracotta); border-radius: 0 12px 12px 0; background: #fff9ed; }
.note-box p:last-child { margin-bottom: 0; }
.list-plain { display: grid; gap: 11px; padding-left: 21px; color: var(--ink-soft); }
.timeline { display: grid; gap: 0; }
.timeline-item { position: relative; padding: 0 0 36px 40px; }
.timeline-item::before { position: absolute; top: 5px; left: 0; width: 14px; height: 14px; border: 4px solid var(--cream); border-radius: 50%; content: ""; background: var(--terracotta); box-shadow: 0 0 0 1px var(--terracotta); }
.timeline-item::after { position: absolute; top: 20px; bottom: 0; left: 6px; width: 2px; content: ""; background: var(--line); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:last-child::after { display: none; }
.timeline-item p { margin-bottom: 0; color: var(--ink-soft); }
.service-card { padding: 31px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.service-card .service-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 21px; border-radius: 12px; color: var(--pine); background: var(--sky); }
.service-card .service-icon svg { width: 25px; height: 25px; margin: 0; }
.service-card p { color: var(--ink-soft); font-size: .96rem; }
.service-card ul { margin: 18px 0 0; padding-left: 20px; color: var(--ink-soft); font-size: .94rem; }
.price-table { width: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; border-spacing: 0; background: white; text-align: left; }
.price-table th, .price-table td { padding: 17px 19px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { color: var(--pine-dark); background: var(--sky); font-family: Manrope, sans-serif; font-size: .9rem; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { min-width: 160px; font-weight: 700; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.room-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.room-visual { height: 178px; background: linear-gradient(132deg, #f8eddb 0 48%, #d5ebe4 48%); }
.room-visual--two { background: linear-gradient(132deg, #e7f0e8 0 48%, #ecd9bd 48%); }
.room-visual--three { background: linear-gradient(132deg, #d9edf0 0 48%, #f4e5d5 48%); }
.room-card > div:last-child { padding: 24px; }
.room-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .95rem; }
.page-grid { display: grid; grid-template-columns: minmax(0, 1fr) 335px; gap: 50px; align-items: start; }
.sidebar { position: sticky; top: 18px; padding: 23px; border-radius: 16px; background: var(--sky); }
.sidebar h3 { font-size: 1rem; }
.sidebar a { display: block; padding: 8px 0; color: var(--pine); font-size: .95rem; }
.sidebar a:hover { color: var(--terracotta); }
.accordion { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 14px; background: white; }
summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 20px; cursor: pointer; font-family: Manrope, sans-serif; font-size: 1rem; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { flex: 0 0 auto; color: var(--terracotta); content: "+"; font-size: 1.45rem; font-weight: 400; }
details[open] summary::after { content: "–"; }
.details-body { padding: 0 20px 20px; color: var(--ink-soft); font-size: .96rem; }
.details-body p:last-child { margin-bottom: 0; }
.details-body ul { margin-bottom: 0; padding-left: 20px; }
.document-list { display: grid; gap: 12px; }
.document-link { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: white; text-decoration: none; }
.document-link:hover { border-color: var(--pine); box-shadow: var(--shadow-soft); }
.document-icon { display: grid; flex: 0 0 38px; width: 38px; height: 42px; place-items: center; border-radius: 8px; color: var(--terracotta); background: #fff0e9; font-family: Manrope, sans-serif; font-size: .7rem; font-weight: 800; }
.document-link span:last-child { color: var(--pine); font-family: Manrope, sans-serif; font-size: .94rem; font-weight: 800; }

/* Forms and contacts */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 45px; align-items: start; }
.contact-list { display: grid; gap: 19px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.contact-item svg { width: 25px; height: 25px; margin-top: 2px; color: var(--terracotta); }
.contact-item strong { display: block; margin-bottom: 2px; font-family: Manrope, sans-serif; font-size: .92rem; }
.contact-item p, .contact-item a { margin: 0; color: var(--ink-soft); font-size: .97rem; }
.form-card { padding: clamp(25px, 4vw, 43px); border-radius: 24px; background: white; box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.form-intro { color: var(--ink-soft); font-size: .97rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label, .checkbox-row label { font-size: .92rem; font-weight: 700; }
.required { color: #b32222; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid #b9cbc8; border-radius: 10px;
  color: var(--ink); background: white;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pine); outline: 3px solid rgba(21,94,86,.16); }
.field-error { min-height: 1.2em; margin: 0; color: #a71d1d; font-size: .83rem; }
.checkbox-row { display: flex; gap: 11px; align-items: flex-start; margin: 21px 0; }
.checkbox-row input { flex: 0 0 20px; width: 20px; height: 20px; margin: 3px 0 0; accent-color: var(--pine); }
.checkbox-row label { color: var(--ink-soft); font-size: .88rem; font-weight: 400; }
.checkbox-row a { color: var(--pine); }
.form-status { min-height: 1.4em; margin: 14px 0 0; color: var(--pine-dark); font-size: .93rem; font-weight: 700; }
.error-summary { padding: 13px 16px; margin: 18px 0; border-left: 4px solid #a71d1d; border-radius: 0 10px 10px 0; color: #781313; background: #fff0f0; font-size: .93rem; }
.error-summary[hidden] { display: none; }
.map-placeholder { position: relative; display: grid; min-height: 280px; place-items: center; overflow: hidden; border-radius: var(--radius); background: linear-gradient(45deg, #dcebe6 25%, #f7ecd9 25% 50%, #dcebe6 50% 75%, #f7ecd9 75%); background-size: 52px 52px; }
.map-placeholder::before { position: absolute; width: 75%; height: 7px; border-radius: 999px; content: ""; background: rgba(255,255,255,.77); transform: rotate(-18deg); box-shadow: 0 48px 0 rgba(255,255,255,.77), 0 -48px 0 rgba(255,255,255,.77); }
.map-marker { position: relative; z-index: 1; padding: 15px 19px; border-radius: 13px; color: white; background: var(--terracotta); box-shadow: var(--shadow-soft); font-family: Manrope, sans-serif; font-size: .9rem; font-weight: 800; text-align: center; }

/* Footer / cookie */
.site-footer { color: #d4e5e1; background: #102f31; }
.footer-main { display: grid; grid-template-columns: 1.2fr .78fr .78fr 1.1fr; gap: 30px; padding: 55px 0 41px; }
.footer-brand { max-width: 280px; }
.footer-brand .brand { color: white; }
.footer-brand .brand-text small { color: #b8d3ce; }
.footer-brand p { margin-top: 17px; color: #b8d3ce; font-size: .93rem; }
.footer-column h3 { margin-bottom: 13px; color: white; font-size: .95rem; }
.footer-column a { display: block; margin: 8px 0; color: #c8deda; font-size: .89rem; text-decoration: none; }
.footer-column a:hover { color: white; text-decoration: underline; }
.footer-note { padding: 16px 0 22px; border-top: 1px solid rgba(212,229,225,.17); color: #aac6c0; font-size: .79rem; }
.footer-note p { max-width: 980px; margin: 0; }
.cookie-banner {
  position: fixed; z-index: 1500; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: center; justify-content: space-between; gap: 25px;
  width: min(780px, calc(100% - 36px)); padding: 19px 20px; margin-left: auto; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 18px 45px rgba(18,58,66,.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { max-width: 470px; margin: 0; color: var(--ink-soft); font-size: .87rem; line-height: 1.4; }
.cookie-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 8px; }
.cookie-actions button { min-height: 40px; padding: 9px 13px; border: 1px solid var(--pine); border-radius: 999px; color: white; background: var(--pine); font-family: Manrope, sans-serif; font-size: .8rem; font-weight: 800; }
.cookie-actions button:last-child { color: var(--pine); background: white; }
.cookie-settings { color: #c8deda !important; text-decoration: underline !important; }

@media (max-width: 1040px) {
  .nav-links { gap: 13px; }
  .nav-links a { font-size: .78rem; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  .hero-scene { max-width: 610px; width: 100%; min-height: 435px; margin-inline: auto; }
  .page-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  :root { --wrap: min(100% - 32px, 1160px); }
  body { font-size: 17px; }
  .topline .wrap { min-height: 42px; }
  .topline p:last-child { display: none; }
  .nav { min-height: 72px; }
  .menu-button { display: inline-grid; place-items: center; }
  .nav-action { display: none; }
  .nav-links {
    position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0;
    padding: 12px 16px 20px; border-bottom: 1px solid var(--line); background: var(--cream); box-shadow: var(--shadow-soft);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: .96rem; }
  .hero { padding: 56px 0 51px; }
  .hero-scene { min-height: 360px; }
  .scene-main { inset: 20px 0 0 18px; border-radius: 28px 28px 28px 90px; }
  .home-pill { top: 0; right: 0; font-size: .75rem; }
  .scene-caption { bottom: 7px; max-width: 240px; padding: 15px; }
  .trust-grid, .feature-grid, .program-grid, .card-grid, .room-grid, .two-column { grid-template-columns: 1fr; }
  .trust-item { min-height: 90px; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(234,255,249,.22); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 65px 0; }
  .quote { padding: 31px 25px; }
  .cta-grid { display: grid; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cookie-banner { align-items: flex-start; flex-direction: column; gap: 15px; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1 1 auto; }
  .price-table { display: block; overflow-x: auto; white-space: normal; }
}
@media (max-width: 430px) {
  .brand-text small { display: none; }
  .hero-scene { min-height: 311px; }
  .scene-caption { left: 0; }
  .hero-note { font-size: .88rem; }
  .footer-main { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
@media print {
  .topline, .site-header, .site-footer, .cookie-banner, .button, .sidebar { display: none !important; }
  body { background: white; font-size: 12pt; }
  .section, .page-hero { padding: 20px 0; background: white; }
  details { border: 0; }
  details .details-body { display: block; }
}
