/* =========================================================================
   Aluminium Bottle Caps & Packaging Products — public site styles
   Navy + white industrial theme. Mobile-first, no horizontal scroll.
   ========================================================================= */

:root {
  --brand: #0b1f3b;
  --brand-600: #123055;
  --brand-400: #2a4a78;
  --accent: #c9a227;
  --accent-600: #a9861a;
  --ink: #1c2430;
  --muted: #5b6675;
  --line: #e4e8ee;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --bg-navy: #0b1f3b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 59, .08), 0 2px 8px rgba(11, 31, 59, .06);
  --shadow-md: 0 6px 24px rgba(11, 31, 59, .12);
  --container: 1200px;
  --header-h: 76px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-400); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.22; color: var(--brand); margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --- Utilities --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; }
.sr-only, .skip-link {
  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:focus {
  position: fixed; top: 10px; left: 10px; width: auto; height: auto; clip: auto;
  z-index: 1000; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 8px;
}
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.icon { width: 24px; height: 24px; flex: none; }
.inline-icon { width: 18px; height: 18px; vertical-align: -3px; flex: none; }
.btn-icon { width: 18px; height: 18px; flex: none; }
.flip { transform: rotate(180deg); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700;
  color: var(--accent-600); margin: 0 0 .6rem;
}
.eyebrow--light { color: #f0d488; }
.muted-note, .figure-note { color: var(--muted); font-size: .85rem; }
.hl { color: var(--accent); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none; transition: transform .12s, background .15s, box-shadow .15s;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-600); }
.btn--accent { background: var(--accent); color: #201a05; }
.btn--accent:hover { background: var(--accent-600); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* --- Header / nav --- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line); transition: box-shadow .2s;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand img { width: auto; max-height: 52px; }
.brand:hover { text-decoration: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--brand); cursor: pointer;
}
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.primary-nav { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; }

@media (max-width: 960px) {
  .primary-nav[data-open="true"] {
    display: block; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 12px 20px 20px; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .primary-nav > ul > li { border-bottom: 1px solid var(--line); }
  .primary-nav > ul > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 4px; font-weight: 600; color: var(--ink); font-size: 1.05rem;
  }
  .primary-nav .has-dropdown { position: relative; }
  .dropdown-toggle {
    position: absolute; right: 0; top: 6px; width: 44px; height: 44px;
    background: transparent; border: 0; color: var(--brand); cursor: pointer;
  }
  .dropdown-toggle[aria-expanded="true"] .dd-caret { transform: rotate(90deg); }
  .dropdown { display: none; padding: 0 0 10px 12px; }
  .has-dropdown[data-open="true"] .dropdown { display: block; }
  .dropdown a { display: block; padding: 10px 4px; color: var(--muted); }
  .dropdown a:hover { color: var(--brand); }
  .primary-nav > ul > li > a .dd-caret { display: none; }
  .nav-cta { display: inline-flex; margin-top: 16px; }
}

@media (min-width: 961px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: .4rem; }
  .primary-nav > ul { display: flex; align-items: center; gap: .2rem; }
  .primary-nav > ul > li { position: relative; }
  .primary-nav > ul > li > a {
    display: inline-flex; align-items: center; gap: .3rem; padding: .7rem .85rem;
    font-weight: 600; color: var(--ink); border-radius: 8px;
  }
  .primary-nav > ul > li > a:hover,
  .primary-nav > ul > li > a[aria-current="page"] { color: var(--brand); background: var(--bg-soft); text-decoration: none; }
  .primary-nav > ul > li > a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--accent); }
  .dropdown-toggle { display: none; }
  .dd-caret { width: 16px; height: 16px; transition: transform .15s; }
  .dropdown {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
    background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
    padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown,
  .has-dropdown[data-open="true"] .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .has-dropdown:hover .dd-caret,
  .has-dropdown[data-open="true"] .dd-caret { transform: rotate(90deg); }
  .dropdown a { display: block; padding: .6rem .8rem; border-radius: 8px; color: var(--ink); }
  .dropdown a:hover { background: var(--bg-soft); color: var(--brand); text-decoration: none; }
  .nav-cta { margin-left: .6rem; }
}

