:root {
  --bg: #d4a232;
  --mustard: #d5a436;
  --mustard-deep: #b8881e;
  --mustard-light: #e4bc52;
  --forest: #1a4d35;
  --forest-deep: #0f3324;
  --leaf: #7aad2e;
  --lime: #a8c948;
  --orange: #e0631a;
  --cream: #faf7f0;
  --ink: #1a241f;
  --muted: rgba(26, 36, 31, 0.72);
  --white: #ffffff;
  --header-h: 4.5rem;
  --menu-compact-h: 5.75rem;
  --menu-compact-threshold: 40px;
  --menu-nav-h: 3.25rem;
  --menu-logo-h: 2.35rem;
  --menu-cta-h: 2.125rem;
  --menu-cta-w: 10.5rem;
  --menu-progress-h: 1.75rem;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.64, 1);
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 4px;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

ul {
  list-style: none;
}

main {
  position: relative;
  z-index: 2;
}

.menu-cana-sentinel {
  position: absolute;
  top: var(--menu-compact-threshold, 40px);
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}

/* ——— Ambient: fundo texturizado + corredor de leitura ——— */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__bg {
  position: absolute;
  inset: 0;
  background: url("img/fundo.png") center center / cover no-repeat;
  z-index: 0;
}

.ambient__corridor {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(217, 162, 54, 0.28) 0%,
    rgba(249, 225, 168, 0.88) 22%,
    rgba(249, 225, 168, 0.96) 50%,
    rgba(249, 225, 168, 0.88) 78%,
    rgba(217, 162, 54, 0.28) 100%
  );
  opacity: 0.92;
}

/* ——— Decorações de cana (laterais) ——— */
.section-decor {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.cane-decoration--left {
  left: 2%;
  transform: translateX(-8%);
}

.cane-decoration--right {
  right: 2%;
  transform: translateX(8%);
}

.cane-decoration--hide-tablet {
  display: block;
}

.cane-decoration--hide-mobile {
  display: block;
}

.cane-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.42;
  filter: saturate(0.92) drop-shadow(0 6px 14px rgba(15, 51, 36, 0.12));
  pointer-events: none;
  user-select: none;
  will-change: transform;
  transform-origin: center center;
}

.section-content {
  position: relative;
  z-index: 2;
}

