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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #17202a;
    background:
        linear-gradient(135deg, rgba(var(--secondary-rgb), 0.08), transparent 34%),
        linear-gradient(225deg, rgba(var(--primary-rgb), 0.08), transparent 38%),
        #fbfaf7;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

iframe {
    display: block;
    border: 0;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
    line-height: 0.96;
    letter-spacing: 0;
}

:root {
    --primary-rgb: 18, 31, 58;
    --secondary-rgb: 216, 64, 64;
    --ink: #17202a;
    --muted: #637082;
    --paper: #ffffff;
    --line: rgba(23, 32, 42, 0.12);
    --shadow: 0 24px 70px rgba(23, 32, 42, 0.13);
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-nav {
    position: fixed;
    inset: 18px 20px auto;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 60px rgba(23, 32, 42, 0.1);
    backdrop-filter: blur(18px);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-nav.is-scrolled {
    box-shadow: 0 18px 54px rgba(23, 32, 42, 0.16);
    transform: translateY(-4px);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 800;
}

.brand img,
.footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand span,
.footer-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-link:hover {
    color: var(--ink);
    background: rgba(var(--primary-rgb), 0.07);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon-button,
.nav-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.icon-button:hover,
.nav-toggle:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.section-pad {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 112px 0;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: clamp(28px, 6vw, 84px);
    padding-top: 132px;
    overflow: hidden;
}

.hero-media,
.page-hero-image,
.about-image,
.team-photo,
.service-image,
.product-image {
    background-position: center;
    background-size: cover;
}

.hero-media {
    position: relative;
    min-height: min(70svh, 680px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    isolation: isolate;
    transform: rotate(-1.3deg);
    animation: floatIn 0.9s var(--ease) both;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(var(--primary-rgb), 0.42));
    z-index: -1;
}

.hero-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: grid;
    gap: 4px;
    padding: 15px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    animation: pulseBadge 2.7s ease-in-out infinite;
}

.hero-badge span,
.eyebrow,
.service-category {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-badge strong {
    font-size: 18px;
}

.hero-copy {
    display: grid;
    gap: 24px;
}

.hero-copy h1,
.page-hero-copy h1,
.booking-intro h1 {
    max-width: 780px;
    color: var(--primary-color);
    font-size: clamp(48px, 8vw, 96px);
    text-transform: uppercase;
}

.hero-copy p,
.page-hero-copy p,
.booking-intro p,
.section-heading > p,
.about-copy > p,
.contact-panel > p,
.service-body > p,
.product-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

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

.button,
.text-link,
.service-book {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 800;
    text-transform: capitalize;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.button:hover,
.service-book:hover {
    transform: translateY(-3px);
}

.button-primary,
.service-book {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 14px 30px rgba(var(--secondary-rgb), 0.27);
}

.button-soft {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-color);
}

.text-link {
    color: var(--primary-color);
}

.ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    gap: 18px;
    overflow: hidden;
    color: rgba(var(--primary-rgb), 0.18);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 6vw, 72px);
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.ticker span {
    animation: tickerMove 12s linear infinite;
}

.contact,
.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    align-items: center;
    gap: clamp(30px, 6vw, 80px);
}

.section-heading {
    display: grid;
    gap: 12px;
}

.section-heading.centered {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading h2,
.contact-panel h2 {
    color: var(--primary-color);
    font-size: clamp(38px, 5vw, 70px);
    text-transform: uppercase;
}

.about {
    width: min(1220px, calc(100% - 40px));
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(28px, 6vw, 84px);
}

.about-copy {
    display: grid;
    gap: 22px;
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid rgba(23, 32, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 56px rgba(23, 32, 42, 0.08);
}

.about-copy h2 {
    max-width: 620px;
    color: var(--primary-color);
    font-size: clamp(38px, 5vw, 70px);
    text-transform: uppercase;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.about-points div {
    min-height: 96px;
    padding: 16px;
    display: grid;
    align-content: space-between;
    gap: 12px;
    border-radius: 8px;
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.06);
}

.about-points i {
    color: var(--secondary-color);
    font-size: 24px;
}

.about-points span {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stats-row div {
    min-height: 88px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px;
    background: transparent;
}

.stats-row div:last-child {
    border-right: 0;
}

.stats-row strong {
    display: block;
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
}

.stats-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.about-visual {
    position: relative;
    min-height: 620px;
    padding: 18px;
    isolation: isolate;
}

.about-image {
    height: 100%;
    min-height: 560px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: rotate(1.4deg);
}

.about-visual::before,
.about-visual::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 8px;
}

.about-visual::before {
    inset: 0 46px 60px 0;
    background: var(--primary-color);
}

.about-visual::after {
    right: 0;
    bottom: 0;
    width: 42%;
    height: 36%;
    background: var(--secondary-color);
}

.about-stamp {
    position: absolute;
    left: 0;
    bottom: 34px;
    min-width: 190px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    color: #fff;
    background: var(--primary-color);
    box-shadow: 0 18px 48px rgba(23, 32, 42, 0.2);
}

.about-stamp i {
    color: var(--secondary-color);
    font-size: 26px;
}

.about-stamp span {
    font-weight: 800;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-list a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    background: var(--primary-color);
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.social-list a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.team {
    width: min(1220px, calc(100% - 40px));
}

.team-grid,
.service-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.team-card,
.service-card,
.product-card,
.contact-panel,
.map-shell,
.booking-frame-wrap {
    border: 1px solid rgba(23, 32, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 56px rgba(23, 32, 42, 0.08);
    overflow: hidden;
}

.team-card {
    position: relative;
    min-height: 420px;
    isolation: isolate;
    transition: transform 0.35s var(--ease);
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-photo {
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: transform 0.5s var(--ease);
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(var(--primary-rgb), 0.88));
}

.team-info {
    position: absolute;
    inset: auto 18px 18px;
    display: grid;
    gap: 8px;
    color: #fff;
}

.team-info h3 {
    font-size: 30px;
}

.team-info p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.team-info a {
    width: max-content;
    color: #fff;
    font-weight: 800;
    border-bottom: 2px solid var(--secondary-color);
}

.contact-panel {
    padding: clamp(24px, 4vw, 44px);
    display: grid;
    gap: 20px;
}

.contact-lines {
    display: grid;
    gap: 10px;
}

.contact-lines p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    line-height: 1.6;
}

.contact-lines i {
    color: var(--secondary-color);
    font-size: 20px;
}

.hours-list {
    display: grid;
    gap: 8px;
}

.hour-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.hour-row span {
    color: var(--muted);
    font-weight: 800;
    text-transform: capitalize;
}

.hour-row strong {
    color: var(--primary-color);
}

.hour-row.is-closed strong {
    color: var(--secondary-color);
}

.map-shell {
    min-height: 520px;
    padding: 10px;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--secondary-rgb), 0.1)),
        #fff;
}

.map-shell iframe {
    width: 100%;
    height: 520px;
    border-radius: 8px;
    filter: saturate(0.95) contrast(1.02);
}

.site-footer {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 22px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 8px;
    color: #fff;
    background: var(--primary-color);
}

.site-footer p {
    max-width: 560px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.page-hero {
    padding-top: 150px;
}

.page-hero-copy {
    display: grid;
    gap: 22px;
}

.page-hero-image {
    min-height: 460px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-detail {
    padding-top: 40px;
}

.service-card {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    min-height: 310px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 70px rgba(23, 32, 42, 0.14);
}

.service-image {
    position: relative;
    min-height: 100%;
    background-color: rgba(var(--primary-rgb), 0.08);
}

.service-image i {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    background: var(--secondary-color);
    font-size: 24px;
}

.service-body {
    padding: 24px;
    display: grid;
    align-content: space-between;
    gap: 18px;
}

.service-body h3,
.product-card h3 {
    color: var(--primary-color);
    font-size: 30px;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
}

.service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
}

.service-meta strong,
.product-card strong {
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
}

.service-book {
    width: 100%;
}

.products-strip {
    padding-top: 30px;
}

.blog-hero {
    min-height: 100svh;
    padding-top: 150px;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
    align-items: center;
    gap: clamp(28px, 6vw, 80px);
}

.blog-hero-copy {
    display: grid;
    gap: 22px;
}

.blog-hero-copy h1 {
    color: var(--primary-color);
    font-size: clamp(48px, 7vw, 88px);
    text-transform: uppercase;
}

.blog-hero-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.featured-post,
.blog-card {
    border: 1px solid rgba(23, 32, 42, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 56px rgba(23, 32, 42, 0.08);
    transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}

.featured-post:hover,
.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 70px rgba(23, 32, 42, 0.14);
}

.featured-post {
    display: grid;
    grid-template-columns: 0.92fr 1fr;
    min-height: 430px;
}

.post-image {
    min-height: 260px;
    background-position: center;
    background-size: cover;
    background-color: rgba(var(--primary-rgb), 0.1);
}

.post-image-hero {
    min-height: 100%;
}

.post-body {
    padding: clamp(22px, 4vw, 34px);
    display: grid;
    align-content: center;
    gap: 16px;
}

.post-body h2,
.post-body h3 {
    color: var(--primary-color);
    font-size: clamp(30px, 4vw, 48px);
    text-transform: uppercase;
}

.blog-card .post-body h3 {
    font-size: 30px;
}

.post-body p {
    color: var(--muted);
    line-height: 1.7;
}

.blog-index {
    padding-top: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-card {
    display: grid;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-shell {
    overflow: hidden;
}

.article-hero {
    min-height: 100svh;
    padding-top: 150px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: center;
    gap: clamp(28px, 6vw, 84px);
}

.article-hero-copy {
    display: grid;
    gap: 20px;
}

.article-back {
    width: max-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: 8px;
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.08);
    font-size: 14px;
    font-weight: 800;
}

.article-hero-copy h1 {
    max-width: 820px;
    color: var(--primary-color);
    font-size: clamp(46px, 7vw, 92px);
    text-transform: uppercase;
}

.article-hero-copy > p {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.article-meta span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border-radius: 8px;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.article-meta i {
    color: var(--secondary-color);
}

.article-hero-image {
    min-height: min(68svh, 660px);
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.article-content {
    padding-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: clamp(28px, 5vw, 70px);
}

.article-body {
    padding: clamp(24px, 5vw, 58px);
    border: 1px solid rgba(23, 32, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 56px rgba(23, 32, 42, 0.08);
}

.article-body > * + * {
    margin-top: 22px;
}

.article-body p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.article-body .article-lede {
    color: var(--ink);
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.55;
}

.article-body h2 {
    margin-top: 42px;
    color: var(--primary-color);
    font-size: clamp(32px, 4vw, 48px);
    text-transform: uppercase;
}

.article-body blockquote {
    margin: 34px 0;
    padding: 28px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
    color: var(--primary-color);
    background: rgba(var(--secondary-rgb), 0.08);
}

.article-body blockquote p {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    text-transform: uppercase;
}

.article-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.article-tips div,
.sidebar-card {
    padding: 20px;
    border-radius: 8px;
    background: rgba(var(--primary-rgb), 0.06);
}

.article-tips i {
    color: var(--secondary-color);
    font-size: 26px;
}

.article-tips h3,
.sidebar-card h3 {
    margin-top: 12px;
    color: var(--primary-color);
    font-size: 26px;
}

.article-tips p,
.sidebar-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
}

.article-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
}

.sidebar-card {
    border: 1px solid rgba(23, 32, 42, 0.1);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(23, 32, 42, 0.08);
}

.sidebar-card .button {
    width: 100%;
    margin-top: 18px;
}

.article-share {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.article-share a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    background: var(--primary-color);
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.article-share a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.related-posts {
    padding-top: 26px;
}

.product-card {
    min-height: 220px;
}

.product-image {
    min-height: 210px;
    background-color: rgba(var(--secondary-rgb), 0.09);
}

.product-card > div:last-child {
    padding: 22px;
    display: grid;
    gap: 10px;
}

.booking-page {
    min-height: 100svh;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), 0.07), rgba(var(--secondary-rgb), 0.12)),
        #fbfaf7;
}

.booking-shell {
    min-height: 100svh;
    padding-top: 132px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
}

.booking-intro {
    display: grid;
    gap: 14px;
    max-width: 760px;
}

.booking-frame-wrap {
    position: relative;
    min-height: 760px;
    padding: 10px;
    background: #fff;
}

.booking-frame-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0.28;
}

.booking-frame-wrap iframe {
    width: 100%;
    height: min(82svh, 900px);
    min-height: 720px;
    border-radius: 8px;
    background: #fff;
}

@media (min-width: 901px) {
    .booking-page .booking-frame-wrap {
        width: min(70vw, 100%);
        margin-inline: auto;
    }
}

.j-img:not([style*='background-image']) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.blismo-chat-fab {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 68px;
    height: 68px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.blismo-chat-fab.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.blismo-chat-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 28px;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10000;
}

.blismo-chat-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.blismo-chat-panel {
    width: min(420px, 100%);
    height: min(720px, calc(100svh - 56px));
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.blismo-chat-close {
    position: absolute;
}

.blismo-chat-iframe {
    width: 100%;
    height: 100%;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: rotate(-1.3deg) translateY(28px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: rotate(-1.3deg) translateY(0) scale(1);
    }
}

@keyframes pulseBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

@keyframes tickerMove {
    to {
        transform: translateX(-160px);
    }
}

@media (max-width: 900px) {
    .site-nav {
        inset: 12px 12px auto;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 82px;
        display: grid;
        gap: 6px;
        padding: 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        padding: 14px 16px;
        color: var(--ink);
    }

    .section-pad {
        width: min(100% - 24px, 680px);
        padding: 84px 0;
    }

    .hero,
    .contact,
    .page-hero,
    .blog-hero,
    .article-hero,
    .article-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-media {
        min-height: 420px;
        order: 2;
    }

    .hero-copy {
        order: 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-visual {
        min-height: auto;
    }

    .about-image,
    .page-hero-image {
        min-height: 360px;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .post-image-hero {
        min-height: 320px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-hero {
        padding-top: 120px;
    }

    .article-hero-image {
        min-height: 380px;
    }

    .article-sidebar {
        position: static;
    }

    .article-tips {
        grid-template-columns: 1fr;
    }

    .service-image {
        min-height: 260px;
    }

    .site-footer {
        width: calc(100% - 24px);
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .brand span {
        max-width: 140px;
    }

    .section-pad {
        width: calc(100% - 20px);
    }

    .hero-copy h1,
    .page-hero-copy h1,
    .booking-intro h1 {
        font-size: 42px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .button,
    .button-soft,
    .text-link {
        width: 100%;
    }

    .hour-row {
        grid-template-columns: 1fr;
    }

    .booking-frame-wrap,
    .booking-frame-wrap iframe {
        min-height: 680px;
    }
}

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