/* =========================================================================
   EARKART ENT PHARMA — MAIN STYLESHEET
   Hand-written, no framework. Organised in clearly labelled sections.

   HOW TO CHANGE COLOURS: edit the values in ":root" just below. Every colour
   on the site uses these variables, so one change updates the whole site.
   Media queries (mobile/tablet) live in responsive.css.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1) COLOURS & DESIGN TOKENS  —  🎨 EDIT COLOURS HERE
   ------------------------------------------------------------------------- */
:root {
    --navy:          #06172e;   /* main dark brand colour (header, footer)   */
    --navy-soft:     #0b2547;   /* lighter navy for gradients                */
    --clinical:      #0a3b78;   /* primary blue (links, accents)             */
    --clinical-light:#1e5aa8;   /* lighter blue                              */
    --gold:          #d6a642;   /* gold accent                               */
    --gold-light:    #e9cd8b;   /* lighter gold (hover)                      */
    --ice:           #eaf5ff;   /* light blue section background             */
    --soft:          #f8fafc;   /* off-white page background                 */
    --ink:           #1e293b;   /* main body text                           */
    --ink-muted:     #57687f;   /* softer grey text                         */
    --line:          #dbe7f3;   /* borders / dividers                       */
    --rx:            #b91c1c;   /* red, prescription warnings only          */
    --white:         #ffffff;

    /* Fonts (loaded in header.php via Google Fonts) */
    /* Fonts */
--font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
--font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

    /* Layout */
    --container: 1120px;
    --radius: 16px;
    --shadow-card: 0 1px 2px rgba(6,23,46,.05), 0 8px 24px rgba(6,23,46,.07);
    --shadow-hover: 0 2px 4px rgba(6,23,46,.06), 0 18px 44px rgba(6,23,46,.14);
}

/* -------------------------------------------------------------------------
   2) RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--soft);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; font-weight: 600; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 100;
    background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--clinical); outline-offset: 2px; box-shadow: 0 0 0 2px #fff; border-radius: 3px; }
.muted { color: var(--ink-muted); }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; animation: none !important; }
}

/* -------------------------------------------------------------------------
   3) SHARED PIECES: buttons, section titles, gold rule, badges, icons
   ------------------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
    border: 1px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}
.btn--gold   { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); }
.btn--navy   { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--clinical); }
.btn--ghost-light { border-color: rgba(255,255,255,.3); color: #fff; }
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost { border-color: rgba(6,23,46,.25); color: var(--navy); }
.btn--ghost:hover { border-color: var(--clinical); color: var(--clinical); }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

.section-title { font-family: var(--font-display); font-size: 2rem; color: var(--navy); }
.section-title--sm { font-size: 1.5rem; }
.gold-rule { width: 56px; height: 3px; border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin-bottom: 20px; }
.text-link { color: var(--clinical); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.text-link:hover { color: var(--navy); }

.icon { width: 20px; height: 20px; flex: none; }
.icon--sm { width: 16px; height: 16px; }
.icon--gold { color: var(--gold); }
.icon--blue { color: var(--clinical); }

.badge { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.badge--category { background: rgba(10,59,120,.9); color: #fff; }
.badge--rx { background: #fff; color: var(--rx); border: 1px solid rgba(185,28,28,.3); text-transform: none; }
.badge--pill { background: rgba(255,255,255,.1); color: var(--gold-light); border: 1px solid rgba(214,166,66,.4); }
.badge--rx-solid { background: #fff; color: var(--rx); text-transform: none; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* Dark / light section backgrounds */
.section--navy { background: linear-gradient(135deg, var(--navy), var(--navy-soft) 55%, var(--clinical)); color: #fff; }
.section--ice  { background: var(--ice); }
.stack + .stack { margin-top: 64px; }

/* -------------------------------------------------------------------------
   4) SITE HEADER + NAVIGATION
   ------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(6,23,46,.95);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.1); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo img { height: 34px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav__list { display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: #dbe4f0; font-size: .95rem; font-weight: 500; transition: color .2s; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--gold); }
.nav-cta { padding: 8px 18px; font-size: .9rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px; padding: 9px 10px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; }

/* -------------------------------------------------------------------------
   5) HOME HERO
   ------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center;
    padding-block: 72px; }
.hero__eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: .82rem;
    font-weight: 600; margin-top: 20px; }
.hero__title { font-family: var(--font-display); font-size: 3.1rem; color: #fff; margin-top: 14px; }
.hero__subtitle { color: #cbd6e6; font-size: 1.1rem; margin-top: 22px; max-width: 34em; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__card { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 24px;
    padding: 24px; max-width: 340px; margin-left: auto; box-shadow: 0 0 60px rgba(214,166,66,.14); }
.hero__card-frame { background: #fff; border-radius: var(--radius); padding: 16px; display: flex; justify-content: center; }
.hero__card-frame img { max-height: 240px; width: auto; object-fit: contain; }
.hero__card-caption { text-align: center; color: var(--clinical); text-transform: uppercase;
    letter-spacing: .2em; font-size: .65rem; font-weight: 700; margin-top: 14px; }

/* Trust badges */
.trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; padding-bottom: 20px; }
.trust-badge { display: flex; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px; padding: 14px 16px; }
.trust-badge .icon { color: var(--gold); }
.trust-badge strong { display: block; color: #fff; font-size: .9rem; }
.trust-badge span { color: #cbd6e6; font-size: .78rem; }

/* -------------------------------------------------------------------------
   6) GENERIC SECTIONS: intro blocks, cards
   ------------------------------------------------------------------------- */
.section { padding-block: 72px; }
.section__intro { max-width: 44em; }
.section__intro p { color: var(--ink-muted); margin-top: 16px; font-size: 1.05rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow-card); transition: transform .3s, box-shadow .3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.info-card__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; background: var(--ice); color: var(--clinical); }
.info-card--dark .info-card__icon { background: var(--navy); color: var(--gold); }
.info-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-top: 16px; }
.info-card p { color: var(--ink-muted); font-size: .92rem; margin-top: 8px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); background: var(--soft);
    border-radius: 999px; padding: 6px 12px; font-size: .78rem; font-weight: 600; color: var(--clinical); }
