:root {
  --ink: #18120d;
  --ink-soft: #2a2017;
  --brown: #74481f;
  --brown-deep: #422817;
  --gold: #c9944c;
  --gold-light: #e7c48c;
  --cream: #f1eadf;
  --paper: #f8f4ed;
  --white: #fffdf9;
  --muted: #756c62;
  --line: rgba(44, 31, 21, 0.15);
  --line-light: rgba(255, 253, 249, 0.17);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
  --header-height: 96px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 80px rgba(35, 22, 12, 0.18);
}

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

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

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

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

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

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

button,
summary {
  cursor: pointer;
}

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

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

::selection {
  color: var(--white);
  background: var(--brown);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell--narrow {
  max-width: 900px;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 99999;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--brown);
  border-radius: 999px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.button span {
  font-size: 1.05rem;
  transition: transform 0.4s var(--ease);
}

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

.button:hover span {
  transform: translate(3px, 3px);
}

.button--small {
  min-height: 44px;
  padding: 12px 19px;
  font-size: 0.68rem;
}

.button--gold {
  color: var(--ink);
  background: var(--gold-light);
}

.button--gold:hover {
  background: var(--white);
}

.button--outline {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.35);
}

.button--outline:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.text-link span,
.card-link span {
  transition: transform 0.35s var(--ease);
}

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

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

.section {
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.cigars h2,
.parcels h2,
.lifestyle h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--cream);
  background: transparent;
  transition: height 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease), color 0.45s var(--ease);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  height: 74px;
  color: var(--ink);
  background: rgba(248, 244, 237, 0.9);
  box-shadow: 0 1px 0 rgba(42, 32, 23, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
}

.site-brand__logo {
  width: 54px;
  height: 60px;
  object-fit: contain;
  filter: brightness(1.6) saturate(0.85);
  transition: width 0.45s var(--ease), height 0.45s var(--ease), filter 0.45s var(--ease);
}

.site-header.is-scrolled .site-brand__logo,
body:not(.home) .site-brand__logo {
  width: 43px;
  height: 48px;
  filter: none;
}

.site-brand__copy {
  display: grid;
  line-height: 1.15;
}

.site-brand__copy strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.site-brand__copy small {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav__intro,
.site-nav__meta {
  display: none;
}

.site-nav__list,
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 29px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  position: relative;
}

.site-nav li a {
  display: inline-block;
  padding: 12px 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity 0.3s ease;
}

.site-nav li a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav li a:hover {
  opacity: 1;
}

.site-nav li a:hover::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  display: grid;
  min-width: 190px;
  gap: 0;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-header:not(.is-scrolled) .site-nav__cta {
  color: var(--ink);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-toggle::before {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid var(--gold);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.75) rotate(-35deg);
  transition: opacity 0.4s ease, transform 0.55s var(--ease);
}

.menu-open .menu-toggle::before {
  opacity: 0.62;
  transform: scale(1) rotate(0);
}

.menu-toggle > span:not(.screen-reader-text) {
  position: absolute;
  top: 20px;
  left: 13px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.menu-toggle > span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  top: 23px;
  transform: rotate(45deg);
}

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

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
}

/* Page transition */
.page-transition {
  --transition-x: 50vw;
  --transition-y: 50vh;
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: var(--ink);
  pointer-events: none;
  transform: translateY(-102%);
  transition: transform 0.78s var(--ease);
}

