/* ==========================================================================
   Silk Route Icecreams — Theme Refinements v3
   Overrides & enhancements on top of main.css
   Strict brand palette:
     Primary  →  #D3B864  (Gold)
     BG       →  #FBF9F7  (Cream)
     Dark     →  #6B491C  (Brown / Mahogany)
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────────────────────
   0. CSS VARIABLE OVERRIDES — align root vars to exact brand spec
   ───────────────────────────────────────────────────────────────────────── */
:root {
    /* Exact brand palette */
    --gold:          #D3B864;
    --gold-dark:     #C4A84E;   /* darker shade for hover */
    --gold-light:    #E5CF8A;   /* lighter tint for accents */
    --cream:         #FBF9F7;
    --cream-dark:    #F2EDE4;
    --mahogany:      #6B491C;
/*    --mahogany-dark: #3D2A0F;   */
    --mahogany-dark: #6B491C;
    --mahogany-mid:  #8A6230;
    --text-dark:     #6B491C;
/*    --text-body:     #5A3E1C;*/
    --text-body:     #FBF9F7;
/*    --text-muted:    #9A7A52;*/
    --text-muted:    #6B491C;

    /* Logo size token */
    --logo-size:         150px;
    --logo-size-scrolled: 80px;
    --logo-size-mobile:   90px;
    --logo-size-xs:       70px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   1. GLOBAL TYPOGRAPHY — brand brown as default text
   ───────────────────────────────────────────────────────────────────────── */
body {
    color: var(--mahogany);
}

p, li, span {
    color: var(--text-body);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   2. LOGO — 150 × 150 px  (header + footer)
   ───────────────────────────────────────────────────────────────────────── */

/* ── Header logo ── */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img,
.site-logo .custom-logo {
    /*width:  var(--logo-size) !important;
    height: var(--logo-size) !important;*/
    width: 120px !important;
    height: 120px !important;
    max-width:  var(--logo-size);
    max-height: var(--logo-size);
    object-fit: contain;
    object-position: center;
    display: block;
    /* Crisp render — no blur on retina */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Smooth transition when scrolled */
    transition: width 0.4s ease, height 0.4s ease;
}

/* Scrolled: shrink to 80 px */
.site-header.is-scrolled .site-logo img,
.site-header.is-scrolled .site-logo .custom-logo {
    /*width:  var(--logo-size-scrolled) !important;
    height: var(--logo-size-scrolled) !important;
    max-width:  var(--logo-size-scrolled);
    max-height: var(--logo-size-scrolled);*/
    width: 120px !important;
    height: 120px !important;
    max-width: 100%;
    max-height: 100%;
}

/* Header vertical padding — accommodate 150 px logo without crowding nav */
.site-header {
    padding-block: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #6b491c;
}
.site-header.is-scrolled {
    padding-block: 6px;
}

/* Ensure header-inner stretches to logo height */
.header-inner {
    align-items: center;
/*     min-height: calc(var(--logo-size) + 16px); */
    transition: min-height 0.4s ease;
}
.site-header.is-scrolled .header-inner {
    min-height: calc(var(--logo-size-scrolled) + 12px);
}

/* ── Footer logo ── */
.footer-brand-logo,
.footer-brand .custom-logo {
    width:  var(--logo-size) !important;
    height: var(--logo-size) !important;
    max-width:  var(--logo-size);
    object-fit: contain;
    object-position: center;
    display: block;
    margin-bottom: 24px;
}

/* Footer brand column: extra spacing */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. HEADER  — nav link colors, CTA button
   ───────────────────────────────────────────────────────────────────────── */

/* Nav links: cream on dark hero, brown when scrolled */
.primary-nav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FBF9F7;
    padding: 8px 14px;
    transition: color 0.25s ease;
}
.site-header.is-scrolled .primary-nav a {
    color: #FBF9F7;   /* stays cream on dark scrolled header */
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-page-ancestor > a {
    color: var(--gold);
}

/* Header CTA button */
.header-cta .btn-gold {
    background: var(--gold);
    color: var(--mahogany-dark);
    border-color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 10px 20px;
}
.header-cta .btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--mahogany-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(211, 184, 100, 0.35);
}

/* Hamburger bars: always gold/cream */
.menu-toggle-bar {
    background: #FBF9F7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. BUTTONS — enforce brand palette on all variants
   ───────────────────────────────────────────────────────────────────────── */
.btn-gold {
    background:    var(--gold);
    color:         var(--mahogany-dark);
    border-color:  var(--gold);
}
.btn-gold:hover {
    background:    var(--gold-dark);
    border-color:  var(--gold-dark);
    color:         var(--mahogany-dark);
    box-shadow: 0 8px 24px rgba(211, 184, 100, 0.4);
}

.btn-primary {
    background:   var(--mahogany);
    color:        var(--cream);
    border-color: var(--mahogany);
}
.btn-primary:hover {
    background:   var(--mahogany-dark);
    border-color: var(--mahogany-dark);
    color:        var(--cream);
    box-shadow: 0 8px 24px rgba(107, 73, 28, 0.35);
}

.btn-outline {
    color:        var(--cream);
    border-color: rgba(251, 249, 247, 0.5);
    background:   transparent;
}
.btn-outline:hover {
    background:   rgba(251, 249, 247, 0.12);
    border-color: var(--cream);
    color:        var(--cream);
}

.btn-outline-dark {
    color:        var(--mahogany);
    border-color: var(--mahogany);
    background:   transparent;
}
.btn-outline-dark:hover {
    background:   var(--mahogany);
    color:        var(--cream);
    border-color: var(--mahogany);
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. HERO SLIDER — slide backgrounds + image overlay
   ───────────────────────────────────────────────────────────────────────── */

/* Slide 1 — Unsplash ice cream hero image with dark overlay */
.slide-bg-1 {
    background-image:
        linear-gradient(
            135deg,
            rgba(61, 42, 15, 0.82) 0%,
            rgba(61, 42, 15, 0.60) 40%,
            rgba(107, 73, 28, 0.45) 100%
        ),
        url('/wp-content/uploads/2026/05/01.jpeg');
    background-size:     cover;
    background-position: center 30%;
    background-repeat:   no-repeat;
}

/* Slide 2 — Deep spice tones */
.slide-bg-2 {
    background-image:
        linear-gradient(
            160deg,
            rgba(61, 42, 15, 0.90) 0%,
            rgba(61, 42, 15, 0.65) 55%,
            rgba(107, 73, 28, 0.50) 100%
        ),
        url('/wp-content/uploads/2026/05/02.jpeg');
    background-size:     cover;
    background-position: center 60%;
    background-repeat:   no-repeat;
    filter: hue-rotate(10deg);
}

/* Slide 3 — Warm golden tone */
.slide-bg-3 {
    background-image:
        linear-gradient(
            120deg,
            rgba(61, 42, 15, 0.88) 0%,
            rgba(107, 73, 28, 0.70) 100%
        ),
        url('/wp-content/uploads/2026/05/03.jpeg');
    background-size:     cover;
    background-position: center 45%;
    background-repeat:   no-repeat;
}

/* Slide overlay: additional gradient for text readability */
.slide-overlay {
    background: linear-gradient(
        100deg,
        rgba(61, 42, 15, 0.80) 0%,
        rgba(61, 42, 15, 0.45) 55%,
        rgba(61, 42, 15, 0.10) 100%
    );
}

/* Slider min height */
.hero-slider,
.slide {
    min-height: 100vh;
    min-height: 100svh;
}

/* Slide content: never overflow onto slider controls */
.slide-content {
    padding-top: 140px;
    padding-bottom: 120px;
}

/* Slide eyebrow — gold, all-caps */
.slide-eyebrow {
    color: var(--gold);
    letter-spacing: 0.32em;
}
.slide-eyebrow::before {
    background: var(--gold);
}

/* Slide title — lighter cream, large */
.slide-title {
    color: var(--cream);
}
.slide-title em {
    color: var(--gold);
    font-style: italic;
}

/* Slide subtitle — slightly transparent cream */
.slide-subtitle {
    color: #fbf9f7;
    font-size: clamp(15px, 1.8vw, 18px);
    max-width: 520px;
}

/* Slider arrows */
.slider-btn {
    width: 54px;
    height: 54px;
    background: rgba(251, 249, 247, 0.10);
    border: 1.5px solid rgba(211, 184, 100, 0.45);
    color: var(--gold);
    backdrop-filter: blur(12px);
}
.slider-btn:hover {
    background:    var(--gold);
    border-color:  var(--gold);
    color:         var(--mahogany-dark);
    transform:     translateY(-50%) scale(1.1);
}

/* Active dot — gold */
.slider-dot.is-active {
    background: var(--gold);
    width: 32px;
}
.slider-dot:hover:not(.is-active) {
    background: rgba(211, 184, 100, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. SOCIAL ICONS — explicit visibility on dark backgrounds
   ───────────────────────────────────────────────────────────────────────── */

/* ── Footer social ── */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-social a {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:  44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #fbf9f7;
    color: #fbf9f7;
    background:      transparent;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease,
                color 0.3s ease, transform 0.25s ease;
}

.footer-social a svg {
    display:       block;
    color:         inherit;
    width:  20px;
    height: 20px;
    flex-shrink: 0;
    /* Ensure SVG respects currentColor for BOTH fill & stroke paths */
    fill:   currentColor;
    stroke: none;
}

/* Specifically for instagram (stroke-based icon) */
.footer-social a svg[data-icon="instagram"] {
    fill:   none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social a:hover {
    background:   var(--gold);
    border-color: var(--gold);
    color:        var(--mahogany-dark);
    transform:    translateY(-4px);
    box-shadow: 0 8px 20px rgba(211, 184, 100, 0.35);
}

/* ── Contact page social ── */
.social-icon-link {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:  50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(107, 73, 28, 0.25);
    color:           var(--mahogany);
    background:      rgba(211, 184, 100, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon-link svg {
    display: block;
    width:  20px;
    height: 20px;
    fill:   currentColor;
    stroke: none;
}
.social-icon-link[aria-label*="Instagram"] svg {
    fill:   none;
    stroke: currentColor;
    stroke-width: 2;
}
.social-icon-link:hover {
    background:   var(--mahogany);
    color:        var(--gold);
    border-color: var(--mahogany);
    transform:    translateY(-3px);
}

/* ── Mobile drawer social ── */
.mobile-nav-social {
    display: flex;
    gap: 12px;
}
.mobile-nav-social a {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:  44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(211, 184, 100, 0.4);
    color:           var(--gold);
    background:      transparent;
    transition: all 0.3s ease;
}
.mobile-nav-social a svg {
    display: block;
    width:  20px;
    height: 20px;
    color:  inherit;
    fill:   currentColor;
    stroke: none;
}
.mobile-nav-social a:hover {
    background:   var(--gold);
    color:        var(--mahogany-dark);
    border-color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. FOOTER — spacing, layout, colour
   ───────────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--mahogany-dark);
    border-top: 1px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
/*    padding-block: clamp(56px, 7vw, 96px);*/
    border-bottom: 1px solid var(--gold);
    align-items: start;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    font-size: 14px;
    color: #fbf9f7;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.78;
    color: #fbf9f7;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(251, 249, 247, 0.55);
    line-height: 1.6;
}
.footer-contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    width:  16px;
    height: 16px;
    stroke: currentColor;
    fill:   none;
}
.footer-contact-item a {
    color: #fbf9f7;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-block: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright {
    font-size: 12px;
    color: #fbf9f7;
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-size: 12px;
    color: #fbf9f7;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-legal a:hover {
    color: #fbf9f7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. ABOUT — "Culture. Craft. Indulgence." values grid (premium fix)
   ───────────────────────────────────────────────────────────────────────── */

.values-section {
    background: var(--cream-dark);
    padding-block: clamp(64px, 10vw, 120px);
}

/* 3-column card grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
    margin-bottom: clamp(48px, 6vw, 80px);
}

/* Base card */
.value-card-premium {
    background: #FFFFFF;
    border: 1px solid rgba(107, 73, 28, 0.08);
    border-radius: 20px;
    padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 2px 16px rgba(107, 73, 28, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--mahogany));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 20px 20px 0 0;
}
.value-card-premium:hover::before { opacity: 1; }

.value-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(107, 73, 28, 0.18);
}

/* Featured center card */
.value-card-featured {
    background: var(--mahogany-dark);
    border-color: var(--mahogany-dark);
    box-shadow: 0 8px 40px rgba(61, 42, 15, 0.35);
}
.value-card-featured::before {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    opacity: 1;
}
.value-card-featured .value-title  { color: var(--cream); }
.value-card-featured .value-text   { color: rgba(251, 249, 247, 0.70); }
.value-card-featured .value-points li { color: rgba(251, 249, 247, 0.60); }
.value-card-featured .value-points li::before { color: var(--gold); }
.value-card-featured .value-num    { color: rgba(211, 184, 100, 0.07); }

/* Card top row */
.value-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Large icon bubble */
.value-icon-lg {
    width:  74px;
    height: 74px;
    border-radius: 18px;
    background: linear-gradient(135deg,
        rgba(211, 184, 100, 0.18) 0%,
        rgba(107, 73, 28, 0.07) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.value-icon-lg svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    fill:   none;
    stroke-width: 1.5;
}
.value-card-featured .value-icon-lg {
    background: rgba(211, 184, 100, 0.14);
    color: var(--gold);
}

/* Decorative large number */
.value-num {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 300;
    color: rgba(107, 73, 28, 0.07);
    line-height: 1;
    user-select: none;
}

/* Featured badge */
.value-featured-badge {
    display: inline-flex;
    align-self: flex-start;
    background: var(--gold);
    color: var(--mahogany-dark);
    font-family: var(--font-body, sans-serif);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
}

/* Value title */
.value-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 500;
    color: var(--mahogany-dark);
    line-height: 1.12;
    letter-spacing: -0.01em;
}

/* Body copy */
.value-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.82;
    flex: 1;
}

/* Bullet points */
.value-points {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.value-points li {
    font-size: 13.5px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.55;
}
.value-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
    line-height: 1.55;
}

/* Values bottom manifesto banner */
.values-banner {
    background: var(--mahogany-dark);
    border-radius: 20px;
    padding: clamp(36px, 5vw, 64px) clamp(28px, 5vw, 64px);
    overflow: hidden;
    position: relative;
}
.values-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 50%,
        rgba(211, 184, 100, 0.07) 0%, transparent 65%);
    pointer-events: none;
}
.values-banner-inner {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    position: relative;
    z-index: 1;
}
.values-banner-quote {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(18px, 2.5vw, 28px);
    font-style: italic;
    color: #fbf9f7;
    line-height: 1.55;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. FLAVOURS GRID  — clean, no filter, proper spacing
   ───────────────────────────────────────────────────────────────────────── */
.flavours-section {
    padding-block: clamp(64px, 10vw, 60px);
    background: var(--cream);
}

.flavours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
    gap: clamp(20px, 3vw, 32px);
    margin-bottom: clamp(40px, 6vw, 64px);
}

/* Card: ensure consistent height */
.flavour-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 14px rgba(107, 73, 28, 0.07);
    border: 1px solid rgba(107, 73, 28, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.flavour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(107, 73, 28, 0.18);
}

.flavour-card-image {
    aspect-ratio: 1 / 1;
    background: var(--cream-dark);
    overflow: hidden;
}
.flavour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.flavour-card:hover .flavour-card-image img {
    transform: scale(1.07);
}

.flavour-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--mahogany-dark);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}
.badge-signature {
    background: var(--gold);
    color: var(--mahogany-dark);
}

