/* Simyamed Medical — UK Distributor */
:root {
  --navy: #0c2340;
  --navy-light: #163a5f;
  --teal: #007681;
  --teal-dark: #005a63;
  --gold: #c5a572;
  --gold-light: #d4bc8e;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --grey-100: #eef2f6;
  --grey-200: #d9e2ec;
  --grey-500: #627d98;
  --grey-700: #334e68;
  --grey-900: #102a43;
  --text: #243b53;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 35, 64, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --max: 1200px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--navy); color: #fff; padding: .5rem 1rem; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* Utility bar */
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .8125rem;
}
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; min-height: 40px;
}
.badge-distributor {
  font-weight: 600; color: var(--gold-light);
}
.utility-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.utility-links a { color: rgba(255,255,255,.85); }
.utility-links a:hover { color: #fff; }
.utility-cta { color: var(--gold-light) !important; font-weight: 600; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--grey-200);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  overflow: visible;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
  position: relative;
  overflow: visible;
}
.brand { display: flex; align-items: center; gap: .75rem; color: var(--grey-900); }
.brand:hover { color: var(--navy); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff; font-weight: 700; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.02em; }
.brand-text span { font-size: .6875rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: .04em; }

/* ===== SITE NAVIGATION ===== */
.site-nav { flex: 1; display: flex; justify-content: flex-end; }

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .125rem;
  margin: 0;
  padding: 0;
}

.menu-item { position: relative; }

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .8rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey-700);
  border-radius: var(--radius);
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.menu-link:hover,
.menu-link.is-active,
.menu-item--drop.is-open > .menu-link--toggle,
.menu-item--drop.is-open-desktop > .menu-link--toggle {
  color: var(--navy);
  background: var(--grey-100);
}

.menu-link--cta {
  background: var(--teal);
  color: #fff !important;
  margin-left: .25rem;
}

.menu-link--cta:hover,
.menu-link--cta.is-active {
  background: var(--teal-dark);
  color: #fff !important;
}

.menu-arrow {
  opacity: .55;
  transition: transform .2s;
  flex-shrink: 0;
}

.menu-item--drop:hover > .menu-link--toggle .menu-arrow,
.menu-item--drop.is-open > .menu-link--toggle .menu-arrow,
.menu-item--drop.is-open-desktop > .menu-link--toggle .menu-arrow {
  transform: rotate(180deg);
}

/* Dropdown panels — hidden by default */
.menu-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
}

.menu-item--drop:hover > .menu-drop,
.menu-item--drop.is-open > .menu-drop,
.menu-item--drop.is-open-desktop > .menu-drop {
  display: block;
}

.menu-drop--wide {
  min-width: 420px;
  left: 50%;
  margin-left: -210px;
}

.menu-item--wide:hover > .menu-drop--wide,
.menu-item--wide.is-open > .menu-drop--wide,
.menu-item--wide.is-open-desktop > .menu-drop--wide {
  display: block;
}

.menu-drop-list {
  list-style: none;
  margin: 0;
  padding: .5rem 0;
}

.menu-drop-list a {
  display: block;
  padding: .5rem 1.125rem;
  font-size: .875rem;
  color: var(--grey-700);
  text-decoration: none;
}

.menu-drop-list a:hover {
  background: var(--grey-100);
  color: var(--navy);
}

.menu-drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: .75rem 0;
  max-height: 340px;
  overflow-y: auto;
}

.menu-drop-link {
  display: block;
  padding: .45rem 1.125rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--grey-700);
  text-decoration: none;
}

.menu-drop-link:hover {
  background: var(--grey-100);
  color: var(--teal);
}

.menu-drop-actions {
  display: flex;
  gap: 1rem;
  padding: .75rem 1.125rem;
  border-top: 1px solid var(--grey-200);
  background: var(--off-white);
}

.menu-drop-action {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--grey-500);
  text-decoration: none;
}

.menu-drop-action:hover { color: var(--teal); }