.page-transition::before {
  position: absolute;
  inset: -35%;
  content: "";
  background:
    linear-gradient(108deg, transparent 42%, rgba(231, 196, 140, 0.08) 49%, transparent 56%),
    radial-gradient(circle at 50% 50%, rgba(201, 148, 76, 0.12), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transform: rotate(-8deg) translateX(-22%);
}

.js .page-transition.is-entering::before,
.page-transition.is-leaving::before {
  animation: transition-beam 1.1s 0.08s var(--ease) both;
}

.js .page-transition.is-entering,
.page-transition.is-leaving {
  pointer-events: auto;
  transform: translateY(0);
}

.page-transition__brand {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(300px, calc(100vw - 48px));
  place-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition: opacity 0.35s 0.16s ease, transform 0.65s 0.1s var(--ease);
}

.js .page-transition.is-entering .page-transition__brand,
.page-transition.is-leaving .page-transition__brand {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.page-transition__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(231, 196, 140, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(201, 148, 76, 0.12);
  transform: translate(-50%, -58%);
}

.page-transition__halo::before,
.page-transition__halo::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.page-transition__halo::before {
  inset: 12px;
  border: 1px solid rgba(231, 196, 140, 0.12);
}

.page-transition__halo::after {
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(231, 196, 140, 0.8);
  animation: transition-orbit 2.2s linear infinite;
  animation-play-state: paused;
  transform-origin: 0 114px;
}

.js .page-transition.is-entering .page-transition__halo::after,
.page-transition.is-leaving .page-transition__halo::after {
  animation-play-state: running;
}

@supports (clip-path: circle(100% at 50% 50%)) {
  .page-transition {
    clip-path: circle(0 at var(--transition-x) var(--transition-y));
    transform: none;
    transition: clip-path 0.62s var(--ease);
  }

  .js .page-transition.is-entering,
  .page-transition.is-leaving {
    clip-path: circle(150vmax at var(--transition-x) var(--transition-y));
    transform: none;
  }
}

.page-transition__brand img {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 124px;
  object-fit: contain;
  filter: brightness(1.65) saturate(0.86);
}

.page-transition__brand strong {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.page-transition__brand small {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  color: rgba(231, 196, 140, 0.68);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.83fr);
  gap: 90px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 85px;
}

.hero__grain {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(31deg, transparent 0 3px, rgba(255, 255, 255, 0.05) 3px 4px),
    repeating-linear-gradient(117deg, transparent 0 5px, rgba(201, 148, 76, 0.035) 5px 6px);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.45;
}

.hero__orb--one {
  top: -280px;
  right: -180px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(165, 104, 49, 0.5), rgba(55, 34, 19, 0) 68%);
}

.hero__orb--two {
  bottom: -340px;
  left: 15%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(113, 63, 29, 0.32), rgba(24, 18, 13, 0) 68%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

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

.hero h1 {
  margin-bottom: 32px;
  font-size: clamp(4.3rem, 7.4vw, 7.4rem);
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(241, 234, 223, 0.73);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero__trust {
  display: flex;
  max-width: 490px;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  color: rgba(241, 234, 223, 0.58);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero__trust-year {
  padding-right: 18px;
  color: var(--cream);
  border-right: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.hero__visual {
  position: relative;
  height: 640px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.is-parallax-active .hero-card {
  will-change: transform;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  top: 6px;
  right: 0;
  width: min(88%, 500px);
  height: 600px;
  border-radius: 240px 240px 18px 18px;
}

.hero-card--main::before,
.hero-card--main::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-card--main::before {
  inset: 10px;
  border: 1px solid rgba(241, 234, 223, 0.2);
  border-radius: inherit;
  box-shadow: inset 0 0 45px rgba(231, 196, 140, 0.08);
}

.hero-card--main::after {
  top: -35%;
  left: -70%;
  width: 42%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 226, 0.2), transparent);
  filter: blur(2px);
  opacity: 0;
  transform: rotate(13deg);
  animation: hero-sheen 6.8s 1.2s var(--ease) infinite;
  animation-play-state: paused;
}

.hero.is-motion-active .hero-card--main::after {
  animation-play-state: running;
}

.hero-card--main img {
  object-position: 50% 47%;
}

.hero-card__caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 46px 26px 24px;
  background: linear-gradient(transparent, rgba(20, 14, 9, 0.88));
}

.hero-card__caption span,
.hero-card--floating span {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card__caption strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-card--floating {
  z-index: 2;
  bottom: 16px;
  left: -36px;
  width: 220px;
  height: 220px;
  border: 7px solid var(--ink-soft);
  border-radius: 50%;
}

.hero-card--floating img {
  transform: scale(1.15);
}

.hero-card--floating span {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.8);
}

.hero__stamp {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: -18px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

.hero__stamp::after {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(24, 18, 13, 0.35);
  border-radius: inherit;
}

.hero__stamp span {
  position: absolute;
  top: 23px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__stamp strong {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(241, 234, 223, 0.57);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-cue i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 18px;
  content: "";
  background: var(--gold-light);
  animation: scroll-down 2s infinite var(--ease);
}

/* Ticker */
.service-ticker {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  color: var(--cream);
  background: var(--brown);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  contain: inline-size paint;
}

.service-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
  animation: ticker 28s linear infinite;
}

.service-ticker__track span {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.service-ticker__track i {
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
}

/* Services */
.services {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: space-between;
  overflow: hidden;
  padding: 32px;
  background: #e8dfd2;
  border: 1px solid rgba(42, 32, 23, 0.08);
  border-radius: 5px;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.service-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(24, 18, 13, 0.4);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.service-card__content {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.service-card__kicker {
  margin-bottom: 10px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.57;
}

.service-card h3 {
  max-width: 490px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 3.3vw, 3.5rem);
}

.service-card p:last-child {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(24, 18, 13, 0.67);
}

.service-card--dark {
  color: var(--cream);
  background: var(--brown-deep);
}

.service-card--dark .service-card__number,
.service-card--dark p:last-child {
  color: rgba(241, 234, 223, 0.65);
}

.service-card--accent {
  background: var(--gold-light);
}

.service-card__media {
  position: relative;
  z-index: 2;
  width: min(100%, 330px);
  height: 156px;
  margin: 12px 0 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(24, 18, 13, 0.16);
  transform: rotate(-1.8deg);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.service-card:nth-child(even) .service-card__media {
  transform: rotate(1.8deg);
}

.service-card:hover .service-card__media {
  box-shadow: 0 26px 54px rgba(24, 18, 13, 0.24);
  transform: rotate(0) translateY(-7px) scale(1.015);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.065);
}

.service-card__media--logo {
  display: grid;
  padding: 22px 28px;
  place-items: center;
  background: #fff;
}

.service-card__media--logo img {
  object-fit: contain;
}

.service-card--image {
  color: var(--cream);
  background: #51331c;
}

.service-card--image .service-card__number,
.service-card--image p:last-of-type {
  color: rgba(241, 234, 223, 0.68);
}

.service-card__image-wash {
  position: absolute;
  top: -100px;
  right: -110px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 148, 76, 0.42), rgba(81, 51, 28, 0) 68%);
}

.card-link {
  margin-top: 22px;
}

/* Cigars */
.cigars {
  color: var(--cream);
  background: var(--ink);
}

.cigars__layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  gap: 100px;
  align-items: center;
}

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

.cigars__copy > p:not(.eyebrow):not(.legal-note) {
  max-width: 540px;
  margin: 28px 0;
  color: rgba(241, 234, 223, 0.67);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 40px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.check-list li {
  position: relative;
  padding: 17px 28px 17px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.check-list li::after {
  position: absolute;
  top: 18px;
  right: 2px;
  color: var(--gold-light);
  content: "↗";
  font-family: var(--sans);
  font-size: 0.8rem;
}

.legal-note {
  max-width: 500px;
  color: rgba(241, 234, 223, 0.4);
  font-size: 0.72rem;
  line-height: 1.6;
}

.cigars__gallery {
  position: relative;
  min-height: 730px;
}

.cigar-shot {
  position: absolute;
  margin: 0;
}

.cigar-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cigar-shot figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: rgba(241, 234, 223, 0.58);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cigar-shot figcaption span {
  color: var(--gold-light);
}

.cigar-shot--national figcaption {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 20px;
  margin: 0;
  padding: 9px 12px;
  color: var(--cream);
  background: rgba(24, 18, 13, 0.82);
  border: 1px solid rgba(231, 196, 140, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cigar-shot--national {
  top: 0;
  right: 0;
  width: 62%;
}

.cigar-shot--national img {
  height: 610px;
  border-radius: 180px 180px 3px 3px;
}

.cigar-shot--dominican {
  z-index: 2;
  bottom: 18px;
  left: 0;
  width: 43%;
}

.cigar-shot--dominican img {
  height: 360px;
  border: 8px solid var(--ink);
  object-position: center 16%;
}

/* Parcels */
.parcels {
  padding-bottom: 70px;
  background: var(--paper);
}

.parcels__panel {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  color: var(--cream);
  background: var(--brown-deep);
  border-radius: 5px;
}

.parcels__panel::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 500px;
  height: 500px;
  content: "";
  background: radial-gradient(circle, rgba(201, 148, 76, 0.24), transparent 67%);
}

.parcels__visual {
  position: relative;
  min-height: 620px;
  background: #b78245;
}

.parcels__visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image: repeating-linear-gradient(135deg, transparent 0 16px, rgba(50, 29, 14, 0.35) 16px 17px);
}

.parcel-box {
  position: absolute;
  display: grid;
  color: var(--brown-deep);
  background: #e3c08c;
  border: 1px solid rgba(58, 34, 17, 0.32);
  box-shadow: 20px 30px 45px rgba(57, 32, 12, 0.24);
}

.parcel-box--back {
  top: 92px;
  left: 18%;
  width: 270px;
  height: 270px;
  place-items: center;
  transform: rotate(8deg);
}

.parcel-box--back span {
  font-family: var(--serif);
  font-size: 5.5rem;
  font-style: italic;
  opacity: 0.25;
}

.parcel-box--front {
  right: 8%;
  bottom: 84px;
  width: 310px;
  height: 230px;
  align-content: end;
  padding: 28px;
  transform: rotate(-8deg);
}

.parcel-box--front::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 24px);
  width: 48px;
  content: "";
  background: rgba(114, 72, 31, 0.16);
}

.parcel-box--front i {
  position: absolute;
  top: 28px;
  right: 29px;
  width: 58px;
  height: 33px;
  background: repeating-linear-gradient(90deg, var(--brown-deep) 0 2px, transparent 2px 5px);
}

.parcel-box--front strong {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.parcel-box--front small {
  margin-top: 7px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.parcels__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 76px clamp(42px, 7vw, 100px);
}

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

.parcels__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 27px 0;
  color: rgba(241, 234, 223, 0.67);
}

.carrier-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 38px;
}

.carrier-list span {
  padding: 10px 15px;
  border: 1px solid rgba(231, 196, 140, 0.26);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Lifestyle */
.lifestyle {
  padding-top: 80px;
}

.lifestyle__layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 110px;
  align-items: center;
}

.lifestyle__image {
  position: relative;
}

.lifestyle__image::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 42%;
  height: 60%;
  content: "";
  border: 1px solid rgba(116, 72, 31, 0.3);
}

.lifestyle__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.lifestyle__seal {
  position: absolute;
  right: -45px;
  bottom: 54px;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  padding: 23px;
  color: var(--cream);
  background: var(--brown);
  border: 8px solid var(--paper);
  border-radius: 50%;
  text-align: center;
}

.lifestyle__seal strong {
  margin-bottom: -21px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.lifestyle__seal span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lifestyle__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 35px;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-row {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-row span {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.feature-row i {
  color: var(--brown);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 800;
}

/* Manifesto */
.manifesto {
  padding: 130px 0 140px;
  text-align: center;
}

.manifesto__quote {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5.2vw, 5.7rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.manifesto__quote em {
  color: var(--brown);
  font-weight: 400;
}

.manifesto__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 50px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto__signature span {
  width: 37px;
  height: 1px;
  background: var(--brown);
}

.manifesto__signature small {
  color: var(--muted);
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.73fr 1.27fr;
  gap: 110px;
}

.faq header > p:last-child {
  max-width: 440px;
  margin-top: 28px;
  color: var(--muted);
}

.faq__items {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 27px 2px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
  list-style: none;
}

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

.faq summary span {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--brown);
  transition: transform 0.35s var(--ease);
}

.faq summary span::after {
  transform: rotate(90deg);
}

.faq details[open] summary span::after {
  transform: rotate(0deg);
}

.faq details p {
  max-width: 660px;
  margin: -3px 55px 26px 2px;
  color: var(--muted);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

.contact__glow {
  position: absolute;
  top: -300px;
  left: -240px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(126, 77, 37, 0.42), transparent 68%);
}

.contact__inner {
  position: relative;
  display: grid;
  min-height: 700px;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
}

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

.contact__intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 34px;
  color: rgba(241, 234, 223, 0.63);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.contact-card {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 27px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-light);
  border-radius: 4px;
}

.contact-card > span {
  position: absolute;
  top: 23px;
  right: 24px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.footer-label {
  margin-bottom: 12px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
}

.contact-card strong {
  max-width: 250px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}

.contact-card a {
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card__numbers {
  display: grid;
  width: 100%;
  gap: 16px;
}

.contact-card__numbers a {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--cream);
  letter-spacing: 0;
  text-transform: none;
}

.contact-card__numbers small {
  color: var(--gold-light);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.contact-card__numbers strong {
  max-width: none;
  font-size: 1.45rem;
  transition: color 0.25s ease;
}

.contact-card__numbers a:hover strong,
.contact-card__numbers a:focus-visible strong {
  color: var(--gold-light);
}

.contact-card--mark {
  min-height: 190px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
}

.contact-card--mark img {
  width: 118px;
  height: 130px;
  object-fit: contain;
}

/* Footer */
.site-footer {
  color: var(--ink);
  background: var(--gold-light);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr;
  gap: 70px;
  padding-top: 65px;
  padding-bottom: 60px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer__brand img {
  width: 82px;
  height: 90px;
  object-fit: contain;
}

.site-footer__brand strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.site-footer__brand p {
  max-width: 280px;
  margin: 7px 0 0;
  font-size: 0.8rem;
  opacity: 0.65;
}

.footer-menu,
.site-footer__links > ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu ul,
.site-footer__links .sub-menu {
  display: none;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__contact > p:not(.footer-label) {
  display: block;
  margin: 0 0 4px;
  font-size: 0.82rem;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 19px;
  padding-bottom: 19px;
  border-top: 1px solid rgba(24, 18, 13, 0.19);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.63;
}

/* Age gate */
.age-gate[hidden] {
  display: none;
}

.age-gate {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 12, 8, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.age-gate__dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 45px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  text-align: center;
  animation: dialog-in 0.8s var(--ease) both;
}

.age-gate__dialog::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid var(--line);
  pointer-events: none;
}

.age-gate__dialog img {
  width: 82px;
  height: 91px;
  margin: 0 auto 19px;
  object-fit: contain;
}

.age-gate__dialog .eyebrow {
  justify-content: center;
}

.age-gate__dialog .eyebrow::before {
  display: none;
}

.age-gate__dialog h2 {
  margin-bottom: 17px;
  font-size: clamp(2.5rem, 7vw, 4rem);
}

.age-gate__dialog > p:not(.eyebrow) {
  max-width: 390px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.age-gate__actions {
  display: grid;
  gap: 17px;
  justify-items: center;
  margin-top: 30px;
}

.age-gate__actions a {
  color: var(--muted);
  font-size: 0.7rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Service pages */
.service-page {
  overflow: hidden;
  background: var(--paper);
}

.inner-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

.inner-hero::before,
.inner-hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.inner-hero::before {
  top: -380px;
  right: -190px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(166, 102, 46, 0.38), transparent 69%);
}

.inner-hero::after {
  bottom: -360px;
  left: 12%;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(112, 69, 35, 0.24), transparent 70%);
}

.inner-hero__noise {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(24deg, transparent 0 4px, rgba(255, 255, 255, 0.035) 4px 5px),
    repeating-linear-gradient(112deg, transparent 0 7px, rgba(201, 148, 76, 0.028) 7px 8px);
}

.inner-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 0.82fr);
  gap: 82px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
}

.inner-hero__copy {
  max-width: 690px;
}

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

.inner-hero h1 {
  margin-bottom: 30px;
  font-size: clamp(4.5rem, 7.8vw, 7.8rem);
}

.inner-hero h1 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.inner-hero__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(241, 234, 223, 0.68);
  font-size: 1.08rem;
}

.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.inner-hero__visual {
  position: relative;
  min-height: 620px;
}

.inner-hero--parcels {
  background: #24170f;
}

.inner-hero--lifestyle {
  background: #292019;
}

.inner-hero--contact {
  background: var(--brown-deep);
}

.service-collage__photo {
  position: absolute;
  top: 15px;
  right: 0;
  width: 88%;
  height: 510px;
  margin: 0;
  overflow: hidden;
  border-radius: 250px 250px 6px 6px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.38);
}

.service-collage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-collage__lotto {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: -20px;
  display: grid;
  width: 255px;
  height: 185px;
  place-items: center;
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-6deg);
}

.service-collage__numbers {
  position: absolute;
  z-index: 4;
  right: -16px;
  bottom: 8px;
  display: flex;
  gap: 7px;
}

.service-collage__numbers span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-light);
  border: 5px solid rgba(66, 40, 23, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  animation: float 5s ease-in-out infinite;
}

