:root {
    --maroon: #651528;
    --maroon-dark: #3a0b18;
    --wine: #861d39;
    --gold: #d3a53f;
    --gold-light: #f2d98b;
    --cream: #fbf5eb;
    --brown: #2a170f;
    --text: #44332d;
    --muted: #75655e;
    --border: rgba(211, 165, 63, .28)
}

* {
    box-sizing: border-box
}

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

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Cormorant Garamond', serif
}

h1,
h2,
h3,
p {
    margin-top: 0
}

.section-space {
    padding: 100px 0
}

.section-kicker,
.eyebrow {
    font-size: .78rem;
    letter-spacing: .22em;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px
}

.section-heading {
    max-width: 720px;
    margin: 0 auto
}

.section-heading h2,
.contact-section h2,
.about-section h2,
.video-section h2 {
    font-size: clamp(2.6rem, 5vw, 4.3rem);
    line-height: .98;
    margin-bottom: 18px;
    color: var(--maroon-dark)
}

h2 span {
    color: var(--wine)
}

.section-heading>p:last-child {
    color: var(--muted);
    line-height: 1.8
}

.site-nav {
    padding: 10px 0;
    background: rgba(45, 8, 19, .72);
    backdrop-filter: blur(14px);
    transition: .3s;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.site-nav.scrolled {
    background: rgba(52, 8, 19, .97);
    padding: 5px 0
}

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

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 10px 12px !important
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-light) !important
}

.btn-gold {
    background: linear-gradient(135deg, #c99a31, #ebce76);
    border: 1px solid #e1bb59;
    color: #38150b;
    font-weight: 700;
    letter-spacing: .03em;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e3bd5a, #f6df98);
    color: #2b0d06
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--maroon);
    font-weight: 600;
    border-radius: 4px
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #2b0d06
}

.hero-section {
    min-height: 100vh;
    position: relative;
    background: url('../images/hero.png') center/cover no-repeat;
    color: #fff
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(32, 1, 9, 0.92) 0%, rgba(14, 0, 3, 0.75) 46%, rgba(20, 0, 5, 0.38) 100%)
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero-content h1 {
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    line-height: .86;
    max-width: 820px;
    margin-bottom: 28px
}

.hero-content h1 span {
    color: var(--gold-light)
}

.hero-text {
    font-size: 1rem;
    line-height: 1.9;
    max-width: 600px;
    color: rgba(255, 255, 255, .86)
}

.hero-location {
    font-size: .82rem;
    letter-spacing: .08em;
    color: var(--gold-light)
}

.about-section {
    background: var(--cream)
}

.video-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(55, 10, 20, .2);
    background: #1d0b0e
}

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

.video-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(60, 9, 22, .82);
    color: #fff;
    padding: 10px 14px;
    border: 1px solid rgba(242, 217, 139, .4);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase
}

.about-section p:not(.section-kicker) {
    line-height: 1.95;
    color: var(--muted);
    margin-bottom: 18px
}

.text-link {
    color: var(--maroon);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px
}

.text-link:hover {
    color: var(--wine)
}

.dark-section {
    background: linear-gradient(135deg, #3a0917, #69162c);
    color: #fff
}

.dark-section .section-heading h2 {
    color: #fff
}

.dark-section .section-heading h2 span {
    color: var(--gold-light)
}

.dark-section .section-heading>p:last-child {
    color: rgba(255, 255, 255, .7)
}

.collection-card {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: var(--text);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .14);
    transition: transform .35s ease, box-shadow .35s ease
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .23)
}

.collection-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block
}

.collection-card>div {
    padding: 22px
}

.collection-card h3 {
    font-size: 1.7rem;
    color: var(--maroon);
    margin-bottom: 7px
}

.collection-card p {
    font-size: .85rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0
}

.gallery-section {
    background: #fff
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr .95fr;
    grid-auto-rows: 300px;
    gap: 18px
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: #eee;
    position: relative
}

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

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

.gallery-tall {
    grid-row: span 2
}

.video-section {
    background: var(--cream)
}

.video-showcase {
    background: linear-gradient(135deg, #fff, #f7ecdb);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 18px 60px rgba(63, 21, 10, .08)
}

.video-showcase p:not(.section-kicker) {
    color: var(--muted);
    line-height: 1.8
}

.showcase-video {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 16px;
    background: #1d0b0e
}

.why-section {
    background: #fff
}

.feature-card {
    text-align: center;
    height: 100%;
    padding: 34px 20px;
    border: 1px solid #eee1d0;
    border-radius: 16px;
    background: #fff;
    transition: .3s
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(53, 17, 11, .08);
    border-color: var(--border)
}

.feature-icon {
    width: 54px;
    height: 54px;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: 0 auto 17px;
    font-size: 1.4rem
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--maroon);
    margin-bottom: 8px
}

