/* ==========================================================================
   SkrapBazar — stylesheet
   Loaded after bootstrap.min.css. Overrides the Bootstrap defaults we use
   and defines the SkrapBazar design system.

   Contents
   01. Tokens
   02. Base & typography
   03. Utilities
   04. Buttons
   05. Navbar
   06. Hero
   07. Rate board  (signature element)
   08. Sections & section headings
   09. Cards / features
   10. Steps
   11. Phone frame + screenshot carousel
   12. Testimonials
   13. Download band
   14. Contact
   15. Footer
   16. Modals, forms, spinner, back-to-top
   17. Motion & responsive
   ========================================================================== */


/* ── 01. Tokens ─────────────────────────────────────────────────────────── */
:root {
    /* Brand */
    --green: #17703A;
    --green-deep: #0F5029;
    --green-bright: #2FA84F;
    --amber: #F2A93B;
    --amber-deep: #C77B14;

    /* Neutrals */
    --ink: #101E17;
    --ink-2: #1B3327;
    --paper: #F2F4EF;
    --card: #FFFFFF;
    --rule: #DCE3D9;
    --rule-dark: rgba(255, 255, 255, .14);
    --muted: #5C6B62;

    /* Bootstrap variable bridge — keeps .bg-primary, .text-primary etc. on brand */
    --primary: var(--green);
    --secondary: var(--amber);
    --light: var(--paper);
    --dark: var(--ink);
    --bs-primary: #17703A;
    --bs-primary-rgb: 23, 112, 58;

    /* Type */
    --font-display: 'Bricolage Grotesque', 'Jost', sans-serif;
    --font-body: 'Inter Tight', 'Heebo', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

    --step--2: .75rem;
    --step--1: .875rem;
    --step-0: 1.0625rem;
    --step-1: 1.1875rem;
    --step-2: clamp(1.35rem, 1.2rem + .6vw, 1.6rem);
    --step-3: clamp(1.7rem, 1.4rem + 1.2vw, 2.2rem);
    --step-4: clamp(2.1rem, 1.6rem + 2.2vw, 3.1rem);
    --step-5: clamp(2.6rem, 1.7rem + 3.9vw, 4.4rem);

    /* Space */
    --section-y: clamp(4.5rem, 7vw, 7.5rem);
    --gutter: clamp(1.25rem, 4vw, 3rem);

    /* Shape */
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 22px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(16, 30, 23, .05);
    --shadow: 0 12px 32px -12px rgba(16, 30, 23, .18);
    --shadow-lg: 0 32px 64px -24px rgba(16, 30, 23, .32);
}


/* ── 02. Base & typography ──────────────────────────────────────────────── */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* The template wrapped everything in .bg-white — we want paper. */
.container-xxl.bg-white {
    background: var(--paper) !important;
}

h1, h2, h3, h4, h5, h6,
.display-title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--ink);
    text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
h5 { font-size: var(--step-1); letter-spacing: -.015em; }
h6 { font-size: var(--step-0); letter-spacing: -.01em; }

p {
    color: var(--muted);
    text-wrap: pretty;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover { color: var(--green-deep); }

::selection {
    background: var(--amber);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 4px;
}


/* ── 03. Utilities ──────────────────────────────────────────────────────── */

/* Eyebrow: mono, caps, tracked — the "label on a crate" voice. Used above
   every section heading so the page has one consistent signpost. */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-mono);
    font-size: var(--step--2);
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .85rem;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--amber);
}

.eyebrow-light {
    color: var(--amber);
}

.eyebrow-center {
    justify-content: center;
}

.lead-text {
    font-size: var(--step-1);
    line-height: 1.6;
    color: var(--muted);
}

.text-ink { color: var(--ink) !important; }
.text-muted-2 { color: var(--muted) !important; }
.bg-paper { background: var(--paper) !important; }
.bg-ink { background: var(--ink) !important; }

.mono {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
}

/* Kills the template's gradient-text classes without touching every template
   file — anything still using them inherits the flat brand colour. */
.text-primary-gradient {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--green);
}

.text-secondary-gradient {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--amber-deep);
}

.bg-primary-gradient { background: var(--green); }
.bg-secondary-gradient { background: var(--amber); }


/* ── 04. Buttons ────────────────────────────────────────────────────────── */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--step-0);
    letter-spacing: -.01em;
    border-radius: var(--r-pill);
    border: 1px solid transparent;
    padding: .7rem 1.6rem;
    transition: transform .18s ease, background-color .18s ease,
                border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn:active { transform: translateY(1px); }

