:root {
  --ink: #173334;
  --ink-deep: #0d2728;
  --teal: #08aaa5;
  --teal-dark: #087d7a;
  --teal-soft: #d8eeea;
  --sand: #e8ddcc;
  --cream: #f7f3eb;
  --paper: #fffdf9;
  --amber: #c9842f;
  --muted: #627071;
  --line: rgba(23, 51, 52, 0.15);
  --shadow: 0 24px 70px rgba(13, 39, 40, 0.1);
  --radius: 28px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

/* Responsive images are wrapped in <picture>; let the <img> inherit the
   container's layout so existing sizing rules keep applying. */
picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(790px, 100%);
}

.section-space {
  padding-block: clamp(72px, 9vw, 130px);
}

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

.section-heading h2,
.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: white;
  color: var(--ink);
}

.button-light:hover {
  border-color: white;
  background: transparent;
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 235, 0.93);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(13, 39, 40, 0.05);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand img {
  width: 176px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Drawer-only chrome; the mobile breakpoint reveals these. */
.nav-panel-top,
.nav-scrim {
  display: none;
}

.nav-link {
  position: relative;
  padding: 12px 14px;
  color: #44595a;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.nav-products {
  position: relative;
  display: flex;
  align-items: center;
}

/* Keep the hover target continuous while the pointer crosses into the menu. */
.nav-products::after {
  position: absolute;
  top: 100%;
  right: 0;
  width: 480px;
  height: 16px;
  content: "";
}

.products-toggle {
  width: 32px;
  height: 38px;
  margin-left: -10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.products-toggle span {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.nav-products.is-open .products-toggle span {
  transform: rotate(180deg);
}

.products-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  left: auto;
  display: grid;
  width: 480px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-products:hover .products-dropdown,
.nav-products:focus-within .products-dropdown,
.nav-products.is-open .products-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-feature {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  background: var(--ink);
  color: white;
}

.dropdown-feature span:first-child {
  margin-bottom: 36px;
  color: #a8c3c1;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dropdown-feature strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
}

.dropdown-links {
  display: grid;
  padding: 15px;
}

.dropdown-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 9px;
  color: #465a5b;
  font-size: 0.78rem;
  font-weight: 600;
}

.dropdown-links a:hover {
  background: var(--teal-soft);
  color: var(--ink);
}

.nav-cta {
  margin-left: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.76rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

/* Home */
.home-hero {
  padding: 26px 0 0;
}

.home-hero-frame {
  position: relative;
  min-height: min(700px, calc(100vh - 120px));
  overflow: hidden;
  border-radius: 34px;
  background: var(--ink);
  color: white;
}

/* The hero image is wrapped in <picture>, which is display:contents — it
   generates no box, but selectors still walk the DOM, so match through it. */
.home-hero-frame > img,
.home-hero-frame > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 34, 35, 0.88) 0%, rgba(8, 34, 35, 0.65) 38%, rgba(8, 34, 35, 0.08) 72%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  width: min(590px, 92%);
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 92px);
}

.hero-content .eyebrow {
  color: #8fe1db;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.5vw, 7.8rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.hero-content h1 em {
  color: #aee3dc;
  font-weight: 400;
}

.hero-content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.03rem;
}

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

.hero-actions .text-link {
  color: white;
}

.hero-note {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  background: rgba(9, 36, 36, 0.68);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 0.73rem;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.home-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.home-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.home-intro-copy {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.home-intro-copy > p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.03rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.72rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-tile {
  position: relative;
  display: block;
  height: 400px;
  min-height: 0;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
}

.category-tile:nth-child(1),
.category-tile:nth-child(4) {
  grid-column: span 7;
}

.category-tile:nth-child(2),
.category-tile:nth-child(5) {
  grid-column: span 5;
}

.category-tile:nth-child(3) {
  grid-column: span 12;
  height: 340px;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
  background: var(--paper);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.category-tile:hover img {
  transform: scale(1.045);
}

.category-tile-info {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  background: rgba(247, 243, 235, 0.88);
  backdrop-filter: blur(12px);
}

.category-tile-info strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.category-tile-info span {
  color: var(--muted);
  font-size: 0.73rem;
}

.featured-section {
  background: var(--teal-soft);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 52, 0.1);
  border-radius: 20px;
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px rgba(13, 39, 40, 0.11);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  background: #fff;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform 400ms ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-pending {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(160deg, var(--paper), var(--teal-soft));
  gap: 6px;
  text-align: center;
}

.product-card-pending span {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
}

.product-card-pending em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.product-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card:hover .product-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.product-card-body {
  display: flex;
  flex: 1;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.product-card-category {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.05;
}

.product-card-sku {
  color: var(--muted);
  font-size: 0.65rem;
  white-space: nowrap;
}

.story-band {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.story-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.story-band-image {
  position: relative;
  min-height: 590px;
}

.story-band-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 8vw, 120px);
}

.story-band-copy .eyebrow {
  color: #82d6d0;
}

.story-band-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.story-band-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: #b9cccc;
}

/* Shared page hero */
.page-hero {
  padding: clamp(64px, 9vw, 120px) 0 56px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 9vw, 120px);
  align-items: end;
}

