/* ==========================================================================
   Stone Trough Inn — Design System
   Version: 2.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Colour Palette */
    --color-charcoal:       #2c2c2c;
    --color-amber:          #c4842d;
    --color-amber-dark:     #a6701f;
    --color-amber-light:    #d4a054;
    --color-cream:          #f5f0e8;
    --color-cream-dark:     #ebe4d8;
    --color-stone:          #8a8070;
    --color-stone-light:    #a89f93;
    --color-white:          #ffffff;
    --color-black:          #000000;
    --color-overlay:        rgba(44, 44, 44, 0.85);
    --color-overlay-light:  rgba(44, 44, 44, 0.6);

    /* Semantic Colours */
    --color-text:           var(--color-charcoal);
    --color-text-muted:     var(--color-stone);
    --color-text-light:     var(--color-stone-light);
    --color-bg:             var(--color-cream);
    --color-bg-card:        var(--color-white);
    --color-bg-dark:        var(--color-charcoal);
    --color-accent:         var(--color-amber);
    --color-accent-hover:   var(--color-amber-dark);
    --color-border:         rgba(138, 128, 112, 0.2);

    /* Typography */
    --font-heading:         'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:            'Lato', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Font Sizes — Fluid Scale */
    --fs-xs:                0.75rem;    /* 12px */
    --fs-sm:                0.875rem;   /* 14px */
    --fs-base:              1rem;       /* 16px */
    --fs-md:                1.125rem;   /* 18px */
    --fs-lg:                1.25rem;    /* 20px */
    --fs-xl:                1.5rem;     /* 24px */
    --fs-2xl:               2rem;       /* 32px */
    --fs-3xl:               2.5rem;     /* 40px */
    --fs-4xl:               3rem;       /* 48px */
    --fs-display:           3.5rem;     /* 56px */

    /* Font Weights */
    --fw-normal:            400;
    --fw-medium:            500;
    --fw-semibold:          600;
    --fw-bold:              700;
    --fw-black:             900;

    /* Line Heights */
    --lh-tight:             1.2;
    --lh-normal:            1.6;
    --lh-relaxed:           1.8;

    /* Spacing */
    --space-xs:             0.25rem;
    --space-sm:             0.5rem;
    --space-md:             1rem;
    --space-lg:             1.5rem;
    --space-xl:             2rem;
    --space-2xl:            3rem;
    --space-3xl:            4rem;
    --space-4xl:            6rem;
    --space-section:        5rem;

    /* Border Radius */
    --radius-sm:            4px;
    --radius-md:            8px;
    --radius-lg:            12px;
    --radius-xl:            16px;
    --radius-pill:          50px;
    --radius-round:         50%;

    /* Shadows */
    --shadow-sm:            0 1px 3px rgba(44, 44, 44, 0.08);
    --shadow-md:            0 4px 12px rgba(44, 44, 44, 0.1);
    --shadow-lg:            0 8px 24px rgba(44, 44, 44, 0.12);
    --shadow-xl:            0 16px 40px rgba(44, 44, 44, 0.15);
    --shadow-glow:          0 0 20px rgba(196, 132, 45, 0.3);

    /* Transitions */
    --transition-fast:      150ms ease;
    --transition-base:      300ms ease;
    --transition-slow:      500ms ease;

    /* Z-Index Scale */
    --z-base:               1;
    --z-overlay:            10;
    --z-nav:                100;
    --z-modal:              1000;
}


/* --------------------------------------------------------------------------
   2. Base / Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
    text-decoration: none;
}


/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    color: var(--color-charcoal);
    margin-top: 0;
}

h1 {
    font-size: var(--fs-4xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--fs-3xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--fs-2xl);
}

h4 {
    font-size: var(--fs-xl);
}

h5 {
    font-size: var(--fs-lg);
}

h6 {
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
}

p {
    margin-top: 0;
    margin-bottom: var(--space-md);
    line-height: var(--lh-relaxed);
}

.lead {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--color-text-muted);
}

small,
.text-small {
    font-size: var(--fs-sm);
}

.text-xs {
    font-size: var(--fs-xs);
}

/* Decorative heading with underline accent */
.heading-accent {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-md);
}

