:root {
  --bordo: #7a120f;
  --bordo-dark: #4f0e0b;
  --cream: #f3e2bf;
  --cream-soft: #fff7e7;
  --paper: #ead29a;
  --coffee: #342117;
  --coffee-soft: #5c3b27;
  --black: #16100c;
  --gold: #b68439;
  --gold-soft: #dfbd72;
  --line: rgba(80, 14, 11, .22);
  --shadow: 0 22px 70px rgba(45, 23, 13, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--coffee);
  font-family: var(--sans);
  background-color: var(--cream);
  line-height: 1.65;
  opacity: 0;
  transition: opacity .45s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(122, 18, 15, .045) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 42%, rgba(52, 33, 23, .04) 0 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(52, 33, 23, .018) 0 1px, transparent 1px 72px);
  background-size: 180px 180px, 220px 220px, 100% 100%;
}

body.is-loaded {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(22, 16, 12, .42);
  backdrop-filter: blur(2px);
}

body.menu-open .wa-float,
body.menu-open .back-to-top {
  opacity: 0;
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 247, 231, .18);
  color: var(--cream-soft);
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}

.site-header.is-scrolled,
.site-header.header-light {
  color: var(--coffee);
  background: rgba(255, 247, 231, .94);
  box-shadow: 0 10px 34px rgba(35, 18, 10, .12);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .16));
}

.site-header.is-scrolled .brand img,
.site-header.header-light .brand img {
  filter: none;
}

.brand-mark {
  display: grid;
  gap: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand-line {
  font-size: 11px;
  text-transform: uppercase;
  color: currentColor;
  opacity: .78;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

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

.icon-link,
.menu-toggle,
.slider-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.icon-link svg,
.menu-toggle svg,
.slider-arrow svg,
.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--bordo);
  border-radius: 4px;
  background: var(--bordo);
  color: var(--cream-soft);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

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

.btn.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn.btn-ghost:hover {
  background: rgba(255, 247, 231, .12);
}

.btn.btn-light {
  background: var(--cream-soft);
  color: var(--bordo);
  border-color: var(--cream-soft);
}

.btn.btn-light:hover {
  background: var(--bordo-dark);
  color: var(--cream-soft);
  border-color: var(--bordo-dark);
}

.btn.btn-dark {
  background: var(--coffee);
  border-color: var(--coffee);
}

.btn.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .22);
}

.btn.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .32);
}

.btn.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section.tight {
  padding: 82px 0;
}

.section.bordo {
  color: var(--cream-soft);
  background: var(--bordo);
}

.section.dark {
  color: var(--cream-soft);
  background: var(--black);
}

.section.paper {
  background-color: rgba(255, 247, 231, .64);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--bordo);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bordo .section-kicker,
.dark .section-kicker {
  color: var(--gold-soft);
}

.section-title {
  margin: 0;
  max-width: 780px;
  color: var(--coffee);
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 74px);
  line-height: .98;
  font-weight: 700;
}

.bordo .section-title,
.dark .section-title {
  color: var(--cream-soft);
}

.section-lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(52, 33, 23, .82);
}

.bordo .section-lead,
.dark .section-lead {
  color: rgba(255, 247, 231, .82);
}

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

.section-heading .section-lead {
  max-width: 520px;
  margin: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--cream-soft);
  background: var(--black);
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  min-height: 100svh;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s ease;
}

.hero-slide.is-active .hero-media img {
  transform: scale(1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 6, .58);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 84px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 8vw, 104px);
  line-height: .92;
  font-weight: 700;
}

.hero p {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255, 247, 231, .86);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  width: 34px;
  height: 3px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 247, 231, .42);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--gold-soft);
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 64px;
}

.about-story-section {
  padding: 104px 0;
}

.about-story-grid {
  align-items: center;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: clamp(44px, 6vw, 86px);
}

.about-story-copy {
  max-width: 680px;
}

.about-story-copy .section-kicker {
  margin-bottom: 14px;
  color: var(--bordo);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.about-story-copy .section-title {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.02;
}

.about-story-copy .section-lead,
.about-story-copy p:not(.section-kicker):not(.section-lead) {
  max-width: 660px;
  color: rgba(52, 33, 23, .78);
  font-family: var(--sans);
  font-size: clamp(17px, 1.32vw, 19px);
  font-weight: 500;
  line-height: 1.78;
}

.about-story-copy p:not(.section-kicker):not(.section-lead) {
  margin-top: 20px;
}

.about-story-grid .image-frame {
  padding: 0;
  overflow: hidden;
  border-color: rgba(122, 18, 15, .15);
  box-shadow: 0 24px 70px rgba(52, 33, 23, .12);
}

.about-story-grid .image-frame img {
  aspect-ratio: 4 / 4.45;
}

.image-frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 231, .58);
  box-shadow: var(--shadow);
}