.page-hero p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Catalog */
.catalog-categories {
  padding-bottom: 84px;
}

.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.catalog-category-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 17px;
  background: white;
}

.catalog-category-card img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.catalog-category-card:hover img {
  transform: scale(1.05);
}

.catalog-category-card span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(247, 243, 235, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.catalog-section {
  padding: 80px 0 120px;
  background: var(--paper);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.catalog-toolbar h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
}

.catalog-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-wrap {
  position: relative;
}

.search-wrap input {
  width: min(300px, 35vw);
  min-height: 48px;
  padding: 11px 44px 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
}

.search-wrap span {
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--muted);
  transform: translateY(-50%);
}

.filter-select {
  min-height: 48px;
  padding: 10px 38px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
}

.catalog-count {
  margin: -16px 0 28px;
  color: var(--muted);
  font-size: 0.75rem;
}

.catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.catalog-item .product-card {
  height: 100%;
}

.empty-results {
  display: none;
  padding: 60px 20px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

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

/* About */
.about-hero {
  padding: 28px 0 0;
}

.about-hero-frame {
  display: grid;
  min-height: 670px;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--ink);
  color: white;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 90px);
}

.about-hero-copy .eyebrow {
  color: #8fe1db;
}

.about-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.about-hero-copy p:last-child {
  margin: 30px 0 0;
  color: #bad0cf;
}

.about-hero-image {
  position: relative;
  min-height: 520px;
}

.about-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 10vw, 140px);
  align-items: start;
}

.about-story h2 {
  position: sticky;
  top: 120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.about-story-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-story-copy p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}

.about-photo-grid figure,
.about-product-card {
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border-radius: 22px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 51, 52, 0.1);
  box-shadow: 0 10px 30px rgba(13, 39, 40, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-photo-grid figure:hover,
.about-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 39, 40, 0.09);
}

.about-photo-grid img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 280px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.about-photo-grid figcaption {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}

.values-section {
  background: var(--sand);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 300px;
  padding: 34px;
  border-top: 1px solid var(--ink);
  background: rgba(255, 253, 249, 0.52);
}

.value-card span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.value-card h3 {
  margin: 65px 0 14px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-cta,
.contact-cta {
  padding: clamp(64px, 9vw, 110px);
  border-radius: 28px;
  background: var(--teal-dark);
  color: white;
  text-align: center;
}

.about-cta h2,
.contact-cta h2 {
  max-width: 820px;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
  padding-bottom: 32px;
}

.contact-form-card,
.contact-info-card {
  min-width: 0;
  border-radius: 24px;
}

.contact-form-card {
  padding: clamp(32px, 5vw, 64px);
  background: var(--paper);
}

.contact-form-card h2,
.contact-info-card h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.contact-form-card > p {
  margin: 0 0 34px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px 16px;
}

.field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  min-width: 0;
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 12px;
  cursor: pointer;
}

.form-note {
  align-self: center;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
  background: var(--ink);
  color: white;
}

.contact-info-card > p {
  color: #b6cac9;
}

.contact-list {
  display: grid;
  min-width: 0;
  margin-top: 40px;
}

.contact-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-row span {
  color: #87aaa8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row address,
.contact-row p {
  min-width: 0;
  margin: 0;
  font-style: normal;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-row a:hover {
  color: #8fe1db;
}

.contact-info-mark {
  margin-top: auto;
  padding-top: 44px;
  align-self: flex-end;
  color: rgba(143, 225, 219, 0.16);
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.map-card {
  position: relative;
  height: min(580px, 66vh);
  min-height: 430px;
  margin-bottom: 96px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--sand);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) contrast(1.05);
}

.map-overlay {
  position: absolute;
  top: 22px;
  left: 22px;
  max-width: 330px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow);
}

.map-overlay strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.map-overlay span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Category pages */
.category-hero {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 50px;
  align-items: center;
  padding: 64px 0 72px;
}