.chip:hover { border-color: var(--gold); color: var(--navy); }

/* -------------------------------------------------------------------------
   7) PRODUCT CARDS + GRID
   ------------------------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-card); transition: transform .3s, box-shadow .3s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card__link { display: flex; flex-direction: column; height: 100%; }
.product-card__media {
    position: relative;
    height: 320px;          /* was 208px */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    overflow: hidden;
}

.product-card__media picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.product-card__media .badge--category { position: absolute; left: 16px; top: 16px; }
.product-card__media .badge--rx { position: absolute; right: 16px; top: 16px; }
.product-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; border-top: 1px solid var(--line); }
.product-card__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); }
.product-card__comp { color: var(--clinical); font-weight: 500; font-size: .9rem; margin-top: 6px; }
.product-card__ind { color: var(--ink-muted); font-size: .9rem; margin-top: 8px; flex: 1; }
.product-card__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--navy);
    font-weight: 600; font-size: .9rem; }
.product-card:hover .product-card__cta { color: var(--clinical); }

/* Portfolio controls (search + filter) */
.portfolio-controls { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-card); }
.control-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; color: var(--ink-muted); }
.search-box { position: relative; max-width: 320px; width: 100%; }
.search-box .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--ink-muted); }
.search-box input { width: 100%; border: 1px solid var(--line); background: var(--soft); border-radius: 10px;
    padding: 10px 12px 10px 36px; font: inherit; font-size: .9rem; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.filter-btn { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 7px 14px;
    font: inherit; font-size: .85rem; font-weight: 600; color: var(--ink); cursor: pointer; }
.filter-btn:hover { border-color: var(--clinical); color: var(--clinical); }
.filter-btn[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.filter-btn .count { font-size: .75rem; opacity: .7; margin-left: 6px; }
.results-count { color: var(--ink-muted); font-size: .9rem; margin-top: 24px; }
.no-results { text-align: center; border: 1px dashed var(--line); background: #fff; border-radius: var(--radius); padding: 40px; margin-top: 24px; }

/* -------------------------------------------------------------------------
   8) PRODUCT PAGE
   ------------------------------------------------------------------------- */
.breadcrumbs { font-size: .88rem; color: #cbd6e6; padding-top: 8px; }
.breadcrumbs a { color: #cbd6e6; } .breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .current { color: var(--gold-light); font-weight: 500; }
.breadcrumbs span { color: #6b7c92; margin: 0 6px; }

.product-hero { padding-bottom: 64px; }
.product-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; margin-top: 32px; }
.product-hero__title { font-family: var(--font-display); font-size: 3rem; color: #fff; margin-top: 18px; }
.product-hero__sub { display: block; font-family: var(--font-sans); font-weight: 400; font-size: 1.35rem; color: #cbd6e6; margin-top: 8px; }
.product-hero__facts { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.product-hero__facts > div { display: flex; gap: 14px; }
.product-hero__facts dt { width: 130px; flex: none; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; font-weight: 600; }
.product-hero__facts dd { color: #eef3f9; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-disclaimer { color: #9fb0c6; font-size: .78rem; margin-top: 22px; max-width: 40em; }
.packshot-card { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 24px; padding: 28px;
    max-width: 380px; margin-inline: auto; box-shadow: 0 0 60px rgba(214,166,66,.14); }
.packshot-card__frame { background: #fff; border-radius: var(--radius); padding: 20px; display: flex; justify-content: center; }
.packshot-card__frame img { max-height: 280px; width: 100%; object-fit: contain; }
.packshot-card__caption { text-align: center; color: var(--clinical); text-transform: uppercase; letter-spacing: .2em; font-size: .65rem; font-weight: 700; margin-top: 16px; }

.product-page__body { padding-block: 64px; }
.prose p { margin-top: 20px; color: var(--ink); font-size: 1.02rem; }

/* Snapshot definition-list "table" */
.snapshot { margin-top: 32px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.snapshot > div { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.snapshot > div:nth-child(even) { background: rgba(248,250,252,.7); }
.snapshot > div:last-child { border-bottom: 0; }
.snapshot dt { text-transform: uppercase; letter-spacing: .05em; font-size: .72rem; font-weight: 600; color: var(--ink-muted); }
.snapshot dd { font-weight: 500; }
.rx-note { margin-top: 16px; border: 1px solid rgba(185,28,28,.2); background: rgba(185,28,28,.05); color: var(--rx);
    font-weight: 500; padding: 12px 16px; border-radius: 12px; font-size: .92rem; }

/* Composition table */
.table-scroll { overflow-x: auto; margin-top: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-card); }
.comp-table { width: 100%; min-width: 540px; border-collapse: collapse; font-size: .92rem; }
.comp-table thead th { background: var(--navy); color: #fff; text-align: left; padding: 14px 20px; font-weight: 600; }
.comp-table tbody th, .comp-table td { padding: 16px 20px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
.comp-table tbody th { color: var(--navy); font-weight: 600; }
.comp-table tbody tr:nth-child(even) { background: rgba(248,250,252,.7); }
.fineprint { color: var(--ink-muted); font-size: .8rem; margin-top: 12px; }

/* Responsible use */
.responsible-use { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.responsible-use__head { display: flex; align-items: center; gap: 12px; padding: 20px 24px; background: rgba(234,245,255,.7); border-bottom: 1px solid var(--line); }
.responsible-use__head .icon { color: var(--clinical); }
.responsible-use__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 24px; }
.minor-title { text-transform: uppercase; letter-spacing: .05em; font-size: .72rem; color: var(--ink-muted); }
.tick-list { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.tick-list li { display: flex; gap: 10px; font-size: .92rem; }
.tick-list .icon { margin-top: 3px; }
.responsible-use__rx { border-top: 1px solid rgba(185,28,28,.2); background: rgba(185,28,28,.05); color: var(--rx); font-weight: 600; padding: 14px 24px; font-size: .92rem; }

/* FAQ */
.faq { max-width: 780px; }
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 20px;
    cursor: pointer; font-weight: 500; color: var(--navy); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__plus { color: var(--gold); font-size: 1.3rem; line-height: 1; transition: transform .2s; }
.faq-item[open] .faq-item__plus { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 18px; color: var(--ink-muted); font-size: .92rem; }

/* Related products + CTA band */
.related { padding-block: 64px; }
.related__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; }
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner { padding-block: 72px; max-width: 48em; }
.cta-band__title { font-family: var(--font-display); font-size: 2.2rem; color: #fff; margin-top: 20px; }
.cta-band__text { color: #cbd6e6; margin-top: 16px; font-size: 1.05rem; }
.cta-band__contact { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 28px; }
.cta-band__contact a { display: inline-flex; align-items: center; gap: 8px; color: #cbd6e6; }
.cta-band__contact a:hover { color: var(--gold); }

/* Sticky mobile CTA (hidden on desktop, shown on small screens in responsive.css) */
.sticky-cta { display: none; position: sticky; bottom: 0; z-index: 30; background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line); padding: 12px 16px; backdrop-filter: blur(8px); }

/* -------------------------------------------------------------------------
   9) FORMS (contact / enquiry)
   ------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.field { margin-bottom: 20px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.field .req { color: var(--rx); }
.field input, .field select, .field textarea {
    width: 100%; margin-top: 6px; border: 1px solid var(--line); border-radius: 10px; padding: 11px 16px;
    font: inherit; font-size: .92rem; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clinical); }
.field textarea { resize: vertical; min-height: 120px; }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-error { color: var(--rx); font-size: .78rem; margin-top: 4px; }
.form-note { color: var(--ink-muted); font-size: .78rem; margin-top: 4px; }
.form-alert { padding: 12px 16px; border-radius: 10px; font-size: .9rem; margin-bottom: 18px; }
.form-alert--error { background: rgba(185,28,28,.05); border: 1px solid rgba(185,28,28,.25); color: var(--rx); }
.form-success { text-align: center; border: 1px solid rgba(10,59,120,.25); background: rgba(234,245,255,.6);
    border-radius: var(--radius); padding: 32px; }
.form-success .icon { width: 48px; height: 48px; color: #fff; background: var(--clinical); border-radius: 999px; padding: 12px; margin: 0 auto; }
.form-success h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-top: 16px; }
.form-success p { color: var(--ink-muted); font-size: .92rem; margin-top: 8px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line); background: #fff;
    border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-card); }
.contact-card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--ice); color: var(--clinical);
    display: flex; align-items: center; justify-content: center; flex: none; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); }
.contact-card .sub { color: var(--ink-muted); font-size: .88rem; margin-top: 4px; }
.contact-card .val { color: var(--clinical); font-weight: 500; margin-top: 8px; }

/* Simple page hero (about, contact, portfolio) */
.page-hero { padding-block: 48px 56px; }
.page-hero h1 { font-family: var(--font-display); font-size: 2.8rem; color: #fff; margin-top: 20px; }
.page-hero p { color: #cbd6e6; font-size: 1.1rem; margin-top: 20px; max-width: 44em; }

/* -------------------------------------------------------------------------
   10) SITE FOOTER
   ------------------------------------------------------------------------- */
.site-footer { margin-top: auto; background: var(--navy); color: #b9c6d6; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-block: 56px; }
.footer-brand img { height: 34px; width: auto; }
.footer-brand__label { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: .62rem; font-weight: 600; margin-top: 10px; }
.footer-brand__blurb { color: #8fa0b4; font-size: .88rem; margin-top: 16px; }
.footer-col__title { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: #fff; font-weight: 600; }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #8fa0b4; font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact a, .footer-contact__addr { display: flex; gap: 10px; align-items: flex-start; color: #8fa0b4; font-size: .9rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-sites { display: flex; flex-wrap: wrap; gap: 12px; padding-left: 26px; }
.social-list { display: flex; gap: 12px; margin-top: 18px; }
.social-list a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px;
    display: flex; align-items: center; justify-content: center; color: #b9c6d6; }
.social-list a:hover { border-color: var(--gold); color: var(--gold); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0 40px; font-size: .78rem; color: #7e8ea3; display: flex; flex-direction: column; gap: 12px; }
.footer-legal strong { color: #b9c6d6; }

/* -------------------------------------------------------------------------
   11) SLIDER (driven by assets/js/slider.js)
   ------------------------------------------------------------------------- */
.slider { position: relative; }
.slider .slide { display: none; }
.slider .slide.is-active { display: block; animation: fade .5s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.slider-dot { width: 9px; height: 9px; border-radius: 999px; border: 0; background: rgba(255,255,255,.3); cursor: pointer; padding: 0; }
.slider-dot.is-active { background: var(--gold); }

/* Brand-promise slider on the home page */
.promise { text-align: center; }
.promise .slide { max-width: 46em; margin-inline: auto; }
.promise blockquote { font-family: var(--font-display); font-size: 1.6rem; color: #fff; line-height: 1.4; }
.promise .slide span { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 600; margin-top: 18px; }
.manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}