@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

* { box-sizing: border-box; }
:root { --ink: #0b0c0e; --muted: #676b73; --paper: #fff; --soft: #f5f5f3; --line: #e4e4e1; --accent: var(--primary-color); --accent-alt: var(--secondary-color); --shadow: 0 24px 70px rgba(10, 10, 12, .12); --ease: cubic-bezier(.22, .8, .28, 1); }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; }
body.overlay-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
iframe { display: block; width: 100%; border: 0; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: 'Manrope', sans-serif; letter-spacing: -.045em; line-height: 1.02; }

.site-header { position: sticky; top: 0; z-index: 1000; min-height: 76px; display: grid; grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr); align-items: center; gap: 24px; padding: 12px max(24px, calc((100vw - 1240px) / 2)); color: #fff; background: rgba(8, 9, 11, .98); border-bottom: 1px solid rgba(255,255,255,.08); transition: min-height .25s var(--ease), box-shadow .25s var(--ease); }
.site-header.is-scrolled { min-height: 68px; box-shadow: 0 12px 35px rgba(0,0,0,.2); }
.brand, .footer-brand { min-width: 0; display: inline-flex; align-items: center; gap: 11px; font: 800 15px/1 'Manrope', sans-serif; letter-spacing: -.02em; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span, .footer-brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { position: relative; padding: 11px 13px; color: #aaadb4; font-size: 13px; font-weight: 700; transition: color .2s ease; }
.nav-links a::after { content: ''; position: absolute; right: 13px; bottom: 5px; left: 13px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: #fff; }
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { transform: scaleX(1); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 21px; border: 1px solid transparent; border-radius: 5px; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-accent { color: #fff; background: var(--accent); box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 28%, transparent); }
.button-accent:hover { background: color-mix(in srgb, var(--accent) 86%, #000); }
.button-light { color: var(--ink); background: #fff; border-color: #fff; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(8,9,11,.2); backdrop-filter: blur(8px); }
.nav-book { min-height: 42px; padding: 0 17px; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 5px; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: #fff; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: calc(100svh - 76px); display: grid; place-items: center; isolation: isolate; overflow: hidden; background-image: var(--hero-image); background-position: center; background-size: cover; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: inherit; transform: scale(1.02); animation: heroScale 9s ease-out both; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 48%, rgba(255,255,255,.26) 100%), linear-gradient(0deg, rgba(255,255,255,.72), transparent 50%); }
.hero-content { width: min(1240px, calc(100% - 48px)); display: grid; justify-items: start; gap: 22px; }
.hero-content > * { max-width: 760px; }
.availability { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; color: #168249; background: #f2fff7; border: 1px solid #b8e8ca; border-radius: 999px; font-size: 12px; font-weight: 700; }
.availability span { width: 7px; height: 7px; border-radius: 50%; background: #2bc66d; box-shadow: 0 0 0 4px rgba(43,198,109,.13); }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero h1 { max-width: 890px; font-size: clamp(48px, 7.1vw, 104px); letter-spacing: -.072em; }
.hero h1::after { content: ''; display: block; width: clamp(80px, 11vw, 150px); height: 8px; margin-top: 18px; background: var(--accent); }
.hero-lead { max-width: 610px; color: #4f535a; font-size: clamp(16px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-scroll { position: absolute; bottom: 24px; left: 50%; display: flex; align-items: center; gap: 10px; color: #5f6268; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transform: translateX(-50%); }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1240px; margin: 0 auto; border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust-strip div { display: flex; align-items: center; gap: 18px; min-height: 92px; padding: 24px 32px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip span { color: var(--accent); font-size: 12px; font-weight: 800; }
.trust-strip strong { font-family: 'Manrope', sans-serif; font-size: 15px; }

.section, .products-section, .visit-section, .blog-section, .principles { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 40px; margin-bottom: 44px; }
.section-heading > div { display: grid; gap: 13px; }
.section-heading h2, .story-copy h2, .visit-copy h2, .contact-card h2, .article-cta h2 { font-size: clamp(36px, 5vw, 62px); }
.section-heading > p, .story-copy > p, .visit-copy > p, .page-hero__copy > p, .page-title > p { max-width: 580px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease; }
.service-card:hover { position: relative; z-index: 1; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-5px); }
.service-card__top, .service-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.service-card__top span { color: #a4a6ab; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-card__top strong { color: var(--accent); }
.service-card h3 { margin-top: 48px; font-size: 25px; }
.service-card > p { flex: 1; margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card__bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); color: #777a80; font-size: 12px; }
.service-card__bottom a { color: var(--ink); font-weight: 800; }
.service-card__bottom a:hover { color: var(--accent); }
.section-action { display: flex; justify-content: center; margin-top: 40px; }
.text-button { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 2px solid var(--accent); font-size: 14px; font-weight: 800; }

.story-section { display: grid; grid-template-columns: 1.06fr .94fr; min-height: 720px; background: var(--soft); }
.story-image { position: relative; min-height: 600px; background-position: center; background-size: cover; }
.image-tag { position: absolute; right: 20px; bottom: 20px; padding: 12px 15px; color: #fff; background: var(--accent); border-radius: 4px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.story-copy { display: grid; align-content: center; justify-items: start; gap: 20px; padding: clamp(48px, 8vw, 110px); }
.story-values { width: 100%; display: grid; gap: 1px; margin: 14px 0; background: var(--line); }
.story-values div { display: flex; align-items: center; gap: 13px; padding: 16px 0; background: var(--soft); font-weight: 700; }
.story-values i { color: var(--accent); font-size: 20px; }
.team-section--soft { max-width: none; width: 100%; padding-right: max(24px, calc((100vw - 1180px) / 2)); padding-left: max(24px, calc((100vw - 1180px) / 2)); background: var(--soft); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { overflow: hidden; background: #0a0b0d; border-radius: 6px; }
.team-photo { aspect-ratio: 4 / 4.7; background-position: center; background-size: cover; filter: saturate(.88); transition: transform .5s var(--ease), filter .3s ease; }
.team-card:hover .team-photo { transform: scale(1.025); filter: saturate(1); }
.team-card > div:last-child { display: grid; gap: 7px; padding: 21px; color: #fff; }
.team-card span { color: #9da0a7; font-size: 11px; text-transform: uppercase; }
.team-card h3 { font-size: 24px; }
.team-card a { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; color: var(--accent); font-size: 13px; font-weight: 800; }
.gallery-section { padding: 110px max(24px, calc((100vw - 1180px) / 2)); color: #fff; background: #090a0c; }
.section-heading--light > p { color: #a5a8af; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr; grid-auto-rows: 350px; gap: 12px; }
.gallery-item { background-position: center; background-size: cover; border-radius: 4px; }
.gallery-item:nth-child(4n + 1) { grid-row: span 2; }
.visit-section { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(50px, 10vw, 140px); }
.visit-copy { display: grid; justify-items: start; gap: 18px; }
.visit-details { display: grid; gap: 12px; margin: 12px 0; }
.visit-details p, .visit-details a, .contact-lines p, .contact-lines a { display: flex; gap: 11px; color: #43464c; font-style: normal; }
.visit-details i, .contact-lines i { color: var(--accent); }
.hours-card { border-top: 2px solid var(--ink); }
.hour-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 2px; border-bottom: 1px solid var(--line); font-size: 13px; }
.hour-row span { text-transform: capitalize; }
.hour-row.is-closed { color: #aaa; }

.page-hero { width: min(1240px, calc(100% - 48px)); min-height: 620px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; gap: 70px; margin: 0 auto; padding: 70px 0; }
.page-hero__copy { display: grid; align-content: center; justify-items: start; gap: 20px; }
.page-hero h1, .page-title h1, .article-header h1 { font-size: clamp(48px, 7vw, 88px); }
.page-hero__image { min-height: 520px; background-position: center; background-size: cover; border-radius: 5px; box-shadow: var(--shadow); }
.page-title { width: min(920px, calc(100% - 48px)); display: grid; justify-items: center; gap: 18px; margin: 0 auto; padding: 110px 0 72px; text-align: center; }
.service-grid--full { grid-template-columns: repeat(3, 1fr); }
.products-section { padding-top: 30px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 5px; }
.product-image { aspect-ratio: 1.2; background: var(--soft) center / cover; }
.product-card > div:last-child { display: grid; gap: 10px; padding: 22px; }
.product-card h3 { font-size: 21px; }
.product-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.product-card strong { color: var(--accent); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.principle-grid article { position: relative; display: grid; gap: 17px; min-height: 340px; padding: 34px; background: #fff; }
.principle-grid article > span { color: #a4a6ab; font-size: 11px; font-weight: 800; }
.principle-grid i { margin-top: 40px; color: var(--accent); font-size: 34px; }
.principle-grid h3 { font-size: 25px; }
.principle-grid p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.contact-layout { width: min(1180px, calc(100% - 48px)); display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; margin: 0 auto 110px; }
.contact-card { display: grid; align-content: start; justify-items: start; gap: 19px; padding: clamp(30px, 5vw, 58px); background: var(--soft); }
.contact-lines { display: grid; gap: 13px; margin: 8px 0; }
.contact-card .hours-card { width: 100%; margin-top: 16px; }
.contact-map { min-height: 680px; }
.contact-map iframe { height: 100%; min-height: 680px; }

.blog-section { padding-top: 20px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.blog-card { min-height: 350px; display: flex; flex-direction: column; align-items: flex-start; padding: 34px; border: 1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card > span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.blog-card h2 { margin-top: 55px; font-size: clamp(27px, 4vw, 42px); }
.blog-card p { flex: 1; margin-top: 16px; color: var(--muted); line-height: 1.65; }
.blog-card > div { display: flex; align-items: center; gap: 10px; margin-top: 28px; font-size: 13px; font-weight: 800; }
.blog-card--empty { grid-column: 1 / -1; }
.article { width: min(900px, calc(100% - 48px)); margin: 0 auto; padding: 70px 0 110px; }
.article-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.article-header { display: grid; gap: 18px; padding: 80px 0 60px; border-bottom: 1px solid var(--line); }
.article-header span { color: var(--muted); font-size: 13px; }
.article-body { padding: 55px 0; color: #33363b; font-size: 17px; line-height: 1.8; }
.article-body h2, .article-body h3 { margin: 1.7em 0 .7em; }
.article-body p, .article-body ul, .article-body ol, .article-body blockquote { margin: 0 0 1.4em; }
.article-body img { height: auto; margin: 2em 0; border-radius: 5px; }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px; color: #fff; background: #0a0b0d; border-radius: 5px; }
.article-cta > div { display: grid; gap: 10px; }

.site-footer { padding: 74px max(24px, calc((100vw - 1180px) / 2)) 24px; color: #d8d9dc; background: #08090b; }
.footer-main { display: grid; grid-template-columns: 1.45fr .7fr 1fr 1.2fr; gap: 55px; padding-bottom: 58px; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-intro p, .footer-main p, .footer-main a { color: #94979f; font-size: 12px; line-height: 1.6; }
.footer-main a:hover { color: #fff; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand span { color: #fff; font-size: 17px; }
.footer-label { margin-bottom: 7px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-hour { width: 100%; display: flex; justify-content: space-between; gap: 12px; }
.footer-hour span { text-transform: capitalize; }
.footer-hour strong { color: #c8c9cd; font-weight: 500; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #777a81; font-size: 11px; }
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid; place-items: center; width: 34px; height: 34px; color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }

.booking-drawer { position: fixed; inset: 0; z-index: 3000; visibility: hidden; pointer-events: none; }
.booking-drawer.is-open { visibility: visible; pointer-events: auto; }
.booking-backdrop { position: absolute; inset: 0; width: 100%; border: 0; opacity: 0; background: rgba(4,5,7,.67); backdrop-filter: blur(4px); cursor: pointer; transition: opacity .32s ease; }
.booking-drawer.is-open .booking-backdrop { opacity: 1; }
.booking-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(640px, 100%); display: flex; flex-direction: column; outline: 0; background: #fff; box-shadow: -30px 0 80px rgba(0,0,0,.24); transform: translateX(102%); transition: transform .42s var(--ease); }
.booking-drawer.is-open .booking-panel { transform: translateX(0); }
.booking-panel__header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px 16px 26px; color: #fff; background: #090a0c; }
.booking-panel__header > div { display: grid; gap: 3px; }
.booking-panel__header span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.booking-panel__header h2 { font-size: 24px; letter-spacing: -.04em; }
.booking-close { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; padding: 0; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; cursor: pointer; }
.booking-close i { font-size: 23px; }
.booking-panel__body { position: relative; flex: 1; min-height: 0; background: var(--soft); }
.booking-loader { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 12px; color: var(--muted); font-size: 12px; }
.booking-loader span { width: 28px; height: 28px; border: 3px solid #ddd; border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
.booking-iframe { position: relative; z-index: 1; height: 100%; background: transparent; }

.blismo-chat-fab { position: fixed; right: 22px; bottom: 22px; z-index: 1500; width: 54px; height: 54px; border: 0; border-radius: 50%; color: #fff; background: var(--accent); box-shadow: 0 14px 32px color-mix(in srgb, var(--accent) 32%, transparent); cursor: pointer; }
.blismo-chat-fab i { font-size: 21px; }
.blismo-chat-overlay { position: fixed; inset: 0; z-index: 2500; display: none; place-items: end; padding: 20px; background: rgba(4,5,7,.55); }
.blismo-chat-overlay.is-open { display: grid; }
.blismo-chat-panel { position: relative; width: min(430px, 100%); height: min(720px, calc(100svh - 40px)); overflow: hidden; background: #fff; border-radius: 8px; box-shadow: var(--shadow); }
.blismo-chat-close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.14); cursor: pointer; }
.blismo-chat-iframe { height: 100%; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes heroScale { from { transform: scale(1.08); } to { transform: scale(1.02); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
    .site-header { grid-template-columns: 1fr auto; padding: 12px 20px; }
    .nav-actions { grid-column: 2; }
    .nav-toggle { display: block; }
    .nav-links { position: absolute; top: 100%; right: 0; left: 0; display: grid; padding: 10px 20px 20px; visibility: hidden; opacity: 0; background: #08090b; border-top: 1px solid rgba(255,255,255,.08); transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
    .site-header.is-open .nav-links { visibility: visible; opacity: 1; transform: none; }
    .nav-links a { padding: 13px 0; }
    .site-header.is-open .nav-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
    .site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .site-header.is-open .nav-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }
    .hero-overlay { background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78)); }
    .service-grid, .service-grid--full { grid-template-columns: repeat(2, 1fr); }
    .story-section, .page-hero, .contact-layout { grid-template-columns: 1fr; }
    .story-image { min-height: 520px; }
    .page-hero { gap: 35px; }
    .page-hero__image { min-height: 480px; order: -1; }
    .team-grid, .product-grid, .principle-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
    .visit-section { gap: 60px; }
    .footer-main { grid-template-columns: 1.2fr 1fr; }
    .contact-map, .contact-map iframe { min-height: 500px; }
}

@media (max-width: 680px) {
    .site-header { min-height: 66px; }
    .brand span { max-width: 135px; }
    .brand img { width: 38px; height: 38px; }
    .nav-book { width: 42px; padding: 0; font-size: 0; }
    .nav-book i { font-size: 18px; }
    .hero { min-height: calc(100svh - 66px); }
    .hero-content { width: min(100% - 32px, 1240px); }
    .hero h1 { font-size: clamp(43px, 14vw, 68px); }
    .hero-actions { width: 100%; }
    .hero-actions .button { flex: 1 1 150px; }
    .trust-strip { grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
    .trust-strip div { min-height: 68px; padding: 18px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
    .section, .products-section, .visit-section, .blog-section, .principles { width: min(100% - 32px, 1180px); padding: 78px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
    .service-grid, .service-grid--full, .team-grid, .product-grid, .principle-grid, .blog-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 260px; }
    .story-section { min-height: auto; }
    .story-image { min-height: 430px; }
    .story-copy { padding: 60px 24px; }
    .gallery-section { padding-top: 78px; padding-bottom: 78px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
    .gallery-item:nth-child(4n + 1) { grid-row: auto; }
    .visit-section { grid-template-columns: 1fr; }
    .page-hero { width: calc(100% - 32px); min-height: auto; padding: 34px 0 78px; }
    .page-hero__image { min-height: 380px; }
    .page-title { width: calc(100% - 32px); padding: 78px 0 55px; }
    .contact-layout { width: calc(100% - 32px); margin-bottom: 78px; }
    .contact-card { padding: 30px 22px; }
    .article { width: calc(100% - 32px); padding-top: 45px; }
    .article-header { padding: 55px 0 40px; }
    .article-body { font-size: 16px; }
    .article-cta { align-items: flex-start; flex-direction: column; padding: 28px; }
    .footer-main { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .booking-panel { width: 100%; }
    .booking-panel__header { min-height: 72px; }
    .blismo-chat-overlay { padding: 0; }
    .blismo-chat-panel { width: 100%; height: 100svh; border-radius: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