.image-frame::before,
.image-frame::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--bordo);
  opacity: .55;
}

.image-frame::before {
  top: 6px;
  left: 6px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.image-frame::after {
  right: 6px;
  bottom: 6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-panel {
  border-left: 2px solid var(--bordo);
  padding-left: 34px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stats-grid > div,
.stat {
  position: relative;
  min-height: 104px;
  padding: 20px 22px;
  border: 1px solid rgba(122, 18, 15, .16);
  background: rgba(255, 247, 231, .64);
  box-shadow: 0 14px 34px rgba(52, 33, 23, .06);
}

.stats-grid > div::before,
.stat::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--bordo);
}

.stats-grid strong,
.stat strong {
  display: block;
  color: var(--bordo);
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1;
}

.stats-grid span,
.stat span {
  display: block;
  margin-top: 9px;
  color: rgba(52, 33, 23, .82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 30px;
  height: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  min-height: 150px;
  padding: 66px 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 231, .58);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 5px solid var(--cream-soft);
  border-radius: 50%;
  background: var(--bordo);
  box-shadow: 0 0 0 1px var(--bordo);
}

.timeline-item strong {
  display: block;
  color: var(--bordo);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}

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

.product-card,
.reason-card,
.process-card,
.contact-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 231, .62);
  overflow: hidden;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-body h3,
.reason-card h3,
.process-card h3,
.contact-card h3,
.value-card h3 {
  margin: 0;
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.08;
}

.product-body p,
.reason-card p,
.process-card p,
.contact-card p,
.value-card p {
  margin: 14px 0 0;
  color: rgba(52, 33, 23, .78);
}

.product-body .btn {
  margin-top: auto;
}

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

.reason-card,
.value-card {
  padding: 28px;
}

.reason-icon,
.process-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--bordo);
  border-radius: 50%;
  color: var(--bordo);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.story-video {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream-soft);
  background: var(--black);
}

.story-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: .54;
  transform: translateY(var(--parallax, 0));
}

.story-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 9, 5, .74), rgba(18, 9, 5, .36) 48%, rgba(18, 9, 5, .14));
}

.story-video .container {
  position: relative;
  z-index: 2;
}

.story-video .section-title,
.story-video .section-lead {
  color: var(--cream-soft);
}

.story-video .section-kicker {
  color: var(--gold-soft);
}

.story-image .container {
  width: min(1180px, calc(100% - 40px));
}

.story-image .container > * {
  max-width: 640px;
}

.play-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold-soft);
}

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

.editorial-block {
  padding: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-block h3 {
  margin: 0 0 14px;
  color: var(--bordo);
  font-family: var(--serif);
  font-size: 34px;
}

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

.process-card {
  min-width: 0;
  padding: 20px;
}

.process-card h3 {
  overflow-wrap: anywhere;
  line-height: 1.08;
}

.process-card p {
  font-size: 15px;
  line-height: 1.55;
}

.service-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.service-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 231, .62);
  font-weight: 800;
}

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

.gallery-item {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  cursor: pointer;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  grid-row: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-label {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 78px 92px;
  background: rgba(10, 6, 4, .94);
}

.gallery-lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  display: grid;
  gap: 14px;
  margin: 0;
  color: var(--cream-soft);
  text-align: center;
}

.lightbox-figure img {
  max-width: min(82vw, 1120px);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

.lightbox-figure figcaption {
  min-height: 20px;
  color: rgba(255, 247, 231, .82);
  font-weight: 800;
}

.lightbox-btn {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 247, 231, .42);
  border-radius: 50%;
  color: var(--cream-soft);
  background: rgba(255, 247, 231, .08);
  cursor: pointer;
}

.lightbox-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

body.lightbox-open {
  overflow: hidden;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--cream-soft);
  background: var(--bordo);
}

.cta-band .section-title,
.cta-band .section-lead {
  color: var(--cream-soft);
}

.cta-band .section-kicker {
  color: var(--gold-soft);
}

.cta-band .btn.btn-ghost {
  color: var(--cream-soft);
  border-color: rgba(255, 247, 231, .72);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 247, 231, .42);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 160px 0 84px;
  color: var(--cream-soft);
  background: var(--black);
  overflow: hidden;
}

.page-hero .hero-media {
  opacity: .78;
}

.page-hero .hero-media::after {
  background: rgba(20, 10, 6, .62);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 247, 231, .86);
  font-size: clamp(18px, 2vw, 22px);
}

.quote-panel {
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 231, .62);
}

.quote-panel p {
  margin: 0;
  color: var(--bordo);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.14;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.editorial-flow {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 60px;
}

.article-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 231, .64);
}

.article-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--bordo);
  font-weight: 800;
}

