:root {
    --black: #080808;
    --black-soft: #0e0e0e;
    --panel: #131313;
    --panel-light: #181818;

    --gold: #b58a55;
    --gold-light: #d0aa78;
    --gold-dark: #765631;

    --cream: #eee8df;
    --text: #c8c1b8;
    --muted: #888078;

    --border: rgba(181, 138, 85, 0.35);

    --heading-font: "Cormorant Garamond", Georgia, serif;
    --body-font: "Montserrat", Arial, sans-serif;

    --max-width: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(181, 138, 85, 0.06),
            transparent 25%
        ),
        var(--black);

    color: var(--text);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--cream);
}

h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

h1 span {
    color: var(--gold-light);
    display: block;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
}

h3 {
    font-size: 1.7rem;
    text-transform: uppercase;
}

p {
    color: var(--text);
}

.eyebrow {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-intro {
    max-width: 620px;
    margin: 20px auto 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border: 1px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-family: var(--heading-font);
    font-size: 1rem;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
    color: #090909;
}

.button-gold:hover {
    background: var(--cream);
    border-color: var(--cream);
}

.button-outline {
    background: transparent;
    color: var(--gold-light);
}

.button-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    width: 200px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    position: relative;
    color: #d1cac0;
    font-family: var(--heading-font);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--gold-light);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.header-book {
    white-space: nowrap;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 28px;
    height: 1px;
    margin: 7px auto;
    background: var(--gold-light);
}

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 60px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-content {
    max-width: 700px;
}

.hero-description {
    max-width: 620px;
    margin-top: 25px;
    font-size: 1.02rem;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}

.ornament-line {
    width: 190px;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--gold),
        transparent
    );
    margin: 28px 0;
}

.hero-art {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-frame {
    position: relative;
    width: min(500px, 90%);
    aspect-ratio: 0.82;
    border: 2px solid var(--gold);
    border-radius: 50% 50% 44% 44%;
    padding: 10px;
    box-shadow:
        0 0 0 4px rgba(181, 138, 85, 0.1),
        0 25px 80px rgba(0, 0, 0, 0.65);
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(208, 170, 120, 0.4);
    border-radius: inherit;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: inherit;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.2),
            transparent
        ),
        url("../images/hero-dog.png")
        center / cover no-repeat;

    background-color: #111;
}