.btn-solid,
.btn.btn-primary-gradient {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.btn-solid:hover,
.btn.btn-primary-gradient:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: #fff;
    box-shadow: var(--shadow);
}

/* Amber is the "money" action — download, sell, get paid. Used sparingly. */
.btn-accent,
.btn.btn-secondary-gradient {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--ink);
}

.btn-accent:hover,
.btn.btn-secondary-gradient:hover {
    background: #FFC05C;
    border-color: #FFC05C;
    color: var(--ink);
    box-shadow: var(--shadow);
}

.btn-outline-ink {
    background: transparent;
    border-color: var(--rule);
    color: var(--ink);
}

.btn-outline-ink:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.btn-ghost-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-ghost-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

.btn-lg-custom {
    padding: .95rem 2.1rem;
    font-size: var(--step-1);
}

/* The template's gradient ::after overlay is no longer needed. */
.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    display: none;
}

.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }


/* ── 05. Navbar ─────────────────────────────────────────────────────────── */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}

.navbar-brand-mark {
    display: inline-flex;
    align-items: baseline;
    gap: .1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1;
    color: #fff;
    margin: 0;
}

.navbar-brand-mark .mark-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    display: inline-block;
    margin-left: 2px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    font-family: var(--font-body);
    font-size: var(--step--1);
    font-weight: 500;
    letter-spacing: .01em;
    color: rgba(255, 255, 255, .82) !important;
    padding: .5rem 0;
    margin: 0 1.05rem;
    transition: color .2s ease;
}

/* Replaces the template's triangle pointer with a hairline underline that
   grows from the centre — quieter, and it reads on both nav states. */
.navbar-light .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border: 0;
    background: var(--amber);
    transform: translateX(-50%);
    transition: width .25s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--r-sm);
    color: #fff;
    padding: .45rem .7rem;
}

.navbar-toggler:focus { box-shadow: none; }

/* Sticky state — main.js swaps in .sticky-top on scroll. */
.sticky-top.navbar-light {
    background: rgba(242, 244, 239, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    padding-top: .55rem;
    padding-bottom: .55rem;
}

.sticky-top.navbar-light .navbar-brand-mark { color: var(--ink); }
.sticky-top.navbar-light .navbar-nav .nav-link { color: var(--muted) !important; }
.sticky-top.navbar-light .navbar-nav .nav-link:hover,
.sticky-top.navbar-light .navbar-nav .nav-link.active { color: var(--ink) !important; }
.sticky-top.navbar-light .navbar-toggler { border-color: var(--rule); color: var(--ink); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--amber);
    color: var(--ink);
    border-radius: var(--r-pill);
    padding: .55rem 1.25rem;
    font-size: var(--step--1);
    font-weight: 600;
}

.nav-cta:hover {
    background: #FFC05C;
    color: var(--ink);
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
    }
}

@media (max-width: 991.98px) {
    .navbar-light {
        background: var(--ink);
    }

    .navbar-light .navbar-collapse {
        margin-top: 1rem;
        padding-top: .5rem;
        border-top: 1px solid var(--rule-dark);
    }

    .navbar-light .navbar-nav .nav-link {
        margin: 0;
        padding: .65rem 0;
    }

    .navbar-light .navbar-nav .nav-link::before { display: none; }
}


/* ── 06. Hero ───────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    padding: clamp(8rem, 14vw, 11rem) 0 clamp(4rem, 7vw, 6rem);
    margin-bottom: 0;
    isolation: isolate;
}

/* Ambient texture: a soft green glow plus a faint diagonal hatch, standing in
   for the old bg-circle / bg-triangle PNGs. No extra image requests. */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(900px 480px at 12% -10%, rgba(47, 168, 79, .30), transparent 65%),
        radial-gradient(600px 420px at 92% 8%, rgba(242, 169, 59, .14), transparent 60%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .35;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, .045) 0 1px,
        transparent 1px 11px
    );
}

.hero h1 {
    color: #fff;
    font-size: var(--step-5);
    letter-spacing: -.035em;
    margin-bottom: 1.4rem;
}

.hero h1 .hero-underline {
    position: relative;
    white-space: nowrap;
    color: var(--amber);
}

.hero p {
    color: rgba(255, 255, 255, .78);
    font-size: var(--step-1);
    max-width: 46ch;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 2.5rem;
}

/* Small proof strip under the CTAs — replaces the fake install counters. */
.hero-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--rule-dark);
}