.feature-card p {
    font-size: .82rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0
}

.instagram-section {
    background: linear-gradient(180deg, #fff, var(--cream))
}

.instagram-card {
    padding: 70px 30px;
    background: linear-gradient(135deg, #4b0d1d, #761a35);
    border-radius: 24px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.instagram-card:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(242, 217, 139, .18);
    border-radius: 50%;
    top: -180px;
    right: -80px
}

.instagram-mark {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 8px
}

.instagram-card h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    margin-bottom: 12px
}

.instagram-card h2 span {
    color: var(--gold-light)
}

.instagram-card>p:not(.section-kicker) {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8
}

.contact-section {
    background: var(--cream)
}

.contact-intro {
    color: var(--muted);
    line-height: 1.8;
    max-width: 600px
}

.contact-list {
    margin-top: 28px;
    display: grid;
    gap: 18px
}

.contact-list>div {
    display: flex;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eadcc9
}

.contact-list strong {
    min-width: 80px;
    color: var(--maroon)
}

.contact-list span,
.contact-list a {
    color: var(--muted);
    text-decoration: none;
    line-height: 1.6
}

.contact-list a:hover {
    color: var(--maroon)
}



.map-placeholder:before {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px dashed rgba(242, 217, 139, .28);
    border-radius: 16px
}

.map-inner {
    text-align: center;
    color: #fff;
    padding: 30px;
    position: relative;
    z-index: 1
}

.map-pin {
    display: inline-grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 18px
}

.map-inner h3 {
    font-size: 2.3rem
}

.map-inner p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7
}

.site-footer {
    background: #360505;
    color: #fff;
    padding: 55px 0 20px
}

.footer-logo {
    height: 74px;
    max-width: 220px;
    object-fit: contain;
    object-position: left center
}

.site-footer h3 {
    font-size: 1.7rem;
    color: var(--gold-light)
}

.site-footer p {
    font-size: .8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6)
}

.footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap
}

.footer-actions a {
    color: var(--gold-light);
    text-decoration: none;
    border: 1px solid rgba(242, 217, 139, .3);
    padding: 9px 13px;
    border-radius: 4px;
    font-size: .8rem
}

.footer-actions a:hover {
    background: rgba(242, 217, 139, .08)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 35px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    font-size: .72rem;
    color: rgba(255, 255, 255, .48)
}

.footer-bottom a {
    color: var(--gold-light);
    text-decoration: none
}

.modal-content img {
    max-height: 85vh;
    object-fit: contain
}
/* Google Map */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
  border-radius: 18px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  display: block;
}


/* Mobile Responsive */
@media (max-width: 767px) {

  .map-placeholder {
    min-height: 350px;
    height: 350px;
  }

  .map-placeholder iframe {
    min-height: 350px;
    height: 350px;
  }

}

@media(max-width:991.98px) {
    .site-nav {
        background: rgba(45, 8, 19, .97)
    }

    .navbar-collapse {
        padding: 15px 0
    }

    .navbar-nav .nav-link {
        padding: 8px 0 !important
    }

    .hero-section {
        background-position: center
    }

    .hero-content h1 {
        max-width: 680px
    }

    .about-video {
        height: 520px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 280px
    }

    .gallery-tall {
        grid-row: span 1
    }

    .video-showcase {
        padding: 30px
    }

    .showcase-video {
        height: 380px
    }

    .footer-actions {
        justify-content: flex-start
    }
}

@media(max-width:575.98px) {
    .section-space {
        padding: 72px 0
    }

    .brand-logo {
        height: 48px
    }

    .hero-content .min-vh-100 {
        min-height: 100svh !important
    }

    .hero-content h1 {
        font-size: 3.25rem;
        line-height: .88
    }

    .hero-text {
        font-size: .9rem
    }

    .hero-location {
        font-size: .7rem;
        line-height: 1.6
    }

    .about-video {
        height: 460px
    }

    .collection-card img {
        height: 340px
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px
    }

    .video-showcase {
        padding: 24px
    }

    .showcase-video {
        height: 420px
    }

    .contact-list>div {
        display: block
    }

    .contact-list strong {
        display: block;
        margin-bottom: 5px
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 6px
    }

    .instagram-card {
        padding: 55px 22px
    }
}