.article-section {
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.article-section h2 {
  margin: 0 0 18px;
  color: var(--bordo);
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
}

.article-section p {
  margin: 0 0 18px;
  font-size: 18px;
}

.heritage-story {
  position: relative;
}

.heritage-layout {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.heritage-index {
  position: sticky;
  top: 0;
  padding: 22px;
  border: 1px solid rgba(122, 18, 15, .16);
  background: rgba(255, 247, 231, .74);
  box-shadow: 0 18px 48px rgba(52, 33, 23, .08);
}

.heritage-index nav {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.heritage-index a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--coffee);
  border-left: 2px solid rgba(122, 18, 15, .24);
  background: rgba(255, 247, 231, .34);
  font-size: 13px;
  font-weight: 900;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.heritage-index a:hover,
.heritage-index a:focus-visible {
  color: var(--bordo);
  border-color: var(--bordo);
  background: rgba(122, 18, 15, .07);
  transform: translateX(3px);
}

.heritage-index-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 18, 15, .16);
}

.heritage-index-note strong {
  display: block;
  color: var(--bordo);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.heritage-index-note span {
  display: block;
  margin-top: 8px;
  color: rgba(52, 33, 23, .72);
  font-size: 13px;
  line-height: 1.55;
}

.heritage-content {
  display: grid;
  gap: 22px;
}

.heritage-intro,
.heritage-card,
.heritage-feature,
.heritage-process,
.heritage-closing {
  border: 1px solid rgba(122, 18, 15, .14);
  background:
    linear-gradient(180deg, rgba(255, 247, 231, .94), rgba(248, 236, 211, .76));
  box-shadow: 0 22px 58px rgba(52, 33, 23, .08);
}

.heritage-intro {
  padding: clamp(30px, 4vw, 48px);
}

.heritage-intro h2,
.heritage-feature h2,
.heritage-process h2,
.heritage-closing h2,
.heritage-card h2 {
  margin: 0;
  color: var(--bordo);
  font-family: var(--serif);
  line-height: 1.02;
}

.heritage-intro h2 {
  max-width: 720px;
  font-size: clamp(36px, 5vw, 64px);
}

.heritage-intro p,
.heritage-feature p,
.heritage-process p,
.heritage-closing p,
.heritage-card p {
  margin: 16px 0 0;
  color: rgba(52, 33, 23, .78);
  font-size: 17px;
  line-height: 1.78;
}

.heritage-intro p {
  max-width: 780px;
  font-size: clamp(18px, 2vw, 22px);
}

.heritage-tags,
.heritage-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.heritage-tags span,
.heritage-steps span {
  padding: 8px 11px;
  color: var(--bordo);
  border: 1px solid rgba(122, 18, 15, .2);
  background: rgba(255, 247, 231, .7);
  font-size: 12px;
  font-weight: 900;
}

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

.heritage-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
}

.heritage-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(122, 18, 15, .16);
  transform: rotate(45deg);
}

.heritage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--bordo);
  border: 1px solid rgba(122, 18, 15, .24);
  border-radius: 50%;
  background: rgba(255, 247, 231, .7);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.heritage-card h2 {
  font-size: clamp(27px, 3vw, 38px);
}

.heritage-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 34px;
  align-items: stretch;
  padding: clamp(30px, 4vw, 46px);
  color: var(--cream-soft);
  background:
    linear-gradient(135deg, rgba(122, 18, 15, .96), rgba(79, 14, 11, .96));
}

.heritage-feature h2,
.heritage-feature p,
.heritage-feature .section-kicker {
  color: inherit;
}

.heritage-feature p {
  color: rgba(255, 247, 231, .82);
}

.heritage-feature-photo {
  min-height: 280px;
  margin: 0;
  border: 1px solid rgba(255, 247, 231, .22);
  background: rgba(255, 247, 231, .08);
  overflow: hidden;
}

.heritage-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.heritage-process {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 18px;
}