.hero-strip-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .68);
}

.hero-strip-item i {
    color: var(--amber);
    font-size: .9rem;
}

@media (max-width: 991.98px) {
    .hero { text-align: center; }
    .hero p { margin-inline: auto; }
    .hero-actions,
    .hero-strip { justify-content: center; }
    .hero-strip { text-align: left; }
}


/* ── 07. Rate board (signature) ─────────────────────────────────────────── */
/* Modelled on the painted rate boards outside every kabadi shop: material on
   the left, price per kilo on the right, hand-ruled lines between. */
.rate-board {
    position: relative;
    background: var(--ink-2);
    border: 1px solid rgba(242, 169, 59, .38);
    border-radius: var(--r);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: var(--shadow-lg);
}

/* The double rule around the board is the painted-signboard tell. */
.rate-board::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(242, 169, 59, .18);
    border-radius: calc(var(--r) - 5px);
    pointer-events: none;
}

.rate-board-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid rgba(242, 169, 59, .28);
}

.rate-board-head h3 {
    color: #fff;
    margin: 0;
    font-size: var(--step-2);
}

.rate-board-head span {
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber);
    white-space: nowrap;
}

.rate-row {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    padding: .78rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .12);
}

.rate-row:last-of-type { border-bottom: 0; }

.rate-row-name {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: rgba(255, 255, 255, .92);
    font-weight: 500;
    white-space: nowrap;
}

.rate-row-name i {
    color: var(--green-bright);
    width: 1.1rem;
    text-align: center;
    font-size: .95rem;
}

/* Dotted leader between the name and the price — the ledger detail. */
.rate-row-dots {
    flex: 1;
    height: 1px;
    min-width: 1.5rem;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .3) 1px, transparent 1px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    transform: translateY(-3px);
}

.rate-row-price {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    font-size: var(--step-1);
    color: var(--amber);
    white-space: nowrap;
}

.rate-row-price small {
    font-size: .68em;
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    margin-left: .15rem;
}

.rate-board-foot {
    margin-top: 1.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rate-board-note {
    font-size: var(--step--1);
    color: rgba(255, 255, 255, .55);
    margin: 0;
    max-width: 34ch;
}


/* ── 08. Sections & section headings ────────────────────────────────────── */
.section {
    padding-block: var(--section-y);
}

.section-ink {
    background: var(--ink);
    color: #fff;
}

.section-ink h1,
.section-ink h2,
.section-ink h3,
.section-ink h4,
.section-ink h5 { color: #fff; }

.section-ink p { color: rgba(255, 255, 255, .72); }

.section-head {
    max-width: 46rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-head-center {
    margin-inline: auto;
    text-align: center;
}

.section-head h2 {
    margin-bottom: .9rem;
}

.section-head p {
    font-size: var(--step-1);
    margin-bottom: 0;
}

/* Hairline divider between light sections — cheaper than alternating fills. */
.section-divider {
    border: 0;
    border-top: 1px solid var(--rule);
    margin: 0;
    opacity: 1;
}


/* ── 09. Cards / features ───────────────────────────────────────────────── */
.card-flat {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: var(--r);
    padding: clamp(1.5rem, 2.4vw, 2rem);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-flat:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 112, 58, .35);
    box-shadow: var(--shadow);
}

.card-flat h3,
.card-flat h5 {
    margin-bottom: .6rem;
}

.card-flat p {
    margin-bottom: 0;
    font-size: var(--step--1);
}

/* Square icon tiles instead of gradient circles — reads as a stamped label. */
.icon-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: var(--r-sm);
    background: rgba(23, 112, 58, .09);
    color: var(--green);
    font-size: 1.15rem;
    margin-bottom: 1.15rem;
}

.icon-tile-accent {
    background: rgba(242, 169, 59, .16);
    color: var(--amber-deep);
}

.icon-tile-lg {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
}

/* Small inline benefit rows (doorstep pickup, payment) */
.benefit-row {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
}

.benefit-row:last-child { border-bottom: 0; }

.benefit-row h5 { margin-bottom: .2rem; }

.benefit-row p {
    margin-bottom: 0;
    font-size: var(--step--1);
}

.benefit-row .icon-tile { margin-bottom: 0; flex-shrink: 0; }


/* ── 10. Steps ──────────────────────────────────────────────────────────── */
/* Numbered because this genuinely is a sequence — you cannot get paid before
   the pickup happens. The connecting rule shows the order continues. */
.step {
    position: relative;
    padding-top: 2rem;
}

.step-num {
    font-family: var(--font-mono);
    font-size: var(--step--1);
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--amber-deep);
    display: block;
    margin-bottom: .9rem;
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--rule);
}

