:root {
  --cocoa-950: #2b150d;
  --cocoa-900: #3b1c10;
  --cocoa-800: #51250f;
  --cocoa-700: #6f3214;
  --cocoa-600: #87431d;
  --gold-600: #c98318;
  --gold-500: #e19a28;
  --gold-400: #f0b44f;
  --cream-100: #fffaf1;
  --cream-200: #f8eedf;
  --cream-300: #eedcc4;
  --ink: #28231f;
  --muted: #6d655e;
  --white: #ffffff;
  --line: rgba(59, 28, 16, 0.14);
  --shadow-sm: 0 12px 34px rgba(59, 28, 16, 0.09);
  --shadow-lg: 0 30px 80px rgba(59, 28, 16, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 38px;
  --container: 1200px;
  --header-height: 88px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

figure {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--cocoa-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--cocoa-950);
  background: var(--gold-400);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--cocoa-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.preview-bar {
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 5px 16px;
  color: #4b260f;
  background: #f6d99e;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 250, 241, .92);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, .98);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 28px rgba(59, 28, 16, .07);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  flex: 0 0 auto;
  display: block;
}

.brand__full {
  width: clamp(220px, 22vw, 290px);
  height: auto;
}

.brand__compact {
  display: none;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-nav,
.site-nav ul {
  display: flex;
  align-items: center;
}

.site-nav {
  flex: 1;
  justify-content: flex-end;
  gap: 30px;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  gap: clamp(18px, 2.3vw, 34px);
  list-style: none;
}

.site-nav ul a {
  position: relative;
  display: block;
  padding: 13px 0;
  color: var(--cocoa-900);
  font-size: .88rem;
  font-weight: 750;
  letter-spacing: .035em;
}

.site-nav ul a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

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

.language-switch {
  min-width: 68px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--cocoa-900);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color .2s ease, background .2s ease;
}

.language-switch:hover {
  background: var(--white);
  border-color: rgba(111, 50, 20, .35);
}

.language-switch span {
  font-size: .77rem;
  font-weight: 900;
}

.language-switch small {
  color: var(--muted);
  font-size: .67rem;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  background: var(--cocoa-900);
  transition: transform .25s ease, opacity .25s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--cocoa-700);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-400);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--home {
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: center;
  padding: clamp(62px, 8vw, 112px) 0 clamp(76px, 9vw, 124px);
  background:
    radial-gradient(circle at 83% 18%, rgba(240, 180, 79, .19), transparent 29%),
    linear-gradient(135deg, #fffaf1 0%, #fffdf8 55%, #f8ead6 100%);
}

.hero--home::before {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -140px;
  bottom: -120px;
  border: 1px solid rgba(111, 50, 20, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(111, 50, 20, .025), 0 0 0 96px rgba(111, 50, 20, .02);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.hero-copy h1 {
  max-width: 770px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: #5a5049;
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .045em;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--cocoa-700);
  box-shadow: 0 10px 22px rgba(111, 50, 20, .2);
}

.button--primary:hover {
  background: var(--cocoa-800);
  box-shadow: 0 14px 30px rgba(111, 50, 20, .26);
}

.button--secondary,
.button--outline {
  color: var(--cocoa-800);
  background: transparent;
  border-color: rgba(111, 50, 20, .28);
}

.button--secondary:hover,
.button--outline:hover {
  background: var(--white);
  border-color: var(--cocoa-700);
}

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

.trust-row li {
  min-width: 0;
  padding: 22px 14px 0 0;
}

.trust-row li + li {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--cocoa-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
}

.trust-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.35;
}

.hero-mosaic {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.33fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.hero-mosaic figure {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-mosaic__main {
  grid-row: 1 / span 2;
}

.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease);
}

.hero-mosaic figure:hover img {
  transform: scale(1.025);
}

.hero-stamp {
  position: absolute;
  right: 17%;
  bottom: -34px;
  width: 152px;
  height: 152px;
  display: grid;
  place-content: center;
  padding: 18px;
  color: var(--white);
  background: var(--cocoa-700);
  border: 8px solid var(--cream-100);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-7deg);
  box-shadow: var(--shadow-sm);
}

.hero-stamp em {
  color: var(--gold-400);
  font-size: 1.25rem;
}

.audience-strip {
  padding: 22px 0;
  color: #f8ead6;
  background: var(--cocoa-900);
}

.audience-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
}