.content-panel {
  position: relative;
  z-index: 2;
  background: rgba(255, 246, 218, 0.88);
  border: 1px solid rgba(0, 93, 47, 0.12);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: 0 24px 70px rgba(72, 48, 8, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.content-panel .section__head {
  margin-bottom: 0;
}

.historia__copy {
  max-width: 42rem;
  margin-top: 1.25rem;
}

.historia__copy p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1rem;
}

.historia__copy p:last-child {
  margin-bottom: 0;
}

.historia__cta {
  font-weight: 500;
  color: var(--forest-deep);
}

.content-panel.location__copy {
  margin: 0;
}

/* ——— Transição entre seções ——— */
.cane-transition {
  position: relative;
  z-index: 1;
  height: 4.5rem;
  margin: -1.25rem 0;
  pointer-events: none;
  overflow: visible;
}

.cane-transition__img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(3.5rem, 8vw, 5.5rem);
  opacity: 0.38;
  filter: saturate(0.9) drop-shadow(0 4px 10px rgba(15, 51, 36, 0.1));
  transform: translate(-50%, -50%) rotate(-22deg);
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

.cane-transition--intro .cane-transition__img {
  width: clamp(4rem, 9vw, 6rem);
  opacity: 0.42;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.cane-transition--cardapio .cane-transition__img {
  left: 72%;
  opacity: 0.36;
  transform: translate(-50%, -50%) rotate(34deg) scaleX(-1);
}

/* ——— Section divider (reutilizável) ——— */
.section-divider {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(1100px, 88%);
  max-width: 100%;
  min-height: 52px;
  margin: 0 auto;
  padding: 22px 0;
  pointer-events: none;
  overflow: visible;
}

.divider-line {
  flex: 1 1 0;
  min-width: 0;
  height: 1px;
  opacity: 1;
  transform: scaleX(1);
}

html.has-js .section-divider:not(.is-visible) .divider-line {
  opacity: 0;
  transform: scaleX(0);
}

.divider-line-left {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(26, 77, 53, 0.06) 55%,
    rgba(26, 77, 53, 0.28) 100%
  );
  transform-origin: right center;
}

.divider-line-right {
  background: linear-gradient(
    90deg,
    rgba(26, 77, 53, 0.28) 0%,
    rgba(26, 77, 53, 0.06) 45%,
    transparent 100%
  );
  transform-origin: left center;
}

.divider-cane {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  opacity: 0.88;
  transform: translateY(0) scale(1);
}

html.has-js .section-divider:not(.is-visible) .divider-cane {
  opacity: 0;
  transform: translateY(8px) scale(0.92);
}

.divider-cane img {
  display: block;
  width: 48px;
  max-width: 100%;
  height: auto;
  transform: rotate(-12deg);
  transform-origin: 50% 85%;
  filter: drop-shadow(0 2px 4px rgba(15, 51, 36, 0.07));
  user-select: none;
}

html.has-js .section-divider:not(.is-visible) .divider-cane img {
  transform: rotate(-34deg);
}

.section-divider.is-visible .divider-cane {
  opacity: 0.88;
  transform: translateY(0) scale(1);
  transition:
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 450ms ease;
}

.section-divider.is-visible .divider-cane img {
  transform: rotate(-12deg);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  animation: divider-cane-sway 4s ease-in-out 1.6s infinite;
}

@keyframes divider-cane-sway {
  0%,
  100% {
    transform: rotate(-14deg);
  }

  50% {
    transform: rotate(-10deg);
  }
}

.section-divider.is-visible .divider-line-left {
  opacity: 1;
  transform: scaleX(1);
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1) 420ms,
    opacity 500ms ease 420ms;
}

.section-divider.is-visible .divider-line-right {
  opacity: 1;
  transform: scaleX(1);
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1) 420ms,
    opacity 500ms ease 420ms;
}

@media (max-width: 768px) {
  .section-divider {
    width: 84%;
    gap: 10px;
    padding: 18px 0;
  }

  .divider-cane {
    width: 48px;
  }

  .divider-cane img {
    width: 36px;
  }
}

/* ——— Logo ——— */
.logo {
  height: auto;
  width: auto;
  object-fit: contain;
}

.logo--nav {
  height: 2.75rem;
}

.logo--contact {
  width: 88px;
  margin-bottom: 1rem;
}

.logo--footer {
  width: 96px;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

/* ——— Menu Cana ——— */
.menu-cana {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 1rem 0;
  pointer-events: none;
}

.menu-cana__shell {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  pointer-events: auto;
  transition:
    padding 0.45s var(--ease),
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease),
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

html.has-js .menu-cana:not(.is-revealed) .menu-cana__shell {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.menu-cana.is-revealed .menu-cana__shell {
  opacity: 1;
  transform: translateY(0);
}

.menu-cana__nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  height: var(--menu-nav-h);
  min-height: var(--menu-nav-h);
}

.menu-cana__brand {
  justify-self: start;
  display: flex;
  align-items: center;
  height: var(--menu-nav-h);
  flex-shrink: 0;
}

.menu-cana__logo {
  height: var(--menu-logo-h);
  width: auto;
  flex-shrink: 0;
  transition: filter 0.4s var(--ease);
  filter: drop-shadow(0 2px 6px rgba(15, 51, 36, 0.12));
}

.menu-cana__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  list-style: none;
}

.menu-cana__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--forest);
  opacity: 0.72;
  transition: color 0.25s, opacity 0.25s;
  position: relative;
}