.heading-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-amber);
    border-radius: 2px;
}

/* Section titles */
.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--color-charcoal);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    font-weight: var(--fw-normal);
}


/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-st-primary {
    background-color: var(--color-amber);
    border-color: var(--color-amber);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    padding: 0.625rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-st-primary:hover,
.btn-st-primary:focus {
    background-color: var(--color-amber-dark);
    border-color: var(--color-amber-dark);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.btn-primary:active,
.btn-st-primary:active {
    transform: translateY(0);
}

.btn-outline,
.btn-st-outline {
    background-color: transparent;
    border: 2px solid var(--color-charcoal);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    padding: 0.5625rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-outline:hover,
.btn-outline:focus,
.btn-st-outline:hover,
.btn-st-outline:focus {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-outline-amber {
    background-color: transparent;
    border: 2px solid var(--color-amber);
    color: var(--color-amber);
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    padding: 0.5625rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-outline-amber:hover,
.btn-outline-amber:focus {
    background-color: var(--color-amber);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Large button variant */
.btn-lg {
    padding: 0.75rem 2.25rem;
    font-size: var(--fs-md);
    border-radius: var(--radius-md);
}

/* Pill button */
.btn-pill {
    border-radius: var(--radius-pill);
}


/* --------------------------------------------------------------------------
   5. Cards
   -------------------------------------------------------------------------- */
.card-st {
    background-color: var(--color-bg-card);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card-st:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-st .card-body {
    padding: var(--space-xl);
}

.card-st .card-title {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

/* Card with amber accent top border */
.card-accent {
    border-top: 3px solid var(--color-amber);
}

/* Card with icon */
.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--color-cream);
    color: var(--color-amber);
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
}


/* --------------------------------------------------------------------------
   6. Navbar
   -------------------------------------------------------------------------- */
.navbar-st {
    background-color: rgba(44, 44, 44, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    z-index: var(--z-nav);
    transition: background-color var(--transition-base),
                box-shadow var(--transition-base),
                padding var(--transition-base);
}

/* Scroll state — solid bg + shadow */
.navbar-st.navbar-scrolled {
    background-color: var(--color-charcoal);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

/* Brand — logo + text */
.navbar-st .navbar-brand {
    color: var(--color-cream) !important;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.navbar-st .navbar-brand:hover {
    opacity: 0.9;
}

.navbar-st .navbar-logo {
    height: 40px;
    width: auto;
    display: block;
    border-radius: var(--radius-sm);
    transition: height var(--transition-base);
}

.navbar-st.navbar-scrolled .navbar-logo {
    height: 32px;
}

.navbar-st .navbar-brand-text {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    color: var(--color-cream);
    letter-spacing: 0.05em;
}

/* Nav links */
.navbar-st .nav-link {
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    color: rgba(245, 240, 232, 0.8) !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-st .nav-link:hover,
.navbar-st .nav-link.active {
    color: var(--color-amber) !important;
}

/* Active link underline indicator */
.navbar-st .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--color-amber);
    border-radius: 1px;
}

/* CTA button in navbar */
.navbar-st .nav-cta {
    background-color: var(--color-amber);
    color: var(--color-white) !important;
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.5rem !important;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.03em;
    transition: all var(--transition-base);
}

.navbar-st .nav-cta:hover {
    background-color: var(--color-amber-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.navbar-st .nav-cta.active::after {
    display: none;
}

/* Hamburger toggle */
.navbar-st .navbar-toggler {
    border-color: var(--color-amber);
    padding: 0.4rem 0.6rem;
    transition: box-shadow var(--transition-fast);
}

.navbar-st .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(196, 132, 45, 0.3);
}

.navbar-st .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c4842d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile dropdown */
@media (max-width: 991.98px) {
    .navbar-st .navbar-collapse {
        background-color: var(--color-charcoal);
        margin: 0.5rem -0.75rem -0.75rem;
        padding: 1rem 1.5rem;
        border-top: 1px solid rgba(245, 240, 232, 0.1);
    }

    .navbar-st .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(245, 240, 232, 0.06);
    }

    .navbar-st .nav-link.active::after {
        display: none;
    }

    .navbar-st .nav-cta {
        display: inline-block;
        margin-top: 0.5rem;
        text-align: center;
    }
}


/* --------------------------------------------------------------------------
   7. Hero / Jumbotron
   -------------------------------------------------------------------------- */
.hero-st {
    position: relative;
    overflow: hidden;
    background-color: var(--color-black);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-st .hero-video {
    position: absolute;
    z-index: var(--z-base);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-st .hero-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.5);
}

.hero-st .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-2xl);
}

.hero-st .hero-logo {
    max-width: 650px;
    width: 85%;
    margin: 0 auto var(--space-xl);
    display: block;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-st .hero-tagline {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    font-weight: var(--fw-normal);
    color: var(--color-cream);
    max-width: 540px;
    margin: 0 auto;
    letter-spacing: 0.03em;
    line-height: var(--lh-relaxed);
    opacity: 0.9;
    animation: heroFadeIn 1.5s ease-out 0.4s both;
}

/* Scroll-down indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--color-cream);
    opacity: 0.7;
    transition: opacity var(--transition-base);
    animation: heroFadeIn 1.5s ease-out 0.8s both;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    color: var(--color-cream);
}

.hero-scroll-text {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: var(--fw-medium);
}

.hero-scroll-chevron {
    animation: scrollBounce 2s ease-in-out infinite;
    font-size: var(--fs-sm);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --------------------------------------------------------------------------
   8. Sections
   -------------------------------------------------------------------------- */
.section-st {
    padding: var(--space-section) 0;
}

.section-cream {
    background-color: var(--color-cream);
}

.section-white {
    background-color: var(--color-white);
}

.section-dark {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--color-cream);
}

.section-dark .text-muted {
    color: var(--color-stone-light) !important;
}

/* Parallax background sections */
.section-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.section-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-overlay);
    z-index: var(--z-base);
}

.section-parallax > * {
    position: relative;
    z-index: 2;
}


/* --------------------------------------------------------------------------
   9. Menu Section & Cards
   -------------------------------------------------------------------------- */
.section-menus {
    background-color: var(--color-cream);
    padding: var(--space-3xl) 0;
}

.section-heading {
    margin-bottom: var(--space-2xl);
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.section-divider {
    max-width: 280px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.6;
}

.menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(196, 132, 45, 0.3);
    border-color: var(--color-amber);
}

.menu-card .menu-icon {
    font-size: 2.5rem;
    color: var(--color-amber);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}

.menu-card:hover .menu-icon {
    transform: scale(1.15);
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-cream);
}

.menu-card-link {
    font-size: var(--fs-sm);
    color: var(--color-amber);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
}

.menu-card-link .fa-arrow-right {
    font-size: 0.7em;
    margin-left: 4px;
    transition: transform var(--transition-base);
}

.menu-card:hover .menu-card-link .fa-arrow-right {
    transform: translateX(3px);
}


/* --------------------------------------------------------------------------
   9b. Welcome / About Section
   -------------------------------------------------------------------------- */
.section-welcome {
    background-color: var(--color-cream);
    padding: var(--space-section) 0;
    position: relative;
}

/* Subtle top/bottom borders */
.section-welcome::before,
.section-welcome::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-stone-light),
        transparent
    );
}