.audience-strip span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  letter-spacing: .03em;
}

.audience-strip i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  background: var(--gold-500);
  border-radius: 50%;
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section--cocoa {
  color: #f7ecdf;
  background: var(--cocoa-900);
}

.section--cocoa h2,
.section--cocoa h3 {
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 7px;
  color: var(--muted);
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(59, 28, 16, .08);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 22px rgba(59, 28, 16, .045);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  aspect-ratio: 1.22 / 1;
  display: block;
  overflow: hidden;
  background: #fff;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card__body {
  padding: 27px 28px 29px;
}

.product-card__body h3 {
  font-size: 1.65rem;
}

.product-card__body p {
  min-height: 52px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--cocoa-700);
  font-size: .81rem;
  font-weight: 850;
  letter-spacing: .035em;
}

.text-link span {
  margin-left: 6px;
  transition: transform .2s ease;
}

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

.text-link--light {
  color: var(--gold-400);
}

.section-action {
  margin-top: 48px;
  text-align: center;
}

.partner-section {
  position: relative;
  overflow: hidden;
}

.partner-section::after {
  position: absolute;
  width: 390px;
  height: 390px;
  top: -245px;
  right: -90px;
  border: 1px solid rgba(240, 180, 79, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(240, 180, 79, .025), 0 0 0 120px rgba(240, 180, 79, .02);
  content: "";
}

.split-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  gap: clamp(65px, 10vw, 140px);
}

.split-layout__copy {
  align-self: center;
}

.split-layout__copy p:not(.eyebrow) {
  color: #d9c9bd;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.process-list > li > span {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.process-list p {
  margin: 0;
  color: #c8b8ad;
  font-size: .93rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(0, .82fr);
  align-items: center;
  gap: clamp(65px, 9vw, 125px);
}

.story-visual {
  position: relative;
}

