:root {
    --bg: #0f0f0f;
    --bg-soft: #181818;
    --panel: #121212;
    --text: #ffffff;
    --text-muted: #b3b3b3;
    --accent: #e8d8c3;
    --accent-hover: #f0e2d0;
    --white: #f7f5f2;
    --black: #000000;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
    --header-h: 80px;
    --section-pad: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.section {
    padding: var(--section-pad) 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
}

.section-title {
    margin: 0 0 16px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.section-copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.04);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    backdrop-filter: blur(14px);
    background: rgba(15, 15, 15, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    z-index: 1002;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.94rem;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--accent);
}

.header-book-btn {
    height: 42px;
    min-height: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1002;
}

.header-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.header-social:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 216, 195, 0.28);
    transform: translateY(-2px);
}

.header-social svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.nav-toggle__lines {
    position: relative;
    width: 18px;
    height: 14px;
}

.nav-toggle__lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle__lines span:nth-child(1) {
    top: 0;
}

.nav-toggle__lines span:nth-child(2) {
    top: 6px;
}

.nav-toggle__lines span:nth-child(3) {
    top: 12px;
}

.nav-toggle.active .nav-toggle__lines span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.nav-toggle.active .nav-toggle__lines span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle__lines span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav__inner {
    width: min(100% - 40px, 420px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.mobile-nav.active .mobile-nav__inner {
    transform: translateY(0);
}

.mobile-nav a {
    font-size: 1.25rem;
    padding: 12px 0;
    color: #fff;
}

.mobile-nav__cta {
    margin-top: 12px;
}

.mobile-nav__socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

.mobile-nav__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__socials svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.84)),
        url("images/hero.jpg") center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 60vw;
    height: 60vw;
    max-width: 880px;
    max-height: 880px;
    background: radial-gradient(circle, rgba(232, 216, 195, 0.12), transparent 60%);
    pointer-events: none;
    transform: translate(-20%, 20%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-top: 72px;
    text-align: center;
    margin: 0 auto;
}

.hero__subline {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.94rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(3.4rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero__tagline {
    max-width: 720px;
    margin: 24px auto 0;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.statement {
    background: var(--bg);
}

.statement__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement__title {
    margin: 0 0 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.statement__copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.services {
    background: var(--bg-soft);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.00));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 216, 195, 0.28);
}

.service-card__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.service-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.04);
}

.service-card__body {
    padding: 24px 24px 26px;
}

.service-card__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-card__copy {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.97rem;
}

.showcase {
    background: var(--white);
    color: #121212;
}

.showcase .section-copy {
    color: #5c5c5c;
}

.showcase__header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 46px;
}

.showcase-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.showcase-card__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.showcase-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.showcase-card:hover .showcase-card__image img {
    transform: scale(1.03);
}

.showcase-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 20px;
}

.showcase-card__label {
    font-size: 0.95rem;
    font-weight: 600;
}

.showcase-card__meta {
    font-size: 0.84rem;
    color: #6b6b6b;
}

.gallery {
    background: var(--bg);
}

.gallery__header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
    min-height: 280px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery__item--tall {
    grid-row: span 2;
    min-height: 578px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery__item:hover img {
    transform: scale(1.04);
}

.gallery__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
    color: #fff;
}

.gallery__overlay strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
}

.gallery__overlay span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.74);
}

.gallery__footer {
    margin-top: 24px;
    text-align: center;
}

.about {
    background: var(--bg-soft);
}

.about__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.about__image-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 620px;
}

.about__image-wrap img {
    height: 100%;
    object-fit: cover;
}

.about__title {
    margin: 0 0 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 4.4vw, 3.5rem);
    line-height: 1.08;
}

.about__lead {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.18rem;
    line-height: 1.7;
}

