:root {
    --cream: #fbf4ec;
    --paper: #fffaf4;
    --nude: #ead5c5;
    --rose: #efc9cf;
    --burg: #9b1728;
    --wine: #561018;
    --green: #24483c;
    --gold: #c9a45d;
    --ink: #191012;
    --muted: #756568;
    --shadow: 0 28px 80px rgba(80, 22, 28, 0.16);
    --radius: 30px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    background: radial-gradient(circle at top left, #fff7f0 0, #fbf4ec 35%, #f6eadf 100%);
    color: var(--ink);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: min(1180px, 92%);
    margin: auto;
}
.loader {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 999;
    display: grid;
    place-items: center;
    transition: 0.8s ease;
}
.loader img {
    width: 250px;
    animation: float 2s infinite ease-in-out;
}
.loader span {
    position: absolute;
    bottom: 28%;
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--burg), transparent);
    animation: load 1.2s infinite;
}
.loaded .loader {
    opacity: 0;
    visibility: hidden;
}
.header {
    position: fixed;
    z-index: 100;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, 92%);
    height: 76px;
    padding: 0 16px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 250, 244, 0.76);
    backdrop-filter: blur(22px);
    border-radius: 999px;
    box-shadow: 0 20px 70px rgba(36, 16, 18, 0.12);
}
.brand img {
    width: 170px;
}
.nav {
    display: flex;
    gap: 22px;
    font-size: 14px;
    font-weight: 700;
    color: #4d3d40;
}
.nav a {
    position: relative;
}
.nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--burg);
    transition: 0.3s;
}
.nav a:hover:after {
    width: 100%;
}
.book,
.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--burg), #64131d);
    color: white;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(155, 23, 40, 0.28);
    transition: 0.35s;
}
.book:hover,
.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(155, 23, 40, 0.34);
}
.secondary {
    display: inline-flex;
    padding: 14px 23px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-weight: 800;
    backdrop-filter: blur(14px);
}
.menu {
    display: none;
    background: none;
    border: 0;
    width: 44px;
}
.menu span {
    display: block;
    height: 2px;
    background: var(--wine);
    margin: 7px;
}
.section {
    padding: 105px 0;
}
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.show {
    opacity: 1;
    transform: none;
}
.hero {
    position: relative;
    min-height: 100vh;
    padding: 145px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(30, 11, 13, 0.78) 0%, rgba(73, 18, 25, 0.62) 44%, rgba(30, 11, 13, 0.18)),
        url("../assets/2024-10-14 (3).webp") center/cover;
}
.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(transparent, var(--cream));
}
.shine {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(255, 237, 198, 0.2), transparent 36%);
    animation: spin 14s linear infinite;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 50px;
    align-items: center;
    color: #fff;
}
.kicker {
    display: inline-flex;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f3dba6;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}
.darkk {
    color: var(--burg);
}
h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
}
.hero h1 {
    font-size: clamp(55px, 7.5vw, 108px);
    line-height: 0.88;
    margin: 0 0 24px;
    letter-spacing: -0.035em;
}
.hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #fff0e9;
    max-width: 680px;
}
.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 34px 0;
}
.stats {
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: center;
    gap: 10px 13px;
    color: #fff1e8;
}
.stats b {
    font-size: 26px;
    color: #f0d58f;
}
.hero-collage {
    position: relative;
    height: 610px;
}
.hero-collage img {
    position: absolute;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.c1 {
    width: 62%;
    height: 330px;
    right: 0;
    top: 10px;
}
.c2 {
    width: 46%;
    height: 340px;
    left: 0;
    top: 150px;
}
.c3 {
    width: 58%;
    height: 270px;
    right: 12%;
    bottom: 0;
}
.glass-card {
    position: absolute;
    left: 15%;
    bottom: 70px;
    padding: 22px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-weight: 900;
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}
.image-frame {
    position: relative;
}
.image-frame:before {
    content: "";
    position: absolute;
    inset: 25px -22px -22px 25px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}
.image-frame img {
    height: 610px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.content h2,
.title h2,
.cta h2 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    margin: 0 0 22px;
    color: var(--wine);
    letter-spacing: -0.02em;
}
.content p,
.title p {
    line-height: 1.9;
    color: var(--muted);
    font-size: 16px;
}
.chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}
.chips span {
    padding: 12px 16px;
    border-radius: 999px;
    background: white;
    color: var(--wine);
    font-weight: 800;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}
.soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(238, 212, 195, 0.35));
}
.title {
    text-align: center;
    margin-bottom: 55px;
}
.title span {
    color: var(--burg);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 900;
    font-size: 12px;
}
.title p {
    max-width: 680px;
    margin: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(60, 20, 24, 0.08);
    transition: 0.45s;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}
.service-card .img {
    height: 265px;
    overflow: hidden;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
}
.service-card:hover img {
    transform: scale(1.08);
}
.service-card div:last-child {
    padding: 26px;
}
.service-card span {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.16em;
}
.service-card h3 {
    font-size: 34px;
    margin: 8px 0;
    color: var(--wine);
}
.service-card p {
    line-height: 1.75;
    color: var(--muted);
    font-size: 14px;
}
.service-card a {
    font-weight: 900;
    color: var(--burg);
}
.dark-section {
    background: linear-gradient(135deg, #160f10, #32141a 55%, #10251f);
    color: white;
    position: relative;
    overflow: hidden;
}
.dark-section .title h2 {
    color: #fff;
}
.dark-section .title span {
    color: #f2d99c;
}
.why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why > div {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}
.why b {
    color: #f3d99b;
}
.why h3 {
    font-size: 32px;
    margin: 16px 0 8px;
}
.why p {
    color: #e8d9d6;
    line-height: 1.8;
}
.beige > div {
    background: white;
    color: var(--ink);
    box-shadow: var(--shadow);
}
.beige h3 {
    color: var(--wine);
}
.masonry {
    columns: 4 240px;
    column-gap: 19px;
}
.masonry img {
    break-inside: avoid;
    width: 100%;
    margin: 0 0 19px;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.13);
    transition: 0.4s;
}
.masonry img:hover {
    transform: scale(1.025);
}
.large {
    columns: 3 280px;
}
.cta {
    text-align: center;
    background: radial-gradient(circle at 50% 0, #fff, #f2ded0);
    padding: 90px 0;
}
.cta p {
    color: var(--muted);
    font-size: 18px;
}
.page-hero {
    min-height: 58vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    padding: 145px 0 75px;
    position: relative;
    background:
        linear-gradient(rgba(43, 14, 18, 0.58), rgba(43, 14, 18, 0.72)),
        var(--bg) center/cover;
}
.page-hero h1 {
    font-size: clamp(54px, 8vw, 98px);
    line-height: 0.9;
    margin: 0 0 20px;
}
.page-hero p {
    font-size: 20px;
    color: #fff2ea;
}
.prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.price {
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(60, 20, 24, 0.08);
    border: 1px solid rgba(201, 164, 93, 0.18);
}
.price h3 {
    font-size: 34px;
    color: var(--burg);
    margin: 0 0 16px;
}
.price p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 11px 0;
    border-bottom: 1px dashed #dfc7b6;
    color: #5f5053;
}
.price b {
    color: var(--wine);
    white-space: nowrap;
}
.contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}
.contact-box,
.map {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid white;
    border-radius: 30px;
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact-box h2 {
    font-size: 48px;
    color: var(--wine);
    margin: 0 0 15px;
}
.line {
    padding: 18px;
    border-radius: 20px;
    background: #fff6ef;
    margin: 15px 0;
}
.line b {
    display: block;
    color: var(--burg);
    margin-bottom: 5px;
}
.map iframe {
    width: 100%;
    height: 475px;
    border: 0;
    border-radius: 24px;
}
.footer {
    background: #120d0e;
    color: #eadbd8;
    padding: 55px 0 95px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 36px;
}
.footer img {
    width: 190px;
    filter: brightness(1.35);
}
.footer a {
    display: block;
    margin: 9px 0;
    color: #eadbd8;
}
.footer h4 {
    color: #f1d99e;
}
.social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social a {
    display: inline-flex;
    background: #241719;
    padding: 10px 14px;
    border-radius: 999px;
}
.copyright {
    text-align: center;
    margin-top: 35px;
    color: #a99596;
}
.wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    background: #25d366;
    color: white;
    border-radius: 999px;
    padding: 17px 20px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
    animation: pulse 1.8s infinite;
}
.sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(255, 250, 244, 0.88);
    backdrop-filter: blur(16px);
    z-index: 95;
}
.sticky a {
    display: flex;
    justify-content: center;
    padding: 15px;
    border-radius: 999px;
    background: var(--burg);
    color: white;
    font-weight: 900;
}
@keyframes float {
    50% {
        transform: translateY(-10px);
    }
}
@keyframes load {
    50% {
        width: 180px;
    }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes pulse {
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
}
@media (max-width: 980px) {
    .nav,
    .book {
        display: none;
    }
    .menu {
        display: block;
    }
    .nav.open {
        display: flex;
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 250, 244, 0.96);
        border-radius: 28px;
        padding: 24px;
        box-shadow: var(--shadow);
    }
    .hero-grid,
    .split,
    .contact {
        grid-template-columns: 1fr;
    }
    .hero-collage {
        height: 470px;
    }
    .services-grid,
    .prices,
    .why {
        grid-template-columns: 1fr 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .sticky {
        display: block;
    }
    .wa {
        display: none;
    }
    .section {
        padding: 82px 0;
    }
}
@media (max-width: 640px) {
    .header {
        height: 66px;
        top: 12px;
    }
    .brand img {
        width: 135px;
    }
    .hero {
        padding-top: 120px;
    }
    .hero h1 {
        font-size: 54px;
    }
    .hero p {
        font-size: 17px;
    }
    .hero-collage {
        height: 390px;
    }
    .c1 {
        width: 72%;
        height: 210px;
    }
    .c2 {
        width: 55%;
        height: 230px;
        top: 105px;
    }
    .c3 {
        height: 190px;
    }
    .stats {
        grid-template-columns: auto auto;
    }
    .services-grid,
    .prices,
    .why {
        grid-template-columns: 1fr;
    }
    .image-frame img {
        height: 420px;
    }
    .masonry {
        columns: 2 150px;
    }
    .contact-box,
    .map {
        padding: 23px;
    }
    .page-hero h1 {
        font-size: 54px;
    }
    .footer {
        padding-bottom: 115px;
    }
}
/* Premium V3 additions */
.reverse {
    direction: rtl;
}
.reverse > * {
    direction: ltr;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(201, 164, 93, 0.22);
    box-shadow: 0 22px 60px rgba(60, 20, 24, 0.08);
}
.review p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 15px;
}
.review b {
    display: block;
    color: var(--wine);
    margin-top: 18px;
}
.review span {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.13em;
}
.stars {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 18px;
    margin-bottom: 14px;
}
.menu-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}
.menu-gallery a {
    display: block;
    padding: 12px;
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 164, 93, 0.22);
}
.menu-gallery img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}
.price-note {
    margin: 28px auto 0;
    max-width: 850px;
    text-align: center;
    color: var(--muted);
    line-height: 1.8;
}
.light-footer {
    background: linear-gradient(180deg, #fffaf4, #f4e4d8);
    color: var(--ink);
    border-top: 1px solid rgba(201, 164, 93, 0.24);
}
.light-footer p,
.light-footer a {
    color: #5f5053;
}
.light-footer h4 {
    color: var(--wine);
}
.light-footer img {
    filter: none;
}
.light-footer .social a {
    background: #fff;
    border: 1px solid rgba(155, 23, 40, 0.12);
    box-shadow: 0 10px 30px rgba(60, 20, 24, 0.06);
    color: var(--wine);
}
.light-footer .copyright {
    color: #7d6b6e;
}
.icons a {
    align-items: center;
    gap: 10px;
}
.icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.legal-content {
    max-width: 920px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(201, 164, 93, 0.2);
    border-radius: 34px;
    padding: 45px;
    box-shadow: var(--shadow);
}
.legal-content h2 {
    font-size: 36px;
    color: var(--wine);
    margin: 28px 0 8px;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p {
    color: var(--muted);
    line-height: 1.9;
}
.legal-hero {
    min-height: 48vh;
}
.footer .social.icons a {
    display: inline-flex;
}
.footer .social.icons span {
    display: inline;
}
@media (max-width: 980px) {
    .reviews-grid,
    .menu-gallery {
        grid-template-columns: 1fr;
    }
    .reverse {
        direction: ltr;
    }
    .legal-content {
        padding: 28px;
    }
}