.menu-drop-action--primary { color: var(--teal); }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .6875rem 1.375rem; font-size: .9375rem; font-weight: 600;
  font-family: inherit; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: .2s; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover { background: var(--grey-100); color: var(--navy); }
.btn-sm { padding: .4375rem 1rem; font-size: .8125rem; }
.btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }

/* Hero */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.hero-video #hero-yt-player {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-width: 177.78vh; min-height: 100vh;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
}
.hero-video iframe {
  width: 100%; height: 100%; border: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 37, 64, .82) 0%, rgba(10, 37, 64, .55) 45%, rgba(10, 37, 64, .72) 100%),
    linear-gradient(to bottom, rgba(0, 118, 129, .18) 0%, transparent 40%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 80% 20%, rgba(197, 165, 114, .1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 3rem; align-items: center; min-height: 560px; padding: 4rem 0;
}
.hero-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.12; font-weight: 700; margin-bottom: 1.25rem;
}
.hero-lead { font-size: 1.125rem; opacity: .9; max-width: 540px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
}
.stat-card strong {
  display: block; font-family: var(--font-serif); font-size: 2rem;
  color: var(--gold-light); line-height: 1.2;
}
.stat-card span { font-size: .8125rem; opacity: .8; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: #fff; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy); margin-bottom: 1rem; line-height: 1.2;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p { color: var(--grey-500); font-size: 1.0625rem; }
.section-dark .section-header p { color: rgba(255,255,255,.75); }
.section-header-left { text-align: left; margin-left: 0; margin-right: 0; max-width: 640px; }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-reverse .split-content { order: 2; }
.split-reverse .split-media { order: 1; }
.split-content h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy); margin-bottom: 1rem;
}
.split-content p { color: var(--grey-500); margin-bottom: 1rem; }
.media-panel {
  aspect-ratio: 4/3; background: linear-gradient(145deg, var(--navy-light), var(--teal));
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9); font-family: var(--font-serif); font-size: 1.5rem;
  text-align: center; padding: 2rem; box-shadow: var(--shadow-lg);
}

/* Specialty grid */
.specialty-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.specialty-card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center; transition: .25s; color: var(--text);
}
.specialty-card:hover {
  border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-4px); color: var(--text);
}
.specialty-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: var(--grey-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.specialty-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .375rem; }
.specialty-card p { font-size: .8125rem; color: var(--grey-500); }

/* Product cards */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.product-card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: .25s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card-media {
  aspect-ratio: 16/10; background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: contain; padding: .75rem;
  background: #fff;
}
.product-card-icon { width: 64px; color: var(--grey-500); opacity: .5; }
.product-card-meta {
  font-size: .75rem; color: var(--teal); font-weight: 500; margin-bottom: .375rem;
}
.product-card-pricing {
  font-size: .75rem; color: var(--grey-500); font-style: italic; margin-bottom: 1rem;
}
.product-section-count {
  display: inline-block; font-size: .8125rem; color: var(--grey-500);
  background: var(--grey-100); padding: .25rem .625rem; border-radius: 999px; margin-top: .5rem;
}
.catalog-toolbar {
  margin-bottom: 2.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-200);
}
.catalog-count { font-size: .9375rem; color: var(--grey-500); margin-bottom: 1rem; }
.catalog-jump { display: flex; flex-wrap: wrap; gap: .5rem; }
.product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 1.0625rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.product-card-body h3 a { color: inherit; }
.product-card-body h3 a:hover { color: var(--teal); }
.product-card-body p { font-size: .875rem; color: var(--grey-500); margin-bottom: 1.25rem; flex: 1; }
.product-card-media { display: block; color: inherit; }
.product-card-actions {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto;
}