.heritage-process .image-frame {
  height: 100%;
  min-height: 420px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.heritage-process .image-frame img {
  height: 100%;
  object-fit: cover;
}

.heritage-process > div {
  padding: 18px clamp(18px, 3vw, 32px) 18px 0;
}

.heritage-process h2,
.heritage-closing h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.heritage-process h2 {
  max-width: 10ch;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.14;
}

.heritage-closing {
  padding: clamp(30px, 4vw, 48px);
  border-color: rgba(122, 18, 15, .2);
  background:
    linear-gradient(180deg, rgba(255, 247, 231, .96), rgba(234, 210, 154, .6));
}

.heritage-closing p {
  max-width: 820px;
}

@media (max-width: 1080px) {
  .heritage-layout {
    grid-template-columns: 1fr;
  }

  .heritage-index {
    position: static;
  }

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

@media (max-width: 820px) {
  .heritage-card-grid,
  .heritage-feature,
  .heritage-process {
    grid-template-columns: 1fr;
  }

  .heritage-card {
    min-height: auto;
  }

  .heritage-process > div {
    padding: 10px 12px 18px;
  }

  .heritage-process .image-frame {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .heritage-layout {
    gap: 22px;
  }

  .heritage-index {
    padding: 16px;
  }

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

  .heritage-index a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .heritage-index-note {
    display: none;
  }

  .heritage-intro,
  .heritage-card,
  .heritage-feature,
  .heritage-closing {
    padding: 24px 20px;
  }

  .heritage-intro h2 {
    font-size: clamp(32px, 9.5vw, 40px);
  }

  .heritage-intro p,
  .heritage-feature p,
  .heritage-process p,
  .heritage-closing p,
  .heritage-card p {
    font-size: 16px;
    line-height: 1.68;
  }

  .heritage-card h2,
  .heritage-feature h2,
  .heritage-process h2,
  .heritage-closing h2 {
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .heritage-process h2 {
    max-width: none;
    line-height: 1.12;
  }

  .heritage-process {
    padding: 10px;
  }

  .heritage-process .image-frame {
    min-height: 250px;
  }

  .heritage-tags,
  .heritage-steps {
    gap: 8px;
  }

  .heritage-tags span,
  .heritage-steps span {
    font-size: 11px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 38px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 20px 24px;
}

.contact-card h3 {
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.12;
}

.contact-card p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.55;
}

.contact-card a {
  color: var(--bordo);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 231, .64);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--bordo);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(80, 14, 11, .28);
  border-radius: 4px;
  background: rgba(255, 247, 231, .9);
  color: var(--coffee);
  padding: 14px 16px;
  outline: none;
}

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

.map-frame {
  min-height: 360px;
  display: grid;
  place-items: center;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: rgba(80, 14, 11, .08);
  text-align: center;
}

.map-frame strong {
  display: block;
  color: var(--bordo);
  font-family: var(--serif);
  font-size: 32px;
}

.site-footer {
  color: var(--cream-soft);
  background: var(--black);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .8fr) minmax(0, .8fr);
  gap: 42px;
}

.footer-logo {
  width: 190px;
  padding: 0;
  background: transparent;
}

.footer-grid p {
  max-width: 420px;
  color: rgba(255, 247, 231, .76);
}

.footer-title {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 218, 196, .52);
  border-radius: 4px;
  color: var(--cream-soft);
  background: rgba(255, 247, 231, .04);
  box-shadow: inset 0 0 0 1px rgba(255, 247, 231, .04);
  transition: transform .24s ease, background .24s ease, border-color .24s ease, color .24s ease, box-shadow .24s ease;
}

.social-link::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(236, 218, 196, .14);
  opacity: 0;
  transition: opacity .24s ease, inset .24s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  color: var(--gold-soft);
  border-color: rgba(236, 218, 196, .86);
  background: rgba(122, 18, 15, .62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.social-link:hover::after,
.social-link:focus-visible::after {
  inset: 5px;
  opacity: 1;
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.05;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 247, 231, .14);
  color: rgba(255, 247, 231, .72);
  font-size: 13px;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 36px rgba(37, 211, 102, .34);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
  box-shadow: 0 18px 44px rgba(37, 211, 102, .42);
}

