@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-serif-display-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-variable.woff2") format("woff2");
}

:root {
  --ink: #073b4c;
  --ink-2: #0b5365;
  --sea: #1aa39e;
  --sea-soft: #dcefe9;
  --coral: #f87559;
  --sun: #f3aa55;
  --sand: #f3dfb8;
  --cream: #faf5e8;
  --paper: #fffdf7;
  --line: rgba(7, 59, 76, .14);
  --muted: #60767b;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(7, 59, 76, .11);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
}

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

.catalogue-shell {
  margin: 0 auto;
  max-width: 1360px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.catalogue-header {
  background: rgba(4, 45, 59, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  position: relative;
  z-index: 20;
}

.catalogue-header__inner {
  align-items: center;
  display: flex;
  height: 5.5rem;
  justify-content: space-between;
}

.catalogue-logo img {
  display: block;
  height: 2.65rem;
  width: auto;
}

.catalogue-header nav {
  align-items: center;
  display: flex;
  gap: 2rem;
}

.catalogue-header nav a {
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 680;
}

.catalogue-header nav a:hover { color: #fff; }

.catalogue-header .header-cta {
  background: var(--coral);
  border-radius: 999px;
  color: #fff;
  padding: .75rem 1.15rem;
}

.catalogue-hero {
  background:
    radial-gradient(circle at 84% 8%, rgba(62, 211, 193, .2), transparent 30%),
    radial-gradient(circle at 7% 100%, rgba(255, 170, 97, .16), transparent 35%),
    var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.catalogue-hero::before {
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 50%;
  content: "";
  height: 48rem;
  position: absolute;
  right: -14rem;
  top: -22rem;
  width: 48rem;
}

.catalogue-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: .78fr 1.22fr;
  min-height: 38rem;
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
  position: relative;
}

.catalogue-hero__content { position: relative; z-index: 2; }

.eyebrow {
  color: var(--coral);
  font-size: .62rem;
  font-weight: 820;
  letter-spacing: .17em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.catalogue-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.9rem, 7vw, 6.9rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .87;
  margin: 0;
  max-width: 8ch;
}

.catalogue-hero h1 em {
  color: #ffb260;
  font-weight: 400;
}

.catalogue-hero__copy {
  color: rgba(255, 255, 255, .7);
  font-size: .96rem;
  line-height: 1.72;
  margin: 1.5rem 0 1.8rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 760;
  justify-content: center;
  min-height: 2.9rem;
  padding: .75rem 1.2rem;
}

.button--coral { background: var(--coral); color: #fff; }
.button--light { border-color: rgba(255, 255, 255, .24); color: #fff; }
.button--ink { background: var(--ink); color: #fff; }

.hero-visual {
  background: #f8f1e4;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2rem;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .26);
  min-height: 28rem;
  overflow: hidden;
  position: relative;
}

.hero-visual img {
  display: block;
  height: 28rem;
  object-fit: cover;
  width: 100%;
}

.hero-visual__label {
  align-items: center;
  background: rgba(248, 241, 228, .9);
  border: 1px solid rgba(7, 59, 76, .1);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  gap: .7rem;
  left: 1.15rem;
  padding: .55rem .75rem;
  position: absolute;
  top: 1.15rem;
  z-index: 2;
}

.hero-visual__label span {
  color: var(--coral);
  font-size: .54rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-visual__label strong {
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: .82rem;
  font-weight: 400;
  padding-left: .7rem;
}

.hero-visual__note {
  align-items: center;
  background: var(--ink);
  bottom: 0;
  color: rgba(255, 255, 255, .62);
  display: flex;
  font-size: .54rem;
  font-weight: 750;
  justify-content: space-between;
  left: 0;
  letter-spacing: .1em;
  padding: .9rem 1.2rem;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.hero-stat {
  border-right: 1px solid rgba(255, 255, 255, .12);
  padding: 1.5rem 1.25rem 1.7rem;
}

.hero-stat:last-child { border-right: 0; }
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
}
.hero-stat span {
  color: rgba(255, 255, 255, .5);
  font-size: .63rem;
}

.catalogue-filter {
  backdrop-filter: blur(18px);
  background: rgba(250, 245, 232, .94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 15;
}

.catalogue-filter__inner {
  align-items: center;
  display: flex;
  gap: .65rem;
  min-height: 5.1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalogue-filter__inner::-webkit-scrollbar { display: none; }

.filter-label {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: .59rem;
  font-weight: 820;
  letter-spacing: .12em;
  margin-right: .7rem;
  text-transform: uppercase;
}

.filter-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: .65rem;
  font-weight: 720;
  padding: .66rem .95rem;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.catalogue-intro {
  display: grid;
  gap: 5rem;
  grid-template-columns: .82fr 1.18fr;
  padding-bottom: 7.5rem;
  padding-top: 7.5rem;
}

.catalogue-intro h2,
.family-head h2,
.comparison h2,
.catalogue-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.8vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
  margin: 0;
}

.catalogue-intro__body {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.78;
  max-width: 46rem;
}

.catalogue-intro__body > p { margin-top: 0; }

.intro-points {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.intro-point {
  border-right: 1px solid var(--line);
  padding: 1.3rem 1.2rem 0 0;
}

.intro-point + .intro-point { padding-left: 1.2rem; }
.intro-point:last-child { border-right: 0; }
.intro-point strong {
  display: block;
  font-size: .75rem;
  margin-bottom: .35rem;
}
.intro-point span {
  color: var(--muted);
  font-size: .65rem;
  line-height: 1.5;
}

.family {
  border-top: 1px solid var(--line);
  padding-bottom: 7.5rem;
  padding-top: 7.5rem;
}

.family--sea {
  background:
    radial-gradient(circle at 95% 0, rgba(255, 255, 255, .56), transparent 24rem),
    #dfeee8;
}

.family--sand {
  background:
    radial-gradient(circle at 4% 0, rgba(255, 255, 255, .52), transparent 22rem),
    #f4e3c1;
}

.family--paper { background: var(--paper); }

.family-head {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: 4rem 1fr .72fr;
  margin-bottom: 3.25rem;
}

.family-head__index {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 2.1rem;
  padding-bottom: .2rem;
}

.family-head .eyebrow { margin-bottom: .75rem; }

.family-head > p {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
  margin: 0;
  max-width: 31rem;
}

.catalogue-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-item {
  background: rgba(255, 253, 247, .78);
  border: 1px solid rgba(7, 59, 76, .12);
  border-radius: 1.35rem;
  box-shadow: 0 0 0 rgba(7, 59, 76, 0);
  min-width: 0;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.product-item:hover {
  border-color: rgba(248, 117, 89, .76);
  box-shadow: 0 18px 45px rgba(7, 59, 76, .1);
  transform: translateY(-3px);
}

.product-item[hidden] { display: none; }

.product-photo {
  aspect-ratio: 4 / 3;
  background: #f7f0e5;
  border-bottom: 1px solid rgba(7, 59, 76, .09);
  overflow: hidden;
}

.product-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform .45s ease;
  width: 100%;
}

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

.product-item__body { padding: 1.25rem 1.25rem 1.35rem; }

.product-item__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: .8rem;
}

.product-number {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.product-badge {
  border: 1px solid rgba(7, 59, 76, .25);
  border-radius: 999px;
  color: #4d797e;
  font-size: .46rem;
  font-weight: 820;
  letter-spacing: .09em;
  padding: .3rem .45rem;
  text-transform: uppercase;
}

.product-item h3 {
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 .58rem;
}

.product-item h3 a { display: block; }

.product-detail-link {
  color: var(--coral);
  display: block;
  font-family: var(--sans);
  font-size: .52rem;
  font-weight: 820;
  letter-spacing: .09em;
  margin-top: .68rem;
  text-transform: uppercase;
}

.product-item h3 a:hover .product-detail-link { color: var(--ink); }

.product-item p {
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.58;
  margin: 0;
  min-height: 3.2em;
}

.product-item dl {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0 0;
  padding: .75rem 0;
}

.product-item dl > div + div {
  border-left: 1px solid var(--line);
  padding-left: .8rem;
}

.product-item dt {
  color: #819397;
  font-size: .46rem;
  font-weight: 820;
  letter-spacing: .1em;
  margin-bottom: .18rem;
  text-transform: uppercase;
}

.product-item dd {
  color: var(--ink);
  font-size: .61rem;
  font-weight: 700;
  margin: 0;
}

.product-meta {
  color: #39767c;
  display: flex;
  flex-wrap: wrap;
  font-size: .48rem;
  font-weight: 800;
  gap: .35rem;
  letter-spacing: .06em;
  margin-top: .9rem;
  text-transform: uppercase;
}

.product-meta span {
  background: rgba(26, 163, 158, .09);
  border-radius: 999px;
  padding: .38rem .5rem;
}

.catalogue-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  color: var(--muted);
  display: none;
  margin: 5rem auto;
  max-width: 42rem;
  padding: 2rem;
  text-align: center;
}

.catalogue-empty.is-visible { display: block; }

.comparison {
  background: #fffaf0;
  border-top: 1px solid var(--line);
  padding-bottom: 8rem;
  padding-top: 8rem;
}

.comparison__head {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.comparison__head > p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.7;
  margin: 0;
  max-width: 31rem;
}

.comparison-table-wrap { overflow-x: auto; }

.comparison table {
  border-collapse: collapse;
  min-width: 860px;
  width: 100%;
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 1rem;
  text-align: left;
}

.comparison th {
  color: var(--muted);
  font-size: .53rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison td {
  color: var(--muted);
  font-size: .69rem;
}

.comparison td:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.02rem;
}

.table-pill {
  background: var(--sea-soft);
  border-radius: 999px;
  color: var(--ink-2);
  display: inline-block;
  font-size: .52rem;
  font-weight: 820;
  padding: .38rem .55rem;
  text-transform: uppercase;
}

.catalogue-cta {
  background: var(--coral);
  color: #fff;
  overflow: hidden;
  padding: 7.5rem 0;
  position: relative;
  text-align: center;
}

.catalogue-cta::before {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  content: "";
  height: 52rem;
  left: 50%;
  position: absolute;
  top: 3rem;
  transform: translateX(-50%);
  width: 52rem;
}

.catalogue-cta .catalogue-shell { position: relative; }
.catalogue-cta .eyebrow { color: var(--ink); }
.catalogue-cta h2 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  margin: 0 auto;
  max-width: 11ch;
}

.catalogue-cta p {
  color: rgba(255, 255, 255, .79);
  font-size: .82rem;
  line-height: 1.7;
  margin: 1.4rem auto 1.8rem;
  max-width: 35rem;
}

.catalogue-footer {
  background: #032e3b;
  color: rgba(255, 255, 255, .58);
  padding: 3rem 0;
}

.catalogue-footer__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.catalogue-footer img {
  height: 2.5rem;
  width: auto;
}

.catalogue-footer p {
  font-size: .65rem;
  margin: 0;
}

@media (max-width: 1100px) {
  .catalogue-hero__grid { gap: 3rem; grid-template-columns: .9fr 1.1fr; }
  .catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .family-head { grid-template-columns: 3rem 1fr .75fr; }
}

@media (max-width: 880px) {
  .catalogue-hero__grid,
  .catalogue-intro {
    grid-template-columns: 1fr;
  }

  .catalogue-hero__grid { padding-top: 3.5rem; }
  .catalogue-hero h1 { max-width: 9ch; }
  .hero-visual { min-height: 26rem; }
  .family-head {
    align-items: start;
    grid-template-columns: 3rem 1fr;
  }
  .family-head > p { grid-column: 2; }
  .comparison__head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .catalogue-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .catalogue-header__inner { height: 4.6rem; }
  .catalogue-logo img { height: 2.2rem; }
  .catalogue-header nav a:not(.header-cta) { display: none; }
  .catalogue-header nav { gap: .5rem; }
  .catalogue-header .header-cta {
    font-size: .62rem;
    padding: .65rem .85rem;
  }

  .catalogue-hero__grid {
    gap: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .catalogue-hero h1 { font-size: clamp(3.5rem, 18vw, 5.2rem); }
  .catalogue-hero__copy { font-size: .86rem; }
  .hero-visual {
    border-radius: 1.35rem;
    min-height: 18rem;
  }
  .hero-visual img { height: 18rem; }
  .hero-visual__label strong { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .12); }

  .catalogue-filter__inner { min-height: 4.7rem; }
  .catalogue-intro {
    gap: 2rem;
    padding-bottom: 5rem;
    padding-top: 5rem;
  }

  .intro-points { grid-template-columns: 1fr; }
  .intro-point,
  .intro-point + .intro-point {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 1rem 0;
  }

  .family {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }

  .family-head {
    gap: .75rem;
    grid-template-columns: 1fr;
    margin-bottom: 2.3rem;
  }

  .family-head__index { font-size: 1.45rem; }
  .family-head > p { grid-column: 1; }
  .catalogue-grid { grid-template-columns: 1fr; }
  .product-photo { aspect-ratio: 1.45 / 1; }
  .product-item h3 { font-size: 1.5rem; }
  .comparison {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
  .catalogue-cta { padding: 5rem 0; }
  .catalogue-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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