.about__copy {
    margin: 0 0 32px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 540px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about__stat {
    padding: 22px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.about__stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.5rem;
    color: var(--accent);
}

.about__stat span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.reviews {
    background: var(--bg-soft);
}

.reviews__header {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 40px;
}

.reviews__rating {
    margin: 0 0 14px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.review-card__stars {
    color: var(--accent);
    margin-bottom: 14px;
    letter-spacing: 0.12em;
}

.review-card__text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
}

.review-card__name {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.contact-strip {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px 0;
}

.contact-strip__item {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-strip__label {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-strip__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-link--muted {
    color: var(--text-muted);
}

.cta {
    position: relative;
    overflow: hidden;
    /* background:
        linear-gradient(135deg, rgba(232, 216, 195, 0.12), rgba(232, 216, 195, 0.02)),
        #090909; */
        background: var(--white);
        color: #121212;
}

.cta::before {
    content: "";
    position: absolute;
    right: -120px;
    top: 50%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 216, 195, 0.18), transparent 68%);
    transform: translateY(-50%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
}

.cta__title {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    line-height: 1.05;
}

.cta__copy {
    margin: 0 auto 30px;
    max-width: 620px;
    color: var(--text-muted);
    line-height: 1.8;
}

.site-footer {
    padding: 32px 0 42px;
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-block h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-block p,
.footer-block a,
.footer-block span {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 216, 195, 0.28);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.brand-strip {
    background: var(--bg);
    padding-top: 40px;
    padding-bottom: 72px;
}

.brand-strip__header {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.brand-strip__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    cursor: pointer;
}

.brand-logo::after {
    content: attr(data-name);
    position: absolute;
    bottom: -28px;
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.brand-logo:hover::after {
    opacity: 1;
}

.brand-logo img {
    max-width: 100%;
    max-height: 28px;
    width: auto;
    height: auto;
    opacity: 0.72;
    filter: grayscale(1) brightness(1.15);
    transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.brand-logo:hover img {
    opacity: 1;
    transform: scale(1.03);
    filter: grayscale(0) brightness(1);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal.is-visible,
    .service-card,
    .service-card__image img,
    .showcase-card__image img,
    .gallery__item img,
    .btn,
    .mobile-nav,
    .mobile-nav__inner,
    .nav-toggle__lines span {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 1100px) {

    .services__grid,
    .showcase__grid,
    .reviews__grid,
    .gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery__item--tall {
        grid-row: span 1;
        min-height: 320px;
    }

    .about__grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .about__image-wrap {
        min-height: 520px;
    }
}

@media (max-width: 900px) {

    .header-book-btn,
    .header-social {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        display: none;
    }

    .contact-strip__grid {
        grid-template-columns: 1fr;
    }

    .brand-strip__logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    :root {
        --header-h: 72px;
        --section-pad: 72px;
    }

    .section {
        padding: var(--section-pad) 0;
    }

    .hero {
        min-height: 100svh;
    }

    .hero__content {
        padding-top: 40px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: min(320px, 100%);
    }

    .services__grid,
    .showcase__grid,
    .reviews__grid,
    .gallery__grid,
    .about__stats {
        grid-template-columns: 1fr;
    }

    .about__image-wrap {
        min-height: 420px;
    }

    .showcase__grid,
    .gallery__grid {
        gap: 18px;
    }

    .gallery__item,
    .gallery__item--tall {
        min-height: 260px;
    }

    .site-footer__inner {
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .brand {
        font-size: 1.05rem;
    }

    .hero__subline {
        font-size: 0.8rem;
        letter-spacing: 0.18em;
    }

    .hero__tagline {
        font-size: 1rem;
    }

    .site-header .btn {
        min-height: 46px;
        padding: 0 18px;
        font-size: 0.76rem;
    }

    .service-card__body,
    .review-card,
    .contact-strip__item {
        padding: 22px;
    }

    .mobile-nav a {
        font-size: 1.1rem;
    }

    .brand-strip__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-logo {
        min-height: 76px;
        padding: 16px;
    }

    .brand-logo img {
        max-height: 24px;
    }
}