:root {
    --color-cream: #FBF7F4;
    --color-warm-white: #FDFAF7;
    --color-soft-beige: #F0E8DF;
    --color-taupe: #C4A882;
    --color-deep-taupe: #8B7355;
    --color-espresso: #3C2A1E;
    --color-dark-espresso: #1F1510;
    --color-soft-gold: #D4B896;
    --color-sage: #9CAF9C;
    --color-soft-rose: #E8D5D0;
    --color-charcoal: #2B2B2B;
    --color-error: #C25A5A;
    --color-success: #6B8F71;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --transition-smooth: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-soft: 0 2px 24px rgba(31, 21, 16, 0.06);
    --shadow-elevated: 0 8px 40px rgba(31, 21, 16, 0.10);
    --shadow-modal: 0 20px 60px rgba(31, 21, 16, 0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --nav-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-warm-white);
    color: var(--color-espresso);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

::selection {
    background-color: var(--color-taupe);
    color: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark-espresso);
    color: var(--color-cream);
    z-index: 10000;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    flex: 1 1 300px;
    line-height: 1.5;
    font-weight: 300;
}

.cookie-banner a {
    color: var(--color-soft-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-banner a:hover {
    color: #fff;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.cookie-banner__btn--accept {
    background: var(--color-soft-gold);
    color: var(--color-dark-espresso);
}

.cookie-banner__btn--accept:hover {
    background: #fff;
    transform: translateY(-1px);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-banner__btn--decline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(253, 250, 247, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.12);
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    box-shadow: var(--shadow-soft);
    background: rgba(253, 250, 247, 0.94);
    height: 68px;
}

.header-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-dark-espresso);
    text-decoration: none;
    transition: color var(--transition-smooth);
    line-height: 1;
    white-space: nowrap;
}

.logo span {
    color: var(--color-deep-taupe);
    font-style: italic;
    font-weight: 400;
}

.logo:hover {
    color: var(--color-deep-taupe);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--color-espresso);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 10px 16px;
    border-radius: 24px;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
    background: var(--color-soft-beige);
    color: var(--color-dark-espresso);
}

.nav-cta {
    background: var(--color-dark-espresso) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    transition: all var(--transition-smooth) !important;
}

.nav-cta:hover {
    background: var(--color-deep-taupe) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-dark-espresso);
    border-radius: 2px;
    transition: all var(--transition-smooth);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 250, 247, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--color-dark-espresso);
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color var(--transition-smooth);
}

.mobile-nav a:hover {
    color: var(--color-deep-taupe);
}

.mobile-nav .nav-cta-mobile {
    background: var(--color-dark-espresso);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

main {
    flex: 1;
    margin-top: var(--nav-height);
}

.section {
    padding: 80px 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.section--flush {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-height));
    align-items: center;
    gap: 0;
    max-width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero__content {
    padding: 60px 40px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: var(--color-warm-white);
    position: relative;
}

.hero__content::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    width: 80px;
    background: var(--color-warm-white);
    border-radius: 0 60px 60px 0;
    z-index: -1;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-deep-taupe);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--color-dark-espresso);
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.hero__title em {
    font-style: italic;
    color: var(--color-deep-taupe);
    font-weight: 400;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    max-width: 440px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    text-align: center;
}

.btn--primary {
    background: var(--color-dark-espresso);
    color: #fff;
    box-shadow: 0 4px 16px rgba(31, 21, 16, 0.18);
}

.btn--primary:hover {
    background: var(--color-deep-taupe);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(31, 21, 16, 0.22);
}

.btn--secondary {
    background: transparent;
    color: var(--color-dark-espresso);
    border: 2px solid var(--color-dark-espresso);
}

.btn--secondary:hover {
    background: var(--color-dark-espresso);
    color: #fff;
    transform: translateY(-2px);
}

.hero__visual {
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__visual-inner {
    width: 100%;
    height: 100%;
    background: url('img/hero.jpg') center/cover no-repeat;
    position: relative;
    clip-path: ellipse(75% 85% at 25% 50%);
}

.about-snippet__visual {
    height: 420px;
    border-radius: var(--radius-xl);
    background: url('img/about.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-deep-taupe);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--color-dark-espresso);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-charcoal);
    max-width: 560px;
    font-weight: 300;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(139, 115, 85, 0.10);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--color-taupe);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-soft-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    transition: all var(--transition-smooth);
}

.service-card:hover .service-card__icon {
    background: var(--color-dark-espresso);
    color: #fff;
    transform: scale(1.08);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-dark-espresso);
}

.service-card__price {
    font-weight: 600;
    color: var(--color-deep-taupe);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-charcoal);
    font-weight: 300;
    line-height: 1.5;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(139, 115, 85, 0.15);
    border-bottom: 1px solid rgba(139, 115, 85, 0.15);
    padding: 0;
    margin-top: 60px;
}