.wa-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 28;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 247, 231, .44);
  border-radius: 999px;
  color: var(--cream-soft);
  background: rgba(122, 18, 15, .94);
  box-shadow: 0 16px 34px rgba(35, 18, 10, .2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--bordo-dark);
  box-shadow: 0 18px 42px rgba(122, 18, 15, .3);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top span {
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .nav-links {
    position: fixed;
    inset: 210px 14px auto;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100svh - 230px);
    padding: 12px;
    overflow: auto;
    border: 1px solid rgba(122, 18, 15, .18);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 247, 231, .98), rgba(244, 229, 199, .98)),
      var(--cream-soft);
    color: var(--coffee);
    box-shadow: 0 24px 70px rgba(35, 18, 10, .22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(122, 18, 15, .12);
    color: var(--coffee);
    font-family: var(--sans);
    font-size: 15.5px;
    font-weight: 850;
    letter-spacing: .01em;
  }

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

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    color: var(--bordo);
    background: rgba(122, 18, 15, .07);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-open .menu-toggle {
    color: var(--cream-soft);
    background: var(--bordo);
    border-color: var(--bordo);
  }

  .header-actions .btn {
    display: none;
  }

  .intro-grid,
  .split-grid,
  .tradition-grid,
  .editorial-flow,
  .contact-grid,
  .cta-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .article-nav {
    position: static;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 96px;
  }

  .brand-mark {
    display: none;
  }

  .nav-links {
    inset: 74px 0 0;
  }

  .section {
    padding: 78px 0;
  }

  .hero-content {
    width: min(100% - 28px, 620px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 10.8vw, 46px);
    line-height: .98;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero p {
    max-width: 32ch;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-eyebrow {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-eyebrow::before {
    width: 44px;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-buttons .btn {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 13px;
  }

  .hero-controls {
    bottom: 22px;
    width: min(100% - 28px, 620px);
  }

  .slider-arrows {
    display: none;
  }

  .stats-grid,
  .card-grid,
  .reason-grid,
  .process-grid,
  .values-grid,
  .timeline,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .content-panel {
    border-left: 0;
    padding-left: 0;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    grid-row: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Rebuilt visual system: packaging-free, editorial, parchment-led. */
.site-header {
  color: var(--cream-soft);
  background: rgba(22, 16, 12, .28);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled,
.site-header.header-light {
  background: rgba(255, 247, 231, .96);
}

.section {
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 18, 15, .28), transparent);
}

.section.paper {
  background-color: rgba(255, 247, 231, .72);
}

.section-title {
  max-width: 860px;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(22, 16, 12, .72), rgba(22, 16, 12, .44) 48%, rgba(22, 16, 12, .24)),
    rgba(20, 10, 6, .18);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
}

.hero h1 {
  max-width: 980px;
}

.intro-grid,
.split-grid {
  align-items: start;
}

.image-frame {
  padding: 0;
  border: 1px solid rgba(122, 18, 15, .28);
  background: transparent;
  box-shadow: none;
}

.image-frame img {
  aspect-ratio: 5 / 4;
}

.image-frame::before,
.image-frame::after {
  width: 56px;
  height: 56px;
  opacity: .65;
}

.content-panel {
  border-left: 1px solid rgba(122, 18, 15, .38);
}

.stat,
.timeline-item,
.product-card,
.reason-card,
.process-card,
.contact-card,
.value-card,
.quote-panel,
.article-nav,
.contact-form {
  background: rgba(255, 247, 231, .78);
  box-shadow: none;
}

.stat,
.timeline-item,
.reason-card,
.process-card,
.contact-card,
.value-card,
.quote-panel,
.article-nav,
.contact-form {
  border-radius: 0;
}

.product-card {
  border-radius: 0;
  background: var(--cream-soft);
}

.product-card::after {
  content: "";
  display: block;
  height: 5px;
  background: var(--bordo);
}

.product-media {
  background: var(--paper);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 247, 231, .55);
  pointer-events: none;
}

.product-card:nth-child(2n) .product-media img {
  object-position: 68% center;
}

.product-card:nth-child(3n) .product-media img {
  object-position: 34% center;
}

.story-video::after {
  background: linear-gradient(90deg, rgba(18, 9, 5, .76), rgba(18, 9, 5, .42) 54%, rgba(18, 9, 5, .18));
}

.gallery-item {
  border-radius: 0;
}

.gallery-label {
  background: rgba(122, 18, 15, .92);
}

.page-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 160px 0 96px;
  color: var(--coffee);
  background:
    linear-gradient(90deg, rgba(255, 247, 231, .94), rgba(255, 247, 231, .86)),
    var(--cream);
  border-bottom: 1px solid rgba(122, 18, 15, .2);
}

.page-hero::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - 1180px) / 2));
  right: max(20px, calc((100vw - 1180px) / 2));
  top: 118px;
  bottom: 54px;
  border: 1px solid rgba(122, 18, 15, .18);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34%;
  height: 8px;
  background: var(--bordo);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
}

.page-hero h1 {
  max-width: 620px;
  color: var(--coffee);
  font-size: clamp(48px, 7vw, 92px);
}

.page-hero p:not(.breadcrumb) {
  max-width: 560px;
  color: rgba(52, 33, 23, .82);
}