.premium-badge {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 135px;
    height: 135px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.premium-badge span {
    color: var(--gold-light);
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

.premium-badge strong {
    color: var(--gold);
    font-size: 1.7rem;
    margin: 3px 0;
}

.intro-section {
    padding: 100px 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 70px;
    align-items: center;
}

.intro-image {
    height: 430px;
    border: 1px solid var(--border);
    padding: 8px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #171717,
            #0d0d0d
        );
    border: 1px solid rgba(181, 138, 85, 0.18);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
}

.intro-content p:not(.eyebrow) {
    margin-bottom: 20px;
}

.small-gold-line {
    width: 90px;
    height: 1px;
    background: var(--gold);
    margin: 25px 0;
}

.intro-content .button {
    margin-top: 10px;
}

.services-preview {
    padding: 110px 0;
    background: var(--black);
}

.heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.heading-decoration span:not(.diamond) {
    width: 70px;
    height: 1px;
    background: var(--gold);
}

.heading-decoration .diamond {
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-card {
    min-height: 380px;
    padding: 42px 28px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: var(--panel);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover {
    background: var(--panel-light);
    transform: translateY(-5px);
}

.service-icon {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 3rem;
}

.service-card h3 {
    margin: 10px 0 15px;
}

.service-card p {
    font-size: 0.88rem;
    line-height: 1.8;
    flex-grow: 1;
}

.service-price {
    color: var(--gold-light);
    margin: 20px 0 12px;
    font-family: var(--heading-font);
    font-size: 1.25rem;
}

.service-card > a {
    color: var(--gold-light);
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.service-card > a:hover {
    color: var(--cream);
}

.services-button,
.gallery-button {
    text-align: center;
    margin-top: 50px;
}

.gallery-preview {
    padding: 110px 0;
    background: var(--black-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 430px;
    border: 1px solid var(--border);
    padding: 7px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.membership-banner {
    padding: 65px 0;
    background:
        linear-gradient(
            90deg,
            rgba(181, 138, 85, 0.04),
            rgba(181, 138, 85, 0.09),
            rgba(181, 138, 85, 0.04)
        ),
        var(--black);
    border-bottom: 1px solid var(--border);
}

.membership-inner {
    min-height: 160px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 35px;
    border: 1px solid var(--border);
    padding: 35px 45px;
}

.membership-icon {
    color: var(--gold);
    font-size: 3rem;
}

.membership-copy .eyebrow {
    margin-bottom: 7px;
}

.membership-copy h2 {
    font-size: 2.6rem;
}

.membership-copy p:last-child {
    margin-top: 8px;
}

.shop-preview {
    padding: 90px 0;
    background: var(--panel);
}

.shop-preview-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.shop-preview h2 {
    max-width: 750px;
}

.shop-preview p:last-child {
    max-width: 750px;
    margin-top: 18px;
}

.final-cta {
    padding: 110px 0;
    text-align: center;
    background:
        radial-gradient(
            circle,
            rgba(181, 138, 85, 0.1),
            transparent 50%
        ),
        var(--black);
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta .button {
    margin-top: 32px;
}

.site-footer {
    padding-top: 70px;
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand img {
    width: 220px;
    margin-bottom: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h4 {
    color: var(--gold-light);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column p,
.footer-brand p {
    color: var(--muted);
    font-size: 0.83rem;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(181, 138, 85, 0.18);
}

.footer-bottom p,
.footer-bottom a {
    color: #6c655e;
    font-size: 0.75rem;
}

.footer-bottom div {
    display: flex;
    gap: 30px;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

@media (max-width: 1050px) {

    .header-book {
        display: none;
    }

    .site-nav {
        gap: 20px;
    }

    .hero-grid {
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {

    .header-inner {
        min-height: 85px;
    }

    .logo {
        width: 165px;
    }

    .mobile-menu-button {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px 5% 25px;
        background: #090909;
        border-bottom: 1px solid var(--border);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 17px 5px;
        border-bottom: 1px solid rgba(181, 138, 85, 0.12);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .ornament-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-art {
        min-height: 520px;
    }

    .hero-frame {
        max-width: 410px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 480px;
    }

    .membership-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .shop-preview-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .shop-preview h2,
    .shop-preview p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {

    h1 {
        font-size: 3.1rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-art {
        min-height: 430px;
    }

    .premium-badge {
        width: 110px;
        height: 110px;
        right: -5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .intro-image,
    .gallery-item {
        height: 350px;
    }

    .membership-inner {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 25px 0;
        text-align: center;
    }
}

/* =====================================================
   ABOUT PAGE
===================================================== */


/* PAGE HERO */

.page-hero {
    min-height: 410px;

    display: flex;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(181, 138, 85, 0.10),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #0b0b0b,
            #080808
        );

    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    padding: 80px 0;
}

.page-hero h1 {
    font-size: clamp(3.8rem, 8vw, 6.5rem);
}

.page-hero .heading-decoration {
    margin: 28px 0;
}

.page-hero p:last-child {
    max-width: 620px;

    margin: 0 auto;

    font-family: var(--heading-font);
    font-size: 1.25rem;
    letter-spacing: 0.03em;
}


/* =====================================================
   ABOUT STORY
===================================================== */

.about-story {
    padding: 120px 0;

    background: var(--black-soft);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;

    align-items: center;

    gap: 90px;
}

.about-story-image {
    position: relative;

    padding: 0 25px 25px 0;
}

.about-image-frame {
    position: relative;

    height: 560px;

    padding: 8px;

    border: 1px solid var(--gold);

    z-index: 2;
}

.about-image-accent {
    position: absolute;

    width: calc(100% - 25px);
    height: calc(100% - 25px);

    right: 0;
    bottom: 0;

    border: 1px solid rgba(181, 138, 85, 0.35);

    z-index: 1;
}

.about-story-content p:not(.eyebrow) {
    margin-bottom: 22px;
}

.about-story-content .button {
    margin-top: 15px;
}


/* =====================================================
   VALUES
===================================================== */

.about-values {
    padding: 115px 0;

    background: var(--black);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.value-card {
    position: relative;

    min-height: 390px;

    padding: 45px 30px;

    text-align: center;

    background: var(--panel);

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--panel-light);
}

.value-number {
    position: absolute;

    top: 12px;
    right: 18px;

    color: rgba(181, 138, 85, 0.13);

    font-family: var(--heading-font);
    font-size: 4rem;

    line-height: 1;
}

.value-icon {
    width: 80px;
    height: 80px;

    margin: 20px auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);
    border-radius: 50%;

    color: var(--gold-light);

    font-family: var(--heading-font);
    font-size: 2.2rem;
}

.value-card h3 {
    margin-bottom: 18px;
}

.value-card p {
    font-size: 0.88rem;
    line-height: 1.9;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-us {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(181, 138, 85, 0.07),
            transparent 35%
        ),
        var(--black-soft);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr;

    align-items: center;

    gap: 90px;
}

.why-us-intro {
    max-width: 650px;

    margin-bottom: 35px;
}

.benefit-list {
    display: grid;

    gap: 18px;
}

.benefit-item {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(181, 138, 85, 0.18);
}

.benefit-tick {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);
    border-radius: 50%;

    color: var(--gold-light);

    font-family: var(--heading-font);
}

.benefit-item h4 {
    color: var(--gold-light);

    font-size: 1.25rem;
    text-transform: uppercase;

    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.85rem;
}

.why-us-visual {
    display: flex;
    justify-content: center;
}

.why-us-frame {
    position: relative;

    width: min(430px, 100%);

    padding: 13px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.65),
        0 0 70px rgba(181, 138, 85, 0.05);
}

.why-us-frame::before {
    content: "";

    position: absolute;
    inset: 7px;

    border: 1px solid rgba(208, 170, 120, 0.35);
    border-radius: 50%;

    pointer-events: none;
}

.why-us-frame img {
    width: 100%;
    aspect-ratio: 1;

    object-fit: cover;

    border-radius: 50%;
}


/* =====================================================
   TEAM / OWNER
===================================================== */

.about-team {
    padding: 110px 0;

    background: var(--panel);

    border-top: 1px solid var(--border);
}

.about-team-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;

    align-items: center;

    gap: 80px;
}

.team-photo {
    height: 480px;

    padding: 8px;

    border: 1px solid var(--border);
}

.team-content p:not(.eyebrow) {
    margin-bottom: 20px;
}

.placeholder-note {
    color: var(--gold-light) !important;

    font-family: var(--heading-font);

    font-style: italic;
}


/* =====================================================
   ABOUT PAGE RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-grid,
    .why-us-grid,
    .about-team-grid {
        gap: 50px;
    }
}


@media (max-width: 820px) {

    .page-hero {
        min-height: 330px;
    }

    .about-story {
        padding: 85px 0;
    }

    .about-story-grid,
    .why-us-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        max-width: 550px;

        margin: 0 auto;
    }

    .about-story-content,
    .team-content {
        text-align: center;
    }

    .about-story-content .small-gold-line,
    .team-content .small-gold-line {
        margin-left: auto;
        margin-right: auto;
    }

    .why-us-visual {
        grid-row: 1;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-photo {
        max-width: 550px;
        width: 100%;

        margin: 0 auto;
    }
}


@media (max-width: 560px) {

    .page-hero h1 {
        font-size: 3.7rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-image-frame {
        height: 420px;
    }

    .why-us-frame {
        width: 330px;
    }

    .team-photo {
        height: 400px;
    }
}

/* =====================================================
   REAL GALLERY IMAGES
===================================================== */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* =====================================================
   SERVICES PAGE
===================================================== */

.services-intro {
    padding: 90px 0;
    text-align: center;
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
}

.services-intro-inner {
    max-width: 800px;
}

.services-intro-inner .small-gold-line {
    margin-left: auto;
    margin-right: auto;
}

.services-intro-inner > p:not(.eyebrow) {
    margin: 20px auto 0;
    max-width: 700px;
}

.pricing-note-top {
    color: var(--gold-light) !important;
    font-family: var(--heading-font);
    font-style: italic;
}


/* MAIN SERVICE CARDS */

.services-main {
    padding: 110px 0;
    background: var(--black);
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-full-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 620px;
    padding: 42px 32px;
    background:
        linear-gradient(
            180deg,
            rgba(181, 138, 85, 0.035),
            transparent 45%
        ),
        var(--panel);
    border: 1px solid var(--border);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-full-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background:
        linear-gradient(
            180deg,
            rgba(181, 138, 85, 0.07),
            transparent 45%
        ),
        var(--panel-light);
}

.service-full-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 28px;
}

.service-label {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.67rem;
    margin-bottom: 8px;
}

.service-full-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-includes li {
    position: relative;
    padding: 9px 0 9px 22px;
    border-bottom: 1px solid rgba(181, 138, 85, 0.12);
    font-size: 0.82rem;
    color: var(--text);
}

.service-includes li::before {
    content: "◇";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.service-card-price {
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.service-full-card .button {
    width: 100%;
}


/* PRICING TABLE */

.pricing-section {
    padding: 110px 0;
    background: var(--black-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
}

.pricing-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: var(--panel);
}

.pricing-table th {
    padding: 22px 20px;
    background: #0d0d0d;
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-table td {
    padding: 24px 20px;
    text-align: center;
    color: var(--cream);
    border-right: 1px solid rgba(181, 138, 85, 0.2);
    border-bottom: 1px solid rgba(181, 138, 85, 0.2);
}

.pricing-table td:first-child {
    text-align: left;
}

.pricing-table td strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 1.25rem;
}

.pricing-table td span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
}

.pricing-smallprint {
    margin-top: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 0.75rem;
}


/* ADD-ONS */

.addons-section {
    padding: 110px 0;
    background: var(--black);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.addon-item {
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--border);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.addon-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.addon-item h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.addon-item p {
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.addon-item span {
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 1.15rem;
}


/* NOTICE */

.service-notice {
    padding: 70px 0;
    background:
        linear-gradient(
            90deg,
            rgba(181, 138, 85, 0.05),
            rgba(181, 138, 85, 0.10),
            rgba(181, 138, 85, 0.05)
        ),
        var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-notice-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    max-width: 950px;
}

.notice-icon {
    width: 55px;
    height: 55px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 1.8rem;
}

.service-notice h3 {
    color: var(--gold-light);
    margin-bottom: 10px;
}

.service-notice p {
    margin-bottom: 8px;
    font-size: 0.88rem;
}


/* RESPONSIVE SERVICES PAGE */

@media (max-width: 1050px) {

    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .services-full-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .service-full-card {
        min-height: auto;
    }

    .service-notice-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .notice-icon {
        margin: 0 auto;
    }
}

/* =====================================================
   GALLERY PAGE
===================================================== */

.gallery-page-intro {
    padding: 90px 0;

    background: var(--black-soft);

    text-align: center;

    border-bottom: 1px solid var(--border);
}

.gallery-page-intro-inner {
    max-width: 760px;
}

.gallery-page-intro-inner .small-gold-line {
    margin-left: auto;
    margin-right: auto;
}

.gallery-page-intro p:not(.eyebrow) {
    margin-top: 18px;
}


/* =====================================================
   MAIN GALLERY
===================================================== */

.full-gallery {
    padding: 110px 0;

    background: var(--black);
}

.full-gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.full-gallery-item {
    position: relative;

    height: 480px;

    padding: 7px;

    border: 1px solid var(--border);

    background: var(--panel);

    overflow: hidden;

    cursor: pointer;

    appearance: none;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.full-gallery-item:hover {
    transform: translateY(-6px);

    border-color: var(--gold);
}

.full-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.full-gallery-item:hover img {
    transform: scale(1.05);
}


/* IMAGE OVERLAY */

.gallery-overlay {
    position: absolute;

    inset: 7px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0) 45%
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.full-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 1.1rem;

    text-transform: uppercase;

    letter-spacing: 0.13em;
}


/* =====================================================
   GALLERY PLACEHOLDERS
===================================================== */

.gallery-coming-soon {
    height: 480px;

    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at center,
            rgba(181, 138, 85, 0.07),
            transparent 55%
        ),
        var(--panel);
}

.gallery-coming-soon > div {
    max-width: 260px;
}

.gallery-paw {
    display: block;

    color: var(--gold-light);

    font-size: 2.8rem;

    margin-bottom: 20px;
}

.gallery-coming-soon h3 {
    margin-bottom: 12px;
}

.gallery-coming-soon p {
    color: var(--muted);

    font-size: 0.82rem;
}


/* =====================================================
   FEATURE SECTION
===================================================== */

.gallery-feature {
    padding: 110px 0;

    background: var(--black-soft);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gallery-feature-grid {
    display: grid;

    grid-template-columns: 0.9fr 1fr;

    align-items: center;

    gap: 80px;
}

.gallery-feature-image {
    height: 540px;

    padding: 8px;

    border: 1px solid var(--gold);
}

.gallery-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.gallery-feature-content p:not(.eyebrow) {
    margin-bottom: 20px;
}

.gallery-feature-content .button {
    margin-top: 12px;
}


/* =====================================================
   SOCIAL SECTION
===================================================== */

.social-gallery-section {
    padding: 100px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(181, 138, 85, 0.08),
            transparent 45%
        ),
        var(--panel);
}

.social-gallery-inner {
    max-width: 760px;
}

.social-gallery-inner p:not(.eyebrow) {
    margin: 25px auto 30px;

    max-width: 620px;
}


/* =====================================================
   LIGHTBOX
===================================================== */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(8px);
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox img {
    max-width: min(1000px, 92vw);
    max-height: 88vh;

    object-fit: contain;

    border: 1px solid var(--gold);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 35px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    background: #0b0b0b;

    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 2rem;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.lightbox-close:hover {
    background: var(--gold);

    color: var(--black);
}


/* =====================================================
   GALLERY RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .full-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-feature-grid {
        gap: 50px;
    }
}


@media (max-width: 820px) {

    .gallery-feature-grid {
        grid-template-columns: 1fr;
    }

    .gallery-feature-image {
        max-width: 550px;
        width: 100%;

        margin: 0 auto;
    }

    .gallery-feature-content {
        text-align: center;
    }

    .gallery-feature-content .small-gold-line {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 600px) {

    .full-gallery-grid {
        grid-template-columns: 1fr;
    }

    .full-gallery-item,
    .gallery-coming-soon {
        height: 420px;
    }

    .gallery-feature-image {
        height: 430px;
    }

    .gallery-lightbox {
        padding: 20px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }
}

/* =====================================================
   MEMBERSHIP PAGE
===================================================== */


/* MEMBERSHIP HERO */

.membership-hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(181, 138, 85, 0.11),
            transparent 35%
        ),
        var(--black);

    border-bottom: 1px solid var(--border);

    overflow: hidden;
}

.membership-hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    align-items: center;

    gap: 70px;

    padding-top: 80px;
    padding-bottom: 80px;
}

.membership-hero-copy {
    max-width: 650px;

    margin-top: 25px;

    font-size: 1.02rem;
    line-height: 1.9;
}

.membership-hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 35px;
}


/* CREST */

.membership-crest {
    display: flex;

    align-items: center;
    justify-content: center;
}

.membership-crest-ring {
    position: relative;

    width: min(470px, 100%);

    aspect-ratio: 1;

    padding: 15px;

    border: 2px solid var(--gold);

    border-radius: 50%;

    box-shadow:
        0 0 0 7px rgba(181, 138, 85, 0.07),
        0 30px 90px rgba(0, 0, 0, 0.7);
}

.membership-crest-ring::before {
    content: "";

    position: absolute;

    inset: 9px;

    border: 1px solid rgba(208, 170, 120, 0.35);

    border-radius: 50%;

    pointer-events: none;
}

.membership-crest-ring img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}

.membership-crest-text {
    position: absolute;

    left: 50%;
    bottom: -35px;

    width: 220px;

    padding: 14px 18px;

    transform: translateX(-50%);

    text-align: center;

    background: #0b0b0b;

    border: 1px solid var(--gold);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
}

.membership-crest-text span {
    display: block;

    color: var(--gold-light);

    font-family: var(--heading-font);

    text-transform: uppercase;

    font-size: 0.67rem;

    letter-spacing: 0.12em;
}

.membership-crest-text strong {
    display: block;

    margin: 3px 0;

    color: var(--cream);

    font-family: var(--heading-font);

    font-size: 1.8rem;
}


/* INTRO */

.club-intro {
    padding: 100px 0;

    text-align: center;

    background: var(--black-soft);

    border-bottom: 1px solid var(--border);
}

.club-intro-inner {
    max-width: 800px;
}

.club-intro .heading-decoration {
    margin: 25px 0;
}

.club-intro p:not(.eyebrow) {
    max-width: 700px;

    margin: 0 auto 18px;
}


/* BENEFITS */

.membership-benefits {
    padding: 115px 0;

    background: var(--black);
}

.membership-benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.membership-benefit-card {
    min-height: 320px;

    padding: 38px 30px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            rgba(181, 138, 85, 0.045),
            transparent 50%
        ),
        var(--panel);

    border: 1px solid var(--border);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.membership-benefit-card:hover {
    transform: translateY(-5px);

    border-color: var(--gold);
}

.membership-benefit-icon {
    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 2rem;
}

.membership-benefit-card h3 {
    margin-bottom: 15px;
}

.membership-benefit-card p {
    font-size: 0.85rem;

    line-height: 1.85;
}


/* PLAN */

.membership-plan-section {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(181, 138, 85, 0.10),
            transparent 40%
        ),
        var(--black-soft);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.membership-plan-card {
    position: relative;

    max-width: 750px;

    margin: 0 auto;

    padding: 65px 70px;

    text-align: center;

    background: #0d0d0d;

    border: 1px solid var(--gold);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.65);
}

.membership-plan-card::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 1px solid rgba(181, 138, 85, 0.25);

    pointer-events: none;
}

.membership-plan-top {
    position: relative;

    z-index: 2;
}

.membership-plan-subtitle {
    max-width: 560px;

    margin: 20px auto 0;
}

.membership-price {
    position: relative;

    z-index: 2;

    margin: 40px 0;

    display: flex;

    align-items: flex-end;
    justify-content: center;
}

.membership-currency {
    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 2.5rem;

    margin-right: 5px;

    margin-bottom: 12px;
}

.membership-price strong {
    color: var(--cream);

    font-family: var(--heading-font);

    font-size: 6rem;

    font-weight: 500;

    line-height: 0.8;
}

.membership-frequency {
    color: var(--muted);

    font-size: 0.8rem;

    margin-left: 10px;

    margin-bottom: 10px;
}

.membership-plan-features {
    position: relative;

    z-index: 2;

    max-width: 560px;

    margin: 0 auto 35px;

    list-style: none;

    text-align: left;
}

.membership-plan-features li {
    position: relative;

    padding: 13px 0 13px 30px;

    border-bottom: 1px solid rgba(181, 138, 85, 0.14);

    font-size: 0.88rem;
}

.membership-plan-features li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--gold-light);
}

.membership-join-button {
    position: relative;

    z-index: 2;

    min-width: 230px;
}

.membership-placeholder-note {
    position: relative;

    z-index: 2;

    margin-top: 22px;

    color: var(--muted);

    font-size: 0.7rem;

    font-style: italic;
}


/* COMPARISON */

.membership-comparison {
    padding: 110px 0;

    background: var(--black);
}

.comparison-table-wrap {
    overflow-x: auto;

    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;

    min-width: 700px;

    border-collapse: collapse;

    background: var(--panel);
}

.comparison-table th {
    padding: 24px 20px;

    background: #0d0d0d;

    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 1.05rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.comparison-table td {
    padding: 22px 20px;

    text-align: center;

    border-right: 1px solid rgba(181, 138, 85, 0.18);
    border-bottom: 1px solid rgba(181, 138, 85, 0.18);

    color: var(--text);
}

.comparison-table td:first-child {
    text-align: left;

    color: var(--cream);

    font-family: var(--heading-font);

    font-size: 1.1rem;
}

.club-check {
    color: var(--gold-light) !important;

    font-size: 1.2rem;

    font-weight: 600;
}


/* HOW IT WORKS */

.membership-how {
    padding: 110px 0;

    background: var(--black-soft);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.membership-steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.membership-step {
    position: relative;

    min-height: 270px;

    padding: 40px 30px;

    text-align: center;

    border: 1px solid var(--border);

    background: var(--panel);
}

.membership-step span {
    display: block;

    margin-bottom: 15px;

    color: rgba(181, 138, 85, 0.35);

    font-family: var(--heading-font);

    font-size: 3rem;
}

.membership-step h3 {
    margin-bottom: 12px;
}

.membership-step p {
    font-size: 0.84rem;
}


/* FAQ */

.membership-faq {
    padding: 110px 0;

    background: var(--black);
}

.membership-faq-inner {
    max-width: 900px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);

    background: var(--panel);
}

.faq-item summary {
    position: relative;

    padding: 24px 55px 24px 25px;

    cursor: pointer;

    color: var(--cream);

    font-family: var(--heading-font);

    font-size: 1.25rem;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 25px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--gold-light);

    font-size: 1.5rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 25px 25px;

    max-width: 760px;

    font-size: 0.85rem;

    line-height: 1.9;
}


/* RESPONSIVE MEMBERSHIP PAGE */

@media (max-width: 1050px) {

    .membership-hero-grid {
        gap: 40px;
    }

    .membership-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 820px) {

    .membership-hero {
        min-height: auto;
    }

    .membership-hero-grid {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 70px;
        padding-bottom: 100px;
    }

    .membership-hero-content {
        max-width: 700px;

        margin: 0 auto;
    }

    .membership-hero-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .membership-hero-content .ornament-line {
        margin-left: auto;
        margin-right: auto;
    }

    .membership-hero-buttons {
        justify-content: center;
    }

    .membership-crest-ring {
        width: 390px;
    }

    .membership-steps {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .membership-benefits-grid {
        grid-template-columns: 1fr;
    }

    .membership-plan-card {
        padding: 50px 25px;
    }

    .membership-price strong {
        font-size: 5rem;
    }

    .membership-crest-ring {
        width: 320px;
    }

    .membership-hero-buttons {
        flex-direction: column;
    }

    .membership-hero-buttons .button {
        width: 100%;
    }
}

/* =====================================================
   SHOP PAGE
===================================================== */

.shop-page-intro {
    padding: 95px 0;
    text-align: center;
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
}

.shop-page-intro-inner {
    max-width: 800px;
}

.shop-page-intro-inner .small-gold-line {
    margin-left: auto;
    margin-right: auto;
}

.shop-page-intro p:not(.eyebrow) {
    max-width: 700px;
    margin: 18px auto 0;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    padding: 115px 0;
    background: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 610px;
    background: var(--panel);
    border: 1px solid var(--border);
    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}


/* PRODUCT IMAGE */

.product-image {
    position: relative;
    height: 270px;
    padding: 8px;
    border-bottom: 1px solid var(--border);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    background:
        radial-gradient(
            circle at center,
            rgba(181, 138, 85, 0.09),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            #171717,
            #0c0c0c
        );

    color: var(--muted);

    text-transform: uppercase;
    letter-spacing: 0.15em;

    font-size: 0.67rem;
}

.product-icon {
    color: var(--gold-light);
    font-size: 3.5rem;
    font-family: var(--heading-font);
}

.product-badge {
    position: absolute;
    top: 22px;
    left: 0;

    padding: 7px 15px;

    background: var(--gold);

    color: var(--black);

    font-size: 0.6rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* PRODUCT TEXT */

.product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    padding: 30px;
}

.product-category {
    color: var(--gold-light);

    text-transform: uppercase;
    letter-spacing: 0.2em;

    font-size: 0.64rem;

    margin-bottom: 8px;
}

.product-content h3 {
    font-size: 1.75rem;

    margin-bottom: 15px;
}

.product-description {
    font-size: 0.83rem;
    line-height: 1.85;

    flex-grow: 1;
}

.product-bottom {
    margin-top: 28px;
}

.product-price {
    display: block;

    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 1.45rem;

    margin-bottom: 16px;
}

.product-button {
    width: 100%;
    min-height: 48px;

    border: 1px solid var(--border);

    background: transparent;

    color: var(--muted);

    font-family: var(--heading-font);

    text-transform: uppercase;
    letter-spacing: 0.12em;

    cursor: not-allowed;
}

.product-button-gold {
    border-color: var(--gold);
    color: var(--gold-light);
}


/* =====================================================
   GOODIE BAG PRODUCT
===================================================== */

.goodie-bag-card {
    border-color: var(--gold);

    background:
        radial-gradient(
            circle at top,
            rgba(181, 138, 85, 0.13),
            transparent 40%
        ),
        var(--panel);
}

.goodie-feature-label {
    position: absolute;

    top: 15px;
    right: -40px;

    width: 165px;

    padding: 7px 0;

    text-align: center;

    transform: rotate(45deg);

    background: var(--gold);

    color: var(--black);

    font-size: 0.55rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    z-index: 3;
}

.goodie-crown {
    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 4rem;
}

.goodie-list {
    list-style: none;

    margin-top: 18px;
}

.goodie-list li {
    position: relative;

    padding: 7px 0 7px 22px;

    border-bottom: 1px solid rgba(181, 138, 85, 0.13);

    color: var(--text);

    font-size: 0.78rem;
}

.goodie-list li::before {
    content: "◇";

    position: absolute;
    left: 0;

    color: var(--gold);
}


/* =====================================================
   PRODUCT QUALITY SECTION
===================================================== */

.shop-quality-section {
    padding: 110px 0;

    background: var(--black-soft);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.shop-quality-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 90px;

    align-items: center;
}

.shop-quality-copy p:not(.eyebrow) {
    margin-bottom: 20px;
}

.shop-quality-points {
    display: grid;
    gap: 14px;
}

.quality-point {
    display: grid;

    grid-template-columns: auto 1fr;

    gap: 22px;

    padding: 25px;

    border: 1px solid var(--border);

    background: var(--panel);
}

.quality-point > span {
    color: rgba(181, 138, 85, 0.45);

    font-family: var(--heading-font);

    font-size: 2rem;
}

.quality-point h3 {
    margin-bottom: 6px;

    font-size: 1.35rem;
}

.quality-point p {
    font-size: 0.8rem;
}


/* =====================================================
   GOODIE BAG FEATURE
===================================================== */

.goodie-feature-section {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(181, 138, 85, 0.1),
            transparent 30%
        ),
        var(--black);
}

.goodie-feature-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 90px;

    align-items: center;
}

.goodie-feature-content p:not(.eyebrow) {
    margin-bottom: 20px;
}

.goodie-feature-price {
    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 2rem;

    margin: 30px 0 25px;
}

.goodie-feature-price span {
    color: var(--muted);

    font-family: var(--body-font);

    font-size: 0.75rem;
}


/* BOX VISUAL */

.goodie-box-visual {
    display: flex;

    align-items: center;
    justify-content: center;
}

.goodie-box {
    position: relative;

    width: min(400px, 100%);

    min-height: 360px;

    padding: 55px 35px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #181818,
            #090909
        );

    border: 2px solid var(--gold);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(181, 138, 85, 0.05);
}

.goodie-box::before {
    content: "";

    position: absolute;

    inset: 9px;

    border: 1px solid rgba(181, 138, 85, 0.32);
}

.goodie-box-crown {
    color: var(--gold-light);

    font-size: 4rem;

    margin-bottom: 15px;
}

.goodie-box p {
    color: var(--gold-light);

    font-family: var(--heading-font);

    text-transform: uppercase;

    letter-spacing: 0.18em;

    font-size: 1rem;
}

.goodie-box strong {
    color: var(--cream);

    font-family: var(--heading-font);

    font-size: 2.6rem;

    font-weight: 500;

    line-height: 1;

    margin: 8px 0 18px;
}

.goodie-box > span:last-child {
    color: var(--muted);

    text-transform: uppercase;

    letter-spacing: 0.1em;

    font-size: 0.65rem;
}


/* =====================================================
   SHOP NOTICE
===================================================== */

.shop-notice {
    padding: 65px 0;

    background: var(--panel);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.shop-notice-inner {
    max-width: 900px;

    display: grid;

    grid-template-columns: auto 1fr;

    align-items: center;

    gap: 28px;
}

.shop-notice-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    border-radius: 50%;

    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 1.7rem;
}

.shop-notice h3 {
    color: var(--gold-light);

    margin-bottom: 6px;
}

.shop-notice p {
    font-size: 0.83rem;
}


/* =====================================================
   SHOP RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-quality-grid,
    .goodie-feature-grid {
        gap: 50px;
    }
}


@media (max-width: 820px) {

    .shop-quality-grid,
    .goodie-feature-grid {
        grid-template-columns: 1fr;
    }

    .goodie-box {
        margin-top: 20px;
    }
}


@media (max-width: 600px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: auto;
    }

    .shop-notice-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .shop-notice-icon {
        margin: 0 auto;
    }

    .goodie-feature-content {
        text-align: center;
    }

    .goodie-feature-content .small-gold-line {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =====================================================
   CONTACT PAGE
===================================================== */


/* CONTACT CARDS */

.contact-details-section {
    padding: 85px 0;

    background: var(--black-soft);

    border-bottom: 1px solid var(--border);
}

.contact-cards-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.contact-info-card {
    min-height: 290px;

    padding: 38px 30px;

    text-align: center;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at top,
            rgba(181, 138, 85, 0.07),
            transparent 50%
        ),
        var(--panel);

    border: 1px solid var(--border);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);

    border-color: var(--gold);

    background:
        radial-gradient(
            circle at top,
            rgba(181, 138, 85, 0.12),
            transparent 50%
        ),
        var(--panel-light);
}

.contact-info-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 1.8rem;
}