.menu-cana__links a:hover {
  opacity: 1;
}

.menu-cana__links a.is-active {
  color: var(--orange);
  opacity: 1;
  font-weight: 600;
}

.menu-cana__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.menu-cana__section {
  display: none;
  margin: 0;
  height: var(--menu-nav-h);
  line-height: var(--menu-nav-h);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forest-deep);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-cana__cta {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--menu-cta-w);
  height: var(--menu-cta-h);
  padding: 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--forest-deep);
  border: 1.5px solid rgba(26, 77, 53, 0.35);
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.35);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  overflow: hidden;
}

.menu-cana__cta:hover {
  background: rgba(250, 247, 240, 0.65);
  border-color: var(--forest);
}

.menu-cana__cta-label--map {
  opacity: 1;
  transform: none;
}

.menu-cana__cta-label--try {
  opacity: 0;
  transform: translateY(4px);
}

.menu-cana__cta-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.45rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.menu-cana.is-end .menu-cana__cta-label--map {
  opacity: 0;
  transform: translateY(-4px);
}

.menu-cana.is-end .menu-cana__cta-label--try {
  opacity: 1;
  transform: translateY(0);
}

.menu-cana.is-end .menu-cana__cta {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.menu-cana.is-end .menu-cana__cta:hover {
  background: #c85616;
}

.menu-cana__fab {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.35rem;
  border: 2px solid rgba(26, 77, 53, 0.35);
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.55);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.menu-cana__fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-18deg);
}

.menu-cana__fab:hover {
  background: var(--cream);
  border-color: var(--forest);
}

/* Barra compacta — etiqueta artesanal com vidro suave */
.menu-cana.is-compact .menu-cana__shell {
  padding: 0.55rem 1.15rem 0.65rem;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
    linear-gradient(
      135deg,
      rgba(250, 247, 240, 0.82) 0%,
      rgba(255, 255, 255, 0.52) 50%,
      rgba(250, 247, 240, 0.72) 100%
    );
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px 18px 24px 16px / 18px 24px 16px 22px;
  box-shadow:
    0 8px 28px rgba(15, 51, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  overflow: visible;
}

.menu-cana.is-compact .menu-cana__links a {
  opacity: 0.85;
}

.menu-cana.is-compact .menu-cana__cta {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--cream);
}

.menu-cana.is-compact .menu-cana__cta:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* Progresso com toquinho — Menu Cana */
.menu-cana__progress {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.4s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
  margin-top: 0;
}

.menu-cana.is-compact .menu-cana__progress {
  height: var(--menu-progress-h);
  opacity: 1;
  margin-top: 0.35rem;
  overflow: visible;
}

.menu-cana__progress-track {
  position: relative;
  height: 4px;
  margin: 0.85rem 0.35rem 0;
  background: rgba(26, 77, 53, 0.14);
  border-radius: 999px;
  overflow: visible;
}

.menu-cana__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--leaf), var(--forest));
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(122, 173, 46, 0.35);
  transition: none;
}

.menu-cana.is-compact .menu-cana__progress-fill {
  transition: width 0.15s linear;
}

.menu-cana__indicator {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 2rem;
  height: 2rem;
  transform: translate(-50%, -62%);
  z-index: 3;
  pointer-events: none;
}

.menu-cana.is-compact .menu-cana__indicator {
  transition: left 0.15s linear;
}

.menu-cana__indicator-toco {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  filter: drop-shadow(0 2px 5px rgba(15, 51, 36, 0.28));
}

/* Sacola mobile */
.menu-cana__bag {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.menu-cana__bag.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.menu-cana__bag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 51, 36, 0.35);
}

.menu-cana__bag-panel {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  padding: 1.35rem 1.25rem 1.5rem;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    var(--cream);
  border: 2px solid var(--forest);
  border-radius: 28px 28px 18px 18px / 22px 22px 28px 28px;
  box-shadow: 0 16px 40px rgba(212, 162, 50, 0.35);
  transform: translateY(-110%);
  transition: transform 0.45s var(--ease-bounce);
}

