:root {
  --silver: #b8c2c9;
  --silver-light: #eef2f4;
  --pearl: #f8fafb;
  --graphite: #26333c;
  --ink: #17232c;
  --muted: #65727a;
  --line: #d6dde1;
  --mist: #eef2f4;
  --white: #ffffff;
  --accent: #8199aa;
  --max: 1240px;
  --shadow: 0 24px 64px rgba(23, 35, 44, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--graphite);
  background: var(--pearl);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
.hero-art,
.feature-image { margin: 0; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; background: var(--ink); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: 20; background: rgba(238, 242, 244, 0.94); border-bottom: 1px solid rgba(184, 194, 201, 0.48); backdrop-filter: blur(16px); }
.header-inner, .container { width: min(var(--max), calc(100% - 56px)); margin-inline: auto; }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 38px; height: 38px; }
.brand-name { display: block; color: var(--ink); font-size: 0.92rem; font-weight: 650; letter-spacing: 0.16em; text-transform: uppercase; }
.brand-tag { display: block; margin-top: 1px; color: var(--muted); font-size: 0.58rem; letter-spacing: 0.11em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.7vw, 38px); }
.site-nav a { position: relative; color: #55636c; text-decoration: none; font-size: 0.84rem; font-weight: 540; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--ink); }
.menu-button { display: none; border: 1px solid var(--graphite); background: var(--pearl); border-radius: 999px; padding: 8px 14px; }

.hero { min-height: 620px; display: grid; align-items: center; overflow: hidden; background: linear-gradient(180deg, var(--pearl) 0%, #f2f5f7 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(470px, 1.22fr); gap: clamp(48px, 7vw, 96px); align-items: center; padding-block: 62px 76px; }
.eyebrow { margin: 0 0 17px; color: var(--muted); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.22em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 26px; color: var(--ink); font-size: clamp(2.75rem, 5.3vw, 4.75rem); font-weight: 440; line-height: 1.01; letter-spacing: -0.055em; }
h2 { color: var(--ink); font-size: clamp(2.1rem, 3.9vw, 3.8rem); font-weight: 440; line-height: 1.05; letter-spacing: -0.045em; }
h3 { color: var(--ink); font-size: 1.15rem; font-weight: 600; line-height: 1.25; }
.card-heading { margin-bottom: 18px; font-size: 1.32rem; font-weight: 580; line-height: 1.2; letter-spacing: -0.02em; }
.lead { max-width: 650px; color: #5c6a73; font-size: clamp(1.02rem, 1.55vw, 1.22rem); }
.hero-copy .lead { max-width: 470px; }
.hero-art { aspect-ratio: 3 / 2; min-height: 0; display: grid; place-items: center; border-radius: 30px; background: linear-gradient(145deg, var(--pearl) 0%, var(--silver-light) 52%, #dfe6ea 100%); box-shadow: inset 0 0 0 1px rgba(184, 194, 201, 0.44); overflow: hidden; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; padding: 0; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; margin-top: 24px; padding: 10px 25px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); font-size: 0.86rem; font-weight: 600; text-decoration: none; transition: 170ms ease; }
.button:hover { background: var(--ink); color: white; }
.button--blue { border-color: var(--ink); background: var(--ink); color: white; }
.button--blue:hover { background: #34444f; }

.section { padding-block: clamp(82px, 9vw, 132px); }
.section--ice { background: linear-gradient(180deg, var(--silver-light) 0%, var(--pearl) 100%); }
.section--pathways { padding-block: clamp(48px, 5vw, 72px); }
.section--ink { background: #202d36; color: white; }
.section--ink h2, .section--ink h3 { color: white; }
.section--ink .eyebrow { color: #c5d0d6; }
.section--ink .section-heading { max-width: 900px; }
.section-heading { max-width: 730px; margin-bottom: 54px; }
.two-column { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(48px, 8vw, 112px); align-items: center; }
.two-column--reverse { grid-template-columns: 1.08fr 0.92fr; }
.feature-image { position: relative; min-height: 0; border-radius: 24px; overflow: hidden; background: linear-gradient(145deg, var(--pearl) 0%, var(--silver-light) 100%); box-shadow: 0 22px 50px rgba(38, 51, 60, 0.09); }
.feature-image img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.feature-image--product-family { aspect-ratio: 4 / 3; min-height: 0; }
.feature-image--product-family img { object-position: center 58%; }
.feature-image--landscape { min-height: 0; border-radius: 0; overflow: visible; background: transparent; box-shadow: none; }
.feature-image--landscape img { width: 100%; height: auto; aspect-ratio: 2 / 1; min-height: 0; border-radius: 20px; object-fit: cover; box-shadow: 0 22px 50px rgba(38, 51, 60, 0.09); }
.feature-image figcaption { position: static; margin-top: 12px; padding: 0 2px; background: transparent; color: var(--muted); font-size: 0.72rem; line-height: 1.4; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.principle { min-height: 210px; padding: 30px 0 0; border-top: 1px solid var(--silver); background: transparent; }
.supply-pathways .principle { min-height: 0; padding-top: 20px; }
.supply-pathways .principle p { margin-bottom: 16px; }
.principle-number { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.18em; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 28px; }
.product-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 0; background: transparent; }
.product-media { position: relative; min-height: 0; aspect-ratio: 6 / 5; display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; gap: 6px; padding: 18px 24px 54px; border-radius: 22px; background: linear-gradient(145deg, var(--pearl) 0%, var(--silver-light) 55%, #dfe6ea 100%); box-shadow: inset 0 0 0 1px rgba(184, 194, 201, 0.36); overflow: hidden; }
.product-media::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(129, 153, 170, 0.22); border-radius: 16px; pointer-events: none; }
.product-media-object { position: relative; z-index: 1; width: min(58%, 180px); height: 100%; max-height: 148px; align-self: end; object-fit: contain; filter: drop-shadow(0 12px 12px rgba(41, 54, 63, 0.14)); }
.product-media-identity { position: relative; z-index: 1; width: 100%; display: grid; gap: 3px; text-align: center; }
.product-media-brand { color: var(--muted); font-size: 0.6rem; font-weight: 750; letter-spacing: 0.22em; text-transform: uppercase; }
.product-media-name { color: var(--ink); font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 580; line-height: 1.08; letter-spacing: -0.025em; overflow-wrap: anywhere; }
.product-media-label { color: #75838b; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }
.product-body { display: flex; flex-direction: column; flex: 1; padding: 22px 2px 0; }
.product-body .text-link { margin-top: auto; }
.product-category { color: var(--muted); font-size: 0.66rem; font-weight: 750; letter-spacing: 0.17em; text-transform: uppercase; }
.product-strengths { min-height: 54px; color: var(--muted); font-size: 0.94rem; }
.origin-badges { position: absolute; right: 12px; bottom: 12px; left: 12px; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.origin-badge { display: inline-flex; align-items: center; gap: 6px; min-height: 27px; padding: 4px 9px; border: 1px solid rgba(184, 194, 201, 0.88); border-radius: 999px; background: rgba(248, 250, 251, 0.92); color: #46545d; font-size: 0.7rem; font-weight: 650; line-height: 1; backdrop-filter: blur(8px); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--ink); font-size: 0.9rem; font-weight: 650; text-decoration: none; }
.text-link::after { content: "→"; transition: transform 150ms ease; }
.text-link:hover::after { transform: translateX(5px); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 38px; }
.filter-button { border: 1px solid var(--silver); border-radius: 999px; background: var(--pearl); padding: 9px 17px; color: var(--muted); font-size: 0.85rem; cursor: pointer; }
.filter-button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: white; }
.search-field { flex: 1 1 280px; min-height: 44px; border: 0; border-bottom: 1px solid #9caab3; border-radius: 0; background: transparent; padding: 9px 2px; }
.catalogue-status { margin: -16px 0 30px; color: var(--muted); font-size: 0.9rem; }

.page-hero { padding-block: clamp(92px, 10vw, 142px); background: linear-gradient(180deg, var(--pearl) 0%, #f1f5f7 100%); }
.page-hero--compact { padding-block: clamp(88px, 7vw, 108px); }
.page-hero h1 { max-width: 950px; }
.page-hero .lead { max-width: 760px; }
.country-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.country-marker { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 6px 13px; border: 1px solid var(--silver); border-radius: 999px; background: rgba(248, 250, 251, 0.9); color: #4d5b64; font-size: 0.82rem; font-weight: 650; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service { padding: 40px; border: 0; border-radius: 20px; background: linear-gradient(145deg, var(--pearl) 0%, var(--silver-light) 100%); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.24); border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
.process-step { min-height: 260px; padding: 38px 30px; border-right: 1px solid rgba(255, 255, 255, 0.18); }
.process-step:last-child { border-right: 0; }
.process-step h3 { margin-top: 28px; }
.process-step p { color: #c7d1d7; }
.eligibility-panel { padding: clamp(36px, 6vw, 68px); border-left: 2px solid var(--graphite); background: linear-gradient(145deg, var(--pearl) 0%, var(--silver-light) 100%); }
.eligibility-panel h2 { max-width: 850px; }
.eligibility-panel p:last-child { max-width: 850px; margin-bottom: 0; }

.contact-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(48px, 8vw, 112px); }
.contact-details { padding: 38px; border-radius: 20px; background: linear-gradient(145deg, var(--pearl) 0%, var(--silver-light) 100%); }
.preview-notice { margin-bottom: 34px; padding: 18px 20px; border-left: 2px solid var(--graphite); background: var(--silver-light); color: #4d5b64; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #9caab3; border-radius: 0; background: transparent; padding: 13px 2px; }
.field textarea { min-height: 130px; resize: vertical; }
.form-status { margin-top: 20px; color: #4f6f7d; }

.site-footer { padding-block: 64px 34px; background: #17232c; color: white; }
.site-footer .brand-name { color: white; }
.site-footer .brand-tag { color: #aebac1; }
.site-footer .brand img { filter: grayscale(1) brightness(2.7); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 40px; }
.footer-title { color: #dbe3e7; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #b8c4ca; text-decoration: none; }
.footer-links a:hover { color: white; }
.legal { margin-top: 50px; padding-top: 24px; border-top: 1px solid #33434e; color: #9cabb4; font-size: 0.78rem; }

[hidden] { display: none !important; }

@media (max-width: 900px) {
  .header-inner, .container { width: min(var(--max), calc(100% - 30px)); }
  .header-inner { min-height: 70px; }
  .menu-button { display: inline-flex; }
  .site-nav { position: absolute; top: 70px; right: 0; left: 0; display: none; padding: 24px 28px 30px; flex-direction: column; align-items: flex-start; background: var(--silver-light); border-bottom: 1px solid var(--line); }
  .site-nav[data-open] { display: flex; }
  .hero { min-height: auto; }
  .hero-grid, .two-column, .two-column--reverse, .contact-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 52px 36px; }
  .hero-art { min-height: 0; aspect-ratio: 3 / 2; }
  .hero-art img { height: 100%; min-height: 0; }
  .feature-image, .feature-image--landscape { min-height: 0; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .brand-name { font-size: 0.82rem; }
  .brand-tag { display: none; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
  .section { padding-block: 72px; }
  .product-grid, .principles, .service-grid, .process-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .principles { gap: 24px; }
  .process-step, .process-step:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .process-step:last-child { border-bottom: 0; }
  .hero-art { min-height: 0; border-radius: 22px; }
  .product-media { min-height: 0; }
  .field--wide { grid-column: auto; }
}