.story-visual > img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.story-visual__badge {
  position: absolute;
  right: -35px;
  bottom: 35px;
  width: 190px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  color: var(--white);
  background: var(--cocoa-700);
  border: 8px solid var(--cream-100);
  border-radius: 50%;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.story-visual__badge strong,
.story-visual__badge span {
  display: block;
}

.story-visual__badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.story-visual__badge span {
  margin-top: 9px;
  color: #f6dfc8;
  font-size: .72rem;
  line-height: 1.35;
}

.lead-sm {
  color: #4e443d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.45;
}

.story-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.story-copy .button {
  margin-top: 16px;
}

.cta-band {
  padding: clamp(70px, 8vw, 105px) 0;
  background: var(--gold-400);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.cta-band p:not(.eyebrow) {
  max-width: 670px;
  margin: 16px 0 0;
  color: #6b3b18;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 165px) 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(225, 154, 40, .18), transparent 25%),
    linear-gradient(140deg, #fffaf1, #f8ead6);
}

.page-hero::after {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: -150px;
  border: 1px solid rgba(111, 50, 20, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(111, 50, 20, .025), 0 0 0 96px rgba(111, 50, 20, .02);
  content: "";
}

.page-hero h1 {
  max-width: 940px;
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: clamp(55px, 10vw, 140px);
}

.page-hero__narrow {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.page-hero__mark {
  position: relative;
  width: min(100%, 390px);
  margin-left: auto;
  padding: 32px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(111, 50, 20, .1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}

.page-hero__mark img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.page-hero__mark span {
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: 130px;
  height: 130px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--cocoa-700);
  border: 7px solid var(--cream-200);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .93rem;
  line-height: 1.35;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(440px, 1.17fr);
  gap: clamp(60px, 10vw, 145px);
}

.intro-grid h2 {
  margin-bottom: 0;
}

.rich-copy p:not(.lead-sm) {
  color: var(--muted);
}

.stats-panel {
  padding: 68px 0;
  color: var(--white);
  background: var(--cocoa-900);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid article {
  padding: 12px 30px;
  text-align: center;
}

.stats-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.stats-grid article.stats-grid__word strong {
  font-family: inherit;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: .015em;
  line-height: 1.15;
}

.stats-grid span {
  max-width: 180px;
  margin: 12px auto 0;
  color: #d9c9bd;
  font-size: .78rem;
  line-height: 1.4;
}

.locations-section {
  background: #fffdf8;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-grid--single {
  grid-template-columns: 1fr;
}

.location-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: clamp(38px, 5vw, 62px);
  background: var(--cream-200);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.location-card--accent {
  color: #f1e2d4;
  background: var(--cocoa-800);
}

.location-card > span:first-child {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(111, 50, 20, .12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: 1;
}

.location-card--accent > span:first-child {
  color: rgba(255, 255, 255, .08);
}

.location-card--accent h3 {
  color: var(--white);
}

.location-card--accent .eyebrow {
  color: var(--gold-400);
}

.location-card h3 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.location-card p:not(.eyebrow) {
  max-width: 440px;
}

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

.center-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

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

.values-grid article {
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(59, 28, 16, .08);
  border-radius: var(--radius-md);
}

.values-grid article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  color: var(--cocoa-800);
  background: #f4d8a7;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.values-grid p {
  color: var(--muted);
}

.page-hero--products .page-hero__narrow,
.page-hero--contact .page-hero__narrow {
  margin-inline: auto;
  text-align: center;
}

.page-hero--products .hero-lead,
.page-hero--contact .hero-lead {
  margin-inline: auto;
}

.page-hero--products .button-row {
  justify-content: center;
}

.product-jump {
  position: sticky;
  z-index: 80;
  top: var(--header-height);
  overflow-x: auto;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(59, 28, 16, .045);
  scrollbar-width: none;
}

.product-jump::-webkit-scrollbar {
  display: none;
}

.product-jump .container {
  min-width: max-content;
  display: flex;
  justify-content: center;
}

.product-jump a {
  padding: 20px 22px;
  color: var(--cocoa-800);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
}

.product-jump a:hover {
  color: var(--gold-600);
}

.commercial-note {
  margin-bottom: 80px;
  padding: 17px 22px;
  color: #64421f;
  background: #f8e7c5;
  border-left: 4px solid var(--gold-500);
  border-radius: 4px var(--radius-sm) var(--radius-sm) 4px;
  font-size: .88rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) minmax(0, .9fr);
  align-items: center;
  gap: clamp(55px, 9vw, 125px);
  padding: 20px 0 100px;
  scroll-margin-top: 165px;
}

.product-detail + .product-detail {
  padding-top: 100px;
  border-top: 1px solid var(--line);
}

.product-detail:nth-of-type(odd) .product-detail__image {
  order: 2;
}

.product-detail__image {
  position: relative;
  min-width: 0;
}

.product-detail__image img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  background: var(--white);
  border: 1px solid rgba(59, 28, 16, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.product-detail__number {
  position: absolute;
  z-index: 2;
  top: -24px;
  left: -20px;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--cocoa-700);
  border: 7px solid var(--cream-100);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.product-detail__copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.check-list {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 35px;
  color: #554b44;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--cocoa-800);
  background: #f1d19b;
  border-radius: 50%;
  content: "✓";
  font-size: .7rem;
  font-weight: 900;
}

.product-family {
  padding: 28px 0 110px;
  scroll-margin-top: calc(var(--header-height) + 72px);
}

.product-family + .product-family {
  padding-top: 110px;
  border-top: 1px solid var(--line);
}

.product-family__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.product-family__header > div {
  max-width: 790px;
}

.product-family__header h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.product-family__header .text-link {
  margin-bottom: 10px;
  white-space: nowrap;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.product-gallery--single {
  max-width: 760px;
}

.product-photo {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(59, 28, 16, .08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.product-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fffefa;
}

.product-photo figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  color: var(--cocoa-800);
  border-top: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-family__catalog {
  margin-top: 42px;
  padding: clamp(26px, 4vw, 44px);
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.product-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-option-grid li {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.product-option-grid li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cocoa-800);
  background: #f1d19b;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.product-option-grid strong {
  color: #4f392b;
  font-size: .9rem;
  line-height: 1.4;
}

.product-photo-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.additional-products {
  background: #f7ead4;
}

.additional-products h2 {
  max-width: 800px;
}

.additional-product-grid {
  margin-top: 38px;
}

.additional-product-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(59, 28, 16, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.additional-product-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.additional-product-card > div {
  padding: clamp(30px, 5vw, 64px);
}

.additional-product-card h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.additional-product-card p {
  margin: 18px 0 26px;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .product-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .product-family__header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-family__header .text-link {
    width: fit-content;
    margin: 0;
  }

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

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

  .additional-product-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

@media (max-width: 620px) {
  .product-family,
  .product-family + .product-family {
    padding: 66px 0;
  }

  .product-family:first-of-type {
    padding-top: 0;
  }

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

  .product-photo figcaption {
    min-height: 0;
  }

  .product-family__catalog {
    padding: 24px 18px;
  }
}

.contact-section {
  background: #fffdf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: start;
  gap: clamp(55px, 9vw, 120px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 38px 0;
}

.contact-cards a {
  min-width: 0;
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform .2s var(--ease), border-color .2s ease, box-shadow .2s ease;
}

.contact-cards a:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 50, 20, .35);
  box-shadow: var(--shadow-sm);
}

.contact-cards span,
.address-card > span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-cards strong {
  overflow-wrap: anywhere;
  margin-top: 8px;
  color: var(--cocoa-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
}

.address-card {
  padding: 28px;
  background: var(--cream-200);
  border-radius: var(--radius-sm);
}

.address-card h3 {
  margin: 11px 0 18px;
  font-size: 1.45rem;
  line-height: 1.35;
}

.form-panel {
  padding: clamp(30px, 5vw, 54px);
  background: var(--white);
  border: 1px solid rgba(59, 28, 16, .08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.preview-form-note {
  margin-bottom: 30px;
  padding: 15px 17px;
  color: #62421f;
  background: #fff1d5;
  border: 1px solid #f1d19b;
  border-radius: 9px;
  font-size: .82rem;
  line-height: 1.45;
}

.form-panel form,
.form-panel label {
  display: grid;
}

.form-panel form {
  gap: 21px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-panel label {
  gap: 7px;
  color: var(--cocoa-900);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .035em;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid rgba(59, 28, 16, .22);
  border-radius: 8px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-panel textarea {
  resize: vertical;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(225, 154, 40, .17);
}

.form-panel .button {
  justify-self: start;
  cursor: pointer;
}

.form-status {
  margin: 0;
  color: var(--cocoa-700);
  font-size: .85rem;
  font-weight: 700;
}

.error-page {
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.site-footer {
  padding: 76px 0 24px;
  color: #d9c9bd;
  background: var(--cocoa-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .55fr 1fr;
  gap: clamp(45px, 8vw, 110px);
  padding-bottom: 58px;
}

.footer-brand img {
  width: min(100%, 300px);
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
}

.footer-brand p {
  margin-top: 20px;
  color: #aa9990;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: var(--gold-400);
  font-family: inherit;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #ddcec3;
  font-size: .88rem;
  transition: color .2s ease;
}

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

.footer-links--contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #b7a79f;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .73rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  :root {
    --header-height: 78px;
  }

  .brand__full {
    width: 220px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav ul {
    gap: 18px;
  }

  .language-switch small {
    display: none;
  }

  .language-switch {
    min-width: 42px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
    gap: 42px;
  }

  .hero-mosaic {
    min-height: 520px;
  }

  .split-layout,
  .story-grid,
  .intro-grid,
  .contact-grid {
    gap: 60px;
  }

  .story-visual__badge {
    right: -18px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand__full {
    display: none;
  }

  .brand__compact {
    display: block;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: calc(30px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    padding: 38px 24px;
    overflow-y: auto;
    background: var(--cream-100);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .site-header.is-scrolled .site-nav {
    top: var(--header-height);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav ul a {
    padding: 16px 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -.02em;
    border-bottom: 1px solid var(--line);
  }

  .site-nav ul a::after {
    display: none;
  }

  .language-switch {
    width: fit-content;
    grid-template-columns: auto 1fr;
    padding: 10px 15px;
  }

  .language-switch small {
    display: block;
  }

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

  .hero-grid,
  .split-layout,
  .story-grid,
  .page-hero__grid,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 78px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-mosaic {
    min-height: 650px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 680px;
  }

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

  .split-layout {
    gap: 50px;
  }

  .story-grid {
    gap: 72px;
  }

  .page-hero__mark {
    width: min(80%, 380px);
    margin: 20px auto 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }

  .stats-grid article:nth-child(3) {
    border-left: 0;
  }

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

  .values-grid article {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 22px;
  }

  .values-grid article > span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .product-jump .container {
    justify-content: flex-start;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-detail:nth-of-type(odd) .product-detail__image {
    order: 0;
  }

  .product-detail__image {
    max-width: 700px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  html {
    scroll-padding-top: 124px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .preview-bar {
    min-height: 28px;
    font-size: .61rem;
    letter-spacing: .08em;
  }

  .brand__compact {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    top: calc(28px + var(--header-height));
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

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

  .hero-grid {
    gap: 68px;
  }

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

  .trust-row {
    margin-top: 38px;
  }

  .trust-row li {
    padding-right: 8px;
  }

  .trust-row li + li {
    padding-left: 12px;
  }

  .trust-row span {
    font-size: .65rem;
  }

  .hero-mosaic {
    min-height: 470px;
    grid-template-columns: 1.3fr .8fr;
    gap: 8px;
  }

  .hero-mosaic figure {
    border-radius: 14px;
  }

  .hero-stamp {
    right: 10%;
    bottom: -42px;
    width: 125px;
    height: 125px;
    border-width: 6px;
    font-size: .77rem;
  }

  .hero-stamp em {
    font-size: 1.03rem;
  }

  .audience-strip {
    padding: 17px 0;
    overflow: hidden;
  }

  .audience-strip .container {
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    padding: 0 18px;
  }

  .audience-strip span {
    font-size: .88rem;
  }

  .section {
    padding: 82px 0;
  }

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

  .product-card__body p {
    min-height: 0;
  }

  .process-list li {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .story-grid {
    gap: 62px;
  }

  .story-visual__badge {
    right: -7px;
    bottom: -36px;
    width: 145px;
    min-height: 140px;
    padding: 18px;
    border-width: 6px;
  }

  .story-visual__badge strong {
    font-size: 1.7rem;
  }

  .story-visual__badge span {
    font-size: .62rem;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .cta-band .button {
    width: 100%;
  }

  .page-hero {
    padding: 80px 0 92px;
  }

  .page-hero__mark {
    width: calc(100% - 26px);
    padding: 22px;
  }

  .page-hero__mark span {
    right: -12px;
    bottom: 12px;
    width: 110px;
    height: 110px;
    border-width: 6px;
    font-size: .75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 34px;
  }

  .stats-grid article {
    padding: 8px 12px;
  }

  .stats-grid strong {
    font-size: 2.7rem;
  }

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

  .location-card {
    min-height: 315px;
  }

  .values-grid article {
    padding: 28px;
  }

  .product-jump {
    top: var(--header-height);
    overflow-x: visible;
  }

  .product-jump .container {
    width: min(calc(100% - 16px), var(--container));
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 7px 0;
  }

  .product-jump a {
    padding: 7px 9px;
    font-size: .68rem;
    white-space: nowrap;
  }

  .product-family {
    scroll-margin-top: calc(var(--header-height) + 98px);
  }

  .commercial-note {
    margin-bottom: 62px;
  }

  .product-detail,
  .product-detail + .product-detail {
    padding: 65px 0;
  }

  .product-detail:first-of-type {
    padding-top: 0;
  }

  .product-detail__number {
    top: -16px;
    left: -8px;
    width: 64px;
    height: 64px;
    border-width: 5px;
    font-size: 1rem;
  }

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

  .contact-cards a {
    min-height: 95px;
  }

  .form-panel {
    padding: 26px 20px;
  }

  .form-panel .button {
    width: 100%;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

@media print {
  .preview-bar,
  .site-header,
  .site-footer,
  .product-jump,
  .button {
    display: none !important;
  }

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

  .section,
  .page-hero {
    padding: 30px 0;
  }
}

/* PanSquare secure progressive release: geometry is independent of JS. */
.menu-disclosure { margin-left:auto; flex:1; }
.menu-disclosure > summary { list-style:none; }
.menu-disclosure > summary::-webkit-details-marker { display:none; }
.menu-disclosure > summary { font-size:.7rem; font-weight:800; color:var(--cocoa-900); }
.menu-disclosure > summary span { width:auto; height:auto; background:none; }
.menu-disclosure[open] > summary { border-color:var(--cocoa-700); }
@media (min-width:861px) {
 .menu-disclosure::details-content { content-visibility:visible; }
 .menu-disclosure:not([open]) > .site-nav { display:flex; }
 .menu-disclosure > summary { display:none; }
}
@media (max-width:860px) {
 .menu-disclosure { flex:0 0 auto; }
 .menu-disclosure > summary { display:grid; }
 .menu-disclosure .site-nav, .site-header.is-scrolled .menu-disclosure .site-nav {
  position:absolute; top:100%; bottom:auto; left:0; right:0; width:100%;
  max-height:calc(100vh - var(--header-height)); max-height:calc(100dvh - var(--header-height));
  visibility:visible; opacity:1; transform:none; transition:none;
  overflow-y:auto; overscroll-behavior:contain; padding:20px 24px;
  box-shadow:0 16px 28px rgba(59,28,16,.18); gap:20px;
 }
 .menu-disclosure:not([open]) .site-nav { display:none; }
 .menu-disclosure .site-nav ul a { min-height:48px; padding:12px 4px; font-size:1.4rem; }
}
.reveal, .js .reveal, .js .reveal.is-visible { opacity:1; transform:none; transition:none; }
.footer-social { padding-top:6px; padding-bottom:24px; }
.footer-social ul { display:flex; flex-wrap:wrap; gap:8px 28px; list-style:none; padding:0; margin:0; }
.footer-social a { display:inline-flex; align-items:center; min-height:44px; padding:8px 2px; max-width:100%; color:#fff; text-decoration:underline; text-underline-offset:4px; overflow-wrap:anywhere; }
.footer-social a:focus-visible { outline:3px solid #fff; outline-offset:4px; }
.button:focus-visible, .menu-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline:3px solid #2b150d; outline-offset:3px; box-shadow:0 0 0 7px #fff; }
.form-panel [data-contact-form] { position:relative; }
.form-panel .contact-honeypot { position:absolute; width:1px; height:1px; left:0; top:0; overflow:hidden; clip-path:inset(50%); white-space:nowrap; }
.inquiry-note { font-size:.85rem; color:var(--muted); }
.form-status { min-height:3.5em; overflow-wrap:anywhere; }
.form-panel button[disabled] { opacity:.65; cursor:wait; }
.inquiry-result { scroll-margin-top:120px; }
.not-found-hero { min-height:70vh; display:grid; place-items:center; }
@media print { .menu-disclosure { display:none; } }
