:root {
    --bg: #fdfbf8;
    --text: #2d2926;
    --muted: #646b74;
    --brand: #2d2926;
    --accent: #d4af37;
    --accent-strong: #b8972e;
    --soft: #ebbcb2;
    --card: #f5efed;
    --panel: #fffdf9;
    --border: rgba(45, 41, 38, 0.12);
    --border-strong: rgba(45, 41, 38, 0.2);
    --shadow: 0 24px 60px -32px rgba(20, 14, 8, 0.22);
    --radius-sm: 18px;
    --radius-md: 26px;
    --container: 1280px;
    --section-space: clamp(72px, 10vw, 152px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(235, 188, 178, 0.14), transparent 32%),
        linear-gradient(180deg, #fffdfa 0%, var(--bg) 28%, #fefbf7 100%);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

img,
iframe,
video {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
.serif {
    margin-top: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.08;
}

p {
    margin-top: 0;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - clamp(24px, 4vw, 64px)));
    margin: 0 auto;
}

.container-header {
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1002;
    padding: 14px 0;
    background: rgba(253, 251, 248, 0.84);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 41, 38, 0.08);
}

.navbar {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.logo-mark {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
}

.logo-primary,
.logo-secondary {
    white-space: nowrap;
    text-transform: uppercase;
}

.logo-primary {
    padding-right: 14px;
    margin-right: 0;
    border-right: 1px solid var(--border);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.32em;
}

.logo-secondary {
    font-size: 0.84rem;
    letter-spacing: 0.2em;
    opacity: 0.82;
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    min-width: 0;
}

.nav-panel-head {
    display: none;
}

.nav-panel-kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
}

.menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.72;
}

.menu a:hover,
.menu a.active {
    color: var(--accent);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.lang-switch {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 8px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

.lang-link:hover {
    opacity: 1;
}

.lang-link.active {
    background: var(--accent);
    color: #fff;
    opacity: 1;
}

.menu-toggle,
.menu-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand);
    cursor: pointer;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(17, 17, 17, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: min(880px, calc(100svh - 28px));
    padding: clamp(104px, 14vw, 150px) 0 clamp(80px, 10vw, 120px);
    background-position: center;
    background-size: cover;
    color: #fff;
    overflow: clip;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(23, 18, 15, 0.9) 0%, rgba(23, 18, 15, 0.46) 48%, rgba(23, 18, 15, 0.24) 100%),
        radial-gradient(circle at center right, rgba(212, 175, 55, 0.22), transparent 36%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 8vw, 6.4rem);
    font-style: italic;
    font-weight: 400;
}

.lead,
.hero-lead {
    max-width: 60ch;
    margin-bottom: 34px;
    font-size: clamp(1rem, 2.3vw, 1.3rem);
    opacity: 0.82;
}

.eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 30px -18px rgba(212, 175, 55, 0.85);
}

.btn:hover {
    background: var(--accent-strong);
    transform: translateY(-2px);
}

.btn-mini {
    padding: 12px 20px;
    font-size: 0.72rem;
}

.btn-light {
    background: #fff;
    color: var(--brand);
    box-shadow: none;
}

.btn-light:hover {
    background: #f6f0e8;
    color: var(--brand);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    box-shadow: none;
}

.btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline-dark {
    border-color: var(--border-strong);
    background: transparent;
    color: var(--brand);
    box-shadow: none;
}

.btn-outline-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 175, 55, 0.06);
}

.section {
    padding: var(--section-space) 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(245, 239, 237, 0.88), rgba(245, 239, 237, 0.54));
}

.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2,
.section-title-large {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-title-large {
    margin-bottom: 24px;
}

.story-copy {
    max-width: 62ch;
    margin-bottom: 24px;
    font-size: 1.05rem;
    opacity: 0.76;
}

.story-copy-last {
    margin-bottom: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.cards.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.team-card,
.gallery-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.card {
    padding: 34px 28px;
}

.card:hover,
.team-card:hover,
.gallery-item:hover {
    transform: translateY(-4px);
}

.card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 4vw, 2.2rem);
}