.category-hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.055em;
}

/* Excludes .eyebrow so it keeps its bottom margin — without it the eyebrow
   collides with the h1, whose line-height is below 1. */
.category-hero p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.category-hero-image {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  border-radius: 24px;
  background: white;
}

.category-hero-image img {
  width: 100%;
  height: 100%;
  padding: 32px;
  object-fit: contain;
}

.category-products {
  padding: 78px 0 120px;
  background: var(--paper);
}

.category-products-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.category-products-top h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 500;
}

.category-products-top span {
  color: var(--muted);
  font-size: 0.75rem;
}

.empty-state {
  padding: 70px 24px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  text-align: center;
}

/* Product detail */
.product-page {
  padding: 38px 0 110px;
}

.breadcrumbs {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.69rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs a:hover {
  color: var(--teal-dark);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
}

/* No usable photography on disk: single column, no thumbnail rail. */
.product-gallery.has-no-photos {
  grid-template-columns: 1fr;
}

.product-image-main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  background: white;
}

.product-image-pending {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, var(--paper), var(--teal-soft));
  gap: 10px;
  text-align: center;
}

.product-image-pending-mark {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
}

.product-image-pending strong {
  font-size: 1.05rem;
}

.product-image-pending span:last-child {
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-image-main img {
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
}

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumbnail {
  width: 100%;
  aspect-ratio: 1;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  object-fit: contain;
  cursor: pointer;
  transition: border-color 160ms ease;
}

.product-thumbnail.is-active,
.product-thumbnail:hover {
  border-color: var(--teal);
}

.product-info {
  position: sticky;
  top: 122px;
}

.product-kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-info h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.product-sku {
  display: inline-block;
  margin: 22px 0;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.67rem;
}

.product-summary {
  max-width: 570px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.product-highlight {
  padding: 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.55);
}

.product-highlight strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.72rem;
}

.product-highlight span {
  color: var(--muted);
  font-size: 0.67rem;
}

.specifications {
  margin: 34px 0;
}

.specifications h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-top: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  padding: 11px 0;
  font-size: 0.77rem;
  text-align: left;
}

.spec-table th {
  width: 40%;
  color: var(--muted);
  font-weight: 500;
}

.product-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-inquiry p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.related-section {
  margin-top: 110px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.related-section h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
}

/* Footer */
.site-footer {
  padding-top: 80px;
  background: var(--ink-deep);
  color: #bed0cf;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.7fr 0.9fr 1.1fr;
  gap: 46px;
  padding-bottom: 70px;
}