.menu-cana__bag.is-open .menu-cana__bag-panel {
  transform: translateY(0);
}

.menu-cana__bag-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  text-align: center;
}

.menu-cana__bag-links {
  display: grid;
  gap: 0;
}

.menu-cana__bag-links a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid rgba(26, 77, 53, 0.1);
  transition: color 0.2s, padding-left 0.2s;
}

.menu-cana__bag-links a.is-active {
  color: var(--orange);
  font-weight: 600;
  padding-left: 0.35rem;
}

.menu-cana__bag-foot {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px dashed rgba(26, 77, 53, 0.18);
  text-align: center;
}

.menu-cana__bag-foot p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.menu-cana__bag-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.menu-cana__bag-cta:hover {
  background: var(--orange);
}

.menu-cana__bag-cta.is-active {
  box-shadow: inset 0 0 0 2px var(--orange);
}

body.is-menu-open {
  overflow: hidden;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(224, 99, 26, 0.35);
}

.btn--primary:hover {
  background: #c85616;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--forest-deep);
  border: 1.5px solid rgba(26, 77, 53, 0.45);
}

.btn--outline:hover {
  background: rgba(26, 77, 53, 0.08);
  border-color: var(--forest-deep);
}

/* ——— Intro / Hero — revelação editorial ——— */
.intro {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  text-align: center;
  overflow-x: clip;
}

.intro .section-content.intro__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  width: 100%;
}

.intro__logo-wrap {
  width: min(320px, 72vw);
  margin-bottom: 1.5rem;
}

.hero-logo-wrapper {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  filter: blur(8px);
  clip-path: inset(100% 0 0 0);
  will-change: transform, opacity, filter, clip-path;
}

.hero-logo.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  transition:
    clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease,
    opacity 0.6s ease;
}

.hero-entrance--done .hero-logo {
  will-change: auto;
  filter: none;
}

.hero-logo-wrapper::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    110deg,
    transparent 42%,
    rgba(255, 225, 145, 0.22) 50%,
    transparent 58%
  );
  transform: translateX(-130%);
  opacity: 0;
}

.hero-logo-wrapper.is-visible::after {
  animation: logo-shine 850ms ease-out 750ms forwards;
}

@keyframes logo-shine {
  0% {
    transform: translateX(-130%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

.hero-content-item {
  opacity: 0;
  transform: translateY(12px);
}

.hero-content-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro__tag.hero-content-item.is-visible {
  opacity: 0.85;
  transition-delay: 0ms;
}

.intro__title.hero-content-item.is-visible {
  transition-delay: 100ms;
}

.intro__actions.hero-content-item.is-visible {
  transition-delay: 200ms;
}

.intro__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
}

.intro__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  max-width: 24ch;
  margin: 0.75rem 0 2rem;
}

.intro__title strong {
  font-weight: 700;
  color: var(--forest);
}

.intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-logo {
    transform: translateY(14px) scale(0.96);
    filter: blur(5px);
  }

  .hero-logo-wrapper::after {
    background: linear-gradient(
      110deg,
      transparent 44%,
      rgba(255, 225, 145, 0.14) 50%,
      transparent 56%
    );
  }
}

/* ——— Sections ——— */
.section,
.intro {
  scroll-margin-top: 7rem;
}

.section--anchor {
  scroll-margin-top: 7.5rem;
}

.section {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  overflow: visible;
}

.section__head {
  max-width: 34rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.45rem;
}