.service-index {
    margin-bottom: 20px;
    opacity: 0.34;
    letter-spacing: 0.18em;
}

.service-meta {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.64;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
}

.service-link:hover {
    color: var(--accent-strong);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(32px, 6vw, 96px);
    align-items: center;
}

.split-media {
    position: relative;
    padding: 18px;
}

.split-media::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 72%;
    height: 72%;
    border: 1px solid rgba(212, 175, 55, 0.58);
    border-radius: var(--radius-md);
    z-index: -1;
}

.split-media img,
.map-frame {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.split-media img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.story-panel {
    margin-top: 36px;
    background: var(--card);
}

.story-panel-title {
    margin-bottom: 16px;
    font-size: 1.55rem;
}

.story-panel-text {
    margin-bottom: 0;
    opacity: 0.74;
}

.page-banner {
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 28%),
        #111;
    color: #fff;
    padding: clamp(96px, 14vw, 140px) 0 clamp(56px, 8vw, 76px);
}

.page-banner h1 {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: clamp(2.4rem, 7vw, 4rem);
}

.team-card {
    overflow: hidden;
}

.team-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.team-content {
    padding: 24px 22px 28px;
}

.team-content h3 {
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 4vw, 2rem);
}

.team-content .role {
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-caption {
    padding: 14px 16px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    opacity: 0.56;
    text-transform: uppercase;
}

.section-cta-center {
    margin-top: 52px;
    text-align: center;
}

.section-cta-bottom {
    margin-bottom: var(--section-space);
}

.section-cta-text {
    margin-bottom: 24px;
    opacity: 0.62;
}

.prices-wrapper {
    max-width: 920px;
}

.price-group {
    margin-bottom: 56px;
}

.price-group-title {
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
    font-size: clamp(2rem, 5vw, 3rem);
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px dotted var(--border-strong);
}

.price-name {
    flex: 1;
}

.price-service-name {
    margin-bottom: 0;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.price-value {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: right;
}

.contact-stack {
    align-self: start;
}

.contact-intro {
    margin-bottom: 10px;
}

.contact-block {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.contact-title {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-text,
.contact-hours {
    margin-bottom: 0;
    font-size: 1.04rem;
    opacity: 0.78;
}

.contact-phone {
    margin-bottom: 0;
    color: var(--accent);
    font-size: clamp(1.2rem, 4vw, 1.45rem);
    font-weight: 700;
}

.contact-whatsapp {
    margin-top: 16px;
}

.contact-hours {
    padding: 0;
    list-style: none;
}

.contact-hours li + li {
    margin-top: 6px;
}

.map-frame {
    height: min(560px, 70vh);
    border: 1px solid var(--border);
    background: #fff;
}

.map-frame-embed {
    display: block;
    border: 0;
}

.footer {
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 26%),
        #111;
    color: #fff;
    padding: clamp(88px, 11vw, 120px) 0 40px;
}

.footer-cta-wrap {
    margin-bottom: clamp(48px, 7vw, 92px);
}

.footer-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(32px, 6vw, 74px);
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, #c49a2a 0%, #dfb54b 100%);
}

.footer-cta::after {
    content: '';
    position: absolute;
    right: -48px;
    top: -48px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.footer-cta-content,
.footer-cta-action {
    position: relative;
    z-index: 1;
}

.footer-eyebrow {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-cta-title {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.footer-cta-text {
    max-width: 34rem;
    margin-bottom: 0;
    opacity: 0.82;
    font-size: 1.06rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 64px);
}

.footer h4 {
    margin-bottom: 22px;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
    opacity: 0.72;
}

.footer-brand-title {
    margin-bottom: 12px;
    color: var(--accent);
    letter-spacing: 0.18em;
}

.footer-tagline {
    margin-bottom: 0;
    opacity: 0.62;
    font-size: 0.95rem;
}

.footer-hours {
    margin-top: 16px;
    opacity: 0.55;
    font-size: 0.88rem;
}

.footer-contact-list {
    opacity: 0.82;
    font-size: 0.95rem;
}

.footer-address {
    margin-top: 10px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.footer-support-link {
    margin-top: 20px;
    padding: 10px 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-rights {
    opacity: 0.45;
}

.saifore-credit-image {
    display: block;
    height: 30px;
    opacity: 0.6;
}

.whatsapp,
.scroll-top {
    position: fixed;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1001;
}

.whatsapp {
    right: 18px;
    background: #25d366;
    font-size: 1.7rem;
    box-shadow: 0 14px 28px -14px rgba(37, 211, 102, 0.9);
}

.scroll-top {
    right: 86px;
    border: 0;
    background: var(--accent);
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 14px 28px -14px rgba(212, 175, 55, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top.visible {
    opacity: 0.92;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .cards,
    .cards.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .reveal,
    .reveal.active {
        opacity: 1;
        transform: none;
    }

    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .header {
        padding: 10px 0;
    }

    .navbar {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
    }

    .logo {
        max-width: calc(100vw - 96px);
    }

    .logo-mark {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .logo-primary {
        padding-right: 0;
        border-right: 0;
        font-size: 0.8rem;
    }

    .logo-secondary {
        font-size: 0.74rem;
        letter-spacing: 0.16em;
    }

    .menu-toggle,
    .menu-close {
        display: inline-flex;
    }

    .menu-toggle {
        position: relative;
        z-index: 1001;
    }

    .nav-panel {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000;
        width: min(360px, calc(100vw - 12px));
        height: 100dvh;
        padding: 18px 18px calc(22px + env(safe-area-inset-bottom));
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 22px;
        background:
            linear-gradient(180deg, rgba(25, 25, 25, 0.98), rgba(17, 17, 17, 0.98)),
            #111;
        box-shadow: -18px 0 48px -24px rgba(0, 0, 0, 0.45);
        transform: translateX(102%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .navbar.nav-open .nav-panel {
        display: flex;
        transform: translateX(0);
    }

    .nav-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu-close {
        width: 44px;
        height: 44px;
        border-color: rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .menu a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 0.95rem;
        opacity: 0.92;
    }

    .nav-actions {
        width: 100%;
        margin-top: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .lang-switch {
        width: 100%;
        justify-content: stretch;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.14);
    }

    .lang-link {
        flex: 1;
        color: #fff;
    }

    .lang-link.active {
        color: #111;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 110px 0 74px;
    }

    .section {
        padding: clamp(66px, 11vw, 92px) 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .cards,
    .cards.four,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .reveal {
        transform: translateY(18px);
    }

    .hero {
        padding: 104px 0 64px;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 9.5vw, 3.6rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-title-large,
    .section-head h2,
    .page-banner h1 {
        line-height: 1.12;
    }

    .card {
        padding: 28px 22px;
    }

    .split-media {
        padding: 10px;
    }

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

    .gallery-item img {
        aspect-ratio: 1 / 1;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-value {
        text-align: left;
    }

    .map-frame {
        height: 320px;
    }

    .footer {
        padding: 80px 0 36px;
    }

    .footer-cta {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .footer-cta-wrap {
        margin-bottom: 56px;
    }

    .footer-cta-action,
    .footer-cta-action .btn {
        width: 100%;
    }

    .whatsapp,
    .scroll-top {
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .whatsapp {
        right: 14px;
        font-size: 1.45rem;
    }

    .scroll-top {
        right: 74px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: calc(100vw - 82px);
    }

    .logo-primary {
        font-size: 0.72rem;
        letter-spacing: 0.28em;
    }

    .logo-secondary {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .btn {
        width: 100%;
        padding: 14px 18px;
        font-size: 0.74rem;
        letter-spacing: 0.16em;
    }

    .nav-panel {
        width: calc(100vw - 8px);
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-banner {
        padding-top: 86px;
    }

    .team-content {
        padding: 20px 18px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal,
    .reveal.active {
        opacity: 1;
        transform: none;
    }
}