/* --- Hero carousel --- */
.hero { position: relative; background: var(--bg-navy); overflow: hidden; }
.hero__track { position: relative; }
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s ease; }
.hero__slide.is-active { position: relative; opacity: 1; visibility: visible; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,17,36,.9) 0%, rgba(6,17,36,.62) 45%, rgba(6,17,36,.28) 100%);
}
.hero__content { position: relative; z-index: 2; padding: clamp(3rem, 9vw, 7rem) 20px; max-width: 760px; color: #fff; }
.hero__title { color: #fff; margin-bottom: .6rem; }
.hero__desc { font-size: 1.1rem; color: #dfe6f0; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__controls {
  position: absolute; z-index: 3; left: 50%; transform: translateX(-50%); bottom: 64px;
  display: flex; align-items: center; gap: .6rem;
}
.hero__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  background: rgba(6,17,36,.45); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.hero__btn:hover { background: rgba(6,17,36,.8); }
.hero__btn .icon { width: 20px; height: 20px; }
.hero__btn--play { font-size: .8rem; }
.hero__btn--play [data-pause-icon] { display: none; }
.hero[data-playing="true"] .hero__btn--play [data-play-icon] { display: none; }
.hero[data-playing="true"] .hero__btn--play [data-pause-icon] { display: inline; }
.hero__counter { color: #fff; font-variant-numeric: tabular-nums; font-size: .9rem; min-width: 52px; text-align: center; }
.hero__dots {
  position: absolute; z-index: 3; left: 50%; transform: translateX(-50%); bottom: 30px;
  display: flex; gap: .5rem;
}
.hero__dots button {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0;
}
.hero__dots button[aria-selected="true"] { background: var(--accent); border-color: var(--accent); }

@media (max-width: 780px) {
  .hero__slide.is-active { min-height: 78vh; display: flex; align-items: flex-end; }
  .hero__content { padding-bottom: 8rem; }
  .hero__controls { bottom: 58px; }
}

/* --- Benefits strip --- */
.benefits { background: var(--brand); color: #fff; }
.benefits__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.14);
}
.benefit { background: var(--brand); display: flex; gap: .9rem; padding: 1.6rem 1.2rem; align-items: flex-start; }
.benefit__icon { color: var(--accent); }
.benefit h2 { color: #fff; font-size: 1.02rem; margin: 0 0 .2rem; }
.benefit p { color: #c8d2e2; font-size: .9rem; margin: 0; }
@media (max-width: 900px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefits__grid { grid-template-columns: 1fr; } }

/* --- Sections --- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--white { background: #fff; }
.section--light { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-title { text-align: center; }
.section-sub { text-align: center; color: var(--muted); max-width: 60ch; margin: -.2rem auto 2rem; }
.section--navy .section-sub { color: #c8d2e2; }
.section-cta { text-align: center; margin-top: 2rem; margin-bottom: 0; }
.eyebrow { text-align: center; }
.section .prose .eyebrow, .split .eyebrow, .detail-main .eyebrow { text-align: left; }

/* --- Category grid --- */
.cat-grid { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 1.4rem; }
.cat-grid--compact { --cols: 3; margin-bottom: 2.4rem; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s;
  color: var(--ink);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.cat-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--brand); display: block; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__icon {
  position: absolute; left: 14px; bottom: -20px; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); color: #201a05; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.cat-card__body { padding: 1.4rem 1.2rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.cat-card__title { font-weight: 700; color: var(--brand); font-size: 1.12rem; }
.cat-card__desc { color: var(--muted); font-size: .92rem; flex: 1; }
.cat-card__more { color: var(--accent-600); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
@media (max-width: 900px) { .cat-grid, .cat-grid--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid, .cat-grid--compact { grid-template-columns: 1fr; } }

/* --- Feature cards --- */
.feature-grid { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 1.2rem; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.section--light .feature-card { background: #fff; }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: rgba(11,31,59,.06); color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.feature-card h3 { margin-bottom: .3rem; }
.feature-card p { color: var(--muted); margin: 0; font-size: .95rem; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* --- Split --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__body h2 { margin-bottom: .6rem; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split__media { order: -1; } }

/* --- CTA band --- */
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band__inner h2 { margin-bottom: .4rem; }
.cta-band__inner p { color: #c8d2e2; margin: 0; max-width: 52ch; }

/* --- Prose --- */
.prose { max-width: 72ch; }
.prose--wide { max-width: 60rem; margin: 0 auto; }
.prose h2, .prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; }
.prose a { color: var(--brand-400); text-decoration: underline; }
.tick-list { list-style: none; padding: 0; display: grid; gap: .7rem; }
.tick-list li { display: flex; gap: .6rem; align-items: flex-start; }
.tick { width: 20px; height: 20px; color: #1f9d55; flex: none; margin-top: 3px; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { background: rgba(11,31,59,.06); color: var(--brand); border-radius: 999px; padding: .35rem .8rem; font-size: .88rem; font-weight: 600; }

/* --- Page head --- */
.pagehead { position: relative; background: var(--brand); color: #fff; }
.pagehead__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.pagehead__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,17,36,.55), rgba(6,17,36,.8)); }
.pagehead__inner { position: relative; z-index: 2; padding: clamp(2.4rem, 6vw, 4.5rem) 20px; }
.pagehead h1 { color: #fff; margin: 0; }
.pagehead__intro { color: #dbe2ee; max-width: 62ch; margin: .8rem 0 0; font-size: 1.06rem; }

/* --- Breadcrumbs --- */
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 1rem; font-size: .85rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: .4rem; color: rgba(255,255,255,.6); }
.pagehead .breadcrumbs a { color: #cdd6e4; }
.pagehead .breadcrumbs span { color: #fff; }

/* --- Detail layout --- */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.detail-main h2 { margin-top: 2rem; }
.detail-main h2:first-child { margin-top: 0; }
.detail-figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--brand); }
.detail-figure { margin-bottom: 1.4rem; }
.thumb-row { display: flex; gap: .6rem; margin-top: .7rem; flex-wrap: wrap; }
.thumb { width: 84px; height: 64px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-aside { position: sticky; top: calc(var(--header-h) + 16px); }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); display: grid; gap: .7rem; }
.aside-card h2 { margin: 0; font-size: 1.15rem; }
.aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .2rem; }
.aside-list a { display: flex; align-items: center; gap: .3rem; padding: .45rem 0; color: var(--ink); border-bottom: 1px solid var(--line); }
.aside-list a:hover { color: var(--brand); text-decoration: none; }
.aside-back { display: inline-flex; align-items: center; gap: .3rem; margin-top: .4rem; font-weight: 600; }
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } .detail-aside { position: static; } }

.spec-table { width: 100%; border-collapse: collapse; margin: .5rem 0 1rem; }
.spec-table th, .spec-table td { text-align: left; padding: .7rem .9rem; border: 1px solid var(--line); vertical-align: top; }
.spec-table th { background: var(--bg-soft); width: 38%; color: var(--brand); font-weight: 600; }

/* --- Product grid --- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__media { aspect-ratio: 4/3; display: block; background: var(--brand); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-card__tag { align-self: flex-start; background: rgba(11,31,59,.06); color: var(--brand); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .55rem; border-radius: 6px; }
.product-card h2, .product-card h3 { font-size: 1.08rem; margin: 0; }
.product-card p { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.link-more { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--accent-600); }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

/* --- Product filter --- */
.product-filter { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin: 0 0 1.6rem; }
.product-filter__search { position: relative; flex: 1 1 260px; }
.product-filter__search .inline-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.product-filter input[type="search"] { width: 100%; padding: .75rem .9rem .75rem 2.4rem; border: 1px solid var(--line); border-radius: 10px; font-size: 1rem; }
.product-filter select { padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 10px; font-size: 1rem; background: #fff; flex: 0 1 220px; }
.product-filter__clear { font-weight: 600; }
.result-count { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }

.empty-state { text-align: center; padding: 3rem 1rem; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bg-soft); }
.empty-state__icon { width: 44px; height: 44px; color: var(--muted); margin: 0 auto 1rem; }

/* --- Enquiry CTA --- */
.enquiry-cta {
  background: var(--brand); color: #fff; border-radius: 0;
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.enquiry-cta { display: block; }
.enquiry-cta > * { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.enquiry-cta { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 780px) {
  .enquiry-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}
.enquiry-cta h2 { color: #fff; margin: 0 0 .3rem; }
.enquiry-cta p { color: #c8d2e2; margin: 0; }

/* --- Gallery + lightbox --- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery__item { aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s; }
.gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(4,10,22,.92);
  display: flex; align-items: center; justify-content: center; padding: 4vmin;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
}
.lightbox__close { top: 3vmin; right: 3vmin; }
.lightbox__nav--prev { left: 3vmin; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 3vmin; top: 50%; transform: translateY(-50%); }

/* --- FAQ --- */
.faq__item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: .7rem; background: #fff; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1rem 1.2rem; font-weight: 600; color: var(--brand);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__caret { width: 18px; height: 18px; transition: transform .15s; flex: none; }
.faq__item[open] .faq__caret { transform: rotate(90deg); }
.faq__body { padding: 0 1.2rem 1.1rem; color: var(--muted); }

/* --- Contact --- */
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-list .icon { color: var(--accent-600); }
.contact-list__label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.extra-contact { display: grid; gap: .15rem; padding: .9rem 0; border-top: 1px solid var(--line); font-size: .92rem; }
.extra-contact strong { color: var(--brand); }

/* --- Forms --- */
.enquiry-form { display: grid; gap: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.2rem, 4vw, 2rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: grid; gap: .35rem; }
.form-group label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.req { color: #c0392b; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%; padding: .75rem .85rem; border: 1px solid #c9d2de; border-radius: 9px; font: inherit; font-size: 1rem; background: #fff;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--brand-400); outline: 2px solid rgba(42,74,120,.25); outline-offset: 0; }
.enquiry-form [aria-invalid="true"] { border-color: #c0392b; }
.field-error { color: #c0392b; font-size: .85rem; }
.form-consent label { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .92rem; }
.form-consent input { width: auto; margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { display: flex; gap: .8rem; padding: 1rem 1.2rem; border-radius: 10px; margin-bottom: 1.2rem; }
.alert__icon { width: 24px; height: 24px; flex: none; }
.alert--success { background: #e7f6ec; color: #1c6b3a; border: 1px solid #b6e0c4; }
.alert--error { background: #fdecea; color: #a33025; border: 1px solid #f5c6c0; }
.alert p { margin: .2rem 0 0; }

/* --- Footer --- */
.site-footer { background: #081428; color: #b9c4d4; padding-top: clamp(2.5rem, 6vw, 4rem); }
.site-footer a { color: #cdd6e4; }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer__logo { max-height: 54px; width: auto; margin-bottom: 1rem; }
.site-footer__about p { font-size: .92rem; max-width: 42ch; }
.site-footer__col h3 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-size: .92rem; }
.site-footer address { font-style: normal; display: grid; gap: .6rem; font-size: .92rem; }
.site-footer address p { display: flex; gap: .5rem; margin: 0; align-items: flex-start; }
.site-footer .inline-icon { color: var(--accent); margin-top: 3px; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.social a:hover { background: rgba(255,255,255,.1); }
.social__icon { width: 20px; height: 20px; }
.site-footer__bar { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; flex-wrap: wrap; gap: .5rem; }
.site-footer__bar p { margin: 0; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* --- WhatsApp FAB --- */
.whatsapp-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 200; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.whatsapp-fab:hover { background: #1fb457; }
.whatsapp-fab__icon { width: 30px; height: 30px; }

/* --- Error pages --- */
.errorpage { text-align: center; }
.errorpage .prose { margin: 0 auto; }
.errorpage__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
