body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--stone);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--wine);
    color: #fff;
}

.container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    background: var(--wine);
    color: #fff;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(12, 13, 13, 0.98);
    color: var(--text-light);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: grid;
    min-height: var(--header-height);
    align-items: center;
    gap: 28px;
    grid-template-columns: auto 1fr auto;
}

.site-logo {
    width: 210px;
}

.site-logo img {
    width: 100%;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(17px, 2vw, 30px);
}

.desktop-nav a {
    position: relative;
    color: #d5d6d3;
    font-size: 12px;
    font-weight: 600;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    background: var(--wine-hover);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    margin-right: 5px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.cart-link {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
}

.cart-link svg {
    width: 19px;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border: 2px solid var(--black);
    border-radius: 50%;
    background: var(--wine);
    font-size: 9px;
}

.header-booking {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    padding: 9px 18px;
    border-radius: var(--radius);
    background: var(--wine);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.header-booking:hover {
    background: var(--wine-hover);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--border-dark);
}

.menu-button span {
    width: 19px;
    height: 1px;
    background: #fff;
}

/* Common */

.section-label {
    color: var(--wine);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label-light {
    color: var(--rose-light);
}

.section-title {
    max-width: 720px;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.section-description {
    max-width: 620px;
    margin-top: 15px;
    color: var(--text-body);
    font-size: 14px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.button {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-wine {
    background: var(--wine);
    color: #fff;
}

.button-wine:hover {
    background: var(--wine-hover);
}

.button-dark {
    background: var(--black);
    color: #fff;
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.button-outline-dark {
    border-color: var(--graphite);
    color: var(--graphite);
}

.button-outline-dark:hover {
    background: var(--graphite);
    color: #fff;
}

.button-arrow::after {
    content: "→";
    font-size: 16px;
}

/* Hero */

.hero {
    overflow: hidden;
    background: var(--graphite);
    color: var(--text-light);
}

.hero-grid {
    display: grid;
    min-height: 650px;
    grid-template-columns: 48% 52%;
}

.hero-content {
    display: flex;
    padding: 62px 62px 58px 0;
    justify-content: center;
    flex-direction: column;
}

.hero-label {
    color: var(--rose-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 680px;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: clamp(45px, 4.8vw, 68px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1;
}

.hero h1 span {
    display: block;
    color: var(--rose-light);
}

.hero-accent {
    display: block;
    margin-top: 15px;
    color: var(--rose);
    font-family: var(--font-accent);
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
}

.hero-description {
    max-width: 590px;
    margin-top: 22px;
    color: var(--text-light-muted);
    font-size: 14px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 27px;
}

.hero-meta {
    display: grid;
    gap: 1px;
    margin-top: 34px;
    background: var(--border-dark);
    grid-template-columns: repeat(3, 1fr);
}

.hero-meta-item {
    padding: 13px 14px;
    background: var(--graphite);
}

.hero-meta-item span {
    display: block;
    color: var(--rose);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-meta-item strong {
    display: block;
    margin-top: 4px;
    font-size: 10px;
}

.hero-photo {
    position: relative;
    min-height: 650px;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(32, 34, 32, 0.32), transparent 38%),
        linear-gradient(0deg, rgba(12, 13, 13, 0.5), transparent 45%);
    content: "";
}

.hero-photo-note {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 17px;
    background: rgba(12, 13, 13, 0.84);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-photo-note strong {
    font-size: 14px;
}

.hero-photo-note span {
    display: block;
    margin-top: 3px;
    color: var(--rose-light);
    font-size: 9px;
}

/* Trust */

.trust-section {
    background: var(--black);
    color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 84px;
    padding: 17px 20px;
    border-right: 1px solid var(--border-dark);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    font-size: 11px;
}

.trust-item span {
    display: block;
    margin-top: 3px;
    color: #8f918d;
    font-size: 9px;
}

/* Services */

.services-section {
    padding: 72px 0 80px;
    background: var(--stone);
}

.services-grid {
    display: grid;
    gap: 14px;
    margin-top: 36px;
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--stone-light);
    box-shadow: 0 8px 24px rgba(13, 15, 14, 0.08);
    transition: 180ms ease;
}

.service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.service-card:hover .service-image img {
    transform: scale(1.035);
}

.service-number {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    background: rgba(12, 13, 13, 0.84);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.service-body {
    padding: 20px;
}

.service-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.16;
}

.service-body p {
    margin-top: 9px;
    color: var(--text-body);
    font-size: 12px;
}

.service-meta {
    display: flex;
    margin-top: 16px;
    padding-top: 13px;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.service-meta span {
    color: var(--text-muted);
    font-size: 9px;
}

.service-meta strong {
    color: var(--wine);
    font-size: 12px;
}

.service-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.service-action {
    display: inline-flex;
    min-height: 39px;
    flex: 1;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--graphite);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-action:hover {
    background: var(--graphite);
    color: #fff;
}

.service-action-primary {
    border-color: var(--wine);
    background: var(--wine);
    color: #fff;
}

/* Consultation */

.consultation-section {
    padding: 62px 0;
    background: var(--plum);
    color: #fff;
}

.consultation-panel {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    grid-template-columns: 0.75fr 1.25fr;
}

.consultation-image {
    min-height: 390px;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.consultation-content {
    display: flex;
    padding: 48px;
    justify-content: center;
    flex-direction: column;
}

.consultation-content h2 {
    max-width: 620px;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.6vw, 49px);
    line-height: 1.08;
}

.consultation-content p {
    max-width: 590px;
    margin-top: 17px;
    color: #d7c6cb;
    font-size: 13px;
}

.consultation-content .button {
    align-self: flex-start;
    margin-top: 23px;
}

/* Results */

.results-section {
    padding: 72px 0 80px;
    background: var(--rose-light);
}

.results-grid {
    display: grid;
    gap: 14px;
    margin-top: 36px;
    grid-template-columns: repeat(3, 1fr);
}

.result-card {
    overflow: hidden;
    background: var(--stone-light);
    box-shadow: var(--shadow-card);
}

.result-image {
    height: 310px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-body {
    padding: 18px;
}

.result-body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
}

.result-body p {
    margin-top: 5px;
    color: var(--text-body);
    font-size: 11px;
}

/* Master */

.master-section {
    padding: 72px 0;
    background: var(--stone);
}

.master-grid {
    display: grid;
    overflow: hidden;
    box-shadow: var(--shadow);
    grid-template-columns: 0.8fr 1.2fr;
}

.master-photo {
    min-height: 510px;
}

.master-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.master-content {
    display: flex;
    padding: 46px;
    justify-content: center;
    flex-direction: column;
    background: var(--stone-light);
}

.master-content h2 {
    max-width: 650px;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.7vw, 50px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.master-content p {
    max-width: 620px;
    margin-top: 17px;
    color: var(--text-body);
    font-size: 13px;
}

.master-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 21px;
}

.master-badge {
    padding: 9px 12px;
    border: 1px solid var(--border);
    background: var(--rose-pale);
    font-size: 10px;
    font-weight: 700;
}

/* Reviews */

.reviews-section {
    padding: 68px 0 76px;
    background: var(--stone-light);
}

.reviews-grid {
    display: grid;
    gap: 12px;
    margin-top: 34px;
    grid-template-columns: repeat(3, 1fr);
}

.review-card {
    display: flex;
    min-height: 215px;
    padding: 21px;
    flex-direction: column;
    border: 1px solid var(--border);
    background: var(--pearl);
}

.review-rating {
    color: var(--wine);
    letter-spacing: 3px;
}

.review-card blockquote {
    margin-top: 17px;
    color: var(--text-dark);
    font-size: 12px;
}

.review-author {
    margin-top: auto;
    padding-top: 17px;
}

.review-author strong {
    display: block;
    font-size: 10px;
}

.review-author span {
    color: var(--text-muted);
    font-size: 9px;
}

/* Booking */

.booking-section {
    padding: 68px 0;
    background: var(--rose);
}

.booking-panel {
    display: grid;
    overflow: hidden;
    box-shadow: var(--shadow-panel);
    grid-template-columns: 0.82fr 1.18fr;
}

.booking-info {
    padding: 42px;
    background: var(--black-soft);
    color: #fff;
}

.booking-info h2 {
    margin-top: 13px;
    font-family: var(--font-heading);
    font-size: clamp(33px, 3.5vw, 47px);
    line-height: 1.08;
}

.booking-info p {
    margin-top: 16px;
    color: var(--text-light-muted);
    font-size: 12px;
}

.quick-form {
    display: grid;
    padding: 42px;
    gap: 15px;
    background: var(--stone-light);
    grid-template-columns: repeat(2, 1fr);
}

.form-heading {
    grid-column: 1 / -1;
}

.form-heading h3 {
    font-size: 26px;
}

.form-heading p {
    margin-top: 5px;
    color: var(--text-body);
    font-size: 11px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--stone);
    font-size: 12px;
}

.form-control:focus {
    border-color: var(--wine);
    outline: 3px solid rgba(100, 40, 61, 0.12);
}

/* Internal */

.page-hero,
.error-page {
    min-height: 60vh;
    padding: 100px 0;
    background: var(--stone);
    text-align: center;
}

.page-hero h1,
.error-page h1 {
    margin-top: 15px;
    font-size: clamp(40px, 5vw, 62px);
}

.page-hero p,
.error-page p {
    max-width: 620px;
    margin: 20px auto 28px;
}

/* Footer */

.site-footer {
    padding: 56px 0 23px;
    background: var(--black);
    color: #fff;
}

.footer-grid {
    display: grid;
    gap: 45px;
    grid-template-columns: 1.35fr 0.7fr 0.7fr 0.9fr;
}

.footer-brand img {
    width: 200px;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 16px;
    color: #8f918e;
    font-size: 11px;
}

.footer-column h3 {
    color: var(--rose);
    font-size: 9px;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.footer-links a,
.footer-column p {
    color: #cecfcB;
    font-size: 11px;
}

.footer-phone {
    display: inline-block;
    margin-top: 16px;
    font-size: 17px;
}

.footer-column p {
    margin-top: 7px;
}

.footer-bottom {
    display: flex;
    margin-top: 40px;
    padding-top: 17px;
    justify-content: space-between;
    border-top: 1px solid var(--border-dark);
    color: #727472;
    font-size: 9px;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

/* Mobile menu */

.mobile-menu-overlay {
    position: fixed;
    z-index: 89;
    inset: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
}

.menu-open .mobile-menu-overlay {
    visibility: visible;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 410px);
    padding: 28px 23px;
    flex-direction: column;
    background: var(--black-soft);
    color: #fff;
    transform: translateX(100%);
    transition: transform 220ms ease;
}

.menu-open .mobile-menu {
    transform: translateX(0);
}

.mobile-navigation {
    display: grid;
}

.mobile-navigation a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 20px;
    font-weight: 600;
}

.mobile-menu-contact {
    margin-top: auto;
}

.mobile-menu-contact span {
    color: var(--rose);
    font-size: 9px;
}

.mobile-menu-contact a {
    display: block;
    margin-top: 7px;
}

/* Responsive */

@media (max-width: 1160px) {
    .header-booking {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .desktop-nav,
    .header-phone {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .header-actions {
        justify-self: end;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 55px 0 48px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 32px);
    }

    .site-logo {
        width: 155px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-meta,
    .trust-grid,
    .services-grid,
    .results-grid,
    .master-grid,
    .reviews-grid,
    .booking-panel,
    .quick-form,
    .consultation-panel {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        min-height: 440px;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border-dark);
    }

    .services-section,
    .results-section,
    .master-section,
    .reviews-section {
        padding: 58px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .consultation-content,
    .master-content,
    .booking-info,
    .quick-form {
        padding: 28px 22px;
    }

    .form-heading,
    .form-group-full {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        gap: 15px;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .services-grid,
    .results-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}