.contact-label {
    color: var(--gold-light);

    text-transform: uppercase;

    letter-spacing: 0.2em;

    font-size: 0.65rem;

    margin-bottom: 8px;
}

.contact-info-card h3 {
    font-size: 1.65rem;

    margin-bottom: 12px;
}

.contact-info-card > p:last-child {
    max-width: 300px;

    color: var(--muted);

    font-size: 0.8rem;
}

.contact-email-address {
    overflow-wrap: anywhere;
}


/* =====================================================
   MAIN CONTACT SECTION
===================================================== */

.contact-main-section {
    padding: 120px 0;

    background: var(--black);
}

.contact-main-grid {
    display: grid;

    grid-template-columns: 1.45fr 0.75fr;

    gap: 70px;

    align-items: start;
}

.contact-form-intro {
    max-width: 700px;

    margin-bottom: 35px;
}


/* =====================================================
   FORM
===================================================== */

.contact-form {
    padding: 40px;

    border: 1px solid var(--border);

    background: var(--panel);
}

.form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 1rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid rgba(181, 138, 85, 0.3);

    border-radius: 0;

    outline: none;

    background: #0b0b0b;

    color: var(--cream);

    font-family: var(--body-font);

    font-size: 0.9rem;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input {
    min-height: 54px;
}