.section-welcome::before {
    top: 0;
}

.section-welcome::after {
    bottom: 0;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-heading {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.welcome-content p {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
}

.welcome-content p.welcome-last {
    font-style: italic;
    color: var(--color-stone);
    margin-bottom: 0;
}



/* --------------------------------------------------------------------------
   10. Offers Section & Cards
   -------------------------------------------------------------------------- */
.section-offers {
    background-color: var(--color-cream);
    padding: var(--space-section) 0;
    position: relative;
}

/* Subtle top border */
.section-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-stone-light),
        transparent
    );
}

.offer-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-amber);
}

.offer-card-img {
    background-color: var(--color-cream-dark);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.offer-card-img img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform var(--transition-slow);
}

.offer-card:hover .offer-card-img img {
    transform: scale(1.03);
}

.offer-card-body {
    padding: var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.offer-card-text {
    color: var(--color-text-muted);
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    flex-grow: 1;
    margin-bottom: var(--space-lg);
}

.offer-card-body .btn {
    align-self: center;
}

/* T&C notice — warm-toned info box */
.offer-notice {
    background-color: var(--color-cream-dark);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-amber);
    border-radius: var(--radius-md);
    color: var(--color-text);
    padding: var(--space-lg) var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--fs-sm);
}

.offer-notice i {
    color: var(--color-amber);
}

