/* =========================================================
   SIVARRA — components.css
   Discrete UI components: buttons, navigation bar, logo,
   service cards, gallery overlays & corner brackets,
   reel/moment captions & play icons, prev/next scroll buttons,
   about video mute toggle, testimonial quote cards,
   location blocks, CTA decorative rings, footer,
   and floating WhatsApp button.
   ========================================================= */

/* ----- Buttons (gold outline → solid gold on hover) ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.2rem;
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-2);
    background: transparent;
    border: 1px solid var(--gold-1);
    cursor: pointer;
    transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--gold-grad);
    color: var(--black);
    border-color: transparent;
}

.btn-large {
    padding: 1.15rem 2.6rem;
    font-size: 0.72rem;
}

/* =========================================================
   NAVIGATION — transparent over hero, solid on scroll
   ========================================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--hairline);
    padding: 1rem 0;
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}

.nav-left {
    justify-self: start;
}

.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

/* ----- Logo block ----- */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid var(--gold-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--gold-2);
    flex-shrink: 0;
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
}

/* logo image inside the circular mark */
.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.logo-word {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--off-white);
    text-transform: uppercase;
    padding-left: 0.4em;
}

.logo-tag {
    font-family: var(--sans);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    color: var(--gold-2);
    text-transform: uppercase;
    padding-left: 0.45em;
    margin-top: 5px;
}

/* ----- Nav links ----- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--off-white);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.nav-links a:hover {
    color: var(--gold-2);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* ----- Mobile toggle ----- */
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold-1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    position: relative;
    z-index: 102;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    width: 14px;
    height: 1px;
    background: var(--gold-2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.nav-toggle.open span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.nav-toggle.open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 920px) {
    .nav-inner {
        grid-template-columns: 1fr auto;
    }

    .nav-book {
        display: none;
    }

    .nav-center {
        display: contents;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* dropdown */
    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 2.5rem 1.5rem;
        gap: 1.6rem;
        border-bottom: 1px solid var(--hairline);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.9);
        z-index: 99;
    }

    .nav-links.open a {
        font-size: 0.78rem;
    }
}

/* shrink logo wordmark on very small screens */
@media (max-width: 420px) {
    .logo-word {
        font-size: 1.05rem;
        letter-spacing: 0.32em;
    }

    .logo-tag {
        font-size: 0.46rem;
        letter-spacing: 0.34em;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 1.15rem;
    }
}

/* =========================================================
   ABOUT VIDEO WRAPPER & MUTE TOGGLE
   ========================================================= */
.about-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-mute-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold-1);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 5;
}

.about-mute-btn:hover {
    background: var(--gold-grad);
    transform: scale(1.06);
}

.about-mute-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-2);
    transition: fill 0.3s ease;
}

.about-mute-btn:hover svg {
    fill: var(--black);
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.service-card {
    position: relative;
    background: var(--black-card);
    border: 1px solid var(--hairline);
    padding: 2.2rem 1.35rem 1.65rem;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: border-color 0.5s ease;
}

.service-card:hover {
    border-color: var(--hairline-strong);
    transform: translateY(-4px);
}

.service-card:hover::before {
    border-color: var(--hairline);
}

.service-num {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--gold-2);
    margin-bottom: 1.5rem;
    position: relative;
}

.service-num::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
}

.service-name {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.service-desc {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    min-height: 3.5em;
}

.service-rule {
    height: 1px;
    background: var(--hairline);
    margin: 1.5rem 0;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: var(--off-white);
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.service-list li::before {
    content: '—';
    color: var(--gold-2);
    font-family: var(--serif);
    font-size: 0.85rem;
    flex-shrink: 0;
    opacity: 0.85;
}

.service-starting {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.1rem;
    border-top: 1px solid var(--hairline);
    margin-top: auto;
}

.service-starting .price-on-req {
    font-family: var(--serif);
    font-size: 0.98rem;
    color: var(--gold-2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* =========================================================
   GALLERY — overlays, corner brackets & captions
   ========================================================= */
.gallery-item {
    transition: border-color 0.4s ease;
}

.gallery-item:hover {
    border-color: var(--hairline-strong);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(201, 162, 75, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* corner brackets that fade in on hover */
.gallery-item .corner {
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
    pointer-events: none;
    z-index: 3;
}

.gallery-item:hover .corner {
    opacity: 1;
}

.gallery-item .corner.tl {
    top: 12px;
    left: 12px;
    border-top: 1px solid var(--gold-2);
    border-left: 1px solid var(--gold-2);
}

.gallery-item .corner.tr {
    top: 12px;
    right: 12px;
    border-top: 1px solid var(--gold-2);
    border-right: 1px solid var(--gold-2);
}

.gallery-item .corner.bl {
    bottom: 12px;
    left: 12px;
    border-bottom: 1px solid var(--gold-2);
    border-left: 1px solid var(--gold-2);
}

.gallery-item .corner.br {
    bottom: 12px;
    right: 12px;
    border-bottom: 1px solid var(--gold-2);
    border-right: 1px solid var(--gold-2);
}

/* caption overlay at bottom of each card */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.25rem 0.9rem;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.45) 60%, transparent 100%);
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-2);
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    color: var(--off-white);
}

/* =========================================================
   MOMENTS / REEL CARDS & CONTROLS
   ========================================================= */
.reel-card {
    transition: border-color 0.4s ease;
}

.reel-card:hover {
    border-color: var(--hairline-strong);
}

.reel-card .reel-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    font-family: var(--sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-2);
}

.reel-card .play-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-1);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 3;
}

