:root {
  --ink: #14251f;
  --ink-deep: #09130f;
  --ink-soft: #263a32;
  --paper: #f3efe6;
  --paper-deep: #e7e0d3;
  --surface: #fffdf8;
  --acid: #c7df68;
  --acid-dark: #8fa437;
  --copper: #b66f42;
  --muted: #6e756f;
  --line: rgba(20, 37, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(9, 19, 15, 0.14);
  --radius: 6px;
  --content: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

h1,
h2,
h3,
p,
figure,
ol,
ul,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.35rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

::selection {
  color: var(--ink-deep);
  background: var(--acid);
}

:focus-visible {
  outline: 3px solid var(--acid);
  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: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--ink-deep);
  background: var(--acid);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-row .button {
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--acid);
  border-radius: 999px;
  color: var(--ink-deep);
  background: var(--acid);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 2.65rem;
  padding-inline: 1rem;
  font-size: 0.66rem;
}

.button-ghost {
  color: var(--surface);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-ghost:hover,
.button-light {
  color: var(--ink-deep);
  background: var(--surface);
  border-color: var(--surface);
}

.button-light:hover {
  color: var(--ink-deep);
  background: var(--acid);
  border-color: var(--acid);
}

.text-link {
  position: relative;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.22rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--copper);
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--surface);
  background: rgba(9, 19, 15, 0.96);
  border-bottom: 1px solid var(--line-light);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: min(100%, 1500px);
  min-height: 5.25rem;
  padding: 0.8rem var(--gutter);
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
}

.brand {
  display: inline-flex;
  width: clamp(10.5rem, 15vw, 13.4rem);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 3.65rem;
  object-fit: contain;
  object-position: left center;
}

.footer-brand img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 1.8vw, 1.65rem);
}

