:root {
    --ink: #111315;
    --muted: #667075;
    --line: #dce5e3;
    --paper: #ffffff;
    --surface: #f4f8f7;
    --surface-strong: #e7f0ed;
    --yellow: #f7c948;
    --yellow-dark: #b7791f;
    --teal: #127c7a;
    --green: #2f6f4e;
    --red: #d64a3a;
    --shadow: 0 22px 60px rgba(17, 19, 21, 0.14);
    --radius: 8px;
    --container: 1400px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

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

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

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

button {
    cursor: pointer;
}

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

.section {
    padding: 50px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(220, 229, 227, 0.8);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-text {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 1;
    white-space: nowrap;
}

.brand-text::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 5px;
    background: var(--yellow);
    border-radius: 999px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-group {
    position: relative;
}

.nav-title,
.nav-link {
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 26px 0;
}

.nav-title::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    padding: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.18s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 700;
}

.nav-dropdown a:hover {
    color: var(--ink);
    background: var(--surface);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
}

.hero-section {
    padding-top: 54px;
}

.hero-heading {
    margin-bottom: 26px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--teal);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    max-width: 980px;
    margin-bottom: 0;
    font-size: 56px;
    line-height: 1.02;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.2;
}

h4 {
    margin-bottom: 10px;
    font-size: 15px;
    text-transform: uppercase;
}

p {
    color: var(--muted);
}

.hero-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.intro-section {
    padding-top: 18px;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 34px 54px;
    align-items: start;
}

.intro-title {
    grid-column: 1;
}

.intro-action {
    grid-column: 2;
    justify-self: end;
}

.intro-copy {
    grid-column: 1;
}

.features-panel {
    grid-column: 2;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--paper);
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-secondary {
    min-width: 220px;
    background: var(--yellow);
}

.button-dark {
    color: var(--paper);
    background: var(--ink);
}

.button-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: var(--paper);
    text-transform: none;
}

.content-list {
    margin: 0 0 26px;
    padding-left: 20px;
    color: var(--muted);
}

.content-list li {
    margin-bottom: 10px;
}

.contact-block {
    margin-top: 28px;
    padding: 24px;
    border-left: 4px solid var(--yellow);
    background: var(--surface);
    border-radius: var(--radius);
}

.contact-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 10px;
}

.contact-heading h4 {
    margin: 0;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 5px 10px;
    color: #0d5c35;
    background: #d9f7e8;
    border: 1px solid rgba(16, 143, 77, 0.28);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.online-dot {
    width: 9px;
    height: 9px;
    background: #1fbf64;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(31, 191, 100, 0.18);
}

.contact-block p {
    margin-bottom: 4px;
}

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

.feature-item {
    min-height: 142px;
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 18px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-item p {
    margin-bottom: 0;
    color: var(--ink);
    font-weight: 800;
    text-transform: uppercase;
}

.feature-icon {
    position: relative;
    width: 62px;
    height: 62px;
    display: inline-block;
    border: 2px solid var(--teal);
    border-radius: 50%;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
    background: var(--teal);
}

.feature-icon-vest::before {
    width: 30px;
    height: 34px;
    left: 14px;
    top: 14px;
    border-radius: 8px 8px 5px 5px;
    background: var(--red);
}

.feature-icon-vest::after {
    width: 12px;
    height: 15px;
    left: 24px;
    top: 14px;
    border-radius: 0 0 8px 8px;
    background: var(--surface);
}

.feature-icon-locker::before {
    width: 32px;
    height: 34px;
    left: 13px;
    top: 16px;
    background: transparent;
    border: 3px solid var(--teal);
    border-radius: 5px;
}

.feature-icon-locker::after {
    width: 6px;
    height: 6px;
    right: 17px;
    top: 30px;
    border-radius: 50%;
}

.feature-icon-sms::before {
    width: 34px;
    height: 24px;
    left: 12px;
    top: 18px;
    background: transparent;
    border: 3px solid var(--teal);
    border-radius: 5px;
}

.feature-icon-sms::after {
    width: 14px;
    height: 3px;
    left: 23px;
    top: 30px;
}

.feature-icon-service::before {
    width: 30px;
    height: 30px;
    left: 14px;
    top: 14px;
    background: transparent;
    border: 3px solid var(--teal);
    border-radius: 50%;
}

.feature-icon-service::after {
    width: 12px;
    height: 3px;
    left: 24px;
    top: 29px;
    transform: rotate(-42deg);
}

.feature-icon-paddle::before {
    width: 5px;
    height: 42px;
    left: 28px;
    top: 10px;
    transform: rotate(34deg);
}

.feature-icon-paddle::after {
    width: 16px;
    height: 24px;
    left: 16px;
    top: 8px;
    border-radius: 50%;
    transform: rotate(34deg);
    background: var(--yellow);
}

.address-line {
    margin-bottom: 18px;
    text-align: center;
    font-size: 20px;
}

.address-line strong {
    color: var(--ink);
}

.map-shell {
    position: relative;
    width: 100%;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(18, 124, 122, 0.18), rgba(247, 201, 72, 0.16)),
        repeating-linear-gradient(45deg, #eff5f3 0, #eff5f3 16px, #e2ece9 16px, #e2ece9 32px);
}

.map-shell > ymaps,
.map-shell .ymaps-2-1-79-map {
    width: 100% !important;
    height: 430px !important;
}

.map-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 800;
}

.map-balloon p {
    margin: 0 0 10px;
}

.map-book-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 12px;
    border: 0;
    border-radius: var(--radius);
    background: var(--yellow);
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}

