:root {
    --bg: #1e1613;
    --bg-soft: #2a1d18;
    --bg-card: #241915;
    --gold: #e9d8b1;
    --bronze: #a56951;
    --nude: #dd936b;
    --ivory: #f5eae3;
    --muted: #b7a69d;
    --border: rgba(233, 216, 177, 0.18);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--bg);
    color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
    position: relative;
}

.eyebrow {
    color: var(--nude);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 18px;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    line-height: 1.08;
    font-weight: 600;
}

h1 {
    font-size: clamp(3.5rem, 7vw, 7.2rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h3 {
    font-size: 1.6rem;
}

p {
    color: var(--muted);
}

.btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--nude), var(--bronze));
    color: #1b120f;
    box-shadow: 0 14px 40px rgba(221, 147, 107, 0.24);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(221, 147, 107, 0.34);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg);
}

.hidden {
    display: none !important;
}

/* Loader */

.page-loader {
    position: fixed;
    inset: 0;
    background: #160f0d;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-logo {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    letter-spacing: 0.35em;
}

.loader-line {
    width: 180px;
    height: 1px;
    margin-top: 20px;
    background: linear-gradient(90deg, transparent, var(--nude), transparent);
    animation: loaderPulse 1.4s infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.25; transform: scaleX(0.6); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: 0.3s ease;
}

.site-header.scrolled {
    background: rgba(22, 15, 13, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.brand-subtitle {
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

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

.nav-link {
    color: var(--ivory);
    font-size: 0.92rem;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: var(--nude);
}

.nav-book-btn {
    min-height: 46px;
    padding-inline: 20px;
}

.menu-toggle {
    display: none;
    background: transparent;
    width: 44px;
    height: 44px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--ivory);
}

/* Hero */

.hero {
    min-height: 100vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(165, 105, 81, 0.18), transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(233, 216, 177, 0.1), transparent 30%),
        linear-gradient(140deg, #17100e, #251813 60%, #1e1613);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 54px 54px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.hero-content h1 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    max-width: 620px;
    font-size: 1.1rem;
    margin: 26px 0 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 46px;
}

.hero-meta div {
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.hero-meta strong,
.hero-meta span {
    display: block;
}

.hero-meta strong {
    color: var(--gold);
}

.hero-meta span {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 45% 45% 24px 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(233, 216, 177, 0.2);
}

.hero-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,15,13,0.42), transparent 45%);
}