.flavour-card-body {
    padding: 22px 24px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flavour-route-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.flavour-card-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 500;
    color: var(--mahogany-dark);
    line-height: 1.2;
}
.flavour-card-title a {
    color: inherit;
    text-decoration: none;
}
.flavour-card-title a:hover {
    color: var(--mahogany);
}

.flavour-card-excerpt {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.flavour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px 20px;
    border-top: 1px solid rgba(107, 73, 28, 0.07);
    margin-top: auto;
}

.flavour-price {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--mahogany);
}
.flavour-price span {
    font-family: var(--font-body, sans-serif);
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.flavour-card-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mahogany);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}
.flavour-card-link:hover {
    color: var(--gold);
    gap: 10px;
}
.flavour-card-link svg {
    stroke: currentColor;
    fill:   none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. MANIFESTO & SECTION COLOURS
   ───────────────────────────────────────────────────────────────────────── */
.manifesto-section {
    background: var(--mahogany-dark);
    border-bottom: 1px solid var(--gold);
}
.manifesto-label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}
.manifesto-heading {
    color: var(--cream);
    font-style: italic;
}
.manifesto-text {
    color: #fbf9f7;
}

/* Routes section */
.routes-section { background: var(--cream); border-bottom: 1px solid #6B491C;}

.route-card {
    background: #FFFFFF;
    border: 1px solid rgba(107, 73, 28, 0.10);
    border-radius: 16px;
}
.route-card h3 { color: var(--mahogany-dark); }
.route-card p  { color: var(--text-muted); }

.route-flavours li { color: var(--text-muted); }
.route-flavours li::before { color: var(--gold); }

.route-link { color: var(--mahogany); }
.route-link:hover { color: var(--gold); }

/* Stats strip */
.stats-strip { background: var(--mahogany); }
.stat-number { color: var(--gold); }
.stat-label  { color: #fbf9f7; }

/* Contact CTA strip */
.contact-cta-strip {
    background: linear-gradient(135deg, var(--mahogany-dark) 0%, var(--mahogany) 100%);
}
.contact-cta-title    { color: var(--mahogany); }
.contact-cta-subtitle { color: var(--mahogany); }
.contact-cta-label    { color: var(--gold); }

/* Section labels */
.section-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}
.section-label::before { background: var(--gold); }

/* ─────────────────────────────────────────────────────────────────────────────
   11. CONTACT FORM 7 — brand-styled form
   ───────────────────────────────────────────────────────────────────────── */
.contact-form-panel {
    background: #FFFFFF;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(107, 73, 28, 0.10);
    border: 1px solid rgba(107, 73, 28, 0.07);
}

.silk-cf7-wrap .wpcf7-form p {
    margin-bottom: 18px;
}
.silk-cf7-wrap .wpcf7-form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 7px;
}