.feature-strip__item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(139, 115, 85, 0.10);
    transition: background var(--transition-smooth);
}

.feature-strip__item:last-child {
    border-right: none;
}

.feature-strip__item:hover {
    background: rgba(240, 232, 223, 0.3);
}

.feature-strip__number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--color-deep-taupe);
    line-height: 1;
}

.feature-strip__label {
    font-size: 0.85rem;
    color: var(--color-charcoal);
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.about-snippet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-snippet__content .section-title {
    margin-bottom: 18px;
}

.about-snippet__content p {
    margin-bottom: 14px;
    font-weight: 300;
    color: var(--color-charcoal);
    line-height: 1.7;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(139, 115, 85, 0.10);
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-3px);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-dark-espresso);
    margin-bottom: 16px;
}

.testimonial-card__author {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    color: var(--color-deep-taupe);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.booking-cta-section {
    background: var(--color-dark-espresso);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 32px;
    max-width: 1220px;
}

.booking-cta-section .section-label {
    color: var(--color-soft-gold);
}

.booking-cta-section .section-title {
    color: #fff;
}

.booking-cta-section .section-desc {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 28px;
}

.booking-cta-section .btn--primary {
    background: #fff;
    color: var(--color-dark-espresso);
    font-size: 1rem;
    padding: 16px 36px;
}

.booking-cta-section .btn--primary:hover {
    background: var(--color-soft-gold);
    transform: translateY(-2px);
}

.booking-cta-section__bg-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.booking-cta-section__bg-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -40px;
    top: auto;
    right: auto;
}

.site-footer {
    background: var(--color-dark-espresso);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 32px 32px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1280px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 21, 16, 0.65);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-modal);
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-charcoal);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    z-index: 2;
}

.modal__close:hover {
    background: var(--color-soft-beige);
    color: var(--color-dark-espresso);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-dark-espresso);
    margin-bottom: 24px;
    text-align: center;
}

.modal__step-indicator {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.modal__step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-soft-beige);
    transition: all var(--transition-smooth);
}

.modal__step-dot.active {
    background: var(--color-dark-espresso);
    transform: scale(1.3);
}

.modal__step-dot.done {
    background: var(--color-deep-taupe);
}

.modal__step {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.modal__step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modal__service-option {
    display: block;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 10px;
    background: var(--color-warm-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-smooth);
    color: var(--color-espresso);
}

.modal__service-option:hover {
    border-color: var(--color-taupe);
    background: #fff;
}

.modal__service-option.selected {
    border-color: var(--color-dark-espresso);
    background: #fff;
    font-weight: 600;
}

.modal__service-option .price {
    float: right;
    color: var(--color-deep-taupe);
    font-weight: 600;
}

.modal__form-group {
    margin-bottom: 16px;
}

.modal__form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 5px;
    letter-spacing: 0.03em;
    color: var(--color-espresso);
}

.modal__form-group input,
.modal__form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-soft-beige);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-smooth);
    background: var(--color-warm-white);
    color: var(--color-dark-espresso);
}

.modal__form-group input:focus,
.modal__form-group select:focus {
    outline: none;
    border-color: var(--color-deep-taupe);
    background: #fff;
}

.modal__btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.modal__success {
    text-align: center;
    padding: 20px 0;
}

.modal__success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.modal__success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-dark-espresso);
    margin-bottom: 8px;
}

.modal__success p {
    color: var(--color-charcoal);
    font-weight: 300;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero__content {
        padding: 48px 32px;
        order: 2;
    }
    .hero__content::after {
        display: none;
    }
    .hero__visual {
        min-height: 350px;
        order: 1;
    }
    .hero__visual-inner {
        clip-path: ellipse(90% 70% at 50% 40%);
    }
    .feature-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-strip__item:nth-child(2) {
        border-right: none;
    }
    .about-snippet {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-snippet__visual {
        height: 300px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-cta-section {
        margin: 0 16px;
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-nav {
        display: flex;
    }
    .section {
        padding: 48px 16px;
    }
    .hero__content {
        padding: 36px 20px;
    }
    .hero__visual {
        min-height: 280px;
    }
    .feature-strip {
        grid-template-columns: 1fr 1fr;
    }
    .feature-strip__item {
        border-right: none;
        border-bottom: 1px solid rgba(139, 115, 85, 0.10);
        padding: 20px 16px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }
    .cookie-banner__actions {
        justify-content: center;
        width: 100%;
    }
    .modal {
        padding: 28px 18px;
        border-radius: var(--radius-lg);
    }
    .booking-cta-section {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero__actions {
        flex-direction: column;
    }
    .hero__actions .btn {
        width: 100%;
    }
    .feature-strip {
        grid-template-columns: 1fr;
    }
    .feature-strip__item {
        border-right: none;
        border-bottom: 1px solid rgba(139, 115, 85, 0.10);
    }
    .feature-strip__item:last-child {
        border-bottom: none;
    }
}