.hero-image-frame img {
    height: 680px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(36, 25, 21, 0.78);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.floating-card span,
.floating-card strong {
    display: block;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.75rem;
}

.floating-card strong {
    color: var(--gold);
    margin-top: 3px;
}

.floating-card-top {
    top: 10%;
    left: -44px;
}

.floating-card-bottom {
    right: -36px;
    bottom: 12%;
}

.scroll-indicator {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-indicator i {
    width: 1px;
    height: 45px;
    background: linear-gradient(var(--nude), transparent);
}

/* Shared headings */

.section-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.section-heading p:last-child {
    margin-top: 20px;
}

/* About */

.about-section {
    background: #211713;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 86px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 650px;
    object-fit: cover;
    border-radius: 200px 200px 30px 30px;
    box-shadow: var(--shadow);
}

.about-image-accent {
    position: absolute;
    width: 130px;
    height: 130px;
    right: -28px;
    bottom: -28px;
    border: 1px solid var(--nude);
    border-radius: 50%;
}

.about-content h2 {
    margin-bottom: 26px;
}

.about-content > p {
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    gap: 20px;
    margin: 34px 0;
}

.about-features div {
    padding: 20px;
    border-left: 2px solid var(--nude);
    background: rgba(255, 255, 255, 0.025);
}

.about-features strong,
.about-features span {
    display: block;
}

.about-features strong {
    color: var(--gold);
}

.about-features span {
    color: var(--muted);
    margin-top: 4px;
}

/* Services */

.services-section {
    background: #1b120f;
}

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

.service-card {
    min-height: 560px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(221, 147, 107, 0.55);
}

.service-card img {
    height: 310px;
    object-fit: cover;
}

.service-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-content > span {
    color: var(--nude);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
}

.service-card h3 {
    margin: 10px 0 14px;
}

.service-card p {
    margin-bottom: 22px;
}

.service-link {
    margin-top: auto;
    align-self: flex-start;
    color: var(--gold);
    background: transparent;
    font-weight: 700;
}

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

.service-cta-card {
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(233,216,177,0.12), transparent 35%),
        linear-gradient(145deg, #2e1c16, #1f1512);
}

/* Portfolio */

.portfolio-section {
    background: #211713;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,12,10,0.75), transparent 55%);
}

.gallery-item span {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 2;
    color: var(--gold);
    font-weight: 700;
}

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

.gallery-large {
    grid-row: span 2;
}

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

/* Experience */

.experience-section {
    background: #17100e;
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}

.experience-content p:last-child {
    margin-top: 22px;
}

.experience-steps {
    display: grid;
    gap: 18px;
}

.experience-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
}

.experience-step > span {
    color: var(--nude);
    font-size: 1.2rem;
    font-weight: 700;
}

.experience-step h3 {
    margin-bottom: 6px;
}

/* Reviews */

.reviews-section {
    background: #211713;
}

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

.review-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.review-stars {
    color: var(--gold);
    letter-spacing: 0.16em;
    margin-bottom: 18px;
}

.review-card p {
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.review-card strong,
.review-card span {
    display: block;
}

.review-card span {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 4px;
}

/* FAQ */

.faq-section {
    background: #1b120f;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: var(--ivory);
    text-align: left;
    font-weight: 700;
}

.faq-item button i {
    font-style: normal;
    color: var(--nude);
    font-size: 1.4rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 22px 22px;
}

.faq-item.active .faq-answer {
    max-height: 240px;
}

/* CTA */

.booking-cta-section {
    background: #211713;
}

.booking-cta {
    padding: 52px;
    border-radius: 32px;
    background:
        radial-gradient(circle at right top, rgba(233,216,177,0.16), transparent 30%),
        linear-gradient(135deg, #301f18, #1a110f);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.booking-cta h2 {
    max-width: 760px;
}

.booking-cta p:last-child {
    margin-top: 16px;
}

/* Contact */

.contact-section {
    background: #17100e;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.contact-content p:last-child {
    margin-top: 18px;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-links a {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    transition: 0.3s ease;
}

.contact-links a:hover {
    transform: translateY(-4px);
    border-color: rgba(221,147,107,0.5);
}

.contact-links span,
.contact-links strong {
    display: block;
}

.contact-links span {
    color: var(--muted);
    font-size: 0.78rem;
}

.contact-links strong {
    color: var(--gold);
    margin-top: 5px;
    word-break: break-word;
}

/* Footer */

.site-footer {
    padding: 70px 0 24px;
    background: #110b09;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
    gap: 50px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-grid p {
    max-width: 480px;
}

.footer-links,
.footer-socials {
    display: grid;
    gap: 12px;
    align-content: start;
}

.footer-links button {
    background: transparent;
    color: var(--ivory);
    text-align: left;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-socials a:hover {
    color: var(--nude);
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.82rem;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    min-width: 110px;
    height: 48px;
    border-radius: 999px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #081b0f;
    font-weight: 800;
    box-shadow: 0 14px 35px rgba(0,0,0,0.3);
}

/* Lightbox */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10,6,5,0.94);
    display: none;
    place-items: center;
    padding: 30px;
}

.gallery-lightbox.open {
    display: grid;
}

.gallery-lightbox img {
    max-width: min(100%, 980px);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 18px;
}

.gallery-lightbox p {
    margin-top: 14px;
    color: var(--gold);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg);
    font-size: 1.8rem;
}

/* Navbar image logo */
.brand-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.brand-logo {
    display: block;
    width: 82px;
    height: 82px;
    object-fit: contain;
}

@media (max-width: 620px) {
    .brand-logo {
        width: 66px;
        height: 66px;
    }
}

/* Footer image logo */
.footer-logo-link {
    display: inline-flex;
    line-height: 0;
    margin-bottom: 18px;
}

.footer-logo {
    display: block;
    width: 145px;
    height: 145px;
    object-fit: contain;
}

@media (max-width: 620px) {
    .footer-logo {
        width: 120px;
        height: 120px;
    }
}

.brand-logo {
    width: 96px;
    height: 72px;
    object-fit: contain;
    image-rendering: auto;
}

@media (max-width: 620px) {
    .brand-logo {
        width: 82px;
        height: 62px;
    }
}