.step::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
}

.step h3,
.step h5 { margin-bottom: .6rem; }

.step p {
    margin-bottom: 0;
    font-size: var(--step--1);
}

.section-ink .step::before { background: var(--rule-dark); }
.section-ink .step-num { color: var(--amber); }


/* ── 11. Phone frame + screenshot carousel ──────────────────────────────── */
/* Pure CSS device frame — drops the screenshot-frame.png dependency. */
.phone-frame {
    position: relative;
    width: 268px;
    max-width: 100%;
    padding: 11px;
    border-radius: 40px;
    background: linear-gradient(160deg, #29382F, #0B1410);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .09),
        var(--shadow-lg);
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .18);
    z-index: 3;
}

.screenshot-carousel {
    position: relative;
    width: 246px;
    max-width: 100%;
    height: 508px;
    margin: 0;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    background: var(--ink-2);
}

/* Neutralises the template's frame PNG pseudo-element. */
.screenshot-carousel::before { display: none; }

.screenshot-carousel .owl-item img {
    position: relative;
    width: 246px;
    height: 508px;
    object-fit: cover;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
    display: flex;
    flex-direction: row;
    gap: 6px;
    z-index: 4;
}

.screenshot-carousel .owl-dot {
    width: 7px;
    height: 7px;
    margin: 0;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .38);
    box-shadow: none;
    transition: width .25s ease, background-color .25s ease;
}

.screenshot-carousel .owl-dot::after { display: none; }

.screenshot-carousel .owl-dot.active {
    width: 20px;
    background: var(--amber);
    box-shadow: none;
}

/* Small caption chip pinned to the phone */
.phone-chip {
    position: absolute;
    right: -18px;
    bottom: 56px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--card);
    border-radius: var(--r-pill);
    padding: .5rem .95rem;
    box-shadow: var(--shadow);
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}

.phone-chip i { color: var(--green); }

@media (max-width: 575.98px) {
    .phone-chip { right: -6px; }
}


/* ── 12. Testimonials ───────────────────────────────────────────────────── */
.testimonial-item {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: var(--r);
    padding: clamp(1.5rem, 2.5vw, 2rem) !important;
    height: 100%;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: var(--step-2);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--rule);
}

.testimonial-person img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-person h5 {
    margin: 0;
    font-size: var(--step-0);
}

.testimonial-person span {
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.stars {
    color: var(--amber);
    font-size: .78rem;
    letter-spacing: .12em;
    margin-bottom: 1rem;
    display: block;
}

/* Owl centre-slide state — no colour flip, just a lift. */
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .3s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--card);
    border-color: rgba(23, 112, 58, .4);
    box-shadow: var(--shadow);
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: inherit !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: .75rem;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    width: 44px;
    height: 44px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--rule);
    color: var(--ink);
    font-size: 1rem;
    transition: .2s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}


/* ── 13. Download band ──────────────────────────────────────────────────── */
.store-btn {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .85rem 1.4rem;
    border-radius: var(--r);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--rule-dark);
    color: #fff;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.store-btn:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .32);
    color: #fff;
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 1.7rem;
    flex-shrink: 0;
    color: var(--amber);
}

.store-btn span {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
}

.store-btn strong {
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
}


/* ── 14. Contact ────────────────────────────────────────────────────────── */
.contact-panel {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 3.5vw, 2.75rem);
}

.contact-aside {
    background: var(--ink);
    border-radius: var(--r-lg);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    height: 100%;
    color: #fff;
}

.contact-aside h3 { color: #fff; }
.contact-aside p { color: rgba(255, 255, 255, .72); }

.contact-line {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule-dark);
}

.contact-line:last-of-type { border-bottom: 0; }

.contact-line i {
    color: var(--amber);
    margin-top: .3rem;
    width: 1.1rem;
    text-align: center;
}

.contact-line span {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .15rem;
}

.contact-line a,
.contact-line p {
    color: #fff;
    margin: 0;
}

.contact-line a:hover { color: var(--amber); }


/* ── 15. Footer ─────────────────────────────────────────────────────────── */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
    margin-top: 0;
    padding-top: clamp(3.5rem, 6vw, 5rem);
}

.footer h4,
.footer h5 {
    font-family: var(--font-mono);
    font-size: var(--step--2);
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.4rem;
}