.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.section__sub {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.products__grid .product:nth-child(1) .product__body.reveal { transition-delay: 0s; }
.products__grid .product:nth-child(2) .product__body.reveal { transition-delay: 0.08s; }
.products__grid .product:nth-child(3) .product__body.reveal { transition-delay: 0.16s; }
.products__grid .product:nth-child(4) .product__body.reveal { transition-delay: 0.24s; }
.products__grid .product:nth-child(5) .product__body.reveal { transition-delay: 0.32s; }

.gallery__mosaic .gallery__item.reveal:nth-child(1) { transition-delay: 0s; }
.gallery__mosaic .gallery__item.reveal:nth-child(2) { transition-delay: 0.06s; }
.gallery__mosaic .gallery__item.reveal:nth-child(3) { transition-delay: 0.12s; }
.gallery__mosaic .gallery__item.reveal:nth-child(4) { transition-delay: 0.18s; }
.gallery__mosaic .gallery__item.reveal:nth-child(5) { transition-delay: 0.24s; }
.gallery__mosaic .gallery__item.reveal:nth-child(6) { transition-delay: 0.3s; }

/* ——— Video ——— */
.video__frame {
  margin-top: 2rem;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(26, 77, 53, 0.2);
  box-shadow: 0 20px 48px rgba(15, 51, 36, 0.18);
}

.video__placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--forest-deep);
}

.video__placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.video__placeholder.has-video video {
  display: block;
}

.video__placeholder.has-video .video__empty {
  display: none;
}

.video__empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.5rem;
  color: var(--cream);
  text-align: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(26, 77, 53, 0.94), rgba(15, 51, 36, 0.9)),
    url("img/Hero.png") center / cover;
}

.video__play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  margin-bottom: 0.25rem;
}

.video__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border: 8px solid transparent;
  border-left: 14px solid var(--white);
}

.video__empty p {
  font-weight: 600;
  font-size: 1rem;
}

.video__hint {
  font-weight: 400 !important;
  font-size: 0.8125rem !important;
  opacity: 0.6;
}

/* ——— Products ——— */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  width: 100%;
  margin-top: 1.5rem;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: auto;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(26, 77, 53, 0.1);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.product:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 77, 53, 0.28);
}

.product--featured {
  grid-column: 1 / -1;
  grid-template-columns: 0.88fr 1.35fr;
  border-color: rgba(224, 99, 26, 0.2);
}

.product__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  padding: 0.65rem 0.75rem;
  overflow: hidden;
  background: rgba(26, 77, 53, 0.06);
}

.product--featured .product__visual {
  min-height: 12rem;
}

.product__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 10.5rem;
  object-fit: contain;
  object-position: center center;
}

.product--featured .product__visual img {
  max-height: 13rem;
}

.product:hover .product__visual img {
  transform: scale(1.03);
  transition: transform 0.55s var(--ease);
}

.product__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(224, 99, 26, 0.3);
}

.product__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 51, 36, 0.18));
}

.product__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 0.9rem;
}

.product--featured .product__body {
  padding: 1.1rem 1.35rem 1.1rem 0.85rem;
}

.product h3 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin-bottom: 0.2rem;
}

.product--featured h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.product p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.product--featured p {
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 36ch;
}

/* ——— Gallery ——— */
.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.65rem;
}

.gallery__item {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  border: 1.5px solid rgba(26, 77, 53, 0.15);
  background: rgba(15, 51, 36, 0.12);
}

