:root {
  --fiord-blue: #252a72;
  --fiord-dark: #161d35;
  --fiord-ice: #b4cbe6;
  --fiord-ice-strong: #80a5cf;
  --fiord-red: #e30613;
  --fiord-red-dark: #be1717;
  --fiord-cream: #f1eade;
  --white: #fff;
  --ink: #161d35;
  --muted: #66708c;
  --line: rgba(37, 42, 114, .14);
  --shell: 1280px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 70px rgba(30, 49, 90, .11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #f8fafc;
  font-family: Montserrat, "Avenir Next", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.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;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--fiord-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow.light { color: #dfeaf8; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: .98;
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
  font-weight: 850;
}

h3 { font-weight: 750; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(37, 42, 114, .08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 32px;
  align-items: center;
}

.brand img { width: auto; height: 58px; max-width: 132px; object-fit: contain; }

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 38px);
}

.main-nav a,
.catalogue-shortcut {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--fiord-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.icon-button:hover { background: #eef4fb; }
.icon-button svg, .search-box svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.catalogue-shortcut {
  margin-left: 6px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--fiord-blue);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 14%, rgba(255,255,255,.95), transparent 28%),
    linear-gradient(105deg, #eef5fc 0%, #dbe9f7 58%, #c5daee 100%);
}

.hero-frost {
  position: absolute;
  inset: 0;
  background: url("assets/steam.webp") center/cover no-repeat;
  opacity: .18;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: 9vw;
  top: 80px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,255,255,.13), 0 0 0 78px rgba(255,255,255,.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 94px;
}

.hero-copy { padding-left: 10px; }

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: #42506e;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  font-weight: 450;
}

.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.button-primary {
  color: var(--white);
  background: var(--fiord-red);
  box-shadow: 0 12px 26px rgba(227, 6, 19, .18);
}

.button-primary:hover { background: var(--fiord-red-dark); }

.button-light { color: var(--fiord-blue); background: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fiord-blue);
  font-size: 13px;
  font-weight: 750;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  justify-self: end;
  margin: 0;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 48% 52% 46% 54% / 52% 42% 58% 48%;
  box-shadow: 0 30px 90px rgba(46, 62, 91, .21);
}

.hero-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 18px;
  padding: 9px 14px;
  color: var(--fiord-dark);
  background: rgba(255,255,255,.88);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.catalogue-search { position: relative; z-index: 5; margin-top: -64px; }