.footer p { color: rgba(255, 255, 255, .68); }

.footer .btn.btn-link {
    display: block;
    margin-bottom: .5rem;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .72);
    font-weight: 400;
    font-size: var(--step--1);
    border: 0;
    transition: color .2s ease, transform .2s ease;
}

/* The template put a chevron on every footer link. Removed. */
.footer .btn.btn-link::before { content: none; }

.footer .btn.btn-link:hover {
    color: var(--amber);
    letter-spacing: normal;
    transform: translateX(3px);
    box-shadow: none;
}

.footer .btn.btn-social {
    width: 40px;
    height: 40px;
    margin-right: .5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--rule-dark);
    color: rgba(255, 255, 255, .8);
    transition: .2s;
}

.footer .btn.btn-social:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--ink);
}

.footer-contact-line {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: .75rem;
    font-size: var(--step--1);
}

.footer-contact-line i {
    color: var(--amber);
    margin-top: .35rem;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-line a { color: rgba(255, 255, 255, .78); }
.footer-contact-line a:hover { color: var(--amber); }

.newsletter-field {
    position: relative;
    margin-top: 1rem;
}

.newsletter-field .form-control {
    height: 50px;
    border-radius: var(--r-pill);
    border: 1px solid var(--rule-dark);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding: 0 3.25rem 0 1.25rem;
    font-size: var(--step--1);
}

.newsletter-field .form-control::placeholder { color: rgba(255, 255, 255, .45); }

.newsletter-field .form-control:focus {
    background: rgba(255, 255, 255, .1);
    border-color: var(--amber);
    box-shadow: none;
    color: #fff;
}

.newsletter-field button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: var(--amber);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease;
}

.newsletter-field button:hover { background: #FFC05C; }

.footer .copyright {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding: 1.6rem 0;
    font-size: var(--step--1);
    border-top: 1px solid var(--rule-dark);
    color: rgba(255, 255, 255, .55);
}

.footer .copyright a { color: rgba(255, 255, 255, .8); }
.footer .copyright a:hover { color: var(--amber); }

.footer .footer-menu a {
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px solid var(--rule-dark);
    color: rgba(255, 255, 255, .6);
    font-size: var(--step--1);
}

.footer .footer-menu a:hover { color: var(--amber); }

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* ── 16. Modals, forms, spinner, back-to-top ────────────────────────────── */
.form-control,
.form-select {
    border-radius: var(--r-sm);
    border: 1px solid var(--rule);
    background: var(--paper);
    font-size: var(--step-0);
    color: var(--ink);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(23, 112, 58, .12);
    background: #fff;
}

.form-floating > label {
    color: var(--muted);
    font-size: var(--step--1);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--green);
}

.modal-content {
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--ink);
    border-bottom: 0;
    padding: 1.25rem 1.75rem;
}

.modal-header .modal-title {
    color: #fff;
    font-size: var(--step-2);
}

.modal-header .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: .7;
}

.modal-body {
    padding: 1.75rem;
}

.modal-body h5 {
    margin-top: 1.75rem;
    margin-bottom: .6rem;
    font-size: var(--step-1);
}

.modal-body h5:first-child { margin-top: 0; }

.modal-body p { font-size: var(--step--1); }

.modal-footer { border-top: 1px solid var(--rule); }

.alert { border-radius: var(--r-sm); border: 1px solid transparent; }

#spinner {
    opacity: 0;
    visibility: hidden;
    background: var(--paper) !important;
    transition: opacity .4s ease-out, visibility 0s linear .4s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-grow.text-primary { color: var(--green) !important; }