/* Trust bar */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.trust-item h4 { font-size: .9375rem; font-weight: 600; margin: .75rem 0 .375rem; }
.trust-item p { font-size: .8125rem; opacity: .75; }
.trust-icon { font-size: 2rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff; padding: 4rem 0; text-align: center;
}
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.cta-band p { opacity: .9; max-width: 560px; margin: 0 auto 1.75rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Notice */
.notice {
  border-radius: var(--radius); padding: 1.25rem 1.5rem; font-size: .875rem; margin-bottom: 2rem;
}
.notice-regulatory {
  background: #fffbeb; border: 1px solid #fcd34d; color: #78350f;
}
.notice-regulatory strong { display: block; margin-bottom: .375rem; }
.notice-regulatory a { color: #92400e; text-decoration: underline; }

/* Page hero */
.page-hero {
  background: var(--off-white); border-bottom: 1px solid var(--grey-200);
  padding: 3rem 0;
}
.breadcrumb { font-size: .8125rem; color: var(--grey-500); margin-bottom: 1rem; }
.breadcrumb a { color: var(--grey-500); }
.breadcrumb span { margin: 0 .375rem; }
.page-hero h1 {
  font-family: var(--font-serif); font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: var(--navy); margin-bottom: .75rem;
}
.page-hero-lead { color: var(--grey-500); max-width: 640px; font-size: 1.0625rem; }

/* Product section anchor */
.product-section { margin-bottom: 4rem; }
.product-section-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--grey-200); }
.product-section-header h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); }
.product-section-header p { color: var(--grey-500); font-size: .9375rem; margin-top: .375rem; }

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.product-detail-gallery { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.product-detail-main {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-main img {
  width: 100%; height: 100%; object-fit: contain; padding: 1rem;
}
.product-detail-main--empty { color: var(--grey-500); opacity: .4; }
.product-detail-main--empty svg { width: 80px; height: 80px; }
.product-detail-thumbs {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem;
}
.product-detail-thumb {
  width: 72px; height: 54px; padding: 0; border: 2px solid var(--grey-200);
  border-radius: var(--radius); overflow: hidden; cursor: pointer; background: #fff;
}
.product-detail-thumb.is-active,
.product-detail-thumb:hover { border-color: var(--teal); }
.product-detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-meta {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem;
}
.product-detail-meta span {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; color: var(--teal);
  background: rgba(13, 148, 136, .08); padding: .25rem .625rem; border-radius: 999px;
}
.product-detail-category { font-size: .875rem; color: var(--grey-500); margin-bottom: 1rem; }
.product-detail-category a { color: var(--navy); font-weight: 500; }
.product-detail-pricing {
  font-size: .9375rem; color: var(--grey-700); font-style: italic;
  padding: 1rem 1.25rem; background: var(--off-white);
  border: 1px solid var(--grey-200); border-radius: var(--radius); margin-bottom: 1.5rem;
}
.product-detail-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem;
}
.product-detail-description { margin-bottom: 2rem; }
.product-detail-description h2,
.product-detail-variants h2,
.product-detail-related h2 {
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 1rem;
}
.product-detail-description p,
.product-detail-description li { font-size: .9375rem; color: var(--grey-700); line-height: 1.7; margin-bottom: .75rem; }
.product-detail-description h3,
.product-detail-description h4 { font-size: 1rem; color: var(--navy); margin: 1.25rem 0 .5rem; }
.product-detail-description ul,
.product-detail-description ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.product-detail-variants-note { font-size: .8125rem; color: var(--grey-500); margin-bottom: 1rem; }
.variant-table-wrap { overflow-x: auto; border: 1px solid var(--grey-200); border-radius: var(--radius-lg); }
.variant-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.variant-table th,
.variant-table td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--grey-200); }
.variant-table th { background: var(--off-white); font-weight: 600; color: var(--navy); }
.variant-table tr:last-child td { border-bottom: none; }
.product-detail-sku { font-size: .875rem; color: var(--grey-500); margin-top: 1rem; }
.product-detail-related { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--grey-200); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3rem; }
.contact-block { margin-bottom: 1.5rem; }
.contact-block h3 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .06em; color: var(--grey-500); margin-bottom: .375rem; }
.contact-block p, .contact-block a { font-size: 1rem; color: var(--navy); font-weight: 500; }
.contact-form {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .375rem; color: var(--grey-700); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .625rem .875rem; border: 1px solid var(--grey-200);
  border-radius: var(--radius); font-family: inherit; font-size: .9375rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,118,129,.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .8125rem; color: var(--grey-500); margin-bottom: 1rem;
}
.form-check input { margin-top: .25rem; flex-shrink: 0; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: .9375rem; }
.alert-success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-error ul { margin: .5rem 0 0 1.25rem; }

