:root {
    --bg: #0a0a0a;
    --bg-light: #121212;
    --bg-card: #161616;
    --fg: #f5f0e8;
    --fg-muted: #9a918a;
    --accent: #c9a96e;
    --accent-light: #dfc99a;
    --accent-dark: #a88a4e;
    --sage: #7d8b6e;
    --rose: #b87d6e;
    --border: #252525;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* Page Views */
.page-view {
    display: none;
}
.page-view.active {
    display: block;
}

/* Hero */
.hero-slider {
    position: relative;
    /* Using dvh for better mobile browser support */
    height: 100dvh; 
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.8) 100%);
}

/* Grain Texture */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 1.25rem;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .header {
        padding: 1.25rem 2rem;
    }
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--fg);
}

.brand-logo-img {
    width: clamp(88px, 18vw, 128px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(201, 169, 110, 0.28));
}

@media (min-width: 768px) {
    .brand-logo-img {
        width: 138px;
    }
}

.nav-link {
    position: relative;
    color: var(--fg);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
        
@media (min-width: 768px) {
    .slider-dots {
        bottom: 7rem;
        gap: 0.75rem;
    }
}

.slider-dot {
    width: 30px;
    height: 2px;
    background: rgba(245, 240, 232, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .slider-dot {
        width: 50px;
    }
}

.slider-dot.active {
    background: rgba(245, 240, 232, 0.2);
}

.slider-dot.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
    to { width: 100%; }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Cards */
.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

@media (min-width: 768px) {
    .service-card {
        border-radius: 16px;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.35);
    box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.55);
}

.service-card-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

@media (min-width: 768px) {
    .service-card-image {
        height: 240px;
    }
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

.service-card-overlay {
    position: relative;
    background: var(--bg-card);
    padding: 1rem 1rem 1.1rem;
}

.service-card-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.service-card-brief {
    color: var(--fg-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    min-height: 2.4rem;
}

.service-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.service-card-cta {
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.header-phone {
    color: var(--accent-light);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    transition: all 0.3s ease;
}

.header-phone:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.header-book-btn {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: #111;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.68rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 110, 0.7);
    box-shadow: 0 10px 24px rgba(201, 169, 110, 0.28);
    transition: all 0.28s ease;
}

.header-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(201, 169, 110, 0.35);
    filter: brightness(1.03);
}

@media (max-width: 767px) {
    .header-book-btn {
        font-size: 0.58rem;
        padding: 0.42rem 0.62rem;
        letter-spacing: 0.04em;
    }

    .header-phone {
        font-size: 0.56rem;
        padding: 0.32rem 0.45rem;
        letter-spacing: 0.03em;
    }
}

/* Service Detail Page */
.service-detail-hero {
    height: 60dvh;
    position: relative;
    overflow: hidden;
}
        
@media (min-width: 768px) {
    .service-detail-hero {
        height: 70vh;
    }
}

.service-detail-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* Blog Cards */
.blog-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

@media (min-width: 768px) {
    .blog-card {
        border-radius: 16px;
    }
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.35);
    box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.55);
}

.blog-card-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

@media (min-width: 768px) {
    .blog-card-image {
        height: 240px;
    }
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: relative;
    background: var(--bg-card);
    padding: 1rem 1rem 1.1rem;
}

.blog-card-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.blog-card-brief {
    color: var(--fg-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    min-height: 2.4rem;
}

.blog-card-cta {
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Blog Detail Hero */
.blog-detail-hero {
    height: 60dvh;
    position: relative;
    overflow: hidden;
}
        
@media (min-width: 768px) {
    .blog-detail-hero {
        height: 70vh;
    }
}

.blog-detail-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* Blog Page - Centered Container */
#blogArticleContent {
    min-height: 100dvh;
    display: block;
    padding: 0 0 40px;
}

#blogArticleContent > div {
    width: 100%;
}

/* Blog Card Styling */
#blogArticleContent .bg-\[var\(--bg-card\)\] {
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    #blogArticleContent .bg-\[var\(--bg-card\)\] {
        box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.45);
    }
}

/* Blog Content Prose */
.prose-blog h2,
.prose-blog h3 {
    color: var(--accent);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.prose-blog h4 {
    color: var(--fg);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 12px;
}

.prose-blog h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.8;
}

.prose-blog h4 + p {
    margin-top: 8px;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 1px solid rgba(201, 169, 110, 0.18);
}

.prose-figure {
    margin: 20px 0 28px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.prose-figure-frame {
    position: relative;
    padding: 10px;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 244, 223, 0.08), rgba(201, 169, 110, 0.12));
    border: 1px solid rgba(201, 169, 110, 0.22);
    box-shadow: 0 18px 48px -24px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    width: min(780px, 100%);
}

.prose-figure-frame img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    max-height: 320px;
    box-shadow: 0 10px 28px -18px rgba(0, 0, 0, 0.7);
}

@media (max-width: 640px) {
    .prose-figure-frame img {
        max-height: 240px;
    }
}

.feature-figure {
    margin-top: 0;
    display: flex;
    justify-content: center;
}

.feature-figure .prose-figure-frame {
    width: min(780px, 100%);
    padding: 12px;
}

.feature-figure-img {
    width: 100%;
    height: 220px;
}