/* Mobile stacking */
@media (max-width: 767.98px) {
    .offer-card-img {
        min-height: 180px;
        padding: var(--space-md);
    }

    .offer-card-img img {
        max-height: 160px;
    }

    .offer-card-body {
        padding: var(--space-lg);
    }
}


/* --------------------------------------------------------------------------
   10b. Weddings Section
   -------------------------------------------------------------------------- */
.section-weddings {
    position: relative;
    background-image: url('../images/photo-1515797092438-4daee5132ec5.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: var(--space-4xl) 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.weddings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.7);
    z-index: var(--z-base);
}

.weddings-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-2xl);
}

.weddings-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-round);
    border: 2px solid rgba(196, 132, 45, 0.4);
    color: var(--color-amber);
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-xl);
}

.weddings-heading {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    color: var(--color-cream);
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
}

.weddings-divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-amber),
        transparent
    );
    margin: 0 auto var(--space-xl);
}

.weddings-coming-soon {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-normal);
    font-style: italic;
    color: var(--color-amber-light);
    margin-bottom: var(--space-md);
    letter-spacing: 0.06em;
}

.weddings-subtext-top {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-normal);
    font-style: italic;
    color: var(--color-amber-light);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.04em;
}

.weddings-award {
    margin-bottom: var(--space-xl);
}

.weddings-award-badge {
    display: inline-block;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.weddings-award-badge:hover {
    transform: scale(1.08);
}

.weddings-subtext {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.02em;
}

/* Parallax fallback for mobile (fixed attachment not supported) */
@media (max-width: 991.98px) {
    .section-weddings {
        background-attachment: scroll;
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .section-weddings {
        min-height: 320px;
        padding: var(--space-3xl) 0;
    }

    .weddings-heading {
        font-size: var(--fs-3xl);
    }

    .weddings-coming-soon {
        font-size: var(--fs-xl);
    }

    .weddings-icon {
        width: 56px;
        height: 56px;
        font-size: var(--fs-xl);
    }
}


/* --------------------------------------------------------------------------
   10c. Booking Section
   -------------------------------------------------------------------------- */
.section-booking {
    background-color: var(--color-cream);
    padding: var(--space-section) 0;
    position: relative;
}

/* Subtle top border */
.section-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-stone-light),
        transparent
    );
}

.booking-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    margin-top: var(--space-lg);
    margin-bottom: 0;
    line-height: var(--lh-relaxed);
}

/* Warm amber alert — replaces Bootstrap alert-info */
.booking-alert {
    background-color: var(--color-cream-dark);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-amber);
    border-radius: var(--radius-md);
    color: var(--color-text);
    padding: var(--space-lg) var(--space-xl);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    font-size: var(--fs-base);
}

.booking-alert i {
    color: var(--color-amber);
}

.booking-alert a {
    font-size: var(--fs-sm);
}

/* Clean frame around the embedded LiveRes widget */
.booking-widget-frame {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    padding: var(--space-xl);
    overflow: hidden;
}

/* Responsive iframe height — matches LiveRes internal layout breakpoints */
.booking-widget-frame iframe[name="_fez_"] {
    height: 700px !important;
    transition: height 0.3s ease;
}