/* Legal */
.legal { max-width: 760px; padding: 3rem 0 5rem; }
.legal h2 { font-size: 1.25rem; color: var(--navy); margin: 2rem 0 .75rem; }
.legal p, .legal li { color: var(--grey-500); margin-bottom: .75rem; font-size: .9375rem; }
.legal ul { padding-left: 1.5rem; }

/* Resource cards */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.resource-card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: 2rem; transition: .25s;
}
.resource-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.resource-card h3 { font-size: 1.0625rem; color: var(--navy); margin-bottom: .5rem; }
.resource-card p { font-size: .875rem; color: var(--grey-500); margin-bottom: 1rem; }

/* Innovation */
.innovation-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff; padding: 4rem 0;
}
.innovation-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li {
  padding: .625rem 0 .625rem 1.75rem; position: relative; color: var(--grey-500);
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 1rem;
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
}

/* Footer */
.site-footer { background: var(--grey-900); color: rgba(255,255,255,.75); }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 1rem; opacity: .75; }
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text span { color: rgba(255,255,255,.5); }
.footer-col h3 {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #fff; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-col a:hover { color: var(--gold-light); }
.footer-trademark {
  background: rgba(0,0,0,.25); padding: 1.25rem 0;
  font-size: .75rem; line-height: 1.6; opacity: .7;
}
.footer-bottom { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .8125rem; opacity: .65;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: #fff; }

/* Cookie */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: #fff; border-top: 1px solid var(--grey-200);
  box-shadow: 0 -4px 24px rgba(0,0,0,.08); padding: 1.25rem 0;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-inner p { font-size: .8125rem; color: var(--grey-500); flex: 1; min-width: 260px; }
.cookie-actions { display: flex; gap: .75rem; }

/* Responsive */
@media (max-width: 992px) {
  .menu-btn { display: flex; }

  .site-nav {
    position: fixed;
    top: calc(40px + var(--header-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: .5rem 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 1001;
    border-top: 1px solid var(--grey-200);
    flex: none;
    display: block;
  }

  .site-nav.is-open { transform: translateX(0); }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu-item { border-bottom: 1px solid var(--grey-200); }

  .menu-link {
    width: 100%;
    justify-content: space-between;
    padding: .875rem 1.25rem;
    border-radius: 0;
  }

  .menu-link--cta {
    margin: .75rem 1.25rem;
    width: calc(100% - 2.5rem);
    justify-content: center;
    border-radius: var(--radius);
  }

  .menu-drop,
  .menu-drop--wide {
    display: none !important;
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    border-top: 1px solid var(--grey-200);
  }

  .menu-item--drop.is-open > .menu-drop,
  .menu-item--drop.is-open > .menu-drop--wide {
    display: block !important;
  }

  .menu-drop-grid {
    grid-template-columns: 1fr;
    max-height: none;
    padding: .5rem 0;
  }

  .menu-drop-link { padding: .5rem 1.5rem; }
  .menu-drop-list a { padding: .5rem 1.5rem; }
  .menu-drop-actions { padding: .75rem 1.5rem; }

  .split { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-gallery { position: static; }
}

@media (max-width: 768px) {
  .utility-inner { justify-content: center; text-align: center; }
  .hero-grid { min-height: auto; padding: 3rem 0; }
  .hero-stats { grid-template-columns: 1fr; }
  .specialty-grid, .trust-grid, .resource-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