.reel-card .play-icon:hover {
    background: var(--gold-grad);
}

.reel-card .play-icon:hover svg {
    fill: var(--black);
}

.reel-card .play-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-2);
    transition: fill 0.3s ease;
}

/* Documentary card badge */
.documentary-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-family: var(--sans);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold-grad);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

/* Instagram End Card */
.reel-card.instagram-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, #141414, #0A0A0A);
    border: 1px dashed var(--gold-1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    gap: 1.25rem;
}

.reel-card.instagram-card:hover {
    border-color: var(--gold-2);
    border-style: solid;
}

.insta-card-icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--gold-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-2);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.reel-card.instagram-card:hover .insta-card-icon {
    background: var(--gold-grad);
    color: var(--black);
    transform: scale(1.08);
}

.insta-card-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.insta-card-text {
    font-family: var(--serif);
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-2);
}

.insta-card-sub {
    font-family: var(--sans);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Moments Prev / Next Navigation Buttons */
.reel-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-2);
    background: var(--black-card);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.reel-nav-btn:hover {
    background: var(--gold-grad);
    color: var(--black);
    border-color: transparent;
    transform: scale(1.08);
}

.reel-nav-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* =========================================================
   TESTIMONIAL QUOTE CARDS
   ========================================================= */
.quote-card {
    background: var(--black-card);
    border: 1px solid var(--hairline);
    padding: 2.25rem 1.85rem 1.85rem;
    position: relative;
    transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.quote-card:hover {
    border-color: var(--hairline-strong);
    transform: translateY(-3px);
}

.quote-mark {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
}

.quote-mark span {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--gold-2);
    line-height: 0;
    transform: translateY(-3px);
}

.quote-text {
    font-family: var(--serif);
    font-size: 1.12rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    flex: 1;
}

.quote-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}

.quote-stars svg {
    width: 13px;
    height: 13px;
    fill: var(--gold-2);
}

.quote-author {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-2);
    padding-top: 1.1rem;
    border-top: 1px solid var(--hairline);
}

.quote-author .locale {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.54rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.25em;
}

/* =========================================================
   LOCATION BLOCKS
   ========================================================= */
.location-block .label {
    display: block;
    margin-bottom: 1rem;
}

.location-block .value {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--off-white);
    line-height: 1.55;
}

.location-block a.value:hover {
    color: var(--gold-2);
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--hairline);
    font-size: 0.85rem;
}

.hours-list .day {
    font-family: var(--sans);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--off-white);
}

.hours-list .time {
    font-family: var(--serif);
    color: var(--gold-2);
}

.hours-list .closed {
    color: var(--muted);
}

.map-frame {
    position: relative;
    border: 1px solid var(--hairline);
    min-height: 380px;
    overflow: hidden;
}

.map-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--hairline);
    pointer-events: none;
    z-index: 2;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    filter: invert(0.92) hue-rotate(180deg) brightness(0.82) contrast(0.95) saturate(0.7);
}

/* =========================================================
   CTA STRIP — decorative rings
   ========================================================= */
.cta-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(85vw, 640px);
    aspect-ratio: 1;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

.cta-strip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(65vw, 480px);
    aspect-ratio: 1;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--black);
    padding: 5rem 0 2rem;
    text-align: center;
    border-top: 1px solid var(--hairline);
}

.footer-mono {
    width: 90px;
    height: 90px;
    border: 1px solid var(--gold-1);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--gold-2);
}

.footer-mono::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
}

.footer-mono::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    opacity: 0.4;
}

/* footer monogram image */
.footer-mono img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.footer-word {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    padding-left: 0.45em;
    color: var(--off-white);
}

.footer-tag {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 2.5rem;
    padding-left: 0.5em;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-2);
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.social-link:hover {
    border-color: var(--gold-1);
    background: var(--gold-grad);
    color: var(--black);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-ig-handle {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 2.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--hairline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-bottom a:hover {
    color: var(--gold-2);
}

.footer-credit-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1.25rem;
    text-align: center;
}

.footer-credit {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    padding-left: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-credit a {
    color: var(--gold-2);
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--off-white);
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid var(--gold-1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 80;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.whatsapp-float:hover {
    background: var(--gold-grad);
    border-color: transparent;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: var(--gold-2);
    transition: fill 0.4s ease;
}

.whatsapp-float:hover svg {
    fill: var(--black);
}