.gallery__item--wide {
  grid-column: span 8;
  aspect-ratio: 16 / 10;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery__zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__item--zoom:hover .gallery__zoom img {
  transform: scale(1.04);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--slot {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.2rem;
  text-align: center;
  border-style: dashed;
  color: var(--forest);
  background: rgba(15, 51, 36, 0.06);
}

.gallery__item--slot span {
  font-weight: 600;
  font-size: 0.875rem;
}

.gallery__item--slot small {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ——— Partners ——— */
.partners {
  max-width: none;
  padding-top: 0;
  padding-bottom: 5rem;
}

.partners__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
    rgba(15, 51, 36, 0.9);
  border: 2px solid var(--forest);
  border-radius: 20px 16px 22px 14px / 16px 22px 14px 20px;
  box-shadow: 0 12px 36px rgba(15, 51, 36, 0.18);
  color: var(--cream);
}

.partners h2,
.partners .section__sub {
  color: var(--cream);
}

.partners .section__sub {
  opacity: 0.65;
}

.partners .eyebrow {
  color: var(--lime);
}

.partners__row {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
}

.partner-slot {
  flex: 0 0 auto;
  min-width: 140px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(250, 247, 240, 0.12);
  border-radius: 4px;
  color: rgba(250, 247, 240, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}

.partner-slot:hover {
  border-color: var(--lime);
  color: var(--cream);
}

/* ——— Location ——— */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.location__details {
  margin: 1.5rem 0 1.75rem;
  display: grid;
  gap: 0.85rem;
}

.location__details li {
  display: grid;
  gap: 0.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 77, 53, 0.15);
}

.location__details strong {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}

.location__details span {
  font-size: 0.9375rem;
  color: var(--muted);
  white-space: pre-line;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.location__map {
  min-height: 340px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(26, 77, 53, 0.2);
  box-shadow: 0 16px 40px rgba(15, 51, 36, 0.15);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ——— Contact ——— */
.contact {
  padding-bottom: 5rem;
}

.contact__panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: 4px;
  background: rgba(15, 51, 36, 0.94);
  color: var(--cream);
  border: 1.5px solid rgba(250, 247, 240, 0.1);
}

.contact .eyebrow {
  color: var(--mustard-light);
}

.contact h2 {
  color: var(--cream);
}

.contact .section__sub {
  color: rgba(250, 247, 240, 0.88);
}

.contact__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
}

.contact__channels a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}

.contact__channels a:hover {
  color: var(--mustard-light);
  border-color: var(--mustard-light);
}

.contact__form {
  display: grid;
  gap: 0.75rem;
}

.contact__form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.92);
  opacity: 1;
}

.contact__form input,
.contact__form textarea {
  font-family: var(--font);
  font-size: 0.9375rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(250, 247, 240, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(250, 247, 240, 0.45);
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: rgba(228, 188, 82, 0.65);
}

.contact__form .btn {
  margin-top: 0.25rem;
  justify-self: start;
}

/* ——— Footer ——— */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}

.footer__label {
  display: inline-grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 1.5rem 2rem;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    var(--cream);
  border: 2px solid var(--forest);
  border-radius: 18px 22px 16px 20px / 20px 16px 22px 18px;
  box-shadow: 0 8px 28px rgba(212, 162, 50, 0.28);
}

.footer__label p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin: 0;
}

.footer__label span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer__copy {
  margin-top: 1.25rem !important;
  font-size: 0.6875rem !important;
  color: var(--muted);
  opacity: 0.7;
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(15, 51, 36, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: min(92vw, 960px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.15);
  color: var(--cream);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgba(250, 247, 240, 0.28);
}

/* ——— Video embed ——— */
.video__placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}

.video__placeholder.has-embed iframe {
  display: block;
}

.video__placeholder.has-embed .video__empty {
  display: none;
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .cane-decoration {
    filter: saturate(0.9) drop-shadow(0 4px 10px rgba(15, 51, 36, 0.1));
  }

  .cane-decoration--hide-tablet {
    display: none;
  }

  .content-panel {
    padding: clamp(1.25rem, 3.5vw, 2rem);
  }
}