.page-hero .hero-media {
  position: absolute;
  inset: 136px max(20px, calc((100vw - 1180px) / 2)) 78px auto;
  width: min(44vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(122, 18, 15, .28);
  opacity: 1;
}

.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.page-hero .hero-media::after {
  display: none;
}

.breadcrumb {
  color: var(--bordo);
}

.article-section {
  background: rgba(255, 247, 231, .42);
}

.wa-float {
  border-radius: 4px;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 128px 0 72px;
  }

  .page-hero .container {
    order: 1;
  }

  .page-hero .hero-media {
    position: relative;
    order: 2;
    inset: auto;
    width: min(100% - 28px, 720px);
    height: 320px;
    margin: 34px auto 0;
  }

  .page-hero::before {
    inset: 96px 14px 32px;
  }

  .page-hero h1,
  .page-hero p:not(.breadcrumb) {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-media::after {
    background: rgba(22, 16, 12, .58);
  }

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

  .page-hero .hero-media {
    height: 230px;
  }

  .page-hero::before {
    display: none;
  }

  .content-panel {
    border-left: 0;
  }
}

/* Inner-page polish pass: calmer header, smaller editorial tops, fewer lines. */
.site-header {
  color: var(--coffee);
  background: rgba(244, 229, 199, .94);
  border-bottom: 1px solid rgba(122, 18, 15, .14);
  box-shadow: 0 8px 26px rgba(35, 18, 10, .08);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled,
.site-header.header-light {
  color: var(--coffee);
  background: rgba(255, 247, 231, .96);
  box-shadow: 0 8px 26px rgba(35, 18, 10, .08);
}

.top-bar {
  color: var(--cream-soft);
  background: var(--bordo);
  border-bottom: 1px solid rgba(255, 247, 231, .18);
}

.top-bar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  font-weight: 800;
}

.top-bar-contact,
.top-bar-social,
.top-link {
  display: flex;
  align-items: center;
}

.top-bar-contact {
  gap: 22px;
  min-width: 0;
}

.top-link {
  gap: 7px;
  white-space: nowrap;
}

.top-bar-social {
  gap: 0;
  margin-left: auto;
}

.top-bar-inner a {
  opacity: .92;
  transition: opacity .2s ease;
}

.top-bar-inner a:hover {
  opacity: 1;
}

.top-bar svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-bar-social a {
  position: relative;
  width: auto;
  height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-right: 15px;
  margin-right: 14px;
  color: rgba(255, 247, 231, .9);
  white-space: nowrap;
  transition: transform .22s ease, color .22s ease, opacity .22s ease;
}

.top-bar-social a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 15px;
  background: rgba(255, 247, 231, .46);
  transform: translateY(-50%);
}

.top-bar-social a:last-child {
  padding-right: 0;
  margin-right: 0;
}

.top-bar-social a:hover,
.top-bar-social a:focus-visible {
  transform: translateY(-2px);
  color: var(--gold-soft);
  opacity: 1;
}

.top-bar-social svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.05;
}

.nav-shell {
  min-height: 176px;
  padding-block: 12px;
}

.brand {
  gap: 10px;
}

.brand img {
  width: 219px;
  filter: none;
}

.brand-name {
  font-size: 18px;
}

.brand-line {
  font-size: 10px;
}

.nav-links {
  gap: 24px;
  font-size: 14.5px;
}

.nav-links a {
  padding: 27px 0;
}

.nav-links a::after {
  bottom: 20px;
  background: var(--bordo);
}

.header-actions .btn {
  min-height: 42px;
  padding: 10px 18px;
}

.header-order {
  border-color: rgba(122, 18, 15, .34);
  box-shadow: 0 8px 22px rgba(52, 33, 23, .12);
}

.header-order svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-order:hover {
  border-color: rgba(122, 18, 15, .56);
  box-shadow: 0 12px 30px rgba(122, 18, 15, .22);
}

.section-title {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.04;
}

.section-lead {
  font-size: clamp(16px, 1.4vw, 18px);
}

.page-hero {
  min-height: 430px;
  padding: 236px 0 58px;
  border-bottom: 1px solid rgba(122, 18, 15, .12);
}

.page-hero::before,
.page-hero::after {
  display: none;
}

.page-hero .container {
  width: min(1120px, calc(100% - 48px));
}

.page-hero h1 {
  max-width: 540px;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: .98;
}

.page-hero p:not(.breadcrumb) {
  max-width: 510px;
  margin-top: 20px;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.72;
}

.page-hero .hero-media {
  inset: 232px max(24px, calc((100vw - 1120px) / 2)) 48px auto;
  width: min(39vw, 500px);
  border: 0;
}

.page-hero .hero-media img {
  object-fit: cover;
}

.breadcrumb {
  margin-bottom: 14px;
  color: rgba(122, 18, 15, .78);
  font-size: 11px;
}

.image-frame,
.product-card,
.reason-card,
.process-card,
.contact-card,
.value-card,
.quote-panel,
.article-nav,
.contact-form,
.map-frame,
.timeline-item {
  border-color: rgba(122, 18, 15, .14);
}

.image-frame::before,
.image-frame::after {
  display: none;
}

.product-body h3,
.reason-card h3,
.process-card h3,
.contact-card h3,
.value-card h3 {
  font-size: clamp(22px, 2vw, 26px);
}

.process-card h3 {
  font-size: clamp(20px, 1.55vw, 22px);
}

.editorial-block {
  padding: 26px 0;
  border-top-color: rgba(122, 18, 15, .14);
  border-bottom-color: rgba(122, 18, 15, .14);
}

.editorial-block h3 {
  font-size: clamp(26px, 2.8vw, 34px);
}

.quote-panel {
  padding: 32px;
}

.quote-panel p {
  font-size: clamp(22px, 2.5vw, 32px);
}

.article-section h2 {
  font-size: clamp(28px, 2.8vw, 40px);
}

.article-section p {
  font-size: 17px;
}