.service-collage__numbers span:nth-child(2) { animation-delay: -1.2s; }
.service-collage__numbers span:nth-child(3) { animation-delay: -2.5s; }

.giant-ticker {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold-light);
  border-bottom: 1px solid rgba(24, 18, 13, 0.15);
  contain: inline-size paint;
}

.giant-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 25px 0 29px;
  animation: ticker 31s linear infinite;
}

.giant-ticker span {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.6vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.giant-ticker i {
  color: var(--brown);
  font-size: 1.1rem;
  font-style: normal;
}

.giant-ticker--dark {
  color: var(--cream);
  background: var(--brown-deep);
}

.giant-ticker--dark i {
  color: var(--gold-light);
}

.giant-ticker--warm {
  color: var(--cream);
  background: #8a431e;
}

.giant-ticker--warm i {
  color: #f5b85f;
}

.detail-section {
  padding: 130px 0;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
  background: #eadfce;
  border: 1px solid var(--line);
}

.feature-panel > * {
  position: relative;
  z-index: 2;
}

.feature-panel__index {
  position: absolute;
  z-index: 3;
  top: 27px;
  right: 30px;
  color: rgba(24, 18, 13, 0.46);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.feature-panel h3 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.feature-panel > div:last-child > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.feature-panel--dark {
  color: var(--cream);
  background: var(--brown-deep);
  border-color: var(--line-light);
}

.feature-panel--dark .eyebrow,
.feature-panel--image .eyebrow {
  color: var(--gold-light);
}

.feature-panel--dark .feature-panel__index,
.feature-panel--dark > div:last-child > p:last-child,
.feature-panel--image .feature-panel__index,
.feature-panel--image > div:last-child > p:last-child {
  color: rgba(241, 234, 223, 0.62);
}

.feature-panel__brand {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 40px;
  background: #fff;
  transform: rotate(3deg);
}

.feature-panel__brand img {
  width: min(100%, 310px);
}

.feature-panel--image {
  color: var(--cream);
  background: #162729;
  border-color: rgba(255, 255, 255, 0.13);
}

.feature-panel__real-image {
  height: 320px;
  overflow: hidden;
  border-radius: 180px 180px 5px 5px;
}

.feature-panel__real-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-credits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.media-credits a {
  color: var(--brown);
  border-bottom: 1px solid currentColor;
}

/* Cigar page */
.cigar-hero-art__main {
  position: absolute;
  top: 5px;
  right: 0;
  width: 82%;
  height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 270px 270px 7px 7px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.39);
}

.cigar-hero-art__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cigar-hero-art__label {
  position: absolute;
  z-index: 3;
  bottom: 45px;
  left: -5px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  align-content: center;
  color: var(--ink);
  background: var(--gold-light);
  border: 9px solid var(--ink-soft);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.cigar-hero-art__label span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cigar-hero-art__label strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.cigar-hero-art__line {
  position: absolute;
  z-index: 2;
  top: 36%;
  left: -70px;
  width: 150px;
  height: 1px;
  background: var(--gold-light);
  transform: rotate(-26deg);
}

.cigar-story__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: center;
}

.cigar-story h2,
.fragrance-story h2,
.parcel-process h2,
.gift-banner h2,
.page-cta h2,
.contact-promise p {
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 5.7vw, 6.2rem);
}