@media (max-width: 900px) {
  :root {
    --menu-nav-h: 2.5rem;
    --menu-logo-h: 1.85rem;
    --menu-cta-h: 1.875rem;
    --menu-cta-w: 8.15rem;
    --menu-progress-h: 1.1rem;
  }

  .menu-cana {
    padding: 0.45rem 0.65rem 0;
  }

  .menu-cana__nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.45rem;
  }

  .menu-cana__links {
    display: none;
  }

  .menu-cana__section {
    display: block;
    justify-self: center;
    max-width: 100%;
    padding: 0 0.15rem;
    font-size: 0.6875rem;
  }

  .menu-cana__fab {
    display: none !important;
  }

  .menu-cana__bag {
    display: none;
  }

  .menu-cana__cta {
    display: inline-flex;
    font-size: 0.5625rem;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .menu-cana__cta-label {
    padding: 0 0.35rem;
  }

  .menu-cana.is-compact .menu-cana__shell {
    padding: 0.4rem 0.65rem 0.45rem;
    border-radius: 16px 14px 18px 12px / 14px 18px 12px 16px;
  }

  .menu-cana.is-compact .menu-cana__section {
    color: var(--orange);
  }

  .menu-cana__progress-track {
    margin: 0.55rem 0.2rem 0;
  }

  .menu-cana__indicator {
    width: 1.45rem;
    height: 1.45rem;
  }

  .product,
  .product--featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product__visual,
  .product--featured .product__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 15rem;
    min-height: 15rem;
    padding: 0.85rem 1rem;
    flex: none;
  }

  .product--featured .product__visual {
    height: 18.5rem;
    min-height: 18.5rem;
  }

  .product__visual img,
  .product--featured .product__visual img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .product--featured .product__body {
    padding: 1.1rem 1.15rem 1.25rem;
  }

  .product__body {
    padding: 0.9rem 1rem 1.05rem;
  }

  .gallery__item,
  .gallery__item--wide {
    grid-column: span 12;
    aspect-ratio: 16 / 11;
  }

  .location__grid,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .contact__panel {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .cane-decoration {
    opacity: 0.3;
    filter: saturate(0.88) drop-shadow(0 3px 8px rgba(15, 51, 36, 0.08));
  }

  .cane-decoration--left {
    left: 0;
    transform: translateX(-6%) scale(0.82);
  }

  .cane-decoration--right {
    right: 0;
    transform: translateX(6%) scale(0.82);
  }

  .cane-decoration--hide-mobile {
    display: none;
  }

  .cane-transition {
    height: 3rem;
    margin: -0.75rem 0;
  }

  .cane-transition__img {
    opacity: 0.3;
  }

  .ambient__corridor {
    background: linear-gradient(
      90deg,
      rgba(217, 162, 54, 0.35) 0%,
      rgba(249, 225, 168, 0.94) 12%,
      rgba(249, 225, 168, 0.98) 50%,
      rgba(249, 225, 168, 0.94) 88%,
      rgba(217, 162, 54, 0.35) 100%
    );
  }
}

@media (max-width: 560px) {
  .intro__actions {
    width: 100%;
  }

  .intro__actions .btn {
    flex: 1 1 100%;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-logo,
  .hero-content-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto;
  }

  .intro__tag.hero-content-item {
    opacity: 0.85 !important;
  }

  .hero-logo-wrapper::after {
    display: none !important;
  }

  .intro__logo-wrap {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .intro__tag,
  .intro__title,
  .intro__actions {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-divider .divider-line,
  .section-divider .divider-cane {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-divider .divider-cane img {
    transform: rotate(-12deg);
    transition: none;
    animation: none;
  }

  .menu-cana.is-compact .menu-cana__shell {
    background: var(--cream);
    border: 2px solid var(--forest);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  html.has-js .menu-cana:not(.is-revealed) .menu-cana__shell,
  .menu-cana.is-revealed .menu-cana__shell {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .cane-decoration,
  .cane-transition__img {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .cane-decoration--left {
    transform: translateX(-8%) !important;
  }

  .cane-decoration--right {
    transform: translateX(8%) !important;
  }

  @media (max-width: 768px) {
    .cane-decoration--left {
      transform: translateX(-6%) scale(0.82) !important;
    }

    .cane-decoration--right {
      transform: translateX(6%) scale(0.82) !important;
    }
  }
}
