:root {
    --bg: #f7f5f0;
    --surface: #ffffff;
    --surface-soft: #f1ede3;
    --text: #203342;
    --muted: #667987;
    --primary: #8ca9bc;
    --primary-dark: #425f73;
    --accent: #d7b759;
    --accent-dark: #a8842e;
    --success: #15803d;
    --danger: #b42318;
    --radius: 16px;
    --shadow-lg: 0 24px 60px rgba(32, 51, 66, 0.12);
    --shadow-md: 0 14px 30px rgba(32, 51, 66, 0.1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fbfaf7 0%, var(--bg) 45%, #f0ece4 100%);
    line-height: 1.6;
}

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

.container {
    width: min(1140px, calc(100% - 2.2rem));
    margin-inline: auto;
}

.section {
    padding: clamp(3.3rem, 6vw, 6rem) 0;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    line-height: 1.2;
    margin: 0;
}

.section-copy {
    color: var(--muted);
    margin-top: 0.9rem;
    max-width: 60ch;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(244, 248, 251, 0.9);
    border-bottom: 1px solid rgba(140, 169, 188, 0.12);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.logo-image {
    line-height: 0;
}

.logo-img {
    width: clamp(152px, 16vw, 218px);
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.2px;
}

.logo-text span {
    color: var(--accent);
}

.nav-toggle {
    border: 0;
    background: var(--surface);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 1.3rem;
    align-items: center;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.76rem 1.15rem;
    box-shadow: 0 10px 22px rgba(140, 169, 188, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 30px rgba(140, 169, 188, 0.32);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary-dark);
    padding: 0.7rem 1rem;
    border: 1px solid rgba(140, 169, 188, 0.22);
}

.btn-secondary:hover {
    background: #fff;
    box-shadow: 0 14px 26px rgba(10, 39, 56, 0.1);
}

.hero {
    padding: clamp(3.2rem, 8vw, 7rem) 0 3.5rem;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: 1.1fr 0.9fr;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.1rem, 5.1vw, 4rem);
    line-height: 1.06;
    margin: 0;
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: break-word;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-copy {
    margin-top: 1.2rem;
    color: var(--muted);
    max-width: 56ch;
}

.hero-actions {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.hero-proof span {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(140, 169, 188, 0.12);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-stats {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.stat {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(140, 169, 188, 0.1);
    border-radius: 12px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(140, 169, 188, 0.24);
}

.stat strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
}

.stat span {
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-card {
    position: relative;
    border-radius: 24px;
    padding: 1rem;
    background: linear-gradient(150deg, #ffffff, #f7f1df);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(140, 169, 188, 0.16);
    overflow: hidden;
}

.hero-card:hover .hero-media {
    transform: scale(1.02);
}

.hero-card::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(215, 183, 89, 0.25);
    top: -32px;
    right: -24px;
}

.hero-badge {
    position: absolute;
    left: -15px;
    bottom: 22px;
    background: #fff;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(140, 169, 188, 0.16);
    box-shadow: 0 10px 24px rgba(14, 48, 67, 0.14);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-media {
    height: 500px;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-panel {
    position: absolute;
    right: 26px;
    bottom: 84px;
    max-width: 250px;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(140, 169, 188, 0.14);
    box-shadow: 0 16px 34px rgba(10, 39, 56, 0.16);
    backdrop-filter: blur(12px);
}

.hero-panel-kicker {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.hero-panel strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    line-height: 1.35;
}

.trust-strip {
    padding-bottom: 1rem;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-strip-grid div {
    padding: 1.1rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(140, 169, 188, 0.12);
    box-shadow: var(--shadow-md);
}

.trust-strip-grid strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
}

.trust-strip-grid span {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
}

.notice {
    border-radius: 12px;
    padding: 0.7rem 0.95rem;
    margin: 0.9rem 0 0;
    font-weight: 600;
    font-size: 0.92rem;
}

.notice-success {
    background: #eaf9ef;
    border: 1px solid #9ed3ae;
    color: #0f5f2a;
}

.notice-error {
    background: #fff0ef;
    border: 1px solid #f2b1ab;
    color: #822118;
}

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

.feature {
    background: var(--surface);
    border: 1px solid rgba(140, 169, 188, 0.14);
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(10, 39, 56, 0.12);
    border-color: rgba(140, 169, 188, 0.3);
}

.feature-index {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
}

.feature h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
}

.feature p {
    color: var(--muted);
    margin: 0.6rem 0 0;
}

.experience-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(241, 237, 227, 0.72));
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.experience-collage {
    position: relative;
    min-height: 560px;
}

.experience-main,
.experience-float {
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.experience-main {
    width: 78%;
    height: 520px;
    border-radius: 28px;
}

.experience-float {
    position: absolute;
    right: 0;
    bottom: 48px;
    width: 46%;
    height: 240px;
    border-radius: 22px;
    border: 8px solid rgba(255, 255, 255, 0.95);
}

.experience-note {
    position: absolute;
    right: 18px;
    top: 18px;
    max-width: 220px;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(14, 41, 56, 0.9);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.experience-note strong {
    display: block;
    font-family: 'Sora', sans-serif;
}

.experience-note span {
    display: block;
    margin-top: 0.35rem;
    color: #f3e8bd;
    font-size: 0.9rem;
}

.journey-list {
    margin-top: 1.6rem;
    display: grid;
    gap: 1rem;
}

.journey-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(140, 169, 188, 0.12);
    box-shadow: var(--shadow-md);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.journey-item:hover {
    transform: translateX(6px);
    box-shadow: 0 18px 36px rgba(10, 39, 56, 0.12);
}

.journey-item span {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.journey-item h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.journey-item p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.services-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(140, 169, 188, 0.13);
    border-radius: 16px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 46px rgba(10, 39, 56, 0.14);
}

.service-media-wrap {
    position: relative;
}

.service-media {
    width: 100%;
    height: 215px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-tag {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 34, 48, 0.82);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.service-card:hover .service-media {
    transform: scale(1.05);
}

.service-body {
    padding: 1.15rem;
}

.service-card h3 {
    margin: 0;
    font-size: 1.05rem;
    font-family: 'Sora', sans-serif;
}

.service-card p {
    color: var(--muted);
    margin: 0.6rem 0;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.9rem;
}

.booking-area {
    margin-top: 2rem;
    background: linear-gradient(170deg, #ffffff, #f5f0e6);
    border: 1px solid rgba(140, 169, 188, 0.16);
    border-radius: 22px;
    padding: clamp(1.2rem, 2.5vw, 2rem);
    box-shadow: var(--shadow-md);
}

.booking-teaser {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
    align-items: center;
    padding: 1.4rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #263d4d, #5f7685);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.booking-teaser .section-copy {
    color: #f3e8bd;
}

.booking-teaser .section-kicker {
    color: #efd37b;
}

.booking-teaser-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.results-teaser {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.results-teaser-card {
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(140, 169, 188, 0.12);
    box-shadow: var(--shadow-md);
}

.results-teaser-card strong {
    display: block;
    margin-top: 0.85rem;
    font-family: 'Sora', sans-serif;
}

.results-teaser-card p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.results-teaser-cta {
    display: grid;
    place-items: center;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #263d4d, #5f7685);
    box-shadow: var(--shadow-lg);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.form-group {
    display: grid;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #2d4a5a;
}

.form-input,
.form-select,
.form-textarea {
    border-radius: 10px;
    border: 1px solid #b8cbd8;
    background: #fff;
    width: 100%;
    padding: 0.68rem 0.75rem;
    font: inherit;
    color: var(--text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid #d7b759;
    border-color: #8ca9bc;
    box-shadow: 0 0 0 4px rgba(92, 184, 210, 0.12);
}

.form-textarea {
    min-height: 115px;
    resize: vertical;
}

.form-span-2 {
    grid-column: span 2;
}

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

.testimonial-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(140, 169, 188, 0.15);
    box-shadow: var(--shadow-md);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px rgba(10, 39, 56, 0.14);
    border-color: rgba(140, 169, 188, 0.28);
}

.testimonial-media {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.testimonial-card:hover .testimonial-media {
    transform: scale(1.04);
}

.testimonial-content {
    padding: 1.1rem;
}

.testimonial-service {
    display: inline-flex;
    padding: 0.35rem 0.68rem;
    border-radius: 999px;
    background: #f4edd7;
    color: #425f73;
    font-weight: 800;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
}

.testimonial-content p {
    color: var(--muted);
    margin: 0.85rem 0 1rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 0.8rem;
}

.testimonial-footer strong {
    display: block;
}

.testimonial-footer span {
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: right;
}

.page-contact {
    background: linear-gradient(180deg, #fbfaf7 0%, #f3efe6 100%);
}

.page-results {
    background: linear-gradient(180deg, #fbfaf7 0%, #f1ede3 100%);
}

.results-hero {
    padding: clamp(3.6rem, 8vw, 7rem) 0 2rem;
}

.results-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.results-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.results-proof span {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(140, 169, 188, 0.12);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.results-hero-visual {
    position: relative;
}

.results-hero-visual img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.results-hero-card {
    position: absolute;
    left: 22px;
    bottom: 22px;
    max-width: 250px;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(14, 41, 56, 0.88);
    color: #fff;
    backdrop-filter: blur(10px);
}

.results-hero-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
}

.results-hero-card span {
    display: block;
    margin-top: 0.35rem;
    color: #f3e8bd;
}

.results-stats {
    padding-bottom: 1rem;
}

.results-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.results-stat-card {
    padding: 1.1rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(140, 169, 188, 0.12);
    box-shadow: var(--shadow-md);
}

.results-stat-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
}

.results-stat-card span {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
}

.results-story-grid {
    display: grid;
    gap: 1.4rem;
}

.results-story-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.3rem;
    align-items: center;
    padding: 1.2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(140, 169, 188, 0.12);
    box-shadow: var(--shadow-lg);
}

.results-story-card.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.results-story-card.reverse .results-story-media {
    order: 2;
}

.results-story-card.reverse .results-story-content {
    order: 1;
}

.results-story-media {
    position: relative;
}

.results-story-media img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 22px;
}

.results-story-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.8rem;
}

.results-story-content h2 {
    margin: 0.9rem 0 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.2;
}

.results-story-quote {
    margin: 1rem 0 1.2rem;
    color: var(--muted);
    font-size: 1rem;
}

.results-story-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
}

.results-story-footer strong {
    display: block;
    font-family: 'Sora', sans-serif;
}

.results-story-footer span {
    color: var(--primary-dark);
    font-weight: 700;
    text-align: right;
}

.results-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 26px;
    background: linear-gradient(135deg, #263d4d, #5f7685);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.results-cta .section-copy {
    color: #f3e8bd;
}

.results-cta .section-kicker {
    color: #efd37b;
}

.page-book {
    background: linear-gradient(180deg, #fbfaf7 0%, #f2eee5 100%);
}

.book-hero {
    padding: clamp(3.6rem, 8vw, 7rem) 0 2rem;
}

.book-hero-shell {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.book-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.book-proof span {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(140, 169, 188, 0.12);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.book-preview-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.book-preview-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.book-preview-overlay {
    position: absolute;
    inset: auto 20px 20px 20px;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(14, 41, 56, 0.84);
    backdrop-filter: blur(10px);
    color: #fff;
}

.book-preview-overlay strong {
    display: block;
    font-family: 'Sora', sans-serif;
}

.book-preview-overlay span {
    display: block;
    margin-top: 0.35rem;
    color: #f3e8bd;
}

.book-steps-grid {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.book-step-card {
    padding: 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(140, 169, 188, 0.14);
    box-shadow: var(--shadow-md);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.book-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(10, 39, 56, 0.12);
}

.book-step-card > span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.book-step-card strong {
    display: block;
    margin-top: 0.9rem;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.book-step-card p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.book-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: start;
}

.book-main-section {
    padding-top: 2rem;
}

.book-form-shell,
.book-sidebar {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(140, 169, 188, 0.12);
    box-shadow: var(--shadow-lg);
}

.service-chip-grid {
    margin: 1.2rem 0 1.15rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.service-chip {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f5f0e6);
    border: 1px solid rgba(140, 169, 188, 0.12);
}

.service-chip strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
}

.service-chip span {
    display: block;
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.book-sidebar {
    display: grid;
    gap: 1rem;
}

.book-sidebar-block {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f2f8fb);
    border: 1px solid rgba(140, 169, 188, 0.12);
}

.book-checklist {
    margin-top: 1rem;
    display: grid;
    gap: 0.9rem;
}

.book-check-item {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 0.75rem;
    align-items: start;
}

.book-check-item span {
    width: 16px;
    height: 16px;
    margin-top: 0.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.book-check-item p {
    margin: 0;
    color: var(--muted);
}

.book-service-list {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

.book-service-list.compact {
    gap: 0.75rem;
}

.book-service-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(140, 169, 188, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.book-service-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.book-service-row strong {
    display: block;
    font-family: 'Sora', sans-serif;
}

.book-service-row p {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.book-service-row span {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.86rem;
    white-space: nowrap;
}

.book-assist-card {
    padding: 1.1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #263d4d, #5f7685);
    color: #fff;
}

.book-assist-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.book-assist-card p {
    margin: 0.55rem 0 1rem;
    color: #f3e8bd;
}

.contact-hero {
    padding: clamp(3.6rem, 8vw, 7rem) 0 2rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.contact-quick-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-quick-card {
    display: block;
    text-decoration: none;
    color: var(--text);
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(140, 169, 188, 0.14);
    box-shadow: var(--shadow-md);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(10, 39, 56, 0.12);
    border-color: rgba(140, 169, 188, 0.28);
}

.contact-quick-card strong,
.contact-info-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
}

.contact-quick-card span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
}

.contact-visual {
    position: relative;
    min-height: 560px;
}

.contact-visual img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.contact-float-card {
    position: absolute;
    left: -28px;
    bottom: 34px;
    max-width: 240px;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(14, 41, 56, 0.92);
    color: #fff;
    box-shadow: 0 20px 40px rgba(10, 39, 56, 0.22);
}

.contact-float-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
}

.contact-float-card span {
    display: block;
    margin-top: 0.45rem;
    color: #d3e7ef;
    font-size: 0.92rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: start;
}

.contact-panel,
.contact-sidebar {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(140, 169, 188, 0.14);
    box-shadow: var(--shadow-lg);
}

.contact-visit-grid {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-info-card {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f5f0e6);
    border: 1px solid rgba(140, 169, 188, 0.12);
}

.contact-info-card p,
.contact-map-card p,
.contact-faq-item p {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.contact-map-card {
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem;
    border-radius: 22px;
    background: linear-gradient(135deg, #263d4d, #506b7c);
    color: #fff;
}

.contact-map-card h3 {
    margin: 0.1rem 0 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
}

.contact-map-card p {
    color: #f3e8bd;
}

.contact-faq-list {
    margin-top: 1.4rem;
    display: grid;
    gap: 1rem;
}

.contact-faq-item {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f3f8fb);
    border: 1px solid rgba(140, 169, 188, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.contact-faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-faq-item h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.footer {
    padding: 2rem 0;
    background: #263d4d;
    color: #d1e4ef;
}

.footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.footer a {
    color: #d1e4ef;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #fff;
}

.footer small {
    display: block;
    margin-top: 1rem;
    color: #8eb4c8;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .results-hero-grid,
    .results-story-card,
    .results-story-card.reverse,
    .results-stats-grid,
    .results-teaser,
    .results-cta,
    .book-hero-shell,
    .book-steps-grid,
    .book-layout,
    .contact-hero-grid,
    .contact-layout,
    .contact-visit-grid,
    .contact-quick-grid,
    .trust-strip-grid,
    .why-grid,
    .experience-grid,
    .hero-grid,
    .services-grid,
    .features,
    .testimonials,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-media {
        height: 340px;
    }

    .hero-panel {
        right: 18px;
        bottom: 78px;
    }

    .experience-collage {
        min-height: 500px;
    }

    .experience-main {
        width: 100%;
        height: 360px;
    }

    .experience-float {
        width: 44%;
        height: 180px;
    }

    .booking-teaser {
        grid-template-columns: 1fr;
    }

    .booking-teaser-actions {
        justify-content: flex-start;
    }

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

    .book-preview-card img {
        height: 420px;
    }

    .book-service-row {
        align-items: flex-start;
    }

    .results-story-card.reverse .results-story-media,
    .results-story-card.reverse .results-story-content {
        order: initial;
    }

    .results-hero-visual img {
        height: 420px;
    }

    .contact-visual {
        min-height: 420px;
    }

    .contact-visual img {
        height: 420px;
    }

    .contact-float-card {
        left: 18px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.2rem);
        max-width: 15ch;
    }

    .hero-copy,
    .section-copy {
        max-width: min(100%, 34ch);
        overflow-wrap: break-word;
    }

    .logo-img {
        width: clamp(132px, 44vw, 178px);
        max-height: 46px;
    }

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

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: min(95%, 620px);
        background: #fff;
        border: 1px solid rgba(140, 169, 188, 0.14);
        border-radius: 14px;
        box-shadow: var(--shadow-md);
        padding: 1rem;
        flex-direction: column;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links a::after {
        display: none;
    }

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

    .results-hero-grid,
    .results-story-card,
    .results-story-card.reverse,
    .results-stats-grid,
    .results-teaser,
    .results-cta,
    .book-hero-shell,
    .book-steps-grid,
    .book-layout,
    .contact-hero-grid,
    .contact-layout,
    .contact-visit-grid,
    .contact-quick-grid,
    .trust-strip-grid,
    .why-grid,
    .experience-grid,
    .hero-grid,
    .features,
    .services-grid,
    .testimonials,
    .footer-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .form-span-2 {
        grid-column: span 1;
    }

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

    .hero-media {
        height: 380px;
    }

    .hero-panel {
        position: static;
        max-width: none;
        margin-top: 0.9rem;
    }

    .hero-badge {
        left: 16px;
        bottom: 16px;
        font-size: 0.8rem;
    }

    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
    }

    .book-proof {
        flex-direction: column;
        align-items: flex-start;
    }

    .experience-collage {
        min-height: auto;
    }

    .experience-main {
        height: 320px;
    }

    .experience-float {
        position: static;
        width: 100%;
        height: 180px;
        margin-top: 1rem;
        border-width: 0;
    }

    .experience-note {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }

    .journey-item {
        grid-template-columns: 56px 1fr;
    }

    .journey-item span {
        width: 56px;
        height: 56px;
    }

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

    .book-preview-card img {
        height: 300px;
    }

    .book-preview-overlay {
        inset: auto 14px 14px 14px;
    }

    .book-service-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-teaser-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .results-proof {
        flex-direction: column;
        align-items: flex-start;
    }

    .results-hero-visual img {
        height: 320px;
    }

    .results-hero-card {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .results-story-media img {
        height: 220px;
    }

    .results-story-footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .contact-visual img {
        height: 320px;
    }

    .contact-float-card {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .contact-map-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