.form-group select {
    min-height: 54px;
}

.form-group textarea {
    resize: vertical;

    min-height: 170px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 2px rgba(181, 138, 85, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #68625c;
}

.form-group select {
    cursor: pointer;
}

.form-group option {
    background: #111;

    color: var(--cream);
}

.form-full {
    margin-top: 22px;
}

.form-honeypot {
    display: none !important;
}

.form-consent {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin: 25px 0;

    cursor: pointer;
}

.form-consent input {
    margin-top: 5px;

    accent-color: var(--gold);
}

.form-consent span {
    color: var(--muted);

    font-size: 0.76rem;

    line-height: 1.6;
}

.contact-submit {
    min-width: 220px;
}


/* =====================================================
   CONTACT SIDEBAR
===================================================== */

.contact-sidebar {
    display: grid;

    gap: 22px;
}

.contact-sidebar-box {
    padding: 32px;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(181, 138, 85, 0.04),
            transparent
        ),
        var(--panel);
}

.contact-sidebar-box .eyebrow {
    margin-bottom: 8px;
}

.contact-sidebar-box h3 {
    font-size: 1.6rem;
}

.contact-sidebar-line {
    width: 65px;
    height: 1px;

    margin: 18px 0;

    background: var(--gold);
}

.contact-sidebar-box p {
    margin-bottom: 20px;

    font-size: 0.83rem;
}