@media (max-width: 699px) {
    .booking-widget-frame iframe[name="_fez_"] {
        height: 1000px !important;
    }
}

@media (max-width: 522px) {
    .booking-widget-frame iframe[name="_fez_"] {
        height: 1050px !important;
    }
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .booking-alert {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--fs-sm);
    }

    .booking-widget-frame {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
}


/* --------------------------------------------------------------------------
   11. Opening Hours Section
   -------------------------------------------------------------------------- */
.section-hours {
    background-color: var(--color-white);
    padding: var(--space-section) 0;
    position: relative;
}

/* Subtle top border */
.section-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-stone-light),
        transparent
    );
}

.hours-card {
    background-color: var(--color-white);
    border: 1px solid rgba(138, 128, 112, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.hours-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.hours-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-round);
    background-color: var(--color-cream);
    color: var(--color-amber);
    font-size: var(--fs-xl);
    transition: all var(--transition-base);
}

.hours-card:hover .hours-card-icon {
    background-color: var(--color-amber);
    color: var(--color-white);
}

.hours-card-title {
    font-family: var(--font-heading);
    color: var(--color-amber);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-lg);
}

.hours-times {
    max-width: 260px;
    margin: 0 auto;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(138, 128, 112, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-label {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--color-charcoal);
}

.hours-label .fas {
    color: var(--color-amber);
    width: 20px;
    text-align: center;
    margin-right: var(--space-sm);
}

.hours-value {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--color-charcoal);
}

/* Closed day card — muted style */
.hours-card-closed {
    background-color: rgba(138, 128, 112, 0.05);
    border-style: dashed;
}

.hours-card-closed .hours-card-icon {
    background-color: rgba(138, 128, 112, 0.1);
    color: var(--color-stone-light);
}

.hours-card-closed:hover .hours-card-icon {
    background-color: var(--color-stone);
    color: var(--color-white);
}

.hours-card-closed .hours-card-title {
    color: var(--color-stone);
}

.hours-closed-row {
    justify-content: center;
}

.hours-closed-row .hours-value {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--color-stone);
    font-weight: var(--fw-semibold);
    font-style: italic;
}

/* Mobile stacking for hours cards */
@media (max-width: 767.98px) {
    .hours-card {
        padding: var(--space-xl) var(--space-lg);
    }

    .hours-times {
        max-width: 100%;
    }
}


/* --------------------------------------------------------------------------
   12. Contact Section
   -------------------------------------------------------------------------- */
.section-contact {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    padding: var(--space-section) 0;
    position: relative;
}

.section-contact .section-heading h2,
.contact-heading {
    color: var(--color-cream);
}

.section-divider-light {
    filter: brightness(1.4);
}

/* Contact detail blocks */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-block {
    /* No special styling needed — just structural */
}

.contact-block-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.contact-block-title .fas,
.contact-block-title .fab {
    color: var(--color-amber);
    width: 24px;
    text-align: center;
    margin-right: var(--space-sm);
}

.contact-address {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-style: normal;
    color: rgba(245, 240, 232, 0.85);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

.contact-phone {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-cream);
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
}

.contact-phone:hover {
    color: var(--color-amber);
}

/* Pub logo in centre column */
.contact-logo-wrap {
    padding: var(--space-xl);
}