.contact-form .section-title {
  font-size: clamp(28px, 2.8vw, 40px);
}

@media (max-width: 900px) {
  .top-location {
    display: none;
  }

  .nav-links {
    inset: 210px 14px auto;
  }

  .page-hero {
    padding: 232px 0 54px;
  }

  .page-hero .container {
    width: min(100% - 32px, 720px);
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(38px, 9vw, 52px);
  }

  .page-hero .hero-media {
    inset: auto;
    width: min(100% - 32px, 720px);
    height: 270px;
    margin-top: 28px;
  }

  .about-story-section {
    padding: 82px 0;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-story-grid .image-frame {
    order: -1;
  }

  .about-story-grid .image-frame img {
    aspect-ratio: 16 / 10;
  }

  .about-story-copy {
    max-width: none;
  }

  .about-story-copy .section-title {
    font-size: clamp(34px, 7.2vw, 48px);
  }

  .about-story-copy .section-lead,
  .about-story-copy p:not(.section-kicker):not(.section-lead) {
    font-size: 16.5px;
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  .top-bar {
    padding: 7px 0;
  }

  .top-bar-contact {
    width: 100%;
    justify-content: center;
  }

  .top-link {
    justify-content: center;
  }

  .nav-shell {
    min-height: 136px;
    padding-block: 10px;
  }

  .brand img {
    width: 168px;
  }

  .top-bar-inner {
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
  }

  .top-location {
    display: none;
  }

  .top-bar-social {
    width: 100%;
    justify-content: center;
    gap: 0;
    margin-left: 0;
  }

  .top-bar-social a {
    height: 28px;
    gap: 5px;
    padding-right: 9px;
    margin-right: 8px;
    font-size: 10px;
  }

  .top-bar-social a:not(:last-child)::after {
    height: 12px;
  }

  .top-bar-social svg {
    width: 12px;
    height: 12px;
  }

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

  .nav-links {
    inset: 206px 12px auto;
    max-height: calc(100svh - 222px);
    padding: 10px;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 13px;
    font-size: 14.5px;
  }

  .page-hero {
    min-height: auto;
    padding: 224px 0 36px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 9.5vw, 40px);
    line-height: 1;
  }

  .page-hero p:not(.breadcrumb) {
    font-size: 16px;
  }

  .page-hero .hero-media {
    inset: auto;
    left: auto;
    width: calc(100% - 32px);
    height: 210px;
    margin: 24px 16px 0;
  }

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

  .gallery-lightbox {
    padding: 72px 16px 86px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 22px;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .section-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .back-to-top {
    right: 16px;
    bottom: 86px;
    min-height: 42px;
    padding: 0 13px;
  }

  .back-to-top span {
    font-size: 11px;
  }
}

/* Section refinement pass */
.process-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  min-height: 184px;
  padding: 26px 24px;
  border-color: rgba(122, 18, 15, .18);
  background:
    linear-gradient(180deg, rgba(255, 247, 231, .96), rgba(248, 236, 211, .74));
  box-shadow: 0 18px 46px rgba(52, 33, 23, .08);
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--bordo);
}

.process-number {
  width: 50px;
  height: 50px;
  margin: 0;
  background: var(--cream-soft);
  box-shadow: inset 0 0 0 5px rgba(122, 18, 15, .06);
}

.process-card h3,
.process-card p {
  grid-column: 2;
}

.process-card h3 {
  font-size: clamp(24px, 2vw, 30px);
  overflow-wrap: normal;
}

.process-card p {
  max-width: 28ch;
}

.values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  position: relative;
  min-height: 178px;
  padding: 30px 24px 26px;
  border-color: rgba(122, 18, 15, .18);
  background:
    linear-gradient(180deg, rgba(255, 247, 231, .94), rgba(248, 236, 211, .72));
  box-shadow: 0 18px 44px rgba(52, 33, 23, .07);
}

.value-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--bordo);
}

.value-card h3 {
  font-size: clamp(21px, 1.8vw, 27px);
  overflow-wrap: anywhere;
}

.value-card p {
  font-size: 16px;
  line-height: 1.65;
}

.values-section .section-heading {
  margin-bottom: 34px;
}

.values-section .section-title {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.values-section .value-card {
  min-height: 160px;
  padding: 26px 22px 22px;
}

.values-section .value-card::before {
  margin-bottom: 18px;
}

.values-section .value-card h3 {
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.values-section .value-card p {
  font-size: 15px;
  line-height: 1.58;
}

.values-section .value-card:last-child h3 {
  font-size: clamp(18px, 1.2vw, 20px);
}

.product-showcase .section-heading {
  margin-bottom: 36px;
}

.product-showcase .card-grid {
  gap: 22px;
}

.product-showcase .product-card {
  border-color: rgba(122, 18, 15, .16);
  background: rgba(255, 247, 231, .9);
  box-shadow: 0 22px 58px rgba(52, 33, 23, .09);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-showcase .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 18, 15, .34);
  box-shadow: 0 28px 70px rgba(52, 33, 23, .14);
}

.product-showcase .product-media {
  aspect-ratio: 1.42 / 1;
}

.product-showcase .product-media::after {
  border-width: 8px;
}

.product-media span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--cream-soft);
  background: rgba(122, 18, 15, .92);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-showcase .product-body {
  padding: 26px;
}