.contact-sidebar-box .button {
    width: 100%;
}

.sidebar-contact-link {
    display: block;

    margin-bottom: 12px;

    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 1.35rem;

    transition: color 0.3s ease;
}

.sidebar-contact-link:hover {
    color: var(--cream);
}

.sidebar-email {
    font-family: var(--body-font);

    font-size: 0.75rem;

    overflow-wrap: anywhere;
}

.sidebar-placeholder {
    color: var(--muted) !important;

    font-style: italic;

    font-size: 0.75rem !important;
}


/* =====================================================
   SOCIAL SECTION
===================================================== */

.contact-social-section {
    padding: 100px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(181, 138, 85, 0.08),
            transparent 45%
        ),
        var(--black-soft);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-social-inner {
    max-width: 760px;
}

.contact-social-inner > p:not(.eyebrow) {
    max-width: 620px;

    margin: 25px auto 30px;
}

.social-placeholder-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
}


/* =====================================================
   CONTACT RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .contact-main-grid {
        grid-template-columns: 1.25fr 0.75fr;

        gap: 40px;
    }
}


@media (max-width: 820px) {

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: 240px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-sidebar-box:last-child {
        grid-column: 1 / -1;
    }
}


@media (max-width: 600px) {

    .contact-form {
        padding: 28px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .contact-sidebar-box:last-child {
        grid-column: auto;
    }

    .contact-submit {
        width: 100%;
    }

    .social-placeholder-buttons {
        flex-direction: column;
    }

    .social-placeholder-buttons .button {
        width: 100%;
    }
}

/* TEMPORARILY HIDE SHOP */

.site-nav a[href="shop.html"],
.footer-column a[href="shop.html"],
.shop-preview {
    display: none !important;
}