.cigar-story__copy > p:not(.eyebrow),
.fragrance-story__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.story-stats span {
  display: grid;
  min-height: 150px;
  align-content: end;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-stats strong {
  margin-bottom: 12px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.cigar-story__media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.cigar-story__media figure {
  position: absolute;
  inset: 28px 70px 28px 28px;
  margin: 0;
  overflow: hidden;
}

.cigar-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.vertical-caption {
  position: absolute;
  right: 22px;
  bottom: 28px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.origin-cards {
  padding: 0 0 130px;
}

.origin-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.origin-cards article {
  min-height: 390px;
  padding: 31px;
  background: #e7dccd;
  border: 1px solid var(--line);
}

.origin-cards article:nth-child(2) {
  color: var(--cream);
  background: var(--brown-deep);
}

.origin-cards article:nth-child(3) {
  background: var(--gold-light);
}

.origin-cards article > span {
  display: block;
  margin-bottom: 155px;
  font-family: var(--serif);
  font-size: 0.78rem;
  opacity: 0.55;
}

.origin-cards h3 {
  margin-bottom: 15px;
  font-size: 3rem;
}

.origin-cards p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.69;
}

.adult-disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 130px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.adult-disclaimer strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
}

.adult-disclaimer p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

/* Parcel page */
.parcel-hero-art__map {
  position: absolute;
  top: 25px;
  right: 0;
  width: 92%;
  height: 455px;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 40px 95px rgba(0, 0, 0, 0.35);
}

.parcel-hero-art__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parcel-hero-art__poste {
  position: absolute;
  z-index: 3;
  right: -15px;
  bottom: 5px;
  width: 260px;
  height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 8px solid #24170f;
  border-radius: 50%;
}

.parcel-hero-art__poste img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parcel-hero-art__tag {
  position: absolute;
  z-index: 4;
  bottom: 50px;
  left: -4px;
  display: grid;
  padding: 22px 30px;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.parcel-hero-art__tag strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.parcel-hero-art__tag span {
  margin-top: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.network-card {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: space-between;
  overflow: hidden;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.network-card:nth-child(2),
.network-card:nth-child(5) {
  color: var(--cream);
  background: var(--brown-deep);
}

.network-card > * {
  position: relative;
  z-index: 2;
}

.network-card span {
  font-family: var(--serif);
  font-size: 0.75rem;
  opacity: 0.47;
}

.network-card strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.network-card i {
  position: absolute;
  right: 27px;
  bottom: 26px;
  font-style: normal;
  opacity: 0.45;
}

.parcel-process {
  padding: 130px 0;
  color: var(--cream);
  background: var(--brown-deep);
}

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

.parcel-process header {
  max-width: 820px;
  margin-bottom: 68px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-line::before {
  position: absolute;
  top: 30px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: rgba(231, 196, 140, 0.25);
}

.process-line article {
  position: relative;
  z-index: 2;
}

.process-line article > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 50px;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: 50%;
  font-family: var(--serif);
}

.process-line h3 {
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.process-line p {
  color: rgba(241, 234, 223, 0.62);
}

.js .process-line.fx-sequence::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.15s 0.12s var(--ease);
}

.js .process-line.fx-sequence.is-fx-sequence-visible::before {
  transform: scaleX(1);
}

.js .process-line.fx-sequence article > span {
  opacity: 0;
  transform: scale(0.45) rotate(-18deg);
  transition: opacity 0.48s ease, transform 0.72s var(--ease);
}

.js .process-line.fx-sequence.is-fx-sequence-visible article > span {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.js .process-line.fx-sequence article:nth-child(2) > span {
  transition-delay: 0.24s;
}

.js .process-line.fx-sequence article:nth-child(3) > span {
  transition-delay: 0.42s;
}

.parcel-process .media-credits {
  color: rgba(241, 234, 223, 0.5);
}

.parcel-process .media-credits a {
  color: var(--gold-light);
}

/* Lifestyle page */
.lifestyle-hero-art figure {
  position: absolute;
  top: 5px;
  right: 0;
  width: 89%;
  height: 575px;
  margin: 0;
  overflow: hidden;
  border-radius: 280px 280px 8px 8px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.38);
}

.lifestyle-hero-art figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-hero-art__glass {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: -25px;
  display: grid;
  min-width: 190px;
  padding: 25px 30px;
  background: rgba(248, 244, 237, 0.78);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
}

.lifestyle-hero-art__glass span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lifestyle-hero-art__glass strong {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: 400;
}

.fragrance-story__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  align-items: center;
}

.fragrance-story__media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.fragrance-story__media img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.fragrance-story__media span {
  position: absolute;
  right: 23px;
  bottom: 22px;
  padding: 10px 15px;
  color: var(--cream);
  background: rgba(24, 18, 13, 0.78);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scent-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 35px;
}

.scent-notes span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scent-notes i {
  width: 7px;
  height: 7px;
  background: #d37a28;
  border-radius: 50%;
}

.scent-notes span:nth-child(2) i { background: #b62d3e; }
.scent-notes span:nth-child(3) i { background: #5f3923; }

.gift-banner {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  color: var(--cream);
  background: #8a431e;
  text-align: center;
}

.gift-banner > * {
  position: relative;
  z-index: 2;
}

.gift-banner .eyebrow {
  justify-content: center;
  color: #ffd59b;
}

.gift-banner .eyebrow::before {
  display: none;
}

.gift-banner h2 {
  max-width: 980px;
  margin-inline: auto;
}

.gift-banner p:last-child {
  color: rgba(255, 244, 226, 0.68);
}

/* Contact page */
.contact-orbit {
  display: grid;
  place-items: center;
}

.contact-orbit img {
  position: relative;
  z-index: 3;
  width: 230px;
  height: 255px;
  object-fit: contain;
  filter: brightness(1.5) saturate(0.8);
  animation: float 6s ease-in-out infinite;
}

.contact-orbit__ring,
.contact-orbit__ring::before,
.contact-orbit__ring::after {
  position: absolute;
  border: 1px solid rgba(231, 196, 140, 0.25);
  border-radius: 50%;
}

.contact-orbit__ring {
  width: 480px;
  height: 480px;
  animation: orbit 18s linear infinite;
}

.contact-orbit__ring::before {
  inset: 55px;
  content: "";
}

.contact-orbit__ring::after {
  inset: 110px;
  content: "";
}

.contact-orbit__ring span,
.contact-orbit__ring i {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--gold-light);
  border-radius: 50%;
}

.contact-orbit__ring span { top: 20px; left: 100px; }
.contact-orbit__ring i { right: 22px; bottom: 105px; }

.contact-orbit > p {
  position: absolute;
  z-index: 4;
  bottom: 38px;
  padding: 10px 17px;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-directory article {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 31px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.contact-directory article:nth-child(2) {
  color: var(--cream);
  background: var(--brown-deep);
}

.contact-directory article:nth-child(2) .eyebrow {
  color: var(--gold-light);
}

.contact-directory article:nth-child(3) {
  background: var(--gold-light);
}

.contact-directory article > * {
  position: relative;
  z-index: 2;
}

.contact-directory article > span {
  display: block;
  margin-bottom: 130px;
  font-family: var(--serif);
  font-size: 0.75rem;
  opacity: 0.5;
}

.contact-directory h3 {
  font-size: 2.2rem;
  line-height: 1.15;
}

.contact-directory article > a,
.contact-directory__links a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-directory__links p {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form-section {
  padding: 0 0 140px;
  background: var(--paper);
}

.contact-form__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.contact-form__copy {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.contact-form__copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.contact-form__copy h2 em {
  display: block;
  color: var(--brown);
  font-style: italic;
}

.contact-form__copy > p:not(.eyebrow) {
  max-width: 510px;
  color: var(--muted);
}

.contact-form__quick-links {
  display: grid;
  gap: 13px;
  margin-top: 38px;
}

.contact-form__quick-links a {
  display: grid;
  gap: 2px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.25;
  transition: color 0.3s ease, padding 0.35s var(--ease);
}

.contact-form__quick-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-form__quick-links a:hover,
.contact-form__quick-links a:focus-visible {
  padding-left: 8px;
  color: var(--brown);
}

.contact-form__quick-links span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form__panel {
  --form-progress: 0;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 58px);
  color: var(--cream);
  background:
    radial-gradient(circle at 95% 5%, rgba(201, 148, 76, 0.18), transparent 32%),
    var(--ink);
  border: 1px solid rgba(231, 196, 140, 0.14);
  border-radius: 6px;
  box-shadow: 0 34px 85px rgba(35, 22, 12, 0.2);
}

.contact-form__panel::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #fff1cf);
  box-shadow: 0 0 24px rgba(231, 196, 140, 0.52);
  transform: scaleX(var(--form-progress));
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.contact-form__notice {
  margin-bottom: 28px;
  padding: 14px 17px;
  border: 1px solid;
  font-size: 0.86rem;
  animation: fx-notice-in 0.65s var(--ease) both;
}

.contact-form__notice--success {
  color: #d9f3d9;
  background: rgba(73, 135, 79, 0.18);
  border-color: rgba(144, 213, 150, 0.4);
}

.contact-form__notice--error {
  color: #ffe0d4;
  background: rgba(168, 73, 42, 0.2);
  border-color: rgba(232, 143, 111, 0.44);
}

.contact-form {
  position: relative;
}

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

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

.contact-field--wide {
  grid-column: 1 / -1;
}

.contact-field > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(241, 234, 223, 0.64);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.contact-field.is-complete > span {
  color: var(--gold-light);
}

.contact-field.is-complete > span::after {
  content: "✓";
  font-size: 0.82rem;
  animation: fx-check-in 0.42s var(--ease) both;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 15px 0;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(241, 234, 223, 0.28);
  border-radius: 0;
  outline: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-field textarea {
  min-height: 150px;
  padding: 15px;
  border: 1px solid rgba(241, 234, 223, 0.28);
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--gold-light);
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 25px 0 27px;
  color: rgba(241, 234, 223, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.contact-consent a {
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
}

.contact-consent.is-complete {
  color: rgba(231, 196, 140, 0.86);
}

.contact-form .button {
  border: 0;
}

.contact-form.is-submitting .button {
  pointer-events: none;
  opacity: 0.74;
}

.contact-form.is-submitting .button span {
  animation: fx-submit-spin 0.8s linear infinite;
}

.contact-form__note {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(241, 234, 223, 0.42);
  font-size: 0.67rem;
  line-height: 1.55;
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-promise {
  padding: 140px 0;
  color: var(--cream);
  background: var(--brown-deep);
  text-align: center;
}

.contact-promise span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-promise p {
  max-width: 1050px;
  margin-inline: auto;
  font-family: var(--serif);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

/* Shared page CTA and effects */
.page-cta {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  color: var(--cream);
  background: var(--ink);
  text-align: center;
}

.page-cta__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(153, 91, 39, 0.4), transparent 68%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

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

.page-cta .eyebrow {
  justify-content: center;
  color: var(--gold-light);
}

.page-cta .eyebrow::before {
  display: none;
}

.page-cta h2 {
  max-width: 980px;
  margin-inline: auto;
}

.page-cta__inner > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(241, 234, 223, 0.62);
}

[data-spotlight] {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
}

[data-spotlight]::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.15), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

[data-spotlight]:hover::after {
  opacity: 1;
}

.js [data-reveal][data-tilt].is-visible.is-tilting {
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px);
}

.ambient-cursor {
  position: fixed;
  z-index: 15000;
  top: 0;
  left: 0;
  display: none;
  pointer-events: none;
}

.ambient-cursor span,
.ambient-cursor i {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ambient-cursor span {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
}

.ambient-cursor i {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 148, 76, 0.62);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s ease;
}

.ambient-cursor.is-active i {
  width: 58px;
  height: 58px;
  background: rgba(201, 148, 76, 0.09);
}

.js [data-reveal-image] {
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease);
}

.js [data-reveal-image] img {
  filter: saturate(0.78) brightness(0.84);
  transform: scale(1.12) rotate(0.6deg);
  transition: filter 1.25s ease, transform 1.65s var(--ease), translate 0.12s linear;
}

.js [data-reveal-image].is-visible {
  clip-path: inset(0 0 0 0);
}

.js [data-reveal-image].is-visible img {
  filter: saturate(1) brightness(1);
  transform: scale(1.02) rotate(0);
}

/* Cinematic motion system */
.fx-section {
  position: relative;
  isolation: isolate;
}

.section-flare {
  position: absolute;
  z-index: 12;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-flare::before {
  position: absolute;
  top: -32%;
  bottom: -32%;
  left: -52%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 235, 197, 0.2), rgba(201, 148, 76, 0.12), transparent);
  filter: blur(4px);
  opacity: 0;
  transform: rotate(10deg) translateX(-30%);
}

.is-fx-section-visible > .section-flare::before {
  animation: fx-section-sweep 1.28s 0.06s var(--ease) both;
}

.js .fx-title:not(.is-fx-title-visible) {
  clip-path: inset(0 0 100% 0);
  filter: blur(8px);
}

.js .fx-title.is-fx-title-visible {
  animation: fx-title-unveil 1.08s 0.04s var(--ease) both;
}

.fx-depth [data-reveal-image] img {
  translate: 0 var(--fx-media-shift, 0);
}

.hero.fx-depth .hero__orb--one {
  transform: translate3d(var(--fx-shift-reverse, 0), var(--fx-shift, 0), 0);
}

.hero.fx-depth .hero__orb--two {
  transform: translate3d(var(--fx-shift, 0), var(--fx-shift-reverse, 0), 0);
}

.inner-hero.fx-depth::before {
  transform: translate3d(var(--fx-shift-reverse, 0), var(--fx-shift, 0), 0);
}

.inner-hero.fx-depth::after {
  transform: translate3d(var(--fx-shift, 0), var(--fx-shift-reverse, 0), 0);
}

.page-cta.fx-depth .page-cta__orb {
  transform: translate(-50%, calc(-50% + var(--fx-shift, 0)));
}

.parcels.fx-depth .parcels__panel::after {
  transform: translate3d(var(--fx-shift, 0), var(--fx-shift-reverse, 0), 0);
}

.manifesto.fx-depth .manifesto__quote,
.gift-banner.fx-depth .shell,
.contact-promise.fx-depth .shell {
  translate: 0 var(--fx-media-shift, 0);
}

.fx-magnetic {
  translate: var(--magnet-x, 0) var(--magnet-y, 0);
  transition-property: color, background-color, border-color, box-shadow, transform, translate;
  transition-duration: 0.4s;
  transition-timing-function: var(--ease);
}

.fx-magnetic.is-magnetic-active {
  transition-duration: 0.08s;
}

.fx-pressable {
  --press-x: 50%;
  --press-y: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fx-pressable::before {
  position: absolute;
  z-index: 8;
  top: var(--press-y);
  left: var(--press-x);
  width: 22px;
  height: 22px;
  content: "";
  background: radial-gradient(circle, rgba(255, 241, 211, 0.62), rgba(201, 148, 76, 0.22) 42%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
}

.fx-pressable.is-fx-pressed::before {
  animation: fx-ripple 0.72s ease-out;
}

.motion-ticker-control {
  position: relative;
  cursor: pointer;
  outline: 0;
}

.motion-ticker-control::after {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 14px;
  padding: 7px 10px;
  content: "Pausa";
  color: var(--cream);
  background: rgba(24, 18, 13, 0.78);
  border: 1px solid rgba(231, 196, 140, 0.32);
  border-radius: 999px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 0.25s ease, transform 0.35s var(--ease);
}

.motion-ticker-control:hover::after,
.motion-ticker-control:focus-visible::after,
.motion-ticker-control.is-user-paused::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.motion-ticker-control:focus-visible {
  box-shadow: inset 0 0 0 2px var(--gold-light);
}

.motion-ticker-control.is-user-paused::after {
  content: "Riprendi";
}

.motion-ticker-control.is-user-paused > * {
  animation-play-state: paused !important;
}

.hero__stamp,
.service-ticker__track,
.service-collage__numbers span,
.giant-ticker > div,
.contact-orbit img,
.contact-orbit__ring,
.scroll-cue i::after,
.hero-card--main::after {
  animation-play-state: paused;
}

.hero__stamp.is-motion-active,
.service-ticker__track.is-motion-active,
.service-collage__numbers span.is-motion-active,
.giant-ticker > div.is-motion-active,
.contact-orbit img.is-motion-active,
.contact-orbit__ring.is-motion-active,
.scroll-cue.is-motion-active i::after,
.hero.is-motion-active .hero-card--main::after {
  animation-play-state: running;
}

.parcels .parcel-box {
  animation-play-state: paused;
}

.parcels.is-motion-active .parcel-box--back {
  animation: parcel-box-back 7.6s 0.2s ease-in-out infinite;
  animation-play-state: running;
}

.parcels.is-motion-active .parcel-box--front {
  animation: parcel-box-front 6.9s 0.8s ease-in-out infinite;
  animation-play-state: running;
}

.lifestyle__seal::after {
  position: absolute;
  inset: 5px;
  content: "";
  border: 1px dashed rgba(241, 234, 223, 0.42);
  border-radius: inherit;
  pointer-events: none;
  animation: lifestyle-seal 9s linear infinite;
  animation-play-state: paused;
}

.lifestyle.is-motion-active .lifestyle__seal::after {
  animation-play-state: running;
}

/* Content templates */
.content-page {
  min-height: 80vh;
  padding: 180px 0 120px;
}

.entry__header,
.archive-header {
  margin-bottom: 55px;
}

.entry__header h1,
.archive-header h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.entry__image {
  margin: 0 0 45px;
}

.entry__image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.entry__content {
  font-size: 1.05rem;
}

.entry__content h2,
.entry__content h3 {
  margin-top: 2em;
}

.entry__content h2 {
  font-size: 2.5rem;
}

.entry__content a {
  color: var(--brown);
  text-decoration: underline;
}

.entry__content blockquote {
  margin: 40px 0;
  padding: 12px 0 12px 30px;
  color: var(--brown);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.65rem;
}

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

.post-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}

.post-card__image {
  display: grid;
  aspect-ratio: 1.1;
  place-items: center;
  overflow: hidden;
  color: var(--gold-light);
  background: var(--brown-deep);
  font-family: var(--serif);
  font-size: 4rem;
}

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

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__content {
  padding: 25px;
}

.post-card__content time {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.post-card__content h2 {
  margin: 12px 0 15px;
  font-size: 2rem;
}

.post-card__content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.navigation.pagination {
  margin-top: 50px;
}

.nav-links {
  display: flex;
  gap: 9px;
}

.page-numbers {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.page-numbers.current {
  color: var(--cream);
  background: var(--brown);
}

.not-found {
  display: grid;
  min-height: 90vh;
  place-items: center;
  padding: 140px 0 80px;
  text-align: center;
}

.not-found__inner {
  position: relative;
}

.not-found__code {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin: 0;
  color: rgba(116, 72, 31, 0.07);
  font-family: var(--serif);
  font-size: min(34vw, 360px);
  line-height: 1;
  transform: translate(-50%, -50%);
}

.not-found .eyebrow {
  justify-content: center;
}

.not-found .eyebrow::before {
  display: none;
}

.not-found h1 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.not-found p:not(.eyebrow):not(.not-found__code) {
  color: var(--muted);
}

.not-found .button {
  margin-top: 20px;
}

/* Progressive reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    color 0.4s var(--ease),
    background-color 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.55s var(--ease),
    filter 0.55s var(--ease);
}

.js [data-reveal][data-reveal-delay="1"] { transition-delay: 0.11s; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: 0.2s; }
.js [data-reveal][data-reveal-delay="3"] { transition-delay: 0.29s; }
.js [data-reveal][data-reveal-delay="4"] { transition-delay: 0.38s; }

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-9px) rotate(3deg); }
}

@keyframes scroll-down {
  0% { transform: translateY(-20px); }
  65%, 100% { transform: translateY(45px); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes transition-orbit {
  to { transform: rotate(360deg); }
}

@keyframes transition-beam {
  0% { opacity: 0; transform: rotate(-8deg) translateX(-22%); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: rotate(-8deg) translateX(24%); }
}

@keyframes hero-sheen {
  0%, 62% { left: -70%; opacity: 0; }
  72% { opacity: 0.72; }
  88%, 100% { left: 132%; opacity: 0; }
}

@keyframes fx-title-unveil {
  from {
    clip-path: inset(0 0 100% 0);
    filter: blur(8px);
    opacity: 0.18;
  }
  to {
    clip-path: inset(-8% -3% -10% -3%);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes fx-section-sweep {
  0% { left: -52%; opacity: 0; transform: rotate(10deg) translateX(-30%); }
  30% { opacity: 0.82; }
  100% { left: 126%; opacity: 0; transform: rotate(10deg) translateX(34%); }
}

@keyframes fx-ripple {
  0% { opacity: 0.68; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(42); }
}

@keyframes fx-ripple-mobile {
  0% { opacity: 0.58; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(30); }
}

@keyframes parcel-box-back {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(6.5deg) translateY(-10px); }
}

@keyframes parcel-box-front {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-6.5deg) translateY(-12px); }
}

@keyframes lifestyle-seal {
  to { transform: rotate(360deg); }
}

@keyframes fx-notice-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fx-check-in {
  from { opacity: 0; transform: scale(0.35) rotate(-16deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes fx-submit-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .site-nav {
    gap: 20px;
  }

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

  .site-nav__cta {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.8fr);
    gap: 40px;
  }

  .hero-card--floating {
    left: -5px;
    width: 180px;
    height: 180px;
  }

  .cigars__layout,
  .lifestyle__layout,
  .faq__layout,
  .contact__inner {
    gap: 65px;
  }

  .inner-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.8fr);
    gap: 50px;
  }

  .service-collage__lotto {
    left: 0;
  }
}

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

  .admin-bar .site-header {
    top: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 110px max(24px, calc((100vw - 840px) / 2));
    color: var(--cream);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.55s var(--ease), visibility 0.4s;
  }

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

  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    color: var(--cream);
    background: transparent;
    box-shadow: none;
  }

  .menu-open .site-brand__logo,
  .menu-open .site-header.is-scrolled .site-brand__logo {
    filter: brightness(1.6) saturate(0.85);
  }

  .site-nav__list,
  .site-nav > ul {
    display: grid;
    width: 100%;
    gap: 0;
  }

  .site-nav li a {
    display: block;
    padding: 12px 0;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 8vw, 4.4rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .site-nav li a::after,
  .site-nav .sub-menu {
    display: none;
  }

  .site-nav__cta {
    display: inline-flex;
    margin-top: 24px;
  }

  .hero,
  .hero__inner {
    min-height: 960px;
  }

  .hero__inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 25px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 9vw, 6.5rem);
  }

  .hero__visual {
    height: 570px;
  }

  .hero-card--main {
    width: 100%;
    height: 550px;
  }

  .hero-card--floating,
  .hero__stamp {
    display: none;
  }

  .section {
    padding: 105px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .service-card {
    min-height: 380px;
  }

  .cigars__layout,
  .lifestyle__layout,
  .faq__layout,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .cigars__copy {
    max-width: 650px;
  }

  .cigars__gallery {
    min-height: 760px;
  }

  .cigar-shot--national {
    width: 66%;
  }

  .cigar-shot--dominican {
    width: 42%;
  }

  .parcels__panel {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .parcels__copy {
    padding: 55px 38px;
  }

  .parcel-box--back {
    left: 8%;
    width: 230px;
    height: 240px;
  }

  .parcel-box--front {
    right: 3%;
    width: 260px;
  }

  .lifestyle__image {
    max-width: 700px;
  }

  .lifestyle__copy {
    max-width: 700px;
  }

  .faq__layout {
    gap: 55px;
  }

  .contact__inner {
    gap: 65px;
  }

  .contact__intro {
    max-width: 660px;
  }

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

  .inner-hero,
  .inner-hero__grid {
    min-height: 940px;
  }

  .inner-hero__grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 28px;
    padding-top: 125px;
  }

  .inner-hero h1 {
    font-size: clamp(4.1rem, 9vw, 6.4rem);
  }

  .service-collage__photo,
  .cigar-hero-art__main,
  .lifestyle-hero-art figure {
    width: 100%;
  }

  .service-collage__lotto,
  .service-collage__numbers,
  .cigar-hero-art__label,
  .cigar-hero-art__line,
  .lifestyle-hero-art__glass,
  .parcel-hero-art__tag {
    display: none;
  }

  .feature-panel {
    gap: 45px;
  }

  .cigar-story__grid,
  .fragrance-story__grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .origin-cards__grid,
  .network-grid,
  .contact-directory__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    gap: 24px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .admin-bar .site-header {
    top: 0;
  }

  .site-brand__copy small {
    display: none;
  }

  .site-brand__copy strong {
    font-size: 0.95rem;
  }

  .site-brand__logo,
  .site-header.is-scrolled .site-brand__logo,
  body:not(.home) .site-brand__logo {
    width: 42px;
    height: 47px;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 62px;
    align-items: stretch;
    padding-top: 132px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 18vw, 5.8rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero__trust {
    margin-top: 40px;
  }

  .hero__visual {
    height: 510px;
  }

  .hero-card--main {
    left: 5%;
    width: 90%;
    height: 500px;
    border-radius: 170px 170px 8px 8px;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .manifesto {
    padding: 85px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .cigars h2,
  .parcels h2,
  .lifestyle h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .service-card {
    min-height: 390px;
    padding: 25px;
  }

  .service-card h3 {
    font-size: 2.65rem;
  }

  .service-card__media {
    margin-bottom: 48px;
  }

  .cigars__layout,
  .lifestyle__layout {
    gap: 65px;
  }

  .cigars__gallery {
    min-height: 590px;
  }

  .cigar-shot--national {
    width: 78%;
  }

  .cigar-shot--national img {
    height: 480px;
  }

  .cigar-shot--dominican {
    width: 49%;
  }

  .cigar-shot--dominican img {
    height: 280px;
    border-width: 5px;
  }

  .parcels {
    padding: 0;
  }

  .parcels__panel {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .parcels__visual {
    min-height: 430px;
  }

  .parcel-box--back {
    top: 55px;
    left: 12%;
    width: 220px;
    height: 220px;
  }

  .parcel-box--front {
    right: 10%;
    bottom: 52px;
    width: 250px;
    height: 190px;
  }

  .parcels__copy {
    padding: 70px 16px 80px;
  }

  .lifestyle {
    padding-top: 90px;
  }

  .lifestyle__seal {
    right: -6px;
    bottom: -45px;
    width: 108px;
    height: 108px;
  }

  .manifesto__quote {
    font-size: clamp(2.5rem, 12.5vw, 4.2rem);
  }

  .manifesto__signature {
    align-items: flex-start;
    flex-direction: column;
    max-width: 210px;
    margin: 40px auto 0;
  }

  .faq__layout,
  .contact__inner {
    gap: 50px;
  }

  .faq summary {
    font-size: 1.16rem;
  }

  .contact__inner {
    padding-top: 85px;
    padding-bottom: 85px;
  }

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

  .contact-card--mark {
    grid-column: auto;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .age-gate__dialog {
    padding: 38px 24px 32px;
  }

  .content-page {
    padding: 140px 0 80px;
  }

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

  .inner-hero,
  .inner-hero__grid {
    min-height: auto;
  }

  .inner-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: stretch;
    padding-top: 135px;
    padding-bottom: 90px;
  }

  .inner-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.5rem);
  }

  .inner-hero__visual {
    min-height: 510px;
  }

  .service-collage__photo,
  .cigar-hero-art__main,
  .lifestyle-hero-art figure {
    left: 5%;
    width: 90%;
    height: 500px;
    border-radius: 190px 190px 7px 7px;
  }

  .parcel-hero-art__map {
    width: 100%;
    height: 390px;
  }

  .parcel-hero-art__poste {
    right: -5px;
    width: 190px;
    height: 165px;
  }

  .giant-ticker > div {
    padding: 18px 0 22px;
  }

  .detail-section,
  .parcel-process,
  .gift-banner,
  .contact-promise,
  .page-cta {
    padding: 90px 0;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 28px;
  }

  .feature-panel__brand,
  .feature-panel__real-image {
    width: 100%;
  }

  .feature-panel h3 {
    font-size: 2.85rem;
  }

  .cigar-story__media {
    min-height: 570px;
  }

  .origin-cards__grid,
  .network-grid,
  .contact-directory__grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .origin-cards article,
  .contact-directory article {
    min-height: 330px;
  }

  .origin-cards article > span,
  .contact-directory article > span {
    margin-bottom: 105px;
  }

  .adult-disclaimer {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 90px;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 30px;
    width: 1px;
    height: auto;
  }

  .process-line article {
    padding-left: 92px;
  }

  .process-line article > span {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .process-line article + article {
    margin-top: 28px;
  }

  .fragrance-story__media,
  .fragrance-story__media img {
    min-height: 480px;
    height: 480px;
  }

  .contact-orbit__ring {
    width: 370px;
    height: 370px;
  }

  .contact-orbit img {
    width: 180px;
    height: 200px;
  }

  .media-credits {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .site-brand__copy strong {
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .parcel-box--front {
    right: 5%;
  }

  .contact__actions .button {
    width: 100%;
  }
}

/* Mobile refinement */
@media (max-width: 700px) {
  :root {
    --header-height: 72px;
    --shell: calc(100% - 28px);
  }

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

  body {
    line-height: 1.58;
  }

  .site-header,
  .site-header.is-scrolled,
  body:not(.home) .site-header {
    height: 72px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .site-brand {
    min-width: 0;
    gap: 10px;
  }

  .site-brand__copy {
    min-width: 0;
  }

  .site-brand__copy strong {
    display: block;
    overflow: hidden;
    font-size: 0.92rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-y: auto;
    padding: max(104px, calc(78px + env(safe-area-inset-top))) 20px max(32px, env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }

  .site-nav__list,
  .site-nav > ul {
    flex: 0 0 auto;
    margin: auto 0 0;
  }

  .site-nav li a {
    min-height: 48px;
    padding: 7px 0;
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .site-nav__cta {
    width: 100%;
    max-width: 310px;
    margin: 26px 0 auto;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 17px;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before {
    width: 22px;
  }

  .button {
    min-height: 52px;
    gap: 18px;
    padding: 13px 20px;
    font-size: 0.7rem;
  }

  .hero__inner {
    gap: 44px;
    padding-top: 112px;
    padding-bottom: 70px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3.15rem, 15.8vw, 4.65rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero__lead {
    margin-bottom: 28px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__actions {
    width: 100%;
    gap: 20px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    align-items: flex-start;
    gap: 14px;
    margin-top: 34px;
    font-size: 0.72rem;
  }

  .hero__trust-year {
    flex: 0 0 auto;
    padding-right: 14px;
    font-size: 1.55rem;
  }

  .hero__visual {
    height: 420px;
  }

  .hero-card--main {
    left: 4%;
    width: 92%;
    height: 410px;
    border-radius: 150px 150px 8px 8px;
  }

  .hero-card__caption {
    padding: 42px 20px 20px;
  }

  .service-ticker__track {
    gap: 22px;
    padding: 14px 0;
  }

  .section,
  .manifesto {
    padding: 72px 0;
  }

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

  .section-heading h2,
  .cigars h2,
  .parcels h2,
  .lifestyle h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.6rem, 12.5vw, 3.7rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .section-heading > p {
    font-size: 0.96rem;
  }

  .services-grid {
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
    border-radius: 8px;
  }

  .service-card__number {
    top: 20px;
    right: 21px;
  }

  .service-card__media {
    width: 100%;
    height: 148px;
    margin: 6px 0 30px;
    border-radius: 15px;
    transform: none;
  }

  .service-card h3 {
    margin-bottom: 13px;
    font-size: clamp(2.1rem, 10vw, 2.65rem);
    line-height: 0.98;
  }

  .service-card__content > p:not(.service-card__kicker) {
    font-size: 0.9rem;
  }

  .card-link {
    margin-top: 18px;
    font-size: 0.68rem;
  }

  .cigars__layout,
  .lifestyle__layout {
    gap: 48px;
  }

  .cigars__gallery {
    min-height: 510px;
  }

  .cigar-shot--national {
    width: 80%;
  }

  .cigar-shot--national img {
    height: 410px;
  }

  .cigar-shot--dominican {
    width: 50%;
  }

  .cigar-shot--dominican img {
    height: 240px;
  }

  .parcels__visual {
    min-height: 345px;
  }

  .parcel-box--back {
    top: 43px;
    left: 8%;
    width: 180px;
    height: 185px;
  }

  .parcel-box--front {
    right: 6%;
    bottom: 43px;
    width: 215px;
    height: 160px;
  }

  .parcels__copy {
    padding: 58px 16px 66px;
  }

  .carrier-list {
    gap: 7px;
  }

  .carrier-list span {
    padding: 7px 9px;
    font-size: 0.59rem;
  }

  .lifestyle {
    padding-top: 72px;
  }

  .lifestyle__image img {
    min-height: 390px;
    object-fit: cover;
  }

  .lifestyle__seal {
    right: 12px;
    bottom: 12px;
    width: 92px;
    height: 92px;
    padding: 16px;
    border-width: 5px;
    box-shadow: 0 14px 32px rgba(24, 18, 13, 0.24);
  }

  .lifestyle__seal strong {
    margin-bottom: -17px;
    font-size: 1.65rem;
  }

  .lifestyle__seal span {
    font-size: 0.51rem;
    letter-spacing: 0.09em;
  }

  .feature-row span {
    min-height: 49px;
    font-size: 0.75rem;
  }

  .manifesto__quote {
    font-size: clamp(2.25rem, 11.5vw, 3.4rem);
    line-height: 1.02;
  }

  .manifesto__signature {
    max-width: none;
    margin: 34px 0 0;
  }

  .faq__layout,
  .contact__inner {
    gap: 38px;
  }

  .faq details {
    padding: 0;
  }

  .faq summary {
    min-height: 64px;
    padding: 18px 42px 18px 0;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .faq details p {
    padding-right: 0;
    font-size: 0.9rem;
  }

  .contact__inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact__actions {
    display: grid;
    width: 100%;
  }

  .contact__actions .button {
    width: 100%;
  }

  .contact-card {
    min-height: 170px;
    padding: 22px;
  }

  .contact-card--mark {
    min-height: 150px;
  }

  .site-footer__main {
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .site-footer__brand {
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__brand img {
    width: 66px;
    height: 73px;
  }

  .site-footer__brand strong {
    font-size: 1.45rem;
  }

  .site-footer__links a,
  .site-footer__contact a {
    display: flex;
    min-height: 42px;
    align-items: center;
    margin: 0;
  }

  .site-footer__bottom {
    gap: 8px;
    padding-top: 17px;
    padding-bottom: calc(17px + env(safe-area-inset-bottom));
  }

  .age-gate {
    padding: 12px;
  }

  .age-gate__dialog {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    padding: 28px 18px 24px;
  }

  .age-gate__dialog::before {
    inset: 7px;
  }

  .age-gate__dialog img {
    width: 64px;
    height: 71px;
    margin-bottom: 12px;
  }

  .age-gate__dialog h2 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  .age-gate__actions {
    margin-top: 23px;
  }

  .age-gate__actions .button {
    width: 100%;
  }

  .page-transition__halo {
    width: 190px;
    height: 190px;
  }

  .page-transition__brand img {
    width: 94px;
    height: 105px;
  }

  .page-transition__brand strong {
    font-size: 1.25rem;
  }

  .page-transition__brand small {
    letter-spacing: 0.14em;
  }

  .inner-hero__grid {
    gap: 42px;
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .inner-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.15rem, 15.5vw, 4.55rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .inner-hero__copy > p:not(.eyebrow) {
    margin-bottom: 28px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .inner-hero__copy > .button,
  .inner-hero__actions .button {
    width: 100%;
  }

  .inner-hero__visual {
    min-height: 380px;
  }

  .service-collage__photo,
  .cigar-hero-art__main,
  .lifestyle-hero-art figure {
    left: 3%;
    width: 94%;
    height: 370px;
    border-radius: 150px 150px 7px 7px;
  }

  .parcel-hero-art__map {
    height: 300px;
  }

  .parcel-hero-art__poste {
    right: -2px;
    width: 148px;
    height: 132px;
    border-width: 5px;
  }

  .giant-ticker > div {
    gap: 21px;
    padding: 15px 0 18px;
  }

  .giant-ticker span {
    font-size: 2rem;
  }

  .detail-section,
  .parcel-process,
  .gift-banner,
  .contact-promise,
  .page-cta {
    padding: 72px 0;
  }

  .feature-stack {
    gap: 12px;
  }

  .feature-panel {
    min-height: 0;
    gap: 30px;
    padding: 22px;
  }

  .feature-panel__index {
    top: 19px;
    right: 20px;
  }

  .feature-panel__real-image {
    height: 220px;
    border-radius: 110px 110px 5px 5px;
  }

  .feature-panel__brand {
    min-height: 180px;
    padding: 30px;
  }

  .feature-panel h3 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .cigar-story h2,
  .fragrance-story h2,
  .parcel-process h2,
  .gift-banner h2,
  .page-cta h2,
  .contact-promise p {
    font-size: clamp(2.45rem, 11.7vw, 3.5rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .story-stats {
    gap: 8px;
    margin-top: 30px;
  }

  .story-stats span {
    min-height: 118px;
    padding: 17px;
    font-size: 0.61rem;
  }

  .cigar-story__media {
    min-height: 430px;
  }

  .cigar-story__media figure {
    inset: 18px;
  }

  .vertical-caption {
    display: none;
  }

  .origin-cards {
    padding-bottom: 72px;
  }

  .origin-cards__grid,
  .network-grid,
  .contact-directory__grid {
    gap: 10px;
  }

  .origin-cards article,
  .contact-directory article {
    min-height: 0;
    padding: 22px;
  }

  .origin-cards article > span,
  .contact-directory article > span {
    margin-bottom: 58px;
  }

  .origin-cards h3 {
    font-size: 2.45rem;
  }

  .adult-disclaimer {
    gap: 8px;
    margin-bottom: 72px;
    padding: 22px 0;
  }

  .network-card {
    min-height: 170px;
    padding: 22px;
  }

  .network-card strong {
    font-size: 2.25rem;
  }

  .parcel-process header {
    margin-bottom: 48px;
  }

  .process-line::before {
    left: 25px;
  }

  .process-line article {
    min-height: 104px;
    padding-left: 76px;
  }

  .process-line article > span {
    width: 52px;
    height: 52px;
  }

  .process-line h3 {
    font-size: 1.9rem;
  }

  .fragrance-story__media,
  .fragrance-story__media img {
    min-height: 370px;
    height: 370px;
  }

  .scent-notes {
    gap: 7px;
    margin-top: 27px;
  }

  .scent-notes span {
    padding: 9px 11px;
    font-size: 0.62rem;
  }

  .contact-orbit__ring {
    width: 290px;
    height: 290px;
  }

  .contact-orbit__ring::before {
    inset: 38px;
  }

  .contact-orbit__ring::after {
    inset: 76px;
  }

  .contact-orbit img {
    width: 140px;
    height: 155px;
  }

  .contact-orbit > p {
    bottom: 28px;
  }

  .contact-directory h3 {
    font-size: 1.85rem;
    overflow-wrap: anywhere;
  }

  .contact-directory__links a {
    overflow-wrap: anywhere;
  }

  .media-credits {
    gap: 9px;
    margin-top: 22px;
    overflow-wrap: anywhere;
  }

  .page-cta__inner > p:not(.eyebrow) {
    margin-bottom: 24px;
  }

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

  .entry__header,
  .archive-header {
    margin-bottom: 36px;
  }

  .entry__header h1,
  .archive-header h1,
  .not-found h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .site-brand__copy strong {
    max-width: 185px;
    font-size: 0.84rem;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 3rem;
  }

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

@media (hover: none) {
  .service-card:hover,
  .service-card:hover .service-card__media,
  .service-card:hover .service-card__media img,
  .button:hover {
    transform: none;
  }

  [data-spotlight]::after {
    display: none;
  }
}

/* Interactive mobile navigation */
@media (max-width: 920px) {
  .site-nav {
    isolation: isolate;
    gap: 0;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 88% 14%, rgba(170, 105, 48, 0.35), transparent 30%),
      radial-gradient(circle at 7% 88%, rgba(116, 72, 31, 0.24), transparent 33%),
      var(--ink);
  }

  .site-nav::before {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 3rem;
    color: rgba(231, 196, 140, 0.035);
    content: "TS";
    font-family: var(--serif);
    font-size: min(68vw, 34rem);
    font-style: italic;
    letter-spacing: -0.13em;
    line-height: 0.8;
    pointer-events: none;
    transform: translate3d(12%, 0, 0);
    transition: transform 1.1s var(--ease), color 0.8s ease;
  }

  .menu-open .site-nav::before {
    color: rgba(231, 196, 140, 0.065);
    transform: translate3d(0, 0, 0);
  }

  .site-nav::after {
    position: absolute;
    z-index: -1;
    top: 18%;
    right: 7%;
    width: 1px;
    height: 0;
    content: "";
    background: linear-gradient(transparent, rgba(231, 196, 140, 0.55), transparent);
    transition: height 0.9s 0.22s var(--ease);
  }

  .menu-open .site-nav::after {
    height: 64%;
  }

  .site-nav > * {
    position: relative;
    z-index: 1;
  }

  .site-nav__intro {
    display: grid;
    width: 100%;
    max-width: 680px;
    gap: 3px;
    margin: auto 0 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s 0.08s ease, transform 0.55s 0.05s var(--ease);
  }

  .menu-open .site-nav__intro {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__intro span {
    color: var(--gold-light);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
  }

  .site-nav__intro small {
    color: rgba(241, 234, 223, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .site-nav__list,
  .site-nav > ul {
    width: 100%;
    max-width: 680px;
    margin: 24px 0 0;
    counter-reset: salvati-menu;
  }

  .site-nav li {
    counter-increment: salvati-menu;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.38s ease, transform 0.58s var(--ease);
  }

  .menu-open .site-nav li {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-open .site-nav li:nth-child(1) { transition-delay: 0.1s; }
  .menu-open .site-nav li:nth-child(2) { transition-delay: 0.16s; }
  .menu-open .site-nav li:nth-child(3) { transition-delay: 0.22s; }
  .menu-open .site-nav li:nth-child(4) { transition-delay: 0.28s; }
  .menu-open .site-nav li:nth-child(5) { transition-delay: 0.34s; }

  .site-nav li a {
    display: grid;
    min-height: 54px;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(241, 234, 223, 0.12);
    opacity: 0.82;
    transition: color 0.3s ease, opacity 0.3s ease, padding 0.38s var(--ease), border-color 0.3s ease;
  }

  .site-nav li a::before {
    color: var(--gold-light);
    content: "0" counter(salvati-menu);
    font-family: var(--sans);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.1em;
  }

  .site-nav li a::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    color: var(--gold-light);
    content: "↗";
    background: none;
    font-family: var(--sans);
    font-size: 0.82rem;
    opacity: 0.7;
    transform: none;
    transition: transform 0.35s var(--ease), opacity 0.3s ease;
  }

  .site-nav li a:hover,
  .site-nav li a:focus-visible,
  .site-nav li a:active,
  .site-nav .current-menu-item > a {
    padding-left: 8px;
    color: var(--gold-light);
    border-color: rgba(231, 196, 140, 0.42);
    opacity: 1;
  }

  .site-nav li a:hover::after,
  .site-nav li a:focus-visible::after,
  .site-nav li a:active::after {
    opacity: 1;
    transform: translate(3px, -3px) rotate(8deg);
  }

  .site-nav__cta {
    width: min(100%, 310px);
    margin: 25px 0 0;
    opacity: 0;
    transform: translateY(18px);
    transition: color 0.4s var(--ease), background 0.4s var(--ease), opacity 0.4s 0.38s ease, transform 0.55s 0.36s var(--ease);
  }

  .menu-open .site-nav__cta {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__meta {
    display: flex;
    width: 100%;
    max-width: 680px;
    align-items: center;
    gap: 11px;
    margin: 22px 0 auto;
    color: rgba(241, 234, 223, 0.38);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.5s 0.46s ease;
  }

  .menu-open .site-nav__meta {
    opacity: 1;
  }

  .site-nav__meta i {
    width: 22px;
    height: 1px;
    background: rgba(231, 196, 140, 0.45);
  }

  .menu-toggle:active {
    transform: scale(0.93);
  }
}

@media (max-width: 920px) and (max-height: 700px) {
  .site-nav {
    padding-top: 88px;
    padding-bottom: 20px;
  }

  .site-nav__intro {
    display: none;
  }

  .site-nav__list,
  .site-nav > ul {
    margin-top: auto;
  }

  .site-nav li a {
    min-height: 44px;
    font-size: clamp(1.7rem, 7vh, 2.55rem);
  }

  .site-nav__cta {
    min-height: 46px;
    margin-top: 18px;
  }

  .site-nav__meta {
    margin-top: 15px;
  }
}

@media (max-width: 920px) {
  .contact-form__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form__copy {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .contact-form-section {
    padding-bottom: 72px;
  }

  .contact-form__layout {
    gap: 34px;
  }

  .contact-form__copy h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
    overflow-wrap: anywhere;
  }

  .contact-form__panel {
    padding: 26px 20px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .contact-field--wide {
    grid-column: auto;
  }

  .contact-field input {
    min-height: 48px;
  }

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

  .contact-card__numbers strong {
    font-size: 1.25rem;
  }
}

@media (max-width: 700px) {
  .js .process-line.fx-sequence::before {
    transform: scaleY(0);
    transform-origin: top;
  }

  .js .process-line.fx-sequence.is-fx-sequence-visible::before {
    transform: scaleY(1);
  }

  .js .fx-title:not(.is-fx-title-visible) {
    filter: blur(4px);
  }

  .section-flare::before {
    width: 46%;
    background: linear-gradient(90deg, transparent, rgba(255, 235, 197, 0.13), rgba(201, 148, 76, 0.08), transparent);
  }

  .js [data-reveal-image] img {
    transform: scale(1.075) rotate(0.35deg);
  }

  .js [data-reveal-image].is-visible img {
    transform: scale(1.01) rotate(0);
  }

  .fx-pressable.is-fx-pressed::before {
    animation-name: fx-ripple-mobile;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js [data-reveal-image] {
    clip-path: none;
  }

  .js [data-reveal-image] img,
  .js [data-reveal-image].is-visible img {
    filter: none;
    transform: none;
    translate: none;
  }

  .js .fx-title,
  .js .fx-title.is-fx-title-visible {
    clip-path: none;
    filter: none;
    opacity: 1;
  }

  .section-flare,
  .fx-pressable::before {
    display: none;
  }

  .js .process-line.fx-sequence::before,
  .js .process-line.fx-sequence.is-fx-sequence-visible::before,
  .js .process-line.fx-sequence article > span,
  .js .process-line.fx-sequence.is-fx-sequence-visible article > span {
    opacity: 1;
    transform: none;
  }

  .page-transition {
    display: none;
  }
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .has-ambient-cursor body,
  .has-ambient-cursor a,
  .has-ambient-cursor button,
  .has-ambient-cursor summary,
  .has-ambient-cursor [role="button"] {
    cursor: none;
  }

  .has-ambient-cursor .ambient-cursor {
    display: block;
  }
}

@media (forced-colors: active) {
  .has-ambient-cursor body,
  .has-ambient-cursor a,
  .has-ambient-cursor button,
  .has-ambient-cursor summary,
  .has-ambient-cursor [role="button"] {
    cursor: auto;
  }

  .has-ambient-cursor .ambient-cursor {
    display: none;
  }
}
