/* =========================================================
   PERFECTA CLEANERS — MAJOR UPGRADE
========================================================= */

:root {
    --bg: #f4f3ec;
    --paper: #ffffff;
    --ink: #151a17;
    --muted: #6f7772;
    --green: #0b352a;
    --green-2: #154b3b;
    --green-3: #789588;
    --cream: #ece9dd;
    --gold: #c8ad65;
    --line: rgba(17, 48, 37, 0.11);
    --shadow: 0 30px 80px rgba(13, 43, 33, 0.11);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 17px;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

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

::selection {
    background: var(--green);
    color: #fff;
}

.container {
    width: min(1220px, 90%);
    margin-inline: auto;
}

.section {
    padding: 128px 0;
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #7aa08f, var(--gold));
}

/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #58766a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3.2px;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.eyebrow-light {
    color: #8fa99f;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 64px;
}

.section-heading h2,
.gallery-heading h2,
.luxury-copy h2,
.wedding-copy h2,
.visit-content h2,
.contact-panel h2,
.faq-intro h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(43px, 5vw, 67px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -3.8px;
}

.section-heading h2 em,
.gallery-heading h2 em,
.luxury-copy h2 em,
.wedding-copy h2 em,
.visit-content h2 em,
.contact-panel h2 em,
.faq-intro h2 em {
    color: #6c877b;
    font-style: normal;
    font-weight: 500;
}

.section-heading > p {
    width: min(440px, 100%);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 5000;
    border-bottom: 1px solid transparent;
    background: rgba(244, 243, 236, .76);
    backdrop-filter: blur(18px) saturate(145%);
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.navbar.navbar-scrolled {
    border-color: rgba(15, 54, 42, .07);
    background: rgba(244, 243, 236, .94);
    box-shadow: 0 12px 45px rgba(14, 48, 37, .075);
}

.nav-container {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: height .35s var(--ease);
}

.navbar-scrolled .nav-container {
    height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mark {
    position: relative;
    isolation: isolate;
    width: 44px;
    height: 44px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #174d3e, #08241c);
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(9, 48, 36, .12);
}

.logo-mark::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -80%;
    z-index: -1;
    width: 50%;
    transform: skewX(-25deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
    animation: logoSweep 6s ease-in-out infinite;
}

@keyframes logoSweep {
    0%, 68% { left: -80%; }
    90%, 100% { left: 150%; }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1;
}

.logo-text span {
    margin-top: 5px;
    color: #7c847f;
    font-size: 8px;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    position: relative;
    color: #424b46;
    font-size: 12px;
    font-weight: 600;
    transition: color .25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    transform: translateX(-50%);
    background: var(--green);
    transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta,
.button,
.basket-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: transform .3s var(--ease), background .3s ease, box-shadow .3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--green-2);
    box-shadow: 0 14px 30px rgba(11, 53, 42, .17);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.7);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 10px;
    background: var(--green);
    transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    display: none;
    background: rgba(244,243,236,.98);
    transition: max-height .45s var(--ease);
}

.mobile-menu.open { max-height: 430px; }

.mobile-menu a {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
}

/* =========================================================
   BUTTONS
========================================================= */

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease, color .3s ease;
}

.button-primary {
    background: var(--green);
    color: #fff;
}

.button-primary:hover {
    transform: translateY(-3px);
    background: var(--green-2);
    box-shadow: 0 18px 38px rgba(11, 53, 42, .2);
}

.button-ghost {
    border-color: #d5dad5;
    background: rgba(255,255,255,.68);
    color: #253029;
}

.button-ghost:hover {
    transform: translateY(-3px);
    background: #fff;
}

.button-dark {
    margin-top: 28px;
    background: #16251f;
    color: #fff;
}

.button-light-solid {
    background: #fff;
    color: var(--green);
}

.button-outline-light {
    border-color: rgba(255,255,255,.22);
    background: transparent;
    color: #fff;
}

.ui-ripple {
    position: absolute;
    z-index: -1;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255,255,255,.35);
    pointer-events: none;
    animation: ripple .65s ease-out forwards;
}

@keyframes ripple {
    to { transform: translate(-50%, -50%) scale(18); opacity: 0; }
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 156px 0 96px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 25% 25%, rgba(100, 145, 126, .13), transparent 30%),
        linear-gradient(120deg, transparent 0 40%, rgba(255,255,255,.18) 50%, transparent 60% 100%);
    background-size: auto, 220% 100%;
    animation: heroShimmer 10s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 70% { background-position: 0 0, 160% 0; }
    100% { background-position: 0 0, -80% 0; }
}