.search-panel {
  padding: 28px 38px 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(37, 42, 114, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.search-heading,
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.search-heading h2 { margin-bottom: 18px; font-size: clamp(24px, 2.3vw, 34px); }

.search-box {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 54px;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 42, 114, .25);
  border-radius: 13px;
  overflow: hidden;
  background: var(--white);
}

.search-box:focus-within { border-color: var(--fiord-blue); box-shadow: 0 0 0 3px rgba(180,203,230,.38); }
.search-box input { min-width: 0; padding: 0 18px; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search-box input::placeholder { color: #9aa2b5; }
.search-box button { border: 0; color: var(--fiord-blue); background: transparent; cursor: pointer; }

.category-quicklinks {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.category-quicklinks a {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  color: #3b4768;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 650;
}

.category-quicklinks a:hover { background: #f0f5fb; }
.category-quicklinks img { width: 34px; height: 34px; object-fit: contain; }
.category-more .dots { color: var(--fiord-blue); font-size: 22px; letter-spacing: 4px; line-height: 20px; }

.section { padding-top: 86px; padding-bottom: 46px; }

.assortment {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  gap: 42px;
}

.category-rail {
  padding-top: 3px;
  border-right: 1px solid var(--line);
}

.rail-label {
  margin-bottom: 14px;
  color: #8a93a9;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.category-rail a {
  min-height: 54px;
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  gap: 12px;
  align-items: center;
  margin-right: 26px;
  padding: 6px 4px;
  color: #596581;
  border-bottom: 1px solid rgba(37,42,114,.07);
  font-size: 13px;
  font-weight: 650;
}

.category-rail a.active { color: var(--fiord-blue); font-weight: 800; }
.category-rail img { width: 28px; height: 28px; object-fit: contain; }
.category-rail b { font-size: 20px; font-weight: 400; }

.section-heading { margin-bottom: 30px; }
.section-heading > div { max-width: 640px; }
.section-heading > p { max-width: 390px; margin-bottom: 4px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(28px, 2.6vw, 40px); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-tile { min-width: 0; }

.product-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e7eef7;
  border-radius: var(--radius-md);
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(22,29,53,.05);
  border-radius: inherit;
  pointer-events: none;
}

.product-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-tile:hover .product-photo img { transform: scale(1.035); }

.product-meta {
  position: relative;
  min-height: 92px;
  padding: 15px 42px 14px 1px;
  border-bottom: 1px solid var(--line);
}

.product-meta p { margin-bottom: 5px; color: #8d96aa; font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: .06em; }
.product-meta h3 { margin-bottom: 0; font-size: 16px; line-height: 1.28; }
.product-arrow { position: absolute; right: 2px; top: 26px; color: var(--fiord-blue); font-size: 21px; }

.all-products-tile {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(37,42,114,.87), rgba(22,29,53,.94)),
    url("assets/steam.webp") center/cover;
  border-radius: var(--radius-md);
}

.all-products-tile::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -66px;
  right: -54px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}

.all-products-icon {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  place-items: center;
  color: var(--fiord-blue);
  background: var(--white);
  border-radius: 50%;
  font-size: 22px;
}

.all-products-tile .eyebrow { color: #cbdcf0; }
.all-products-tile strong { max-width: 180px; margin-bottom: 10px; font-size: 23px; line-height: 1.08; }
.all-products-tile small { color: #dce7f5; line-height: 1.5; }

.brand-story,
.business {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 420px;
  margin-top: 42px;
  overflow: hidden;
  color: var(--white);
  background: var(--fiord-blue);
  border-radius: var(--radius-lg);
}

.brand-story::before,
.business::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 56%;
  background: linear-gradient(130deg, rgba(22,29,53,.9), rgba(37,42,114,.86)), url("assets/steam.webp") center/cover;
  opacity: .7;
  pointer-events: none;
}

.brand-story-copy,
.business-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 50px clamp(34px, 5vw, 72px);
}

.brand-story-copy h2,
.business-copy h2 { max-width: 560px; }
.brand-story-copy p:not(.eyebrow),
.business-copy p:not(.eyebrow) { max-width: 570px; margin-bottom: 28px; color: #d9e5f4; line-height: 1.65; }

.brand-story-photo,
.business-photo { position: relative; z-index: 1; min-height: 420px; margin: 0; }
.brand-story-photo img,
.business-photo img { width: 100%; height: 100%; object-fit: cover; }
.brand-story-photo::after,
.business-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--fiord-blue) 0%, transparent 35%); }

.proof {
  display: grid;
  grid-template-columns: 1.02fr 1.98fr;
  gap: 58px;
  padding-top: 80px;
  padding-bottom: 60px;
}

.proof-intro > p:not(.eyebrow) { max-width: 430px; color: var(--muted); line-height: 1.65; font-size: 14px; }
.proof-intro .text-link { margin-top: 8px; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-grid article {
  min-height: 172px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-number { display: block; margin-bottom: 20px; color: var(--fiord-ice-strong); font-size: 12px; font-weight: 800; }
.proof-grid h3 { margin-bottom: 8px; font-size: 17px; }
.proof-grid p { margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.business { margin-top: 18px; margin-bottom: 30px; background: var(--fiord-dark); }
.business::before { background: linear-gradient(130deg, rgba(22,29,53,.94), rgba(37,42,114,.9)), url("assets/steam.webp") center/cover; }
.business-photo::after { background: linear-gradient(90deg, var(--fiord-dark) 0%, transparent 38%); }

.utility-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.utility-strip > a {
  min-height: 98px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 26px;
  border-right: 1px solid var(--line);
}

.utility-strip > a:last-child { border-right: 0; }
.utility-icon { width: 36px; height: 36px; display: grid; place-items: center; color: var(--fiord-blue); border: 1px solid var(--fiord-ice); border-radius: 50%; font-size: 18px; }
.utility-strip b, .utility-strip small { display: block; }
.utility-strip b { margin-bottom: 4px; font-size: 13px; }
.utility-strip small { color: var(--muted); font-size: 11px; }

.site-footer { padding: 36px 0 48px; background: #eef3f8; border-top: 1px solid rgba(37,42,114,.07); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-inner img { width: auto; height: 72px; max-width: 124px; object-fit: contain; }
.footer-inner p { max-width: 650px; margin-bottom: 0; color: #7d879d; font-size: 11px; line-height: 1.6; text-align: right; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 34px; }
  .all-products-tile { min-height: 360px; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .header-inner { min-height: 72px; grid-template-columns: 138px 1fr; }
  .brand img { width: auto; height: 52px; max-width: 120px; }
  .main-nav { display: none; }
  .header-actions { justify-self: end; }
  .catalogue-shortcut { display: none; }

  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 70px; padding-bottom: 116px; }
  .hero-copy { padding-left: 0; }
  .hero-photo { width: 100%; max-width: 680px; justify-self: center; }
  .hero-photo img { aspect-ratio: 1.45 / 1; border-radius: 24px; }
  .hero::after { display: none; }

  .search-heading { align-items: start; }
  .category-quicklinks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .assortment { grid-template-columns: 1fr; }
  .category-rail { display: none; }
  .section-heading { align-items: start; flex-direction: column; gap: 10px; }
  .section-heading > p { max-width: 620px; }

  .brand-story,
  .business { grid-template-columns: 1fr; }
  .brand-story::before,
  .business::before { width: 100%; height: 60%; }
  .brand-story-photo,
  .business-photo { min-height: 360px; }
  .brand-story-photo::after,
  .business-photo::after { background: linear-gradient(180deg, var(--fiord-blue), transparent 30%); }
  .business-photo::after { background: linear-gradient(180deg, var(--fiord-dark), transparent 30%); }

  .proof { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-actions .icon-button:nth-child(2) { display: none; }

  h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-grid { padding-top: 50px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-photo img { aspect-ratio: 1.1 / 1; }
  .hero-photo figcaption { display: none; }

  .catalogue-search { margin-top: -78px; }
  .search-panel { padding: 22px 18px 18px; border-radius: 20px; }
  .search-heading { display: block; }
  .search-heading .text-link { margin-bottom: 18px; }
  .search-box { grid-template-columns: 1fr 48px; }
  .category-quicklinks { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; }
  .category-quicklinks a { min-height: 78px; }

  .section { padding-top: 64px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-photo img { aspect-ratio: 1.28 / 1; }
  .all-products-tile { min-height: 270px; }

  .brand-story,
  .business { border-radius: 20px; }
  .brand-story-copy,
  .business-copy { padding: 36px 24px 30px; }
  .brand-story-photo,
  .business-photo { min-height: 280px; }

  .proof { padding-top: 64px; }
  .proof-grid { grid-template-columns: 1fr; }

  .utility-strip { grid-template-columns: 1fr; }
  .utility-strip > a { border-right: 0; border-bottom: 1px solid var(--line); }
  .utility-strip > a:last-child { border-bottom: 0; }

  .footer-inner { align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer-inner p { text-align: left; }
}

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