.contact-logo {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Social buttons */
.contact-social {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-social-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.contact-social-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
}

/* Google Map embed */
.contact-map {
    margin-top: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(245, 240, 232, 0.1);
}

.contact-map iframe {
    display: block;
}

/* Mobile: stack all 3 cols, centre everything */
@media (max-width: 991.98px) {
    .section-contact {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-block {
        text-align: center;
    }

    .contact-logo-wrap {
        padding: var(--space-lg) 0;
    }

    .contact-social-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .contact-social-btn {
        max-width: none;
        width: auto;
    }
}

@media (max-width: 575.98px) {
    .contact-social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-social-btn {
        width: 100%;
        max-width: 260px;
    }

    .contact-logo {
        max-width: 200px;
    }
}


/* --------------------------------------------------------------------------
   12b. Footer
   -------------------------------------------------------------------------- */
.footer-st {
    background-color: #222222;
    color: var(--color-cream);
    padding: var(--space-xl) 0;
}

.footer-st a {
    color: var(--color-amber);
    transition: color var(--transition-fast);
}

.footer-st a:hover {
    color: var(--color-amber-light);
}

.footer-bottom {
    padding-top: 0;
    margin-top: 0;
}

.footer-bottom p {
    color: var(--color-stone-light);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
}

.footer-link {
    color: var(--color-cream);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-amber);
}

.footer-sep {
    color: var(--color-stone);
    margin: 0 var(--space-sm);
}

.footer-credit {
    color: var(--color-stone);
    font-size: var(--fs-xs);
    margin-top: var(--space-sm);
    margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   13. Divider / Decorative
   -------------------------------------------------------------------------- */
.divider-st {
    max-width: 200px;
    margin: var(--space-2xl) auto;
    opacity: 0.6;
}


/* --------------------------------------------------------------------------
   14. Food Gallery / Carousel
   -------------------------------------------------------------------------- */
.section-gallery {
    background-color: var(--color-charcoal);
    padding: var(--space-section) 0 0;
    position: relative;
}

.section-gallery .section-heading h2 {
    color: var(--color-cream);
}

.section-gallery .section-divider {
    filter: brightness(1.3);
}

/* Carousel wrapper */
.gallery-carousel {
    position: relative;
    overflow: hidden;
}

/* Fade transition — classier for food photography */
.gallery-carousel .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Images — full-width, consistent height via object-fit */
.gallery-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* Subtle dark overlay gradient for caption readability */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
    background: linear-gradient(
        to top,
        rgba(44, 44, 44, 0.7) 0%,
        rgba(44, 44, 44, 0.3) 50%,
        transparent 100%
    );
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.gallery-caption span {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-medium);
    color: var(--color-cream);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Indicators — amber dots */
.gallery-indicators {
    margin-bottom: var(--space-lg);
    z-index: 5;
}

.gallery-indicators button {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    border: 2px solid rgba(245, 240, 232, 0.5);
    background-color: transparent;
    opacity: 1;
    margin: 0 5px;
    transition: all var(--transition-base);
}

.gallery-indicators button.active {
    background-color: var(--color-amber);
    border-color: var(--color-amber);
    transform: scale(1.2);
}

.gallery-indicators button:hover {
    border-color: var(--color-amber-light);
}

/* Controls — amber/cream custom arrows */
.gallery-control {
    width: 56px;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 5;
}

.gallery-carousel:hover .gallery-control {
    opacity: 1;
}

.gallery-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-round);
    background-color: rgba(44, 44, 44, 0.6);
    border: 2px solid rgba(196, 132, 45, 0.5);
    color: var(--color-cream);
    font-size: var(--fs-md);
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gallery-control:hover .gallery-control-icon {
    background-color: var(--color-amber);
    border-color: var(--color-amber);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

/* Hide default BS carousel-control icons */
.gallery-control .carousel-control-prev-icon,
.gallery-control .carousel-control-next-icon {
    display: none;
}

/* Mobile: always show controls, reduce image height */
@media (max-width: 991.98px) {
    .gallery-img {
        height: 420px;
    }

    .gallery-control {
        opacity: 1;
    }

    .gallery-control-icon {
        width: 40px;
        height: 40px;
        font-size: var(--fs-sm);
    }
}

@media (max-width: 767.98px) {
    .gallery-img {
        height: 300px;
    }

    .gallery-caption span {
        font-size: var(--fs-md);
    }

    .gallery-indicators button {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 575.98px) {
    .gallery-img {
        height: 240px;
    }

    .section-gallery {
        padding-top: var(--space-3xl);
    }
}


/* --------------------------------------------------------------------------
   15. Alerts / Info Boxes
   -------------------------------------------------------------------------- */
.alert-st {
    background-color: var(--color-cream);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-amber);
    border-radius: var(--radius-md);
    color: var(--color-text);
    padding: var(--space-lg);
}

.alert-st strong {
    color: var(--color-charcoal);
}

.alert-st i {
    color: var(--color-amber);
}


/* --------------------------------------------------------------------------
   16. Utility Classes
   -------------------------------------------------------------------------- */

/* Text colours */
.text-charcoal   { color: var(--color-charcoal) !important; }
.text-amber      { color: var(--color-amber) !important; }
.text-cream      { color: var(--color-cream) !important; }
.text-stone      { color: var(--color-stone) !important; }

/* Background colours */
.bg-charcoal     { background-color: var(--color-charcoal) !important; }
.bg-amber        { background-color: var(--color-amber) !important; }
.bg-cream        { background-color: var(--color-cream) !important; }
.bg-stone        { background-color: var(--color-stone) !important; }
.bg-white-st     { background-color: var(--color-white) !important; }

/* Section spacing */
.py-section      { padding-top: var(--space-section); padding-bottom: var(--space-section); }
.pt-section      { padding-top: var(--space-section); }
.pb-section      { padding-bottom: var(--space-section); }
.mt-section      { margin-top: var(--space-section); }
.mb-section      { margin-bottom: var(--space-section); }

/* Shadows */
.shadow-st-sm    { box-shadow: var(--shadow-sm) !important; }
.shadow-st-md    { box-shadow: var(--shadow-md) !important; }
.shadow-st-lg    { box-shadow: var(--shadow-lg) !important; }
.shadow-st-xl    { box-shadow: var(--shadow-xl) !important; }

/* Border radius */
.rounded-st      { border-radius: var(--radius-lg) !important; }
.rounded-st-xl   { border-radius: var(--radius-xl) !important; }
.rounded-pill-st { border-radius: var(--radius-pill) !important; }


/* --------------------------------------------------------------------------
   17. Responsive Adjustments
   -------------------------------------------------------------------------- */

/* Tablet & below */
@media (max-width: 991.98px) {
    :root {
        --fs-4xl:       2.25rem;
        --fs-3xl:       2rem;
        --fs-2xl:       1.75rem;
        --fs-display:   2.75rem;
        --space-section: 3.5rem;
    }

    .hero-st {
        height: 100vh;
    }

    .hero-st .hero-logo {
        max-width: 500px;
    }

    .hero-st .hero-tagline {
        font-size: var(--fs-base);
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    :root {
        --fs-4xl:       1.75rem;
        --fs-3xl:       1.5rem;
        --fs-2xl:       1.375rem;
        --fs-xl:        1.25rem;
        --fs-display:   2.25rem;
        --space-section: 3rem;
    }

    .hero-st {
        height: 100svh;
    }

    .hero-st .hero-logo {
        max-width: 380px;
    }

    .hero-st .hero-tagline {
        font-size: var(--fs-sm);
        padding: 0 var(--space-md);
    }

    .hero-scroll-indicator {
        bottom: 1.5rem;
    }

    .section-title {
        font-size: var(--fs-2xl);
    }

    .menu-card {
        padding: var(--space-lg) var(--space-md);
    }

    .navbar-st .navbar-brand-text {
        font-size: var(--fs-sm);
    }

    .navbar-st .navbar-logo {
        height: 30px;
    }

    .footer-st {
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    :root {
        --fs-4xl:       1.5rem;
        --fs-3xl:       1.375rem;
        --space-section: 2.5rem;
    }

    .hero-st .hero-logo {
        max-width: 280px;
    }
}


/* --------------------------------------------------------------------------
   18. Reviews / Social Proof Section
   -------------------------------------------------------------------------- */
.section-reviews {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    padding: var(--space-section) 0;
    position: relative;
    overflow: hidden;
}

.section-reviews .section-heading h2 {
    color: var(--color-cream);
}

/* Rating Summary — side-by-side cards */
.reviews-summary {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.reviews-summary-card {
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(196, 132, 45, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
    min-width: 200px;
    transition: all var(--transition-base);
}

.reviews-summary-card:hover {
    border-color: var(--color-amber);
    background: rgba(196, 132, 45, 0.08);
    transform: translateY(-3px);
}

.reviews-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--color-stone-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.reviews-platform i {
    font-size: var(--fs-lg);
    color: var(--color-amber);
}

.reviews-score {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    color: var(--color-cream);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.reviews-score-max {
    font-size: var(--fs-lg);
    color: var(--color-stone-light);
    font-weight: var(--fw-normal);
}

.reviews-stars {
    margin-bottom: var(--space-xs);
}

.reviews-stars i {
    color: var(--color-amber);
    font-size: var(--fs-sm);
    margin: 0 1px;
}

.reviews-count {
    font-size: var(--fs-sm);
    color: var(--color-stone-light);
}

/* Individual Review Cards */
.review-card {
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(196, 132, 45, 0.15);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    border-color: rgba(196, 132, 45, 0.3);
    background: rgba(245, 240, 232, 0.08);
    transform: translateY(-3px);
}

.review-stars {
    margin-bottom: var(--space-md);
}

.review-stars i {
    color: var(--color-amber);
    font-size: var(--fs-sm);
    margin-right: 2px;
}

.review-text {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: rgba(245, 240, 232, 0.9);
    flex-grow: 1;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding-top: var(--space-md);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-md);
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    color: var(--color-cream);
}

.review-source {
    font-size: var(--fs-xs);
    color: var(--color-stone-light);
}

.review-source i {
    color: var(--color-amber);
    margin-right: 4px;
}

/* Review Carousel Controls */
.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
}

.reviews-control-btn {
    background: rgba(245, 240, 232, 0.1);
    border: 1px solid rgba(196, 132, 45, 0.3);
    color: var(--color-cream);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: var(--fs-sm);
}

.reviews-control-btn:hover {
    background: var(--color-amber);
    border-color: var(--color-amber);
    color: var(--color-white);
}

/* Dot indicators (no icon = dot) */
.reviews-control-btn:not(:has(i)) {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background: rgba(245, 240, 232, 0.2);
    border: none;
}

.reviews-control-btn:not(:has(i)):hover {
    background: var(--color-amber);
}

/* Social Proof Strip */
.social-proof-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    min-width: 100px;
}

.proof-item i {
    font-size: var(--fs-xl);
    color: var(--color-amber);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background: rgba(196, 132, 45, 0.1);
    border: 1px solid rgba(196, 132, 45, 0.2);
    transition: all var(--transition-base);
}

.proof-item:hover i {
    background: var(--color-amber);
    color: var(--color-white);
    transform: scale(1.1);
}

.proof-item span {
    font-size: var(--fs-sm);
    color: var(--color-stone-light);
    font-weight: var(--fw-medium);
    letter-spacing: 0.03em;
}

/* Reviews — Responsive */
@media (max-width: 991.98px) {
    .reviews-summary {
        gap: var(--space-lg);
    }

    .reviews-summary-card {
        padding: var(--space-lg) var(--space-xl);
    }
}

@media (max-width: 767.98px) {
    .reviews-summary {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .reviews-summary-card {
        width: 100%;
        max-width: 280px;
    }

    /* Show only first card on mobile, hide 3rd */
    #reviewsCarousel .col-lg-4:nth-child(3) {
        display: none;
    }

    .social-proof-strip {
        gap: var(--space-lg);
    }

    .proof-item {
        min-width: 80px;
    }
}

@media (max-width: 575.98px) {
    /* Show only first card on small mobile */
    #reviewsCarousel .col-lg-4:nth-child(2),
    #reviewsCarousel .col-lg-4:nth-child(3) {
        display: none;
    }

    .social-proof-strip {
        gap: var(--space-md);
    }

    .proof-item {
        min-width: 60px;
    }

    .proof-item i {
        width: 40px;
        height: 40px;
        font-size: var(--fs-md);
    }

    .proof-item span {
        font-size: var(--fs-xs);
    }
}