.hero-lines {
    position: absolute;
    inset: 0;
    opacity: .055;
    background-image:
        linear-gradient(rgba(15, 60, 45, .8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 60, 45, .8) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.orb-a {
    width: 520px;
    height: 520px;
    left: -260px;
    top: 150px;
    background: rgba(119, 163, 145, .25);
    transform: translateY(var(--orb-a-y, 0px));
}

.orb-b {
    width: 430px;
    height: 430px;
    right: -140px;
    bottom: -90px;
    background: rgba(208, 188, 126, .19);
    transform: translateY(var(--orb-b-y, 0px));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: clamp(52px, 7vw, 100px);
}

.hero-content {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.hero-content.hero-visible {
    opacity: 1;
    transform: none;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #5b776c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.kicker-line {
    width: 32px;
    height: 1px;
    background: #5b776c;
}

.hero h1 {
    max-width: 760px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(54px, 6.7vw, 92px);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -5.8px;
}

.hero h1 em {
    display: block;
    margin-top: 4px;
    background: linear-gradient(100deg, #5b776b, #93aca1, #5b776b);
    background-size: 220% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-style: normal;
    font-weight: 500;
    animation: textShift 7s ease-in-out infinite;
}

@keyframes textShift {
    0%,100% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    max-width: 620px;
    margin-top: 29px;
    color: #636b66;
    font-size: 16px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.icon-slot,
.whatsapp-float-icon,
.whatsapp-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-slot svg {
    width: 18px;
    height: 18px;
}

.live-status-card {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 12px 16px;
    border: 1px solid rgba(15, 67, 49, .09);
    border-radius: 16px;
    background: rgba(255,255,255,.55);
    box-shadow: 0 12px 35px rgba(25, 55, 43, .055);
    backdrop-filter: blur(12px);
}

.status-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #b6bcb8;
    box-shadow: 0 0 0 6px rgba(182,188,184,.14);
}

.status-dot.is-open {
    background: #3aa66d;
    box-shadow: 0 0 0 6px rgba(58,166,109,.12), 0 0 18px rgba(58,166,109,.3);
}

.status-dot.is-closed {
    background: #b78262;
    box-shadow: 0 0 0 6px rgba(183,130,98,.12);
}

.live-status-card > div {
    display: flex;
    flex-direction: column;
}

.live-status-card strong {
    font-size: 12px;
}

.live-status-card span:not(.status-dot) {
    margin-top: 2px;
    color: #79817c;
    font-size: 10px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 46px;
}

.hero-proof > div {
    display: flex;
    flex-direction: column;
}

.hero-proof strong { font-size: 11px; }
.hero-proof span { margin-top: 2px; color: #8b918e; font-size: 10px; }
.hero-proof i { width: 1px; height: 32px; background: #d4d8d4; }

.hero-media {
    position: relative;
    min-height: 660px;
    opacity: 0;
    transform: translateY(38px) scale(.98);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.hero-media.hero-visible {
    opacity: 1;
    transform: none;
}

.hero-photo-card {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(14, 48, 36, .18);
    transform-style: preserve-3d;
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.hero-photo-card:hover img { transform: scale(1.035); }

.hero-photo-main {
    inset: 0 28px 36px 46px;
}

.hero-photo-main img { object-position: center 30%; }

.photo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,20,15,.78), transparent 45%);
}

.hero-photo-copy {
    position: absolute;
    left: 30px;
    bottom: 28px;
    color: #fff;
}

.hero-photo-copy span {
    display: block;
    margin-bottom: 6px;
    color: #c4d4cc;
    font-size: 8px;
    letter-spacing: 3px;
}

.hero-photo-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.15;
}

.hero-photo-float {
    width: 190px;
    height: 250px;
    right: -18px;
    top: 65px;
    border: 8px solid rgba(244,243,236,.85);
    border-radius: 23px;
    box-shadow: 0 25px 70px rgba(10, 42, 31, .25);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-photo-float img { object-position: center; }

@keyframes floatCard {
    50% { transform: translateY(-10px) rotate(1deg); }
}

.float-label {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 10px;
    border-radius: 12px;
    background: rgba(7,30,23,.78);
    color: #fff;
    font-size: 9px;
    backdrop-filter: blur(9px);
}

.float-label span { color: var(--gold); }

.hero-seal {
    position: absolute;
    left: 0;
    top: 75px;
    width: 112px;
    height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 53, 42, .11);
    border-radius: 50%;
    background: rgba(244,243,236,.82);
    box-shadow: 0 18px 50px rgba(17, 48, 38, .1);
    backdrop-filter: blur(12px);
    animation: sealFloat 6.5s ease-in-out infinite reverse;
}

.hero-seal span {
    color: #6e7d76;
    font-size: 6px;
    letter-spacing: 2px;
}

.hero-seal strong {
    margin: 2px 0;
    color: var(--green);
    font-family: "Manrope", sans-serif;
    font-size: 42px;
}

@keyframes sealFloat { 50% { transform: translateY(8px); } }

.hero-badge {
    position: absolute;
    right: 12px;
    bottom: 0;
    min-width: 175px;
    padding: 15px 17px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: #0b3026;
    color: #fff;
    box-shadow: 0 20px 55px rgba(8,41,31,.23);
}

.hero-badge span,
.hero-badge strong { display: block; }
.hero-badge .badge-small { color: #82a094; font-size: 7px; letter-spacing: 2.2px; }
.hero-badge strong { margin: 6px 0 3px; color: #d5bd76; letter-spacing: 3px; }
.hero-badge > span:last-child { color: #9cb0a8; font-size: 9px; }

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #7f8782;
    font-size: 7px;
    letter-spacing: 2px;
}

.scroll-indicator i {
    position: relative;
    width: 1px;
    height: 34px;
    overflow: hidden;
    background: rgba(14, 57, 43, .12);
}

.scroll-indicator i::after {
    content: "";
    position: absolute;
    inset: -50% 0 auto;
    height: 45%;
    background: var(--green);
    animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop { to { transform: translateY(330%); } }

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    border-block: 1px solid #e4e7e2;
    background: #fff;
}

.trust-grid {
    min-height: 118px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 22px 25px;
    border-right: 1px solid #e7e9e5;
}

.trust-item:last-child { border-right: 0; }

.trust-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e6eee9;
    color: var(--green);
    font-weight: 800;
}

.google-mark,
.google-review-logo {
    background: conic-gradient(from -35deg, #4285f4 0 25%, #34a853 25% 43%, #fbbc05 43% 66%, #ea4335 66% 84%, #4285f4 84% 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.trust-item > div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 11px; }
.trust-item span:last-child { margin-top: 2px; color: #8a918d; font-size: 9px; }

/* =========================================================
   SERVICES BENTO
========================================================= */

.services-section { background: #fff; }

.service-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-panel {
    position: relative;
    overflow: hidden;
    min-height: 315px;
    padding: 32px;
    border: 1px solid #e5e8e3;
    border-radius: 22px;
    background: #f6f6f1;
    transition: transform .45s var(--ease), box-shadow .45s ease, border-color .45s ease;
}

.service-panel:hover {
    transform: translateY(-7px);
    border-color: rgba(25, 72, 55, .17);
    box-shadow: 0 30px 70px rgba(22, 50, 40, .09);
}

.service-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    padding: 0;
    background: #f3f3ed;
}

.service-copy { padding: 34px; }

.service-image {
    min-height: 360px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.service-wide:hover .service-image img { transform: scale(1.04); }

.service-dark {
    background: linear-gradient(145deg, #123f32, #071d17);
    color: #fff;
    border-color: transparent;
}

.service-delivery {
    background: #e7ede8;
}

.service-index {
    position: absolute;
    top: 27px;
    right: 28px;
    color: #a6ada9;
    font-size: 9px;
}

.service-wide .service-index { top: 32px; right: calc(47% + 16px); }
.service-dark .service-index { color: #718e82; }

.service-symbol {
    margin-bottom: 46px;
    color: var(--green);
    font-size: 29px;
}

.service-dark .service-symbol { color: #d2bb79; }

.service-panel h3 {
    margin-bottom: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    letter-spacing: -.6px;
}

.service-panel p {
    max-width: 470px;
    color: #737b76;
    font-size: 13px;
    line-height: 1.78;
}

.service-dark p { color: #9ab1a7; }

.service-panel a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
}

.service-dark a { color: #dbc984; }

.service-panel a span { transition: transform .3s var(--ease); }
.service-panel a:hover span { transform: translateX(4px); }

/* =========================================================
   LUXURY SECTION
========================================================= */

.luxury-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    background: linear-gradient(135deg, #0d352a 0%, #071c17 62%, #061712 100%);
    color: #fff;
}

.luxury-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 80px 80px;
}

.luxury-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -300px;
    top: -200px;
    border-radius: 50%;
    background: rgba(198, 174, 100, .12);
    filter: blur(120px);
}

.luxury-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 90px;
    align-items: center;
}

.luxury-copy h2 em { color: #9fb7ad; }

.luxury-copy > p {
    max-width: 610px;
    margin-top: 28px;
    color: #93aaa0;
    font-size: 15px;
    line-height: 1.9;
}

.luxury-points {
    margin-top: 42px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.luxury-points > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.luxury-points span {
    color: #76988a;
    font-size: 9px;
}

.luxury-points p {
    color: #8da69b;
    font-size: 12px;
    line-height: 1.6;
}

.luxury-points strong { color: #fff; }

.independent-note {
    margin-top: 25px;
    color: #637c72;
    font-size: 9px;
    line-height: 1.55;
}

.luxury-collage {
    position: relative;
    min-height: 650px;
}

.luxury-image {
    position: absolute;
    overflow: hidden;
    border: 0;
    border-radius: 27px;
    background: #102f27;
    cursor: pointer;
    box-shadow: 0 35px 80px rgba(0,0,0,.24);
    transition: transform .5s var(--ease), box-shadow .5s ease;
}

.luxury-image:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 45px 95px rgba(0,0,0,.32);
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.luxury-image:hover img { transform: scale(1.045); }

.luxury-image span {
    position: absolute;
    left: 17px;
    bottom: 15px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(4, 21, 16, .72);
    color: #dce7e2;
    font-size: 7px;
    letter-spacing: 2px;
    backdrop-filter: blur(8px);
}

.luxury-image-a { left: 0; top: 30px; width: 47%; height: 500px; }
.luxury-image-b { right: 0; top: 0; width: 49%; height: 365px; }
.luxury-image-c { right: 25px; bottom: 0; width: 43%; height: 255px; }

/* =========================================================
   WEDDING
========================================================= */

.wedding-section { background: #efeee6; }

.wedding-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.wedding-photo {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.wedding-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 1s var(--ease);
}

.wedding-photo:hover img { transform: scale(1.025); }

.wedding-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,30,23,.78), transparent 42%);
}

.wedding-photo-caption {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 28px;
    color: #fff;
}

.wedding-photo-caption span {
    display: block;
    margin-bottom: 6px;
    color: #b8cac1;
    font-size: 8px;
    letter-spacing: 3px;
}

.wedding-photo-caption strong {
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.2;
}

.wedding-copy > p {
    max-width: 610px;
    margin-top: 27px;
    color: #626a65;
    font-size: 15px;
    line-height: 1.9;
}

.wedding-services {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wedding-services > div {
    padding: 18px;
    border: 1px solid #dfe2dc;
    border-radius: 16px;
    background: rgba(255,255,255,.5);
}

.wedding-services > div > span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    margin-bottom: 11px;
    border-radius: 50%;
    background: #dce8e1;
    color: var(--green);
    font-size: 9px;
}

.wedding-services p {
    color: #727a75;
    font-size: 10px;
    line-height: 1.55;
}

.wedding-services strong { color: #1b2821; font-size: 11px; }

.estimate-callout {
    margin: 28px 0;
    padding: 20px 22px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.54);
}

.estimate-callout span {
    display: block;
    color: #9a813f;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.estimate-callout strong {
    display: block;
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
}

.estimate-callout p {
    margin-top: 6px;
    color: #737a75;
    font-size: 11px;
    line-height: 1.65;
}

/* =========================================================
   PRICE ESTIMATOR
========================================================= */

.price-section { background: #f7f7f3; }

.calculator-heading { align-items: center; }

.demo-price-note {
    width: min(370px, 100%);
    padding: 18px 20px;
    border: 1px solid #dedfd7;
    border-radius: 16px;
    background: #fff;
}

.demo-price-note > span {
    color: #9a7e39;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.demo-price-note strong {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.demo-price-note p {
    margin-top: 5px;
    color: #7a817d;
    font-size: 10px;
    line-height: 1.6;
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 355px;
    gap: 28px;
    align-items: start;
}

.price-category { margin-bottom: 50px; }

.price-category-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

.price-category-heading > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.price-category-heading span { color: #7b9187; font-size: 9px; }
.price-category-heading h3 { font-family: "Manrope", sans-serif; font-size: 24px; letter-spacing: -.8px; }
.price-category-heading p { max-width: 410px; color: #878e89; font-size: 10px; line-height: 1.6; text-align: right; }

.price-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.price-item {
    position: relative;
    min-height: 190px;
    display: grid;
    grid-template-columns: 1fr 60px;
    gap: 15px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #e2e5df;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(16,48,37,.025);
    transform-style: preserve-3d;
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s var(--ease);
}

.price-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(280px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(111, 151, 132, .12), transparent 55%);
    transition: opacity .3s ease;
}

.price-item:hover::after { opacity: 1; }

.price-item:hover {
    border-color: rgba(20, 72, 53, .2);
    box-shadow: 0 22px 50px rgba(15, 50, 37, .07);
}

.price-item.selected {
    border-color: rgba(19, 81, 59, .45);
    box-shadow: inset 0 0 0 1px rgba(19,81,59,.09), 0 20px 45px rgba(15,50,37,.06);
}

.price-item.selected::before {
    content: "✓";
    position: absolute;
    top: 16px;
    right: 76px;
    z-index: 4;
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 9px;
    animation: checkPop .3s var(--ease);
}

@keyframes checkPop { from { transform: scale(0); } }

.price-item-info h4 { font-family: "Manrope", sans-serif; font-size: 15px; }
.price-item-info p { min-height: 38px; margin-top: 5px; color: #818985; font-size: 10px; line-height: 1.55; }
.price-item-info > strong { display: block; margin-top: 18px; color: var(--green); font-size: 14px; }
.price-item-info small { color: #8c938f; font-size: 9px; font-weight: 500; }

.quantity-control {
    height: 124px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e3e6e0;
    border-radius: 13px;
}

.quantity-button {
    flex: 1;
    border: 0;
    background: #f2f4ef;
    color: var(--green);
    cursor: pointer;
    font-size: 9px;
    transition: background .2s ease, transform .15s ease;
}

.quantity-button:hover { background: #dfe9e3; }
.quantity-button:active { transform: scale(.93); }

.quantity-number {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: #fff;
}

.quantity-number span { font-family: "Manrope", sans-serif; font-size: 16px; font-weight: 800; }
.quantity-number small { color: #929894; font-size: 8px; }

.item-subtotal {
    position: absolute;
    left: 22px;
    bottom: 18px;
    color: #818985;
    font-size: 9px;
}

.quantity-pop { animation: quantityPop .27s var(--ease); }
@keyframes quantityPop { 0% { transform: scale(.75) translateY(4px); opacity: .5; } 70% { transform: scale(1.18) translateY(-1px); } }

.basket {
    position: sticky;
    top: 95px;
    overflow: hidden;
    border-radius: 25px;
    background: linear-gradient(155deg, #123f32, #071d17);
    color: #fff;
    box-shadow: 0 35px 85px rgba(8, 45, 33, .2);
}

.basket::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -135px;
    top: -135px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 180, 105, .13), transparent 70%);
    animation: basketGlow 5s ease-in-out infinite;
}

@keyframes basketGlow { 50% { transform: scale(1.2); opacity: .6; } }

.basket-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.basket-top span { color: #88a399; font-size: 7px; letter-spacing: 2.5px; }
.basket-top h3 { margin-top: 4px; font-family: "Manrope", sans-serif; font-size: 20px; }

.basket-close {
    display: none;
    border: 0;
    background: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.basket-items {
    position: relative;
    z-index: 2;
    max-height: 290px;
    overflow-y: auto;
    padding: 8px 26px;
}

.basket-empty {
    padding: 34px 0;
    text-align: center;
    color: #819d92;
}

.basket-empty div { margin-bottom: 8px; color: #d2bd79; font-size: 22px; }
.basket-empty strong { display: block; color: #dce6e2; font-size: 11px; }
.basket-empty p { margin-top: 5px; font-size: 9px; line-height: 1.5; }

.basket-line {
    display: flex;
    justify-content: space-between;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.basket-line > div { display: flex; flex-direction: column; }
.basket-line strong { font-size: 10px; }
.basket-line span { margin-top: 3px; color: #819d92; font-size: 8px; }

.basket-total-area {
    position: relative;
    z-index: 2;
    padding: 22px 26px;
    background: rgba(0,0,0,.09);
}

.basket-meta {
    display: flex;
    justify-content: space-between;
    color: #8da69c;
    font-size: 7px;
    letter-spacing: 2px;
}

.basket-total {
    min-height: 48px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -1.3px;
}

.basket-note {
    margin-top: 8px;
    color: #708b80;
    font-size: 8px;
    line-height: 1.6;
}

.basket-contact {
    position: relative;
    z-index: 2;
    padding: 22px 26px 26px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.basket-contact > strong { font-family: "Manrope", sans-serif; font-size: 12px; }
.basket-contact > p { margin: 4px 0 12px; color: #88a298; font-size: 9px; }

.basket-button {
    width: 100%;
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 13px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease;
}

.whatsapp-basket { background: #25d366; color: #062b1a; }
.whatsapp-basket:hover { transform: translateY(-2px); }
.basket-call { border-color: rgba(255,255,255,.16); color: #fff; }

/* ODOMETER */
.rotary-prefix { margin-right: .12em; }
.rotary-counter { display: inline-flex; height: 1.15em; line-height: 1.15em; align-items: center; }
.rotary-digit { position: relative; display: inline-block; width: .62em; height: 1.15em; overflow: hidden; perspective: 220px; }
.rotary-digit > span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; backface-visibility: hidden; transition: transform .42s var(--ease), opacity .28s ease; }
.rotary-up .rotary-old { transform: translateY(0) rotateX(0); opacity: 1; }
.rotary-up .rotary-new { transform: translateY(115%) rotateX(-58deg); opacity: 0; }
.rotary-up.rolling .rotary-old { transform: translateY(-115%) rotateX(58deg); opacity: 0; }
.rotary-up.rolling .rotary-new { transform: translateY(0) rotateX(0); opacity: 1; }
.rotary-down .rotary-old { transform: translateY(0) rotateX(0); opacity: 1; }
.rotary-down .rotary-new { transform: translateY(-115%) rotateX(58deg); opacity: 0; }
.rotary-down.rolling .rotary-old { transform: translateY(115%) rotateX(-58deg); opacity: 0; }
.rotary-down.rolling .rotary-new { transform: translateY(0) rotateX(0); opacity: 1; }
.rotary-digit.same-digit .rotary-old { display: none; }
.rotary-digit.same-digit .rotary-new { transform: none; opacity: 1; }
.rotary-symbol { display: inline-flex; align-items: center; height: 1.15em; }
.total-bump { animation: totalBump .35s var(--ease); }
@keyframes totalBump { 0% { transform: scale(.98); } 55% { transform: scale(1.025); } }

/* =========================================================
   BEFORE / AFTER
========================================================= */

.transformations-section { background: #eeeee7; }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-card {
    overflow: hidden;
    border: 1px solid #dee2dc;
    border-radius: 27px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(18, 49, 38, .07);
}

.comparison-shell {
    --reveal: 50%;
    position: relative;
    height: 560px;
    overflow: hidden;
    background: #d7dbd7;
}

.comparison-layer {
    position: absolute;
    inset: 0;
    background-image: var(--source-image);
    background-repeat: no-repeat;
}

.comparison-horizontal .comparison-before-layer {
    background-size: 200% 100%;
    background-position: left center;
}

.comparison-horizontal .comparison-after-layer {
    width: 100%;
    background-size: 200% 100%;
    background-position: right center;
    clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}

.comparison-vertical .comparison-before-layer {
    background-size: 100% 200%;
    background-position: center top;
}

.comparison-vertical .comparison-after-layer {
    width: 100%;
    background-size: 100% 200%;
    background-position: center bottom;
    clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}

.comparison-after-layer {
    overflow: hidden;
    box-shadow: 8px 0 25px rgba(0,0,0,.12);
}

.comparison-divider {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: var(--reveal);
    width: 2px;
    transform: translateX(-1px);
    background: rgba(255,255,255,.9);
    box-shadow: 0 0 0 1px rgba(0,0,0,.05);
    pointer-events: none;
}

.comparison-divider span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    box-shadow: 0 8px 25px rgba(0,0,0,.16);
    font-weight: 800;
}

.compare-label {
    position: absolute;
    z-index: 2;
    top: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(4,23,17,.72);
    color: #fff;
    font-size: 7px;
    letter-spacing: 2px;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.compare-before { left: 18px; }
.compare-after { right: 18px; }

.comparison-range {
    position: absolute;
    z-index: 5;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.comparison-copy { padding: 24px 26px 27px; }
.comparison-copy > span { color: #789086; font-size: 7px; letter-spacing: 2.2px; }
.comparison-copy h3 { margin-top: 7px; font-family: "Manrope", sans-serif; font-size: 20px; }
.comparison-copy p { margin-top: 7px; color: #727a75; font-size: 11px; line-height: 1.7; }

/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    padding: 130px 0;
    background: #0b3026;
    color: #fff;
}

.gallery-heading { margin-bottom: 48px; }
.gallery-heading h2 em { color: #9fb7ad; }
.gallery-heading p { margin-top: 15px; color: #839d92; font-size: 11px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 14px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: #143d32;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,23,18,.72), transparent 50%);
    transition: opacity .35s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s var(--ease), filter .4s ease;
}

.gallery-card:hover img { transform: scale(1.045); }
.gallery-card:hover::after { opacity: .85; }

.gallery-card > span {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 17px;
    display: flex;
    flex-direction: column;
}

.gallery-card > span strong { font-family: "Manrope", sans-serif; font-size: 14px; }
.gallery-card > span small { margin-top: 3px; color: #a9bbb3; font-size: 8px; }

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* =========================================================
   REVIEWS
========================================================= */

.reviews-section { background: #f6f5ef; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.review-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 31px;
    overflow: hidden;
    border: 1px solid #e2e5df;
    border-radius: 22px;
    background: #fff;
    transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}

.review-card::before {
    content: "“";
    position: absolute;
    right: 10px;
    top: -24px;
    color: rgba(12, 54, 42, .045);
    font-family: Georgia, serif;
    font-size: 165px;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26,77,59,.18);
    box-shadow: 0 30px 70px rgba(16,48,37,.09);
}

.review-featured {
    background: linear-gradient(150deg, #123f32, #071d17);
    color: #fff;
    border-color: transparent;
}

.review-featured::before { color: rgba(255,255,255,.045); }

.review-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-review-logo { font-size: 22px; }
.review-stars { color: #bea55e; font-size: 12px; letter-spacing: 3px; }
.review-arrow { margin-left: auto; color: #9ba39e; }

.review-card blockquote {
    position: relative;
    z-index: 2;
    margin: 34px 0;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.review-author {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
}

.review-avatar {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e9ece7;
    color: var(--green);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.review-featured .review-avatar { background: rgba(255,255,255,.12); color: #fff; }
.review-author > div { display: flex; flex-direction: column; }
.review-author strong { font-size: 10px; }
.review-author span { margin-top: 2px; color: #919a94; font-size: 8px; }
.review-featured .review-author span { color: #809c90; }

/* =========================================================
   FAQ
========================================================= */

.faq-section { background: #ecebe3; }

.faq-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 90px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 110px;
}

.faq-intro p {
    max-width: 430px;
    margin-top: 22px;
    color: #6a726d;
    font-size: 13px;
    line-height: 1.8;
}

.faq-list { border-top: 1px solid #d4d9d3; }

.faq-item { border-bottom: 1px solid #d4d9d3; }

.faq-question {
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.faq-question i {
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid #ced4ce;
    border-radius: 50%;
    color: var(--green);
    font-style: normal;
    transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
    background: var(--green);
    color: #fff;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s var(--ease);
}

.faq-answer > p {
    overflow: hidden;
    max-width: 660px;
    color: #69716c;
    font-size: 12px;
    line-height: 1.8;
}

.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 24px; }

/* =========================================================
   VISIT + MAP
========================================================= */

.visit-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #0d352a, #071d17);
    color: #fff;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 65px;
    align-items: center;
}

.visit-map {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 35px 90px rgba(0,0,0,.24);
}

.visit-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.75) contrast(1.03);
}

.map-overlay-label {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 22px;
    max-width: calc(100% - 44px);
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;
    background: rgba(7,29,23,.82);
    backdrop-filter: blur(12px);
}

.map-overlay-label span { display: block; color: #8ea79d; font-size: 7px; letter-spacing: 2.4px; }
.map-overlay-label strong { display: block; margin-top: 4px; font-size: 12px; }

.visit-content h2 em { color: #9db5ab; }
.visit-content > p { max-width: 560px; margin-top: 23px; color: #90a79d; font-size: 13px; line-height: 1.8; }

.visit-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}

.visit-facts > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}

.visit-facts > div > span {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #d1bd79;
    font-size: 10px;
}

.visit-facts p { color: #8da59a; font-size: 9px; line-height: 1.5; }
.visit-facts strong { color: #fff; font-size: 10px; }

.hours-card {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}

.hours-card-head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hours-card-head strong { font-family: "Manrope", sans-serif; font-size: 12px; }
.hours-status { color: #9fb6ad; font-size: 9px; }
.hours-status.is-open { color: #70c693; }
.hours-status.is-closed { color: #c79c80; }

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.045);
    color: #8ea69c;
    font-size: 9px;
}

.hours-row:last-child { border-bottom: 0; }
.hours-row strong { color: #dce5e1; font-weight: 600; }

.visit-actions { display: flex; gap: 10px; margin-top: 25px; }

/* =========================================================
   CONTACT / SHOP PHOTO
========================================================= */

.contact-section { background: #f6f5ef; }

.shop-contact-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 610px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 35px 85px rgba(15, 47, 36, .09);
}

.shop-photo {
    position: relative;
    overflow: hidden;
}

.shop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1s var(--ease);
}

.shop-contact-card:hover .shop-photo img { transform: scale(1.02); }

.shop-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,25,18,.72), transparent 45%), linear-gradient(to left, rgba(5,25,18,.3), transparent 40%);
}

.shop-photo-label {
    position: absolute;
    left: 27px;
    bottom: 25px;
    z-index: 2;
    color: #fff;
}

.shop-photo-label span { display: block; color: #b1c2ba; font-size: 7px; letter-spacing: 2.5px; }
.shop-photo-label strong { display: block; margin-top: 4px; font-family: "Manrope", sans-serif; font-size: 24px; }
.shop-photo-label small { display: block; margin-top: 4px; color: #aabcb4; font-size: 8px; }

.contact-panel {
    padding: 55px 48px;
    align-self: center;
}

.contact-panel > p {
    margin-top: 20px;
    color: #69716c;
    font-size: 13px;
    line-height: 1.8;
}

.contact-methods { margin-top: 30px; }

.contact-method {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e8e3;
}

.contact-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e8efeb;
    color: var(--green);
    font-size: 12px;
}

.whatsapp-contact-icon { background: #25d366; color: #06331e; }
.whatsapp-contact-icon svg { width: 22px; height: 22px; }

.contact-method > div { min-width: 0; display: flex; flex-direction: column; }
.contact-method small { color: #89908c; font-size: 7px; letter-spacing: 2px; }
.contact-method strong { margin-top: 3px; overflow-wrap: anywhere; font-size: 11px; }
.contact-method b { color: #8a938d; font-weight: 500; }

/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 75px 0 25px;
    background: #061712;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo .logo-mark { background: #fff; color: var(--green); }
.footer-logo .logo-text span { color: #6e887d; }

.footer-brand p {
    max-width: 320px;
    margin-top: 24px;
    color: #71877e;
    font-size: 11px;
    line-height: 1.75;
}

.footer-column h4 { margin-bottom: 19px; font-size: 10px; }
.footer-column a,
.footer-column p { display: block; margin-bottom: 9px; color: #71877e; font-size: 10px; line-height: 1.6; }
.footer-column a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #5d746a;
    font-size: 8px;
}

/* =========================================================
   FLOATING CONTACT DOCK
========================================================= */

.floating-contact-dock {
    position: fixed;
    z-index: 3800;
    right: 22px;
    bottom: 22px;
    display: flex;
    gap: 8px;
}

.floating-contact-dock a {
    min-width: 58px;
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 18px;
    box-shadow: 0 15px 38px rgba(6,35,25,.23);
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.floating-contact-dock a:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(6,35,25,.3); }
.float-call { display: none !important; background: #fff; color: var(--green); }
.float-whatsapp { background: #25d366; color: #07341f; }
.floating-contact-dock small { font-size: 7px; font-weight: 800; }
.whatsapp-float-icon svg { width: 23px; height: 23px; }

/* =========================================================
   MOBILE BASKET DRAWER
========================================================= */

.mobile-basket-bar {
    display: none;
}

.basket-overlay {
    display: none;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: grid;
    place-items: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    background: rgba(3, 17, 12, .88);
    backdrop-filter: blur(12px);
    transition: opacity .3s ease, visibility .3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    max-width: min(920px, 90vw);
    max-height: 84vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0,0,0,.4);
}

.lightbox-inner p { color: #d4dfda; font-size: 11px; }

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
    font-size: 25px;
}

/* =========================================================
   LOAD / SCROLL ANIMATIONS
========================================================= */

.perfecta-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    background: #071d17;
    transition: opacity .65s var(--ease), visibility .65s ease;
}

.perfecta-loader.hidden { opacity: 0; visibility: hidden; }

.loader-lockup {
    position: relative;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.16);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: loaderSpin 1.2s linear infinite;
}

.loader-p {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f5f4ec;
    color: var(--green);
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;
}

@keyframes loaderSpin { to { transform: rotate(360deg); } }

.cursor-glow {
    position: fixed;
    z-index: 9997;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle, rgba(91, 141, 119, .1), transparent 67%);
    transition: opacity .25s ease;
}

.cursor-glow.active { opacity: 1; }

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .82s var(--ease) var(--delay, 0ms), transform .82s var(--ease) var(--delay, 0ms);
}

.reveal.visible { opacity: 1; transform: none; }

.cinematic-heading h2 {
    clip-path: inset(0 0 100% 0);
    transform: translateY(20px);
    opacity: 0;
    transition: clip-path .9s var(--ease), transform .9s var(--ease), opacity .55s ease;
}

.cinematic-heading.cinematic-visible h2 {
    clip-path: inset(0 0 0 0);
    transform: none;
    opacity: 1;
}

.premium-tilt {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform .2s ease, box-shadow .35s ease;
}

/* =========================================================
   RESPONSIVE — LAPTOP / TABLET
========================================================= */

@media (max-width: 1080px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .mobile-menu { display: block; }

    .hero-grid,
    .luxury-grid,
    .wedding-grid,
    .visit-grid,
    .shop-contact-card {
        grid-template-columns: 1fr;
    }

    .hero-media { max-width: 720px; width: 100%; margin-inline: auto; }
    .hero h1 { max-width: 900px; }

    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid #e7e9e5; }

    .service-bento { grid-template-columns: 1fr 1fr; }
    .service-wide { grid-column: 1 / -1; }

    .luxury-grid { gap: 55px; }
    .luxury-collage { max-width: 720px; width: 100%; margin-inline: auto; }

    .wedding-photo { min-height: 650px; }

    .calculator-layout { grid-template-columns: 1fr; }
    .basket { position: relative; top: auto; width: min(500px, 100%); }

    .faq-grid { grid-template-columns: 1fr; gap: 50px; }
    .faq-intro { position: relative; top: auto; }

    .visit-map { min-height: 520px; }

    .shop-photo { min-height: 520px; }
    .contact-panel { padding: 50px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {
    :root { --radius-xl: 24px; }

    body { padding-bottom: 84px; }
    .container { width: min(92%, 620px); }
    .section { padding: 88px 0; }

    .nav-container { height: 74px; }
    .navbar-scrolled .nav-container { height: 66px; }
    .nav-cta { display: none; }
    .logo-text strong { font-size: 18px; }
    .logo-mark { width: 40px; height: 40px; }

    .hero { min-height: auto; padding: 124px 0 85px; }
    .hero-grid { gap: 55px; }
    .hero h1 { font-size: clamp(49px, 15vw, 67px); letter-spacing: -4px; }
    .hero-description { font-size: 14px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .live-status-card { width: 100%; }
    .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .hero-proof i { display: none; }
    .hero-proof > div:last-child { grid-column: 1 / -1; }

    .hero-media { min-height: 520px; }
    .hero-photo-main { inset: 0 12px 36px 18px; border-radius: 24px; }
    .hero-photo-float { width: 145px; height: 190px; right: -4px; top: 38px; border-width: 6px; }
    .hero-seal { width: 88px; height: 88px; top: 54px; }
    .hero-seal strong { font-size: 32px; }
    .hero-badge { right: 0; min-width: 150px; }
    .scroll-indicator { display: none; }

    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid #e7e9e5 !important; }
    .trust-item:last-child { border-bottom: 0 !important; }

    .section-heading { flex-direction: column; align-items: flex-start; gap: 22px; margin-bottom: 43px; }
    .section-heading h2,
    .gallery-heading h2,
    .luxury-copy h2,
    .wedding-copy h2,
    .visit-content h2,
    .contact-panel h2,
    .faq-intro h2 { font-size: clamp(39px, 12vw, 53px); letter-spacing: -3px; }

    .service-bento { grid-template-columns: 1fr; }
    .service-wide { grid-column: auto; grid-template-columns: 1fr; }
    .service-image { min-height: 300px; order: -1; }
    .service-wide .service-index { top: auto; right: 26px; bottom: 26px; }

    .luxury-section { padding: 90px 0; }
    .luxury-collage { min-height: 570px; }
    .luxury-image-a { left: 0; top: 20px; width: 56%; height: 400px; }
    .luxury-image-b { right: 0; width: 50%; height: 295px; }
    .luxury-image-c { right: 10px; width: 48%; height: 230px; }

    .wedding-photo { min-height: 560px; }
    .wedding-services { grid-template-columns: 1fr; }

    .price-items-grid { grid-template-columns: 1fr; }
    .price-category-heading { align-items: flex-start; flex-direction: column; }
    .price-category-heading p { text-align: left; }

    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-shell { height: 520px; }

    .gallery-section { padding: 90px 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
    .gallery-tall { grid-row: span 2; }
    .gallery-wide { grid-column: 1 / -1; }

    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { min-height: auto; }

    .visit-section { padding: 85px 0; }
    .visit-map { min-height: 440px; }
    .visit-facts { grid-template-columns: 1fr; }
    .visit-actions { flex-direction: column; }
    .visit-actions .button { width: 100%; }

    .shop-photo { min-height: 390px; }
    .contact-panel { padding: 38px 25px 42px; }
    .contact-method { grid-template-columns: 39px minmax(0,1fr) auto; }

    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; }

    .float-call { display: flex !important; }
    .floating-contact-dock { right: 12px; bottom: 87px; }
    .floating-contact-dock a { min-width: 53px; height: 53px; border-radius: 16px; }

    .basket {
        position: fixed;
        z-index: 6500;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-height: 87svh;
        overflow-y: auto;
        border-radius: 26px 26px 0 0;
        transform: translateY(105%);
        transition: transform .45s var(--ease);
    }

    .basket.mobile-open { transform: translateY(0); }
    .basket-close { display: block; }

    .basket-overlay {
        position: fixed;
        inset: 0;
        z-index: 6200;
        display: block;
        opacity: 0;
        visibility: hidden;
        background: rgba(2,16,11,.52);
        backdrop-filter: blur(4px);
        transition: opacity .3s ease, visibility .3s ease;
    }

    .basket-overlay.visible { opacity: 1; visibility: visible; }

    .mobile-basket-bar {
        position: fixed;
        z-index: 5900;
        left: 50%;
        bottom: 12px;
        width: calc(100% - 24px);
        min-height: 62px;
        max-width: 620px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 10px 16px;
        border: 0;
        border-radius: 18px;
        background: #0b352a;
        color: #fff;
        box-shadow: 0 17px 45px rgba(7,40,29,.3);
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 20px);
        transition: opacity .3s ease, transform .3s var(--ease), visibility .3s ease;
    }

    .mobile-basket-bar.visible {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .mobile-basket-bar > div { display: flex; flex-direction: column; align-items: flex-start; }
    .mobile-basket-bar > div span { color: #8ea89d; font-size: 7px; letter-spacing: 2px; }
    .mobile-basket-bar strong { margin-top: 1px; font-size: 16px; }
    .mobile-basket-bar > span { color: #d4bf7c; font-size: 8px; font-weight: 800; letter-spacing: 1px; }

    .lightbox { padding: 20px; }
}

@media (max-width: 480px) {
    .hero-media { min-height: 470px; }
    .hero-photo-float { width: 128px; height: 170px; }
    .hero-badge { bottom: 4px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
    .gallery-tall { grid-row: auto; }
    .gallery-wide { grid-column: auto; }
    .comparison-shell { height: 470px; }
    .contact-method strong { font-size: 9px; }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .perfecta-loader,
    .cursor-glow { display: none !important; }

    .reveal,
    .hero-content,
    .hero-media,
    .cinematic-heading h2 {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
}