.location-list {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.location-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 360px;
}

.location-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.location-card p {
    margin-bottom: 10px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading p {
    font-size: 18px;
}

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

.safety-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.safety-section {
    position: relative;
    overflow: hidden;
    color: var(--paper);
    background: #953b3b;
}

.safety-section::before {
    content: none;
}

.safety-section .container {
    position: relative;
    z-index: 1;
}

.safety-flow {
    display: grid;
    gap: 38px;
}

.safety-section .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 6px 12px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 999px;
    font-weight: 900;
}

.safety-intro {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.safety-intro .eyebrow {
    justify-content: center;
}

.safety-intro h2 {
    margin: 0 auto 20px;
    color: var(--paper);
    font-size: 48px;
}

.safety-intro > p:last-child {
    margin: 0 auto;
    max-width: 980px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

.safety-carousel {
    display: grid;
    grid-template-columns: 64px minmax(300px, 760px) 64px;
    gap: 28px;
    align-items: center;
    justify-content: center;
}

.safety-stage {
    display: grid;
    justify-items: center;
    gap: 22px;
}

.safety-animation-card {
    position: relative;
    width: min(100%, 500px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: transparent;
}

.safety-lottie {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(18px) scale(0.985);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.safety-lottie.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.safety-lottie svg,
.safety-lottie-fallback {
    width: 100%;
    height: 100%;
    display: block;
}

.safety-lottie-fallback {
    object-fit: contain;
}

.safety-shore {
    animation: safetyShoreDrift 8s ease-in-out infinite;
}

.safety-shore-light {
    animation: safetyPulse 6s ease-in-out infinite;
}

.safety-water-line {
    stroke-dasharray: 160 42;
    animation: safetyWaterFlow 7s linear infinite;
}

.safety-water-line-alt {
    animation-duration: 9s;
    animation-delay: -2s;
}

.safety-water-line-slow {
    animation-duration: 11s;
    animation-delay: -4s;
}

.safety-ripple {
    transform-box: fill-box;
    transform-origin: center;
    animation: safetyRipple 4.8s ease-in-out infinite;
}

.safety-scene {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity 0.36s ease, transform 0.36s ease;
}

.safety-scene.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.safety-scene-kayak.is-active {
    transform-box: fill-box;
    transform-origin: center;
    animation: safetyKayakFloat 4.2s ease-in-out infinite;
}

.safety-paddle {
    transform-box: fill-box;
    transform-origin: center;
    animation: safetyPaddle 3.7s ease-in-out infinite;
}

.safety-scene-vest.is-active .safety-vest-body {
    animation: safetyVestFloat 4.4s ease-in-out infinite;
}

.safety-scene-vest.is-active .safety-check-pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: safetyCheckPulse 2.8s ease-in-out infinite;
}

.safety-scene-vest.is-active .safety-vest-line {
    stroke-dasharray: 110 28;
    animation: safetyWaterFlow 6.4s linear infinite;
}

.safety-scene-vest.is-active .safety-vest-line-alt {
    animation-delay: -2s;
}

.safety-scene-weather.is-active .safety-sun {
    transform-box: fill-box;
    transform-origin: center;
    animation: safetySunPulse 4s ease-in-out infinite;
}

.safety-scene-weather.is-active .safety-wind {
    stroke-dasharray: 180 42;
    animation: safetyWindFlow 4.8s linear infinite;
}

.safety-scene-weather.is-active .safety-wind-alt {
    animation-duration: 6s;
    animation-delay: -1.4s;
}

.safety-scene-weather.is-active .safety-route {
    animation: safetyRouteFlow 5.5s linear infinite;
}

.safety-scene-weather.is-active .safety-clock-hand {
    transform-box: fill-box;
    transform-origin: 326px 158px;
    animation: safetyClockTick 3s ease-in-out infinite;
}

.safety-scene-weather.is-active .safety-clock-hand-alt {
    animation-delay: -0.7s;
}

.safety-tip-panel {
    width: min(100%, 760px);
    min-height: 116px;
    display: grid;
    align-items: center;
    padding: 24px 30px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.safety-tip {
    display: none;
    margin: 0;
    color: #273337;
    font-size: 18px;
    text-align: center;
}

.safety-tip.is-active {
    display: block;
    animation: safetyTipIn 0.32s ease both;
}

.safety-arrow {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
    transition: transform 0.18s ease, background 0.18s ease;
}

.safety-arrow:hover {
    transform: translateY(-2px);
    background: var(--yellow);
}

.safety-arrow:disabled,
.safety-arrow.is-disabled {
    cursor: default;
    opacity: 0.24;
    pointer-events: none;
}

.safety-arrow::before {
    content: "";
    width: 18px;
    height: 18px;
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
}

.safety-arrow-prev::before {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.safety-arrow-next::before {
    transform: rotate(45deg) translate(-2px, 2px);
}

.has-safety-animations [data-safety-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.has-safety-animations [data-safety-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes safetyKayakFloat {
    0%,
    100% {
        transform: translateY(-5px) rotate(-1deg);
    }

    50% {
        transform: translateY(7px) rotate(1.3deg);
    }
}

@keyframes safetyPaddle {
    0%,
    100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes safetyVestFloat {
    0%,
    100% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(6px);
    }
}

@keyframes safetyCheckPulse {
    0%,
    100% {
        opacity: 0.78;
        transform: scale(0.94);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes safetySunPulse {
    0%,
    100% {
        transform: scale(0.96);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes safetyWindFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -222;
    }
}

@keyframes safetyRouteFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -136;
    }
}

@keyframes safetyClockTick {
    0%,
    100% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(18deg);
    }
}

@keyframes safetyWaterFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -202;
    }
}

@keyframes safetyRipple {
    0%,
    100% {
        opacity: 0.12;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 0.28;
        transform: scaleX(1.18);
    }
}

@keyframes safetyShoreDrift {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-8px);
    }
}

@keyframes safetyPulse {
    0%,
    100% {
        opacity: 0.28;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes safetyTipIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.info-card p {
    margin-bottom: 0;
}

.step-number {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--teal);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}

.video-section {
    background: var(--surface);
}

.video-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
    gap: 48px;
    align-items: center;
}

.video-copy p {
    font-size: 18px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ink);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.newsletter-section {
    background: var(--yellow);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 42px;
    align-items: center;
}

.newsletter-inner p {
    color: #533d08;
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 12px;
}

.newsletter-form input,
.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    border: 1px solid #c9d5d1;
    border-radius: var(--radius);
    background: var(--paper);
}

.newsletter-form input:focus,
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: 3px solid rgba(18, 124, 122, 0.18);
    border-color: var(--teal);
}