@media (min-width: 768px) {
    .feature-figure-img {
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .feature-figure-img {
        height: 360px;
    }
}

.prose-figure figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--fg-muted);
    letter-spacing: 0.01em;
}

.prose-blog p {
    color: var(--fg-muted);
}

.prose-blog ol {
    color: var(--fg-muted);
}

.prose-blog ul {
    color: var(--fg-muted);
}

/* Blog article meta badge */
.blog-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    background: radial-gradient(circle at 10% 20%, rgba(201, 169, 110, 0.18), transparent 45%),
                linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(0, 0, 0, 0.1));
    box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    backdrop-filter: blur(8px);
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.14);
}

.meta-text {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: var(--fg-muted);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .meta-text {
        font-size: 0.9rem;
    }
}

.meta-accent {
    color: var(--accent);
    font-weight: 600;
}

.meta-divider {
    width: 1px;
    height: 18px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(201, 169, 110, 0.35), rgba(255, 255, 255, 0.06));
}

.meta-sep {
    display: inline-block;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.75;
}

.cta-card {
    background: linear-gradient(145deg, rgba(201, 169, 110, 0.16), rgba(201, 169, 110, 0.05));
    border: 1px solid rgba(201, 169, 110, 0.32);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 18px 45px -18px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 32px;
    }
}

.cta-btn {
    background: linear-gradient(120deg, #fff4dc, #e9c88a);
    color: #2b1a0a;
    border-radius: 18px;
    padding: 12px 22px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 22px -14px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

@media (min-width: 768px) {
    .cta-btn {
        padding: 14px 28px;
    }
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -16px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
    filter: brightness(1.04);
}

.cta-btn svg {
    color: #1a1206;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
    grid-auto-flow: dense;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 180px;
        gap: 1rem;
    }
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
        
@media (min-width: 768px) {
    .gallery-item {
        border-radius: 12px;
    }
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-label {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(245, 240, 232, 0.25);
    color: var(--fg);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
}

/* Form */
.form-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--fg);
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    font-size: 16px; /* Prevents zoom on iOS */
}
        
@media (min-width: 768px) {
    .form-input {
        padding: 1rem 1.25rem;
    }
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-input::placeholder {
    color: var(--fg-muted);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: #111;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 110, 0.7);
    cursor: pointer;
    transition: all 0.28s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 24px rgba(201, 169, 110, 0.28);
}

@media (min-width: 768px) {
    .btn-primary {
        padding: 0.95rem 2.3rem;
        font-size: 0.78rem;
    }
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(201, 169, 110, 0.35);
    filter: brightness(1.03);
}

.btn-outline {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: #111;
    border: 1px solid rgba(201, 169, 110, 0.7);
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.28s ease;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 24px rgba(201, 169, 110, 0.28);
}

.btn-outline:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(201, 169, 110, 0.35);
    filter: brightness(1.03);
}

/* Hero primary + secondary buttons same size */
.hero-actions .btn-primary,
.hero-actions .btn-outline {
    padding: 0.65rem 1.4rem;
    font-size: 0.68rem;
    min-width: 140px;
}

@media (min-width: 768px) {
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        padding: 0.8rem 1.9rem;
        font-size: 0.74rem;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: var(--bg);
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid var(--border);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 160;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--fg);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Decorative */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
        
@media (min-width: 768px) {
    .section-tag {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
}

.section-tag-line {
    width: 30px;
    height: 1px;
    background: var(--accent);
}
        
@media (min-width: 768px) {
    .section-tag-line {
        width: 40px;
    }
}

.section-tag-text {
    color: var(--accent);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
        
@media (min-width: 768px) {
    .section-tag-text {
        font-size: 0.75rem;
    }
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.95rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 110, 0.5);
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.06));
    box-shadow: 0 10px 28px rgba(201, 169, 110, 0.22);
    backdrop-filter: blur(6px);
    animation: badgePulse 2.8s ease-in-out infinite;
}

.hero-highlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.hero-highlight-text {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-light), #fff0d0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-detail-title {
    font-family: var(--font-serif, "Playfair Display", ui-serif, Georgia, "Times New Roman", serif);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .why-detail-title {
        font-size: 0.9rem;
    }
}

.why-card-highlight {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.why-detail-text {
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .why-detail-text {
        font-size: 1rem;
    }
}

@keyframes badgePulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}

@media (max-width: 767px) {
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        padding: 0.58rem 0.82rem;
        font-size: 0.56rem;
        letter-spacing: 0.04em;
    }
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.8rem;
}

.map-info-title {
    color: var(--fg);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.map-info-address {
    color: var(--fg-muted);
    font-size: 0.74rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.map-info-rating {
    color: var(--accent-light);
    font-size: 0.72rem;
}

.map-container iframe {
    width: 100%;
    height: 420px;
    filter: none;
    transition: none;
}
        
@media (min-width: 768px) {
    .map-container iframe {
        height: 540px;
    }
}

.map-container:hover iframe {
    filter: none;
}

/* Social Links */
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--fg);
}
        
@media (min-width: 768px) {
    .social-link {
        width: 48px;
        height: 48px;
    }
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 2rem;
        right: 2rem;
        width: 56px;
        height: 56px;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Testimonial */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
        
@media (min-width: 768px) {
    .testimonial-card {
        border-radius: 16px;
        padding: 2rem;
    }
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-5px);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