.footer-lead img {
  width: 210px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-lead p {
  max-width: 390px;
  margin: 25px 0 0;
  color: #8da8a6;
}

.footer-label {
  margin: 0 0 20px;
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-lead) > a {
  display: block;
  margin: 8px 0;
  font-size: 0.8rem;
}

.footer-grid a:hover {
  color: #83ddd7;
}

.footer-contact address {
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #789493;
  font-size: 0.68rem;
}

@media (max-width: 1020px) {
  /* backdrop-filter makes an element a containing block for position:fixed
     descendants, which would trap the drawer inside the ~76px header box.
     The blur is a desktop-only flourish, so drop it here. */
  .site-header {
    background: var(--cream);
    backdrop-filter: none;
  }

  .nav-scrim {
    position: fixed;
    z-index: 60;
    display: block;
    background: rgba(8, 34, 35, 0.55);
    inset: 0;
    opacity: 0;
    transition: opacity 240ms ease, visibility 240ms;
    visibility: hidden;
  }

  .nav-scrim.is-visible {
    opacity: 1;
    visibility: visible;
  }

  /* Slide-in drawer */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 70;
    display: flex;
    width: min(86vw, 355px);
    flex-direction: column;
    align-items: stretch;
    padding: 0 22px 30px;
    overflow-y: auto;
    background: var(--cream);
    box-shadow: -26px 0 60px rgba(13, 39, 40, 0.24);
    gap: 0;
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), visibility 280ms;
    visibility: hidden;
    overscroll-behavior: contain;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-panel-top {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 22px 0 14px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
  }

  .nav-panel-top span {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-close {
    display: grid;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1;
    place-items: center;
    cursor: pointer;
  }

  .main-nav > .nav-link,
  .nav-products > .nav-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(23, 51, 52, 0.08);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
  }

  .nav-link::after {
    display: none;
  }

  .nav-products {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
  }

  .nav-products::after {
    display: none;
  }

  .products-toggle {
    width: 44px;
    height: 44px;
    margin: 0;
    border-bottom: 1px solid rgba(23, 51, 52, 0.08);
    font-size: 1.25rem;
  }

  /* Categories expand inline beneath "Products" as a plain indented list. */
  .products-dropdown {
    position: static;
    display: none;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    margin: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-products:hover .products-dropdown,
  .nav-products:focus-within .products-dropdown {
    display: none;
  }

  .nav-products.is-open .products-dropdown {
    display: grid;
  }

  .dropdown-feature {
    padding: 14px 16px;
    border-radius: 14px;
    margin: 12px 0 6px;
  }

  .dropdown-feature span:first-child {
    margin-bottom: 6px;
  }

  .dropdown-feature strong {
    font-size: 1.05rem;
  }

  .dropdown-links {
    padding: 0 0 10px;
  }

  .dropdown-links a {
    padding: 11px 12px;
    font-size: 0.85rem;
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin: 20px 0 0;
    padding: 15px 20px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-lines {
    display: grid;
    gap: 6px;
  }

  .menu-lines i {
    display: block;
    width: 19px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .catalog-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid,
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, 1240px);
  }

  .section-space {
    padding-block: 66px;
  }

  .section-heading,
  .catalog-toolbar,
  .category-products-top {
    align-items: start;
    flex-direction: column;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 145px;
  }

  .home-hero {
    padding-top: 12px;
  }

  .home-hero-frame {
    min-height: 650px;
    border-radius: 22px;
  }

  .home-hero-frame > img,
  .home-hero-frame > picture > img {
    object-position: 61% center;
  }

  .home-hero-frame::after {
    background: linear-gradient(0deg, rgba(8, 34, 35, 0.92) 0%, rgba(8, 34, 35, 0.66) 50%, rgba(8, 34, 35, 0.12) 100%);
  }

  .hero-content {
    justify-content: end;
    padding: 36px 24px 94px;
  }

  .hero-content h1 {
    font-size: clamp(3.9rem, 19vw, 5.5rem);
  }

  .hero-note {
    right: 14px;
    bottom: 13px;
    left: 14px;
    justify-content: space-between;
  }

  .home-intro,
  .page-hero-grid,
  .about-story,
  .contact-layout,
  .category-hero,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .home-intro {
    gap: 38px;
  }

  .category-grid {
    width: 100%;
    grid-template-columns: repeat(5, minmax(230px, 78vw));
    padding: 2px 15px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar,
  .featured-section .product-grid::-webkit-scrollbar {
    display: none;
  }

  .category-tile,
  .category-tile:nth-child(n) {
    height: 300px;
    min-height: 300px;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .category-tile img {
    padding: 22px;
  }

  .product-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-section .product-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(225px, 76vw));
    padding: 2px 15px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .featured-section .product-card {
    scroll-snap-align: start;
  }

  .story-band-grid {
    grid-template-columns: 1fr;
  }

  .story-band-image {
    min-height: 390px;
  }

  .story-band-copy {
    padding: 64px 24px 76px;
  }

  .page-hero {
    padding-top: 72px;
  }

  .page-hero-grid {
    gap: 28px;
  }

  .catalog-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-category-card {
    min-height: 210px;
  }

  .catalog-controls {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .search-wrap input,
  .filter-select {
    width: 100%;
  }

  .about-hero-frame {
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .about-hero-copy {
    min-height: 470px;
    padding: 55px 24px;
  }

  .about-hero-image {
    min-height: 390px;
  }

  .about-story h2 {
    position: static;
  }

  .about-photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 250px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .contact-info-card {
    min-height: 0;
  }

  .contact-info-mark {
    font-size: 6.5rem;
  }

  .map-card {
    height: 540px;
    margin-bottom: 72px;
  }

  .category-hero {
    gap: 30px;
    padding-top: 58px;
  }

  .category-hero-image {
    order: -1;
    aspect-ratio: 1.3 / 1;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-thumbnails {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
  }

  .product-thumbnail {
    width: 72px;
    flex: 0 0 72px;
  }

  .product-info {
    position: static;
  }

  .product-info h1 {
    font-size: clamp(3.6rem, 18vw, 5.6rem);
  }

  .product-highlights {
    grid-template-columns: 1fr;
  }

  .product-inquiry {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-lead,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .product-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-category-card {
    min-height: 180px;
  }

  .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stat-row strong {
    font-size: 1.55rem;
  }

  .stat-row span {
    font-size: 0.61rem;
    line-height: 1.35;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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