.primary-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.62rem, 0.75vw, 0.72rem);
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--surface);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.language-switcher {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switcher a {
  color: inherit;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  color: var(--acid);
}

.mobile-language-switcher {
  display: none;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.35rem 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.section {
  width: min(100%, var(--content));
  padding: var(--section) var(--gutter);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  margin-bottom: 1.3rem;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.section-heading.light,
.section-heading.light > p:last-child {
  color: var(--surface);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.split-heading > p,
.split-heading > .text-link {
  margin-bottom: 1.4rem;
  justify-self: end;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 5.25rem);
  padding: clamp(3.5rem, 8vw, 8rem) var(--gutter);
  overflow: hidden;
  color: var(--surface);
  background:
    linear-gradient(90deg, rgba(9, 19, 15, 0.98) 0%, rgba(9, 19, 15, 0.91) 49%, rgba(9, 19, 15, 0.62) 100%),
    radial-gradient(circle at 18% 78%, rgba(182, 111, 66, 0.2), transparent 28%),
    url("/assets/images/reference-background.jpg") center center / cover no-repeat,
    var(--ink-deep);
  grid-template-columns: minmax(0, 0.95fr) minmax(21rem, 0.75fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}

.home-hero::after {
  position: absolute;
  top: 5%;
  right: -8vw;
  width: 34vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(255, 255, 255, 0.018), 0 0 0 12vw rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.hero-copy h1 {
  max-width: 900px;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-proof {
  display: flex;
  max-width: 500px;
  padding-top: 2rem;
  margin-top: clamp(3rem, 8vw, 7rem);
  border-top: 1px solid var(--line-light);
  gap: 1.25rem;
  align-items: baseline;
}

.hero-proof span {
  color: var(--acid);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  justify-self: end;
}

.hero-image-frame {
  position: relative;
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 52% 52% 7px 7px;
}

.hero-image-frame > img {
  width: 100%;
  aspect-ratio: 0.83;
  border-radius: 51% 51% 3px 3px;
  object-fit: cover;
}

.hero-image-label {
  position: absolute;
  right: clamp(-1rem, -2vw, -2.5rem);
  bottom: 2.5rem;
  display: flex;
  min-width: 210px;
  padding: 1rem 1.25rem;
  color: var(--ink-deep);
  background: var(--acid);
  box-shadow: var(--shadow);
  flex-direction: column;
}

.hero-image-label span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-image-label strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.brand-strip {
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.brand-list {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.brand-list li {
  min-height: 8rem;
  padding: 0;
  border-right: 1px solid var(--line);
  text-align: center;
}

.brand-list li:last-child {
  border-right: 0;
}

.brand-list a {
  display: flex;
  min-height: 8rem;
  padding: 1.15rem 0.75rem;
  text-decoration: none;
  transition: background 180ms ease;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.brand-list a:hover {
  background: var(--surface);
}

.brand-list .brand-index {
  display: block;
  align-self: flex-start;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-list img {
  width: auto;
  height: 2.75rem;
  max-width: 90%;
  object-fit: contain;
}

.product-overview {
  padding-top: clamp(5rem, 9vw, 9rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.category-card {
  position: relative;
  min-height: 24rem;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  overflow: hidden;
  background: var(--surface);
}

.category-card::before {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 16rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 300ms ease;
}

.category-card:hover::before {
  transform: scale(1.15);
}

.category-card-icon {
  position: relative;
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.category-card-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(-38deg);
}

.category-brand-logo {
  position: relative;
  display: flex;
  width: 100%;
  height: 5.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.category-brand-logo img {
  width: auto;
  height: 100%;
  max-width: min(100%, 12rem);
  object-fit: contain;
  object-position: left center;
}

.category-card-brand {
  display: flex;
  flex-direction: column;
}

.category-card.category-card-brand .text-link {
  position: static;
  margin-top: auto;
}

.category-card-reference {
  display: flex;
  min-height: 36rem;
  flex-direction: column;
}

.category-card-reference::before {
  display: none;
}

.category-card-media {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.category-card-media:hover img {
  opacity: 0.88;
}

.category-card-media-placeholder img {
  padding: 1.75rem;
  object-fit: contain;
}

.category-card.category-card-reference .text-link {
  position: static;
  margin-top: auto;
}

.category-card-plate .category-card-icon {
  border-radius: 55% / 35%;
}

.category-card-sideplate .category-card-icon {
  width: 4.5rem;
  border-radius: 80% 20% 70% 30%;
}

.category-card-ring .category-card-icon {
  box-shadow: inset 0 0 0 0.6rem var(--surface), inset 0 0 0 0.7rem var(--ink);
}

.category-card-pear .category-card-icon {
  border-radius: 60% 60% 45% 45% / 35% 35% 65% 65%;
  transform: rotate(-20deg);
}

.category-card h3 {
  position: relative;
  margin-bottom: 1rem;
}

.category-card > p:not(.eyebrow):not(.card-price) {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-card .text-link {
  position: absolute;
  bottom: 2.25rem;
  left: clamp(1.5rem, 3vw, 2.7rem);
}

.card-price {
  color: var(--copper);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-section {
  display: grid;
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  min-height: 34rem;
  padding: clamp(2rem, 5vw, 5rem);
  margin: clamp(2rem, 5vw, 5rem) auto;
  overflow: hidden;
  color: var(--surface);
  background: var(--copper);
  grid-template-columns: 0.25fr 1fr 0.65fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.editorial-index {
  align-self: start;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.editorial-copy {
  max-width: 660px;
}

.editorial-copy .eyebrow,
.editorial-copy .text-link {
  color: var(--acid);
}

.editorial-copy h2 {
  margin-bottom: 1.5rem;
}

.editorial-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.editorial-mark {
  display: grid;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: 0.54;
  justify-items: center;
  transform: rotate(-8deg);
}

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

.benefits-grid article,
.prepare-grid article {
  min-height: 18rem;
  padding: 2rem clamp(1.25rem, 3vw, 2.75rem) 1rem 0;
  border-right: 1px solid var(--line);
}

.benefits-grid article:not(:first-child),
.prepare-grid article:not(:first-child) {
  padding-left: clamp(1.25rem, 3vw, 2.75rem);
}

.benefits-grid article:last-child,
.prepare-grid article:last-child {
  border-right: 0;
}

.benefit-number,
.prepare-grid article > span {
  display: block;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.benefits-grid p,
.prepare-grid p {
  color: var(--muted);
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  color: var(--surface);
  background: var(--ink);
}

.process-grid {
  display: grid;
  padding: 0;
  margin: 0 0 3rem;
  border-top: 1px solid var(--line-light);
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid li {
  min-height: 18rem;
  padding: 1.6rem 1.6rem 1rem 0;
  border-right: 1px solid var(--line-light);
}

.process-grid li:not(:first-child) {
  padding-left: 1.6rem;
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 4rem;
  color: var(--acid);
  font-family: var(--serif);
  font-size: 2rem;
}

.process-grid h3 {
  margin-bottom: 1rem;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.contact-cta {
  display: grid;
  min-height: 26rem;
  padding: clamp(3rem, 7vw, 7rem) max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  color: var(--surface);
  background:
    linear-gradient(110deg, rgba(9, 19, 15, 0.86), rgba(9, 19, 15, 0.55)),
    repeating-linear-gradient(135deg, var(--ink-soft) 0 2px, var(--ink) 2px 20px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
}

.contact-cta > div {
  max-width: 780px;
}

.contact-cta h2 {
  margin-bottom: 1.25rem;
}

.contact-cta div > p:last-child {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  padding: clamp(2rem, 5vw, 4rem) max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter))) clamp(4rem, 8vw, 8rem);
  color: var(--surface);
  background:
    linear-gradient(90deg, rgba(9, 19, 15, 0.97) 0%, rgba(9, 19, 15, 0.9) 58%, rgba(9, 19, 15, 0.67) 100%),
    radial-gradient(circle at 86% 18%, rgba(199, 223, 104, 0.12), transparent 26%),
    url("/assets/images/reference-background.jpg") center center / cover no-repeat,
    var(--ink-deep);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

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

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.35fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.3rem, 7.5vw, 7.2rem);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.page-gallery.family-pear .page-hero h1 {
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.page-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.feature-pills li {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.consult-card {
  position: relative;
  max-width: 380px;
  padding: 2rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.consult-card-number {
  display: block;
  margin-bottom: 4rem;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2rem;
}

.consult-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.consult-card > p:not(.eyebrow) {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.gallery-section,
.hub-section {
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

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

.product-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(20, 37, 31, 0.08);
  pointer-events: none;
}

.product-image-link {
  display: block;
  cursor: zoom-in;
}

.product-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition: opacity 200ms ease;
}

.product-image-link:hover img {
  opacity: 0.9;
}

.image-lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  padding: clamp(1rem, 4vw, 3.5rem);
  border: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(5, 13, 10, 0.97);
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
}

.image-lightbox::backdrop {
  background: rgba(5, 13, 10, 0.92);
}

.image-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.38);
}

.image-lightbox-close {
  position: fixed;
  z-index: 1;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(9, 19, 15, 0.82);
  cursor: pointer;
}

.image-lightbox-close::before,
.image-lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--surface);
  content: "";
}

.image-lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.image-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: var(--acid);
  outline: none;
}

.product-card-body {
  padding: 1.4rem 0.1rem 2rem;
}

.product-card-body h2 {
  min-height: 2.4em;
  margin-bottom: 0.8rem;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
}

.detail-section {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.detail-title h2 {
  max-width: 620px;
}

.detail-copy {
  padding-top: 3.2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.detail-copy p + p {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.section-soft {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  background: var(--paper-deep);
}

.prepare-grid article {
  min-height: 16rem;
}

.prepare-grid article > span {
  margin-bottom: 3.5rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.related-section {
  padding-top: clamp(5rem, 9vw, 9rem);
}

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

.compact-grid .category-card {
  min-height: 21rem;
}

.compact-grid .category-card-icon {
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 930px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  padding: 1.7rem 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  cursor: pointer;
  list-style: none;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--copper);
  font-family: var(--sans);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 740px;
  padding: 0 3rem 1.8rem 0;
  color: var(--muted);
}

.order-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.order-notice-index {
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
}

.order-notice > div {
  max-width: 680px;
}

.order-notice h2 {
  margin-bottom: 1.3rem;
}

.order-notice div > p:last-child {
  color: var(--muted);
}

.legal-page {
  width: min(100%, 960px);
  min-height: 70vh;
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
  margin: 0 auto;
}

.legal-page .breadcrumbs {
  margin-bottom: 5rem;
  color: var(--muted);
}

.legal-page .breadcrumbs a {
  color: var(--ink-soft);
}

.legal-page h1 {
  margin-bottom: 4rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.legal-content p {
  color: var(--muted);
}

.legal-content dl {
  border-top: 1px solid var(--line);
}

.legal-content dl div {
  display: grid;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 12rem 1fr;
}

.legal-content dt {
  font-weight: 800;
}

.legal-warning {
  padding: 1.5rem;
  margin: 2rem 0;
  color: var(--ink-deep);
  background: #f2dca7;
  border-left: 4px solid var(--copper);
}

.legal-warning p {
  margin: 0.5rem 0 0;
  color: inherit;
}

.not-found {
  display: flex;
  min-height: 70vh;
  padding: var(--section) var(--gutter);
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.not-found h1 {
  margin-bottom: 1rem;
}

.not-found p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--muted);
}

.site-footer {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter) 2rem;
  color: var(--surface);
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  width: min(100%, var(--content));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.3fr) minmax(11rem, 0.45fr) minmax(11rem, 0.45fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.footer-brand img {
  width: 10.5rem;
  max-height: 5rem;
  margin-bottom: 2rem;
}

.footer-brand > p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.58);
}

.language-switcher-footer {
  margin-top: 2rem;
}

.footer-main h2 {
  margin-bottom: 1.6rem;
  color: var(--acid);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: grid;
  width: min(100%, var(--content));
  padding-top: 1.5rem;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem;
}

.footer-bottom p:last-child {
  max-width: 720px;
  justify-self: end;
  text-align: right;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .mobile-language-switcher {
    display: inline-flex;
    min-width: 0;
    padding: 0.2rem;
    border: 1px solid var(--line-light);
    border-radius: 999px;
    grid-column: 2;
    grid-row: 1;
    gap: 0;
    justify-self: end;
  }

  .mobile-language-switcher span {
    display: none;
  }

  .mobile-language-switcher a {
    display: inline-grid;
    min-width: 2.1rem;
    min-height: 2.1rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    place-items: center;
  }

  .mobile-language-switcher a:hover,
  .mobile-language-switcher a[aria-current="page"] {
    color: var(--ink-deep);
    background: var(--acid);
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .primary-nav {
    position: fixed;
    top: 5.25rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 3rem var(--gutter) 9rem;
    overflow-y: auto;
    visibility: hidden;
    background: var(--ink-deep);
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

  .primary-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-open .menu-toggle span:not(.sr-only):nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:not(.sr-only):nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .header-actions {
    position: fixed;
    z-index: 2;
    right: var(--gutter);
    bottom: 2rem;
    left: var(--gutter);
    display: none;
    justify-content: flex-end;
  }

  .header-actions .language-switcher {
    display: none;
  }

  .menu-open .header-actions {
    display: flex;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr 0.7fr;
  }

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

  .brand-list li:nth-child(4) {
    border-right: 0;
  }

  .brand-list li:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 820px) {
  h1 {
    font-size: clamp(3.1rem, 15vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
  }

  .home-hero {
    padding-top: 4.5rem;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(92%, 560px);
    margin-top: 2rem;
    justify-self: center;
  }

  .hero-proof {
    margin-top: 3.5rem;
  }

  .split-heading,
  .page-hero-grid,
  .detail-section,
  .contact-cta,
  .order-notice {
    grid-template-columns: 1fr;
  }

  .split-heading > p,
  .split-heading > .text-link {
    justify-self: start;
  }

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

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

  .category-card {
    min-height: 23rem;
  }

  .editorial-section {
    grid-template-columns: auto 1fr;
  }

  .editorial-mark {
    display: none;
  }

  .benefits-grid,
  .prepare-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid article,
  .prepare-grid article,
  .benefits-grid article:not(:first-child),
  .prepare-grid article:not(:first-child) {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-number,
  .prepare-grid article > span {
    margin-bottom: 2rem;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .consult-card {
    width: 100%;
    max-width: 520px;
  }

  .detail-copy {
    padding-top: 0;
  }

  .contact-cta .button,
  .order-notice .button {
    justify-self: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .footer-bottom p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1.1rem;
  }

  .header-inner {
    min-height: 4.75rem;
    gap: 0.45rem;
  }

  .brand {
    width: clamp(7.75rem, 38vw, 9rem);
  }

  .mobile-language-switcher {
    padding: 0.1rem;
    font-size: 0.62rem;
  }

  .mobile-language-switcher a {
    min-width: 2rem;
    min-height: 2rem;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .primary-nav {
    top: 4.75rem;
  }

  .home-hero {
    min-height: auto;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-image-label {
    right: -0.5rem;
    min-width: 180px;
  }

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

  .brand-list li,
  .brand-list li:nth-child(4) {
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .brand-list li:nth-child(odd) {
    border-left: 0;
  }

  .brand-list li:nth-child(even) {
    border-right: 0;
  }

  .category-grid,
  .compact-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 21rem;
  }

  .editorial-section {
    width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
  }

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

  .process-grid li,
  .process-grid li:not(:first-child) {
    min-height: auto;
    padding: 1.8rem 0;
    border-top: 1px solid var(--line-light);
    border-right: 0;
  }

  .process-grid span {
    margin-bottom: 2rem;
  }

  .page-hero {
    padding-top: 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .page-hub.family-all .page-hero h1 {
    font-size: clamp(2.25rem, 12.5vw, 4.1rem);
  }

  .page-gallery.family-pear .page-hero h1 {
    font-size: clamp(2.4rem, 11.5vw, 3.8rem);
  }

  .breadcrumbs {
    margin-bottom: 3.5rem;
  }

  .product-grid {
    gap: 0.75rem;
  }

  .product-card-body h2 {
    min-height: auto;
  }

  .legal-content dl div {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .contact-cta,
  .button,
  .menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