.back-to-top {
    position: fixed;
    display: none;
    right: 28px;
    bottom: 28px;
    z-index: 99;
    border: 0;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.back-to-top:hover { background: var(--green); }


/* ── 17. Motion & responsive ────────────────────────────────────────────── */
img { max-width: 100%; height: auto; }

.img-soft {
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}

@media (max-width: 767.98px) {
    :root { --section-y: 3.75rem; }
    .hero-strip { gap: .75rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .animated,
    .wow {
        animation: none !important;
        visibility: visible !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   18. Palette revision — petrol teal + copper on warm sand
   Client feedback: lighter, warmer, less dark.
   Overrides the tokens above; kept as a trailing block so the
   original system stays readable and reversible.
   ══════════════════════════════════════════════════════════════ */
:root {
    --ink: #143B42;
    --ink-2: #1D5158;
    --green: #16626B;
    --green-deep: #0F464D;
    --green-bright: #2A8A94;
    --amber: #D2822F;
    --amber-deep: #A85F1B;
    --paper: #FBF7F0;
    --card: #FFFFFF;
    --rule: #E9E1D5;
    --muted: #6B6459;

    --bs-primary: #16626B;
    --bs-primary-rgb: 22, 98, 107;

    --shadow: 0 14px 34px -14px rgba(20, 59, 66, .16);
    --shadow-lg: 0 30px 60px -28px rgba(20, 59, 66, .22);
}

/* ── Hero ── */
.hero { background: #F3EDE2; }

.hero::before {
    background:
        radial-gradient(820px 460px at 10% -12%, rgba(22, 98, 107, .16), transparent 62%),
        radial-gradient(640px 440px at 94% 6%, rgba(210, 130, 47, .20), transparent 60%),
        radial-gradient(500px 380px at 60% 105%, rgba(255, 255, 255, .7), transparent 65%);
}

.hero::after {
    opacity: .55;
    background-image: repeating-linear-gradient(-45deg, rgba(20, 59, 66, .035) 0 1px, transparent 1px 12px);
}

.hero h1 { color: var(--ink); }
.hero p { color: var(--muted); }
.hero-strip { border-top-color: var(--rule); }
.hero-strip-item { color: var(--muted); }
.hero-strip-item i { color: var(--amber-deep); }

/* ── Navbar over the light hero ── */
.navbar-light { background: transparent; }
.navbar-light .navbar-brand-mark { color: var(--ink); }
.navbar-light .navbar-nav .nav-link { color: var(--muted) !important; }
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active { color: var(--ink) !important; }
.navbar-light .navbar-nav .nav-link::before { background: var(--amber); }
.navbar-toggler { border-color: var(--rule); color: var(--ink); }
.sticky-top.navbar-light { background: rgba(251, 247, 240, .93); }

.nav-cta { color: #fff; }
.nav-cta:hover { background: var(--amber-deep); color: #fff; }
.btn-accent, .btn.btn-secondary-gradient { color: #fff; }
.btn-accent:hover, .btn.btn-secondary-gradient:hover { background: var(--amber-deep); color: #fff; }
.btn-ghost-light { border-color: var(--ink); color: var(--ink); }

/* ── Rate board ── */
.rate-board { background: #FFFDF9; border-color: #E6D3B8; }
.rate-board::before { border-color: #F0E3CE; }
.rate-board-head { border-bottom-color: #E6D3B8; }
.rate-board-head h3 { color: var(--ink); }
.rate-board-head span { color: var(--amber-deep); }
.rate-row { border-bottom-color: var(--rule); transition: background-color .2s ease; }
.rate-row:hover { background: rgba(210, 130, 47, .05); }
.rate-row-name { color: var(--ink); }
.rate-row-name i { color: var(--green); }
.rate-row-dots { background-image: radial-gradient(circle, rgba(20, 59, 66, .25) 1px, transparent 1px); }
.rate-row-price { color: var(--amber-deep); }
.rate-row-price small { color: var(--muted); }
.rate-board-foot { border-top-color: var(--rule); }
.rate-board-note { color: var(--muted); }

/* ── Section rhythm: alternate sand / white ── */
.section:nth-of-type(even) { background: #F6F1E8; }
.section.section-ink { background: #EAF0EF; }
.section-ink h1, .section-ink h2, .section-ink h3,
.section-ink h4, .section-ink h5 { color: var(--ink); }
.section-ink p { color: var(--muted); }
.section-ink .step::before { background: #D8DEDC; }
.section-ink .step-num { color: var(--amber-deep); }
.section-ink .eyebrow-light { color: var(--amber-deep); }
.section-ink .eyebrow-light::before { background: var(--green); }

.store-btn { background: #fff; border-color: var(--rule); color: var(--ink); }
.store-btn:hover { background: #fff; border-color: var(--green); color: var(--ink); transform: translateY(-2px); }
.store-btn span { color: var(--muted); }
.store-btn i { color: var(--amber-deep); }

/* ── Cards ── */
.card-flat { border-radius: 18px; }
.card-flat:hover { border-color: rgba(22, 98, 107, .3); transform: translateY(-5px); }
.icon-tile { background: rgba(22, 98, 107, .09); color: var(--green); border-radius: 12px; }
.icon-tile-accent { background: rgba(210, 130, 47, .14); color: var(--amber-deep); }
.testimonial-item { border-radius: 18px; }
.phone-frame { background: linear-gradient(160deg, #2C4F55, #14262A); }

/* ── Dark anchors: footer + contact card ── */
.footer { background: #143B42; }
.contact-aside { background: #143B42; }
.contact-line i { color: var(--amber); }
.contact-aside .btn-accent { background: var(--amber); }
.contact-aside .btn-accent:hover { background: #E39647; }
.back-to-top { background: var(--green); }
.back-to-top:hover { background: var(--green-deep); }

/* ── Review avatars: Owl forces .owl-item img to 100% ── */
.testimonial-carousel .owl-item .testimonial-person img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.testimonial-person > div { min-width: 0; }


/* ══════════════════════════════════════════════════════════════
   19. Richness pass
   Client feedback: "make it more attractive". Adds depth, colour
   variety and movement without changing the layout or palette.
   ══════════════════════════════════════════════════════════════ */

/* ── Rate ticker under the hero ─────────────────────────────── */
.ticker {
    overflow: hidden;
    background: var(--ink);
    border-block: 1px solid rgba(255, 255, 255, .08);
    padding: .85rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    width: max-content;
    animation: ticker 44s linear infinite;
}

.ticker-track span {
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    white-space: nowrap;
}

.ticker-track i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ticker:hover .ticker-track { animation-play-state: paused; }

/* ── Floating price tags by the hero phone ──────────────────── */
.phone-tag {
    position: absolute;
    z-index: 6;
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    padding: .45rem 1rem;
    font-size: var(--step--1);
    color: var(--muted);
    box-shadow: var(--shadow);
    white-space: nowrap;
    animation: bob 5s ease-in-out infinite;
}

.phone-tag b {
    font-family: var(--font-mono);
    color: var(--amber-deep);
    margin-left: .3rem;
}

.phone-tag-1 { top: 16%; left: -46px; }
.phone-tag-2 { top: 46%; left: -30px; animation-delay: -2.5s; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@media (max-width: 1199.98px) {
    .phone-tag { display: none; }
}

/* ── Feature cards: a tint each, and a colour bar on hover ──── */
.card-flat {
    position: relative;
    overflow: hidden;
}

.card-flat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity .25s ease, transform .25s ease;
}

.card-flat:hover::before {
    opacity: .9;
    transform: translateY(0);
}

.card-tint-1 { background: #FFFDF9; color: #A85F1B; }
.card-tint-2 { background: #F7FAF9; color: #16626B; }
.card-tint-3 { background: #FDF9F4; color: #B06A3B; }
.card-tint-4 { background: #F6FAFA; color: #1D5158; }
.card-tint-5 { background: #FDFBF6; color: #96702C; }
.card-tint-6 { background: #F8FAF8; color: #2A7A57; }

.card-tint-1 h5, .card-tint-2 h5, .card-tint-3 h5,
.card-tint-4 h5, .card-tint-5 h5, .card-tint-6 h5 { color: var(--ink); }

.card-tint-1 p, .card-tint-2 p, .card-tint-3 p,
.card-tint-4 p, .card-tint-5 p, .card-tint-6 p { color: var(--muted); }

.card-flat:hover .icon-tile { transform: scale(1.06) rotate(-3deg); }
.icon-tile { transition: transform .25s ease; }

/* ── Steps: oversized ghost numeral behind each ─────────────── */
.step { overflow: hidden; }

.step-ghost {
    position: absolute;
    top: .6rem;
    right: 0;
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    color: var(--ink);
    opacity: .07;
    pointer-events: none;
    user-select: none;
}

/* ── Slips: booking confirmation & payment receipt ──────────── */
.slip {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.slip-float { animation: bob 7s ease-in-out infinite; }

.slip-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--rule);
}

.slip-head strong {
    font-family: var(--font-display);
    font-size: var(--step-1);
    letter-spacing: -.02em;
    color: var(--ink);
}

.slip-badge {
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(22, 98, 107, .1);
    color: var(--green);
    border-radius: var(--r-pill);
    padding: .25rem .7rem;
    white-space: nowrap;
}

.slip-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: .72rem 0;
    border-bottom: 1px dashed var(--rule);
    font-size: var(--step--1);
}

.slip-row span { color: var(--muted); }

.slip-row b {
    font-family: var(--font-mono);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    color: var(--ink);
    text-align: right;
}

.slip-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.15rem;
}

.slip-total span {
    font-family: var(--font-mono);
    font-size: var(--step--2);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.slip-total b {
    font-family: var(--font-display);
    font-size: var(--step-3);
    letter-spacing: -.03em;
    color: var(--green);
}

/* Torn receipt edge along the bottom */
.slip-torn::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 10px;
    background: radial-gradient(circle at 9px 0, transparent 9px, var(--card) 9px);
    background-size: 18px 18px;
}

/* ── Reviews: a real quote mark ─────────────────────────────── */
.testimonial-item { position: relative; }

.testimonial-item::before {
    content: "\201C";
    position: absolute;
    top: .35rem;
    right: 1.4rem;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--amber);
    opacity: .18;
    pointer-events: none;
}

/* ── Section headings: a touch more presence ────────────────── */
.section-head h2 { font-size: var(--step-4); }

.eyebrow::before {
    width: 26px;
    height: 2px;
    border-radius: 2px;
}

/* ── Buttons: a little more life on hover ───────────────────── */
.btn-solid:hover,
.btn-accent:hover,
.btn.btn-primary-gradient:hover,
.btn.btn-secondary-gradient:hover {
    transform: translateY(-2px);
}

/* ── Respect reduced motion for everything added above ──────── */
@media (prefers-reduced-motion: reduce) {
    .ticker-track,
    .phone-tag,
    .slip-float { animation: none !important; }
}


/* ══════════════════════════════════════════════════════════════
   20. Client revisions
   - Logo image replaces the text wordmark
   - Rate board and ticker removed
   - Lighter footer and contact card (no dark band at the bottom)
   ══════════════════════════════════════════════════════════════ */

/* ── Brand logo ─────────────────────────────────────────────── */
.brand-logo {
    height: 58px;
    width: auto;
    display: block;
    transition: height .3s ease;
}

.sticky-top.navbar-light .brand-logo { height: 46px; }

@media (max-width: 991.98px) {
    .brand-logo { height: 44px; }
}

/* ── Footer: light, no dark band ────────────────────────────── */
.footer {
    background: #F1EDE4;
    color: var(--muted);
    border-top: 1px solid var(--rule);
}

.footer h4,
.footer h5 { color: var(--amber-deep); }

.footer p { color: var(--muted); }

.footer .btn.btn-link { color: var(--muted); }
.footer .btn.btn-link:hover { color: var(--green); }

.footer .btn.btn-social {
    border-color: var(--rule);
    background: #fff;
    color: var(--green);
}

.footer .btn.btn-social:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.footer-contact-line i { color: var(--amber-deep); }
.footer-contact-line,
.footer-contact-line a { color: var(--muted); }
.footer-contact-line a:hover { color: var(--green); }

.newsletter-field .form-control {
    background: #fff;
    border-color: var(--rule);
    color: var(--ink);
}

.newsletter-field .form-control::placeholder { color: #9A9287; }

.newsletter-field .form-control:focus {
    background: #fff;
    border-color: var(--green);
    color: var(--ink);
}

.newsletter-field button { background: var(--amber); color: #fff; }
.newsletter-field button:hover { background: var(--amber-deep); }

.footer .copyright {
    border-top-color: var(--rule);
    color: var(--muted);
}

.footer .copyright a { color: var(--ink); }
.footer .copyright a:hover { color: var(--green); }

.footer .footer-menu a {
    border-right-color: var(--rule);
    color: var(--muted);
}

.footer .footer-menu a:hover { color: var(--green); }

/* ── Contact card: light to match ───────────────────────────── */
.contact-aside {
    background: #FFFDF9;
    border: 1px solid var(--rule);
    color: var(--ink);
}

.contact-aside h3 { color: var(--ink); }
.contact-aside p { color: var(--muted); }

.contact-line { border-bottom-color: var(--rule); }
.contact-line i { color: var(--amber-deep); }
.contact-line span { color: var(--muted); }
.contact-line a,
.contact-line p { color: var(--ink); }
.contact-line a:hover { color: var(--green); }

.contact-aside .btn-accent { background: var(--amber); color: #fff; }
.contact-aside .btn-accent:hover { background: var(--amber-deep); color: #fff; }


/* ── Logo sizing (final) ────────────────────────────────────── */
.brand-logo {
    height: 96px;
    width: auto;
    display: block;
    margin-top: 6px;
    margin-bottom: -30px;
    transition: height .3s ease;
}

.sticky-top.navbar-light .brand-logo { height: 64px; margin-top: 4px; margin-bottom: -14px; }

@media (max-width: 991.98px) {
    .brand-logo { height: 60px; margin-top: 4px; margin-bottom: -12px; }
}