/* Input fields */
.silk-cf7-wrap input[type="text"],
.silk-cf7-wrap input[type="email"],
.silk-cf7-wrap input[type="tel"],
.silk-cf7-wrap input[type="url"],
.silk-cf7-wrap select,
.silk-cf7-wrap textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--cream);
    border: 1.5px solid rgba(107, 73, 28, 0.14);
    border-radius: 8px;
    font-size: 15px;
    color: var(--mahogany-dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
}
.silk-cf7-wrap input:focus,
.silk-cf7-wrap select:focus,
.silk-cf7-wrap textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(211, 184, 100, 0.20);
    outline: none;
}
.silk-cf7-wrap input::placeholder,
.silk-cf7-wrap textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.65;
}
.silk-cf7-wrap textarea { min-height: 140px; resize: vertical; }

/* Submit button */
.silk-cf7-wrap input[type="submit"],
.silk-cf7-wrap .wpcf7-submit {
    width: 100%;
    padding: 15px 32px;
    background: var(--mahogany);
    color: var(--cream);
    border: 2px solid var(--mahogany);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease,
                transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 6px;
}
.silk-cf7-wrap input[type="submit"]:hover,
.silk-cf7-wrap .wpcf7-submit:hover {
    background:   var(--mahogany-dark);
    border-color: var(--mahogany-dark);
    transform:    translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 73, 28, 0.30);
}