.site-footer {
    padding: 44px 0;
    color: var(--paper);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.6fr) minmax(180px, 0.6fr);
    gap: 40px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a {
    color: #cdd6d3;
}

.footer-grid nav {
    display: grid;
    gap: 10px;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
}

.booking-modal.is-open {
    display: block;
}

.booking-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 19, 21, 0.55);
}

.booking-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100% - 28px, 980px);
    max-height: min(92vh, 920px);
    overflow: auto;
    transform: translate(-50%, -50%);
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.modal-close {
    position: sticky;
    top: 12px;
    left: calc(100% - 56px);
    z-index: 2;
    width: 42px;
    height: 42px;
    margin: 12px 12px -54px auto;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.booking-root {
    padding: 34px;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 28px;
}

.booking-main {
    min-width: 0;
}

.booking-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.booking-header {
    margin-bottom: 26px;
}

.booking-header h2 {
    margin-right: 46px;
}

.booking-header p {
    max-width: 720px;
    margin-bottom: 0;
}

.booking-section {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.booking-section:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.booking-section h3 {
    margin-bottom: 16px;
}

.location-note {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.location-note strong,
.location-note span {
    display: block;
}

.location-note span {
    color: var(--muted);
}

.location-note p {
    margin: 8px 0 0;
}

.product-list {
    display: grid;
    gap: 12px;
}

.product-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.product-option.is-inactive {
    opacity: 0.55;
}

.product-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.product-title h4 {
    margin: 0;
    color: var(--ink);
    text-transform: none;
    font-size: 18px;
}

.product-price {
    color: var(--teal);
    font-weight: 900;
    white-space: nowrap;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--surface-strong);
    font-size: 13px;
    font-weight: 800;
}

.qty-control {
    display: grid;
    grid-template-columns: 38px 46px 38px;
    align-items: center;
    height: 38px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.qty-control button {
    width: 38px;
    height: 38px;
    border: 0;
    background: var(--surface);
    font-size: 22px;
    font-weight: 900;
}

.qty-control output {
    display: grid;
    place-items: center;
    height: 38px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    font-weight: 900;
}

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

.booking-field {
    display: grid;
    gap: 7px;
}

.booking-field label {
    font-size: 14px;
    font-weight: 800;
}

.booking-field-full {
    grid-column: 1 / -1;
}

.booking-field textarea {
    min-height: 98px;
    resize: vertical;
}

.agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.agreement input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.summary-list {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.summary-list span:last-child {
    font-weight: 900;
    text-align: right;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 22px;
    font-weight: 900;
}

.booking-actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.booking-actions .button {
    width: 100%;
}

.form-message {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--muted);
}

.form-message.is-error {
    background: #fff1f0;
    color: #9f2d20;
}

.form-message.is-success {
    background: #eaf7f0;
    color: #1f5e42;
}

body.modal-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .has-safety-animations [data-safety-animate],
    .has-safety-animations [data-safety-animate].is-visible,
    .safety-shore,
    .safety-shore-light,
    .safety-water-line,
    .safety-ripple,
    .safety-scene.is-active,
    .safety-scene.is-active *,
    .safety-lottie.is-active,
    .safety-paddle,
    .safety-tip.is-active {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 30px;
    }

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

    .main-nav {
        position: absolute;
        top: 78px;
        left: 16px;
        right: 16px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

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

    .nav-title,
    .nav-link {
        width: 100%;
        padding: 12px;
        text-align: left;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 8px 12px;
    }

    .intro-grid,
    .video-grid,
    .newsletter-inner,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .intro-title,
    .intro-action,
    .intro-copy,
    .features-panel {
        grid-column: auto;
    }

    .intro-action {
        justify-self: stretch;
    }

    .intro-action .button {
        width: 100%;
    }

    .steps-grid,
    .safety-grid {
        grid-template-columns: 1fr 1fr;
    }

    .location-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .safety-intro h2 {
        font-size: 36px;
    }

    .safety-carousel {
        grid-template-columns: 52px minmax(0, 1fr) 52px;
        gap: 16px;
    }

    .safety-arrow {
        width: 52px;
        height: 52px;
    }

    .booking-sidebar {
        position: static;
    }
}

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

    .section {
        padding: 48px 0;
    }

    .hero-section {
        padding-top: 34px;
    }

    .brand-text {
        font-size: 24px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

    .hero-image {
        aspect-ratio: 4 / 3;
    }

    .feature-grid,
    .steps-grid,
    .safety-grid,
    .location-list,
    .newsletter-form,
    .booking-fields {
        grid-template-columns: 1fr;
    }

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

    .safety-intro h2 {
        font-size: 30px;
    }

    .safety-intro > p:last-child,
    .safety-tip {
        font-size: 16px;
    }

    .safety-carousel {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .safety-stage {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .safety-arrow {
        width: 48px;
        height: 48px;
        justify-self: center;
    }

    .safety-arrow-prev {
        grid-column: 1;
        grid-row: 2;
    }

    .safety-arrow-next {
        grid-column: 2;
        grid-row: 2;
    }

    .safety-animation-card {
        border-width: 5px;
        border-radius: 54px;
    }

    .safety-tip-panel {
        min-height: 136px;
        padding: 20px;
    }

    .map-shell {
        min-height: 320px;
    }

    .booking-panel {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }

    .booking-root {
        padding: 24px 18px 34px;
    }

    .product-option {
        grid-template-columns: 1fr;
    }

    .qty-control {
        justify-self: start;
    }
}