.product-showcase .product-body h3 {
  min-height: 58px;
  font-size: clamp(25px, 2.15vw, 31px);
}

.product-showcase .product-body p {
  min-height: 112px;
  line-height: 1.65;
}

.product-showcase .product-body .btn {
  width: 100%;
  margin-top: 18px;
}

.contact-map-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(122, 18, 15, .16);
  background: rgba(255, 247, 231, .72);
  box-shadow: 0 22px 58px rgba(52, 33, 23, .09);
}

.contact-map-panel iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
  filter: sepia(.12) saturate(.9);
}

.map-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 24px;
  background: rgba(255, 247, 231, .94);
  border: 1px solid rgba(122, 18, 15, .16);
  box-shadow: 0 16px 44px rgba(52, 33, 23, .14);
}

.map-info .section-title {
  font-size: clamp(28px, 2.2vw, 34px);
  line-height: 1.08;
}

.map-info p:not(.section-kicker) {
  margin: 12px 0 0;
  color: rgba(52, 33, 23, .78);
  font-size: 15px;
  line-height: 1.55;
}

.contact-grid .contact-card {
  padding: 19px 24px;
}

.contact-grid .contact-card h3 {
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.15;
}

.contact-grid .contact-card p {
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.52;
}

@media (max-width: 1080px) {
  .process-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid .value-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: auto;
    padding: 22px 20px;
  }

  .process-number {
    width: 42px;
    height: 42px;
  }

  .product-showcase .product-body p,
  .product-showcase .product-body h3 {
    min-height: 0;
  }

  .contact-map-panel,
  .contact-map-panel iframe {
    min-height: 560px;
    height: 560px;
  }

  .map-info {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .map-info .section-title {
    font-size: clamp(25px, 7.4vw, 31px);
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-card p {
    font-size: 15px;
  }
}

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

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

/* PHP rebuild stability pass: clean URL layout and tighter responsive behavior. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  width: 100%;
}

.hero-content,
.page-hero .container,
.section-heading,
.product-body,
.contact-card,
.value-card,
.process-card {
  min-width: 0;
}

.hero h1,
.page-hero h1,
.section-title,
.product-body h3,
.value-card h3,
.process-card h3 {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 18px;
  }

  .brand img {
    width: 190px;
  }

  .nav-links {
    gap: 18px;
    font-size: 13.5px;
  }
}

@media (max-width: 900px) {
  .top-bar-inner {
    min-height: 64px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 7px 0;
  }

  .top-bar-contact {
    justify-content: center;
  }

  .top-bar-social {
    margin-left: 0;
  }

  .nav-shell {
    min-height: 136px;
  }

  .nav-links {
    inset: 204px 14px auto;
    max-height: calc(100svh - 222px);
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    top: 58%;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(42px, 9vw, 58px);
    line-height: 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .top-bar-social a {
    gap: 5px;
    padding-right: 10px;
    margin-right: 9px;
    font-size: 11px;
  }

  .nav-shell {
    min-height: 136px;
  }

  .brand img {
    width: 148px;
  }

  .nav-links {
    inset: 204px 14px auto;
    max-height: calc(100svh - 222px);
  }

  .hero {
    min-height: 710px;
  }

  .hero-content {
    width: min(100% - 34px, 420px);
  }

  .hero h1 {
    max-width: 11.5ch;
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.02;
  }

  .hero p {
    max-width: 29ch;
    font-size: 15.5px;
    line-height: 1.58;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

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

  .page-hero h1 {
    font-size: clamp(30px, 9.4vw, 40px);
    line-height: 1.08;
  }

  .page-hero p:not(.breadcrumb) {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .about-story-section {
    padding: 68px 0;
  }

  .about-story-copy .section-kicker {
    font-size: 11px;
  }

  .about-story-copy .section-title {
    margin-bottom: 20px;
    font-size: clamp(30px, 9.4vw, 38px);
    line-height: 1.08;
  }

  .about-story-copy .section-lead,
  .about-story-copy p:not(.section-kicker):not(.section-lead) {
    font-size: 15.5px;
    line-height: 1.66;
  }

  .section-title {
    font-size: clamp(27px, 8vw, 35px);
    line-height: 1.08;
  }

  .card-grid,
  .process-grid,
  .values-grid,
  .reason-grid,
  .timeline,
  .gallery-grid {
    gap: 16px;
  }
}