/* CF7 validation */
.silk-cf7-wrap .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #b83232;
    margin-top: 5px;
    display: block;
}
.silk-cf7-wrap .wpcf7-mail-sent-ok {
    background:   rgba(72, 160, 100, 0.08);
    color:        #2d7a50;
    border-color: rgba(72, 160, 100, 0.3) !important;
}
.silk-cf7-wrap .wpcf7-mail-sent-ng,
.silk-cf7-wrap .wpcf7-aborted {
    background:   rgba(184, 50, 50, 0.07);
    color:        #b83232;
    border-color: rgba(184, 50, 50, 0.25) !important;
}
.silk-cf7-wrap .wpcf7-response-output {
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid;
}

/* ─────────────────────────────────────────────────────────────────────────────
   12. BREADCRUMBS
   ───────────────────────────────────────────────────────────────────────── */
.silk-breadcrumbs {
    background: var(--cream-dark);
    padding-block: 14px;
    border-bottom: 1px solid rgba(107, 73, 28, 0.08);
}
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--mahogany); }
.breadcrumb-item.active { color: var(--mahogany-dark); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────────────────────────
   13. RESPONSIVE OVERRIDES — logo, footer, values
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
	.mobile-nav-social a{width: 70px !important;height: 70px !important;border: unset !important;}	
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }
    .values-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .values-banner .silk-stamp {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Logo */
    .site-logo img,
    .site-logo .custom-logo {
        width:  var(--logo-size-mobile) !important;
        height: var(--logo-size-mobile) !important;
        max-width:  var(--logo-size-mobile);
        max-height: var(--logo-size-mobile);
    }
    .site-header.is-scrolled .site-logo img,
    .site-header.is-scrolled .site-logo .custom-logo {
        width:  85px !important;
        height: 85px !important;
        max-width:  85px;
        max-height: 85px;
    }
    .footer-brand-logo,
    .footer-brand .custom-logo {
        width:  var(--logo-size-mobile) !important;
        height: var(--logo-size-mobile) !important;
        max-width: var(--logo-size-mobile);
    }

	.footer-contact-item{justify-content: center;}
    /* Header inner min-height */
    .header-inner { min-height: calc(var(--logo-size-mobile) + 12px); }
    .site-header.is-scrolled .header-inner { min-height: 80px; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand { align-items: center; }
    .footer-brand-desc { max-width: 100%; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal  { justify-content: center; }

    /* Values */
    .values-grid { max-width: 100%; }

    /* Slider */
    .slide-cta { flex-direction: column; align-items: flex-start; }
    .slide-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
    /* Logo */
    .site-logo img,
    .site-logo .custom-logo {
        /*width:  var(--logo-size-xs) !important;
        height: var(--logo-size-xs) !important;
        max-width:  var(--logo-size-xs);
        max-height: var(--logo-size-xs);*/
        width:  85px !important;
        height: 85px !important;
        max-width:  85px;
        max-height: 85px;
    }
    .footer-brand-logo,
    .footer-brand .custom-logo {
        width:  var(--logo-size-xs) !important;
        height: var(--logo-size-xs) !important;
        max-width: var(--logo-size-xs);
    }
    .header-inner { min-height: calc(var(--logo-size-xs) + 10px); }

    /* Slider */
    .slider-btn { display: none; }
    .slide-title { font-size: clamp(36px, 9vw, 56px); }
}
