/* MARLÚME - homepage */

:root {
  --elem-white: #ffffff;
  --elem-black: #000000;
  --blackground: #f7f6f5;
  --elem-moss: #535f37;
  --elem-sage: #737d69;
  --elem-forest: #2c331e;
  --elems-grey-1: #222222;
  --elems-grey-02: #bbbbbb;
  --background-crem: rgb(252, 250, 247);
  --elem-border: rgb(218, 210, 201);
  --text-main: #222222;
  --slide: #00000006;
  --font: "Montserrat", sans-serif;
  --header-h: 100px;
  --pad: 50px;
  --pad-m: 20px;
  --max: 1440px;
  --assets-cdn: https://pub-b1586901e4994281a30b19fc0eefc886.r2.dev;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--elem-white);
  line-height: 1.5;
  overflow-x: clip; /* clip doesn't break position:sticky (unlike hidden) */
}

body.is-locked {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* -- Header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-left {
  display: flex;
  gap: 28px;
  justify-content: flex-start;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link:hover {
  opacity: 0.65;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
}

.logo img,
.logo svg {
  width: 200px;
  height: 40px;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.bag-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--elem-black);
  color: var(--elem-white);
  font-size: 11px;
  font-weight: 600;
}

.bag-count:empty,
.bag-count[data-count="0"] {
  display: none;
}

@media (max-width: 1000px) {
  :root {
    --header-h: 60px;
  }

  .site-header {
    padding: 0 var(--pad-m);
  }

  .nav-left {
    gap: 16px;
    min-width: 0;
  }

  .page-gift .nav-left,
  .page-corporate .nav-left {
    position: relative;
    align-items: center;
    gap: 0;
  }

  .page-gift .nav-left .nav-link:last-of-type,
  .page-corporate .nav-left .nav-link:last-of-type {
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
  }

  .nav-link,
  .bag-btn {
    font-size: 11px;
  }

  .logo {
    width: 140px;
    height: 28px;
  }

  .logo img,
  .logo svg {
    width: 140px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  .nav-left .nav-story {
    display: none;
  }

  .logo {
    width: 120px;
    height: 24px;
  }

  .logo img,
  .logo svg {
    width: 120px;
    height: 24px;
  }
}

/* -- Drop panel (menu / bag) -- */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: #ffffff26;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.drop-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  max-height: 95vh;
  overflow-y: auto;
  background: var(--background-crem);
  padding: 0 var(--pad) 50px;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  font-family: var(--font);
}

#bag-panel {
  padding: 0 50px 50px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 95vh;
  max-height: 95vh;
}

#bag-panel .drop-panel__bar {
  max-width: 1430px;
  margin: 0 auto;
  padding-right: 0;
  width: 100%;
  flex: 0 0 auto;
  min-height: 56px;
  height: 56px;
}

#bag-panel .drop-panel__bar .logo {
  width: 140px;
  height: 28px;
}

#bag-panel .drop-panel__bar .logo img,
#bag-panel .drop-panel__bar .logo svg {
  width: 140px;
  height: 28px;
}

#bag-panel .drop-panel__title {
  font-size: 15px;
}

#bag-panel .drop-panel__close {
  width: 36px;
  height: 36px;
  font-size: 24px;
}

#bag-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
}

.bag-slider {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

.bag-slider__track {
  display: grid;
  grid-template: minmax(0, 1fr) / minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  position: relative;
  transform: none !important;
}

.bag-slider__page {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Never let injected scripts participate in the bag grid (Vite /@vite/client in dev). */
.bag-slider__track > script {
  display: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
  grid-area: unset !important;
}

.bag-slider:not(.is-checkout) #checkout-page {
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.bag-slider.is-checkout #bag-page {
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.bag-slider.is-checkout #checkout-page {
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

/* Checkout fills bag panel edge-to-edge */
#bag-panel:has(.bag-slider.is-checkout) {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

#bag-panel:has(.bag-slider.is-checkout) .drop-panel__bar {
  padding-left: 50px;
  padding-right: 50px;
}

#bag-panel:has(.bag-slider.is-checkout) #bag-content {
  max-width: none;
  margin: 0;
}

.bag-slider__page .bag-layout {
  flex: 1 1 auto;
  min-height: 0;
  max-width: 100%;
  min-width: 0;
}

.bag-slider__page .bag-summary {
  min-width: 0;
  max-width: min(400px, 100%);
}

.bag-slider__page .checkout-shell {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.checkout-top {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--background-crem);
  z-index: 2;
}

.bag-back {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 1;
}

.drop-panel.is-open {
  visibility: visible;
  pointer-events: auto;
  animation: drop-in 0.3s cubic-bezier(0.81, 0.01, 0.29, 0.26) forwards;
}

.drop-panel.is-closing {
  animation: drop-out 0.25s ease forwards;
}

@keyframes drop-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes drop-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

.drop-panel__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding-right: 50px;
}

.drop-panel__title {
  font-size: 18px;
  font-weight: 400;
}

.drop-panel__title em {
  font-style: italic;
  font-weight: 400;
}

.drop-panel__close {
  justify-self: end;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  padding: 30px 0 20px;
}

.menu-col h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.menu-col a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 0;
  color: var(--elems-grey-1);
}

.menu-col a:hover {
  color: var(--elem-moss);
}

/* Bag / cart */
.bag-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  padding: 20px 0 10px;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.bag-items {
  flex: 1 1 auto;
  max-width: 990px;
  min-width: 0;
  min-height: 0;
  padding-left: 20px;
  padding-right: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.bag-items:hover,
.bag-items:focus-within,
.bag-items:active {
  scrollbar-color: rgb(0 0 0 / 28%) transparent;
}

.bag-items::-webkit-scrollbar {
  width: 6px;
}

.bag-items::-webkit-scrollbar-track {
  background: transparent;
}

.bag-items::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 100px;
}

.bag-items:hover::-webkit-scrollbar-thumb,
.bag-items:focus-within::-webkit-scrollbar-thumb,
.bag-items:active::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 28%);
}

.bag-summary {
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
  min-width: 400px;
  align-self: flex-end;
}

.bag-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: start;
}

.bag-item__img {
  width: 120px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #eee;
}

.bag-item__name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.bag-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}

.bag-qty button {
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 1;
}

.bag-remove {
  font-size: 12px;
  text-decoration: underline;
  color: var(--elems-grey-1);
}

.bag-item__price {
  font-size: 14px;
  white-space: nowrap;
}

.bag-summary h3 {
  font-family: var(--font);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 20px;
}

.bag-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.bag-note {
  font-size: 12px;
  color: var(--elems-grey-1);
  margin: 8px 0 20px;
  max-width: 100%;
}

.bag-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 24px;
}

.btn-checkout {
  display: block;
  width: 100%;
  background: var(--elem-black);
  color: var(--elem-white);
  text-align: center;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.bag-policy {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--elems-grey-02);
  text-align: left;
}

.bag-empty {
  padding: 40px 0 60px;
  font-size: 14px;
  color: var(--elems-grey-1);
}

.bag-slider__page:has(.bag-empty-exp) {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bag-empty-exp {
  --bag-empty-ease: cubic-bezier(0.22, 1, 0.36, 1);
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vh, 44px);
  padding: clamp(12px, 3vh, 32px) 8px 28px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.bag-empty-exp__moment {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 22rem;
  animation: bag-empty-rise 0.7s var(--bag-empty-ease) both;
}

@keyframes bag-empty-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.bag-empty-exp__mark {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  color: var(--elem-moss);
  opacity: 0.72;
}

.bag-empty-exp__title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--elem-forest);
}

.bag-empty-exp__lead {
  margin: 12px 0 26px;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(34, 34, 34, 0.78);
}

.bag-empty-exp__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 196px;
  padding: 0 24px;
  background: var(--elem-forest);
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.bag-empty-exp__cta:hover,
.bag-empty-exp__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

.bag-empty-exp__picks {
  width: 100%;
  max-width: 280px;
  padding-top: 22px;
  border-top: 1px solid rgba(44, 51, 30, 0.12);
}

.bag-empty-exp__picks[hidden] {
  display: none;
}

.bag-empty-exp__picks-label {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--elem-moss);
  text-align: center;
}

.bag-empty-exp__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bag-empty-exp__card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: opacity 0.3s ease;
}

.bag-empty-exp__card:hover,
.bag-empty-exp__card:focus-visible {
  opacity: 0.82;
  outline: none;
}

.bag-empty-exp__card-media {
  display: block;
  width: 52px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(44, 51, 30, 0.06);
}

.bag-empty-exp__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bag-empty-exp__card-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--elem-forest);
}

body:has(#marlume-consent) .bag-empty-exp {
  padding-bottom: 132px;
}

@media (max-width: 700px) {
  .bag-empty-exp {
    justify-content: flex-start;
    padding-top: 28px;
    padding-left: 4px;
    padding-right: 4px;
    gap: 36px;
  }

  .bag-empty-exp__title {
    font-size: 28px;
  }

  .bag-empty-exp__lead {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .bag-empty-exp__cta {
    width: min(100%, 280px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bag-empty-exp__moment {
    animation: none;
  }
}

@media (max-width: 1000px) {
  .drop-panel {
    padding: 0 var(--pad-m) 30px;
  }

  #bag-panel {
    padding: 0 20px 30px;
  }

  #bag-panel:has(.bag-slider.is-checkout) {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  #bag-panel:has(.bag-slider.is-checkout) .drop-panel__bar {
    padding-left: 20px;
    padding-right: 20px;
  }

  #bag-panel .drop-panel__bar {
    padding-right: 0;
    min-height: 48px;
    height: 48px;
  }

  #bag-panel .drop-panel__bar .logo {
    width: 110px;
    height: 22px;
  }

  #bag-panel .drop-panel__bar .logo img,
  #bag-panel .drop-panel__bar .logo svg {
    width: 110px;
    height: 22px;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .bag-layout {
    gap: 24px;
    padding: 16px 0 10px;
  }

  .bag-items {
    padding-left: 0;
  }

  .bag-summary {
    flex: 0 0 400px;
    width: 400px;
    max-width: 400px;
    min-width: 400px;
  }
}

@media (max-width: 700px) {
  .bag-layout {
    flex-direction: column;
  }

  .bag-summary {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
  }
}

/* -- Hero -- */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  background: #1a1510;
}

.hero__media {
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  aspect-ratio: 2 / 3;
  max-height: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  padding: 0 var(--pad);
  color: var(--elem-white);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
  max-width: 22ch;
  line-height: 1.25;
}

@media (max-width: 1000px) {
  .hero__media {
    aspect-ratio: auto;
    height: calc(100vh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
  }

  .hero__caption {
    padding: 0 var(--pad-m);
    font-size: 22px;
    top: auto;
    bottom: 8%;
  }
}

/* -- Split sections (brand / founder) -- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 100px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.split__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.split__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--elem-moss);
  margin-bottom: 28px;
}

.split__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--elems-grey-1);
  max-width: 42ch;
  margin-bottom: 28px;
}

.split__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--elem-moss);
}

.split__link:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px var(--pad-m);
  }

  .split__title {
    font-size: 36px;
  }

  .split__body {
    max-width: none;
  }
}

/* -- Collection strip (sticky horizontal scroll) -- */
.collection {
  --collection-travel: 0px;
  position: relative;
  height: calc(100vh + var(--collection-travel));
}

.collection__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.collection__inner {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 20px;
}

.collection__label {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--elems-grey-1);
}

.collection__label strong {
  font-weight: 600;
}

.collection__viewport {
  width: 100%;
  overflow: hidden;
}

.collection__track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.product-card {
  flex: 0 0 331px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  background: var(--blackground);
}

.product-card h3 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1000px) {
  .collection__inner {
    padding: 0 20px;
  }

  .collection__track {
    gap: 16px;
  }

  .product-card {
    flex-basis: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection {
    height: auto;
  }

  .collection__sticky {
    position: relative;
    height: auto;
    padding: 40px 0;
  }

  .collection__viewport {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .collection__viewport::-webkit-scrollbar {
    display: none;
  }

  .collection__track {
    transform: none !important;
  }
}

/* -- Collection intro (full bleed) -- */
.collection-intro {
  position: relative;
  width: 100%;
  color: var(--elem-white);
}

.collection-intro__media {
  width: 100%;
}

.collection-intro__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  object-position: center top;
  min-height: 70vh;
}

.collection-intro__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px var(--pad) 60px;
  background: linear-gradient(
    to top,
    rgba(74, 84, 57, 0.88) 0%,
    rgba(74, 84, 57, 0.55) 55%,
    rgba(74, 84, 57, 0) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.collection-intro__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}

.collection-intro__body {
  font-size: 14px;
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: 16px;
}

.collection-intro__body + .collection-intro__body {
  margin-bottom: 28px;
}

.collection-intro__cta {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

@media (max-width: 1000px) {
  .collection-intro__media img {
    min-height: 60vh;
    aspect-ratio: 5 / 7;
  }

  .collection-intro__content {
    padding: 60px var(--pad-m) 40px;
  }
}

/* -- Gift -- */
.gift {
  padding: 80px var(--pad) 100px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.gift__title {
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gift__body {
  font-size: 14px;
  color: var(--elems-grey-1);
  max-width: 48ch;
  margin: 0 auto 40px;
}

.gift__media {
  width: 100%;
}

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

@media (max-width: 1000px) {
  .gift {
    padding: 50px var(--pad-m) 70px;
  }
}

/* -- Orders band (above footer, compact — not a full-page section) -- */
.orders-band {
  background: var(--elem-forest);
  color: #f7f3ea;
  padding: 36px var(--pad);
}

.orders-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.orders-band__copy h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.orders-band__copy p {
  margin: 0;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.78);
}

.orders-band__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 22px;
  background: #f7f3ea;
  color: var(--elem-forest);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.orders-band__cta:hover,
.orders-band__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

/* -- Footer -- */
.site-footer {
  background: var(--background-crem);
  padding: 80px var(--pad) 50px;
  border-top: 1px solid var(--elem-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  padding: 5px 0;
  color: var(--elems-grey-1);
}

.footer-col a:hover {
  color: var(--elem-moss);
}

.footer-copy {
  max-width: var(--max);
  margin: 50px auto 0;
  font-size: 12px;
  color: var(--elems-grey-02);
}

@media (max-width: 1000px) {
  .orders-band {
    padding: 28px var(--pad-m);
  }

  .orders-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .orders-band__copy h2 {
    font-size: 20px;
  }

  .site-footer {
    padding: 50px var(--pad-m) 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}

/* -- Motion -- */
@media (prefers-reduced-motion: reduce) {
  .drop-panel.is-open,
  .drop-panel.is-closing {
    animation: none;
    transform: none;
  }

  .bag-slider__track {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* -- Shop page -- */
.shop-page {
  position: relative;
  padding-top: 20px;
  background: var(--elem-white);
  min-height: 60vh;
}

.shop-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 40px) 4px;
}

.shop-intro__title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--elem-black);
}

.shop-intro__lead {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--elem-black);
  opacity: 0.78;
}

.shop-intro__lead a {
  color: var(--elem-moss, #4a5c3a);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* -- Shared SEO FAQ (shop, gift, etc.) -- */
.seo-faq {
  background: #f6f7f5;
  padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 40px);
  color: var(--elem-black, #222);
}

.seo-faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.seo-faq__eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--elem-moss, #4a5c3a);
}

.seo-faq__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.seo-faq__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 0.72);
  max-width: 46ch;
}

.seo-faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(44, 51, 30, 0.12);
}

.seo-faq__item {
  border-bottom: 1px solid rgba(44, 51, 30, 0.12);
  padding: 14px 0;
}

.seo-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

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

.seo-faq__item p {
  margin: 10px 0 4px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.78);
  max-width: 52ch;
}

.seo-faq__item a {
  color: var(--elem-moss, #4a5c3a);
}

.shop-size-filter {
  position: fixed;
  top: calc(var(--header-h) + 28px);
  right: clamp(16px, 2.5vw, 36px);
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 0;
  background: var(--elem-black);
  color: var(--elem-white);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.shop-size-filter:hover {
  opacity: 0.9;
}

.shop-size-filter:focus-visible {
  outline: 2px solid var(--elem-moss);
  outline-offset: 2px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
  width: 100%;
  padding: 40px clamp(16px, 2.5vw, 36px) 100px;
}

.shop-card {
  width: 100%;
  min-width: 0;
}

.shop-card__hit {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.shop-card__hit:focus-visible {
  outline: 2px solid var(--elem-black);
  outline-offset: 3px;
}

.shop-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--blackground);
}

.shop-card__track {
  display: flex;
  flex-wrap: nowrap;
  width: 200%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.shop-card__media picture {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  min-width: 50%;
}

.shop-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-card__media picture:last-child {
  display: flex;
}

.shop-card__media picture:last-child img {
  height: 100%;
  object-fit: cover;
}

.shop-card__img--main,
.shop-card__img--hover {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .shop-card__hit:hover .shop-card__track {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1100px) {
  .shop-card {
    overflow-x: clip;
  }

  .shop-card__hit,
  .shop-card__media,
  .shop-card__media img {
    -webkit-user-drag: none;
    user-select: none;
    touch-action: pan-y;
  }

  .shop-card__media {
    touch-action: pan-y;
  }

  .shop-card.is-shop-revealed .shop-card__track {
    transform: translate3d(-50%, 0, 0);
  }

  .shop-card.is-shop-dragging .shop-card__track,
  .shop-card.is-shop-hint .shop-card__track {
    transition: none;
  }

  .shop-card.is-shop-hint .shop-card__track {
    animation: shop-card-hint 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
}

@keyframes shop-card-hint {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  36%,
  54% {
    transform: translate3d(-14%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-card__track {
    transition: none;
  }

  .shop-card.is-shop-hint .shop-card__track {
    animation: none;
  }
}

.shop-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 0 4px 8px;
}

.shop-card__name {
  margin: 0;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font);
  line-height: 1.5;
}

.shop-card__name a {
  display: inline-block;
}

.shop-card__sizes {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
  gap: 0.2em;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--elems-grey-02);
}

.shop-card__size {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  opacity: 0.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.shop-card__size.is-active {
  color: var(--text-main);
  opacity: 1;
}

.shop-card__size:hover:not(:disabled),
.shop-card__size:focus-visible:not(:disabled) {
  color: var(--text-main);
  opacity: 1;
  outline: none;
}

.shop-card__size:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.shop-card__size-sep {
  opacity: 0.55;
  user-select: none;
}

/* Gift tile - home gift immersion, scaled to shop grid */
.shop-gift {
  --shop-card-caption: calc(10px + 14px * 1.5 + 8px);
  --shop-gift-ease: cubic-bezier(0.22, 1, 0.36, 1);
  grid-column: span 2;
  display: block;
  width: 100%;
  min-width: 0;
  height: calc(100% - var(--shop-card-caption));
  min-height: clamp(320px, 42vw, 560px);
  align-self: start;
  color: #f4f1e8;
  background: #1c1812;
  overflow: hidden;
  text-align: left;
}

.shop-gift__stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: stretch;
  isolation: isolate;
}

.shop-gift__media {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1c1812;
}

.shop-gift__media picture,
.shop-gift__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-gift__media img {
  object-fit: cover;
  object-position: 55% 45%;
  filter: contrast(1.03) saturate(1.04);
}

.shop-gift__veil {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(95% 80% at 70% 40%, transparent 20%, rgba(16, 12, 8, 0.45) 100%),
    linear-gradient(90deg, rgba(16, 12, 8, 0.72) 0%, rgba(16, 12, 8, 0.28) 48%, rgba(16, 12, 8, 0.35) 100%),
    linear-gradient(180deg, rgba(16, 12, 8, 0.2) 0%, transparent 35%, rgba(16, 12, 8, 0.78) 100%);
}

.shop-gift__grain {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.shop-gift__content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: min(100%, 440px);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px) clamp(24px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shop-gift__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10% -6% -6% -16%;
  pointer-events: none;
  background: radial-gradient(88% 80% at 26% 72%, rgba(16, 12, 8, 0.58), transparent 72%);
  opacity: 0.9;
}

.shop-gift__eyebrow {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.58);
}

.shop-gift__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.96;
  color: #f7f3ea;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.shop-gift__whisper {
  margin: 0 0 14px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  color: rgba(247, 243, 234, 0.88);
}

.shop-gift__lead {
  margin: 0 0 18px;
  max-width: 34ch;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.65;
  color: rgba(244, 241, 232, 0.78);
}

.shop-gift__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0 5px;
  background: none;
  color: #f7f3ea;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-decoration: none;
  transition: opacity 0.35s var(--shop-gift-ease);
}

.shop-gift__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.5s var(--shop-gift-ease);
}

.shop-gift__cta:hover,
.shop-gift__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

.shop-gift__cta:hover::after,
.shop-gift__cta:focus-visible::after {
  transform: scaleX(1);
}

/* Alone on a full-width row (2-col): keep a readable landscape height */
@media (max-width: 1100px) and (min-width: 769px) {
  .shop-gift {
    min-height: clamp(300px, 40vw, 480px);
  }
}

/* Size modal */
.size-modal[hidden] {
  display: none !important;
}

.size-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.size-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.size-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: var(--background-crem);
  padding: 48px 36px 36px;
  text-align: center;
}

.size-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  font-size: 28px;
  line-height: 1;
}

.size-modal__title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}

.size-modal__product {
  font-size: 14px;
  color: var(--elems-grey-1);
  margin-bottom: 28px;
}

.size-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.size-modal__btn {
  min-width: 140px;
  padding: 12px 24px;
  background: var(--elem-black);
  color: var(--elem-white);
  border: 2px solid var(--elem-black);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.size-modal__btn:hover,
.size-modal__btn:focus-visible {
  background: var(--elem-white);
  color: var(--elem-black);
  outline: none;
}

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
    padding: 30px clamp(14px, 2.5vw, 28px) 80px;
  }
}

@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 24px 16px 70px;
  }

  .shop-gift {
    grid-column: span 1;
    height: auto;
    min-height: 0;
  }

  .shop-gift__stage {
    min-height: clamp(360px, 88vw, 520px);
  }

  .shop-gift__content {
    width: min(100%, 100%);
    padding: 28px 18px 24px;
  }

  .shop-gift__title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .shop-gift__lead {
    max-width: none;
    font-size: 13px;
  }
}

/* -- Product page -- */
.product-page {
  background: var(--blackground);
  min-height: calc(100vh - var(--header-h));
}

.product-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  position: relative;
}

/* Overlay filmstrip on the gallery - transparent, no white column */
.product-thumbs-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 118px;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

.product-thumbs {
  position: sticky;
  top: var(--header-h);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-height: calc(100vh - var(--header-h));
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px 12px 24px 14px;
  pointer-events: auto;
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
  /* Soft fade when the strip scrolls */
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 12px,
    #000 calc(100% - 16px),
    transparent 100%
  );
}

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

.product-thumbs__btn {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
  width: 92px;
  aspect-ratio: 92 / 122;
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-thumbs__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.product-thumbs__btn.is-active {
  box-shadow: 0 0 0 2px var(--elem-black);
}

.product-thumbs__btn img {
  width: 92px;
  height: 122px;
  object-fit: cover;
  display: block;
  background: var(--background-crem);
}

.product-gallery {
  flex: 1 1 50%;
  width: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--elem-white);
}

.product-gallery__slide {
  width: 100%;
  background: var(--background-crem);
  scroll-margin-top: var(--header-h);
}

.product-gallery__slide:not(:has(img[src])) {
  aspect-ratio: 5 / 7;
}

.product-gallery__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--background-crem);
}

.product-info-col {
  flex: 1 1 45%;
  width: auto;
  min-width: 280px;
  display: block;
  position: relative;
  align-self: stretch;
}

.product-info-sticky {
  position: sticky;
  top: var(--header-h);
  width: 100%;
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  box-sizing: border-box;
}

.product-info {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  flex-shrink: 1;
}

.product-info__head {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-info__title {
  order: 1;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.product-info__eyebrow {
  order: 2;
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: none;
  color: var(--elems-grey-02);
}

.product-info__meta {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.product-info__price-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-info__price {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
}

.product-info__currency {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-main);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  width: fit-content;
}

.product-info__size {
  font-size: 14px;
  font-weight: 400;
  color: var(--elem-forest);
}

.product-info__size-switch {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  text-decoration: underline;
  color: var(--elems-grey-1);
}

.product-loading {
  padding: 80px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--elems-grey-1);
}

.product-info__add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--elem-white);
  background: var(--elem-black);
  border: 2px solid var(--elem-black);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-info__add:hover,
.product-info__add:focus-visible {
  background: var(--elem-white);
  color: var(--elem-black);
  outline: none;
}

.product-info__add:disabled,
.product-info__add.is-disabled {
  background: var(--elem-white);
  color: var(--elems-grey-1);
  border-color: var(--elem-border);
  cursor: not-allowed;
}

.product-info__add:disabled:hover,
.product-info__add:disabled:focus-visible,
.product-info__add.is-disabled:hover,
.product-info__add.is-disabled:focus-visible {
  background: var(--elem-white);
  color: var(--elems-grey-1);
}

.product-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-tabs__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

.product-tabs__tab {
  font-size: 12px;
  font-weight: 500;
  color: var(--elem-black);
  cursor: pointer;
  user-select: none;
  background: none;
  border: 0;
  padding: 0;
}

.product-tabs__tab.is-active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-tabs__panel[hidden] {
  display: none !important;
}

.product-tabs__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-main);
}

.product-tabs__body p {
  margin: 0;
}

.product-tabs__body p + p {
  margin-top: 0.65em;
}

.product-tabs__body em {
  font-style: italic;
  display: block;
  margin: 0 0 0.65em;
}

.product-tabs__body em + p {
  margin-top: 0;
}

/* Story copy - title + faded body + citește tot (no product CTA) */
.story-copy {
  width: 100%;
  max-width: 36ch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.story-copy__title {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  color: var(--elem-forest);
}

.story-copy__body {
  --story-body-lh: 1.7;
  --story-body-lines: 4;
  width: 100%;
  height: calc(1em * var(--story-body-lh) * var(--story-body-lines));
  max-height: calc(1em * var(--story-body-lh) * var(--story-body-lines));
  overflow: hidden;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: var(--story-body-lh);
  text-align: left;
  color: rgba(34, 34, 34, 0.92);
  cursor: text;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.story-copy__body.is-reading {
  -webkit-mask-image: none;
  mask-image: none;
}

.story-copy__body-shift {
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-copy__body-read {
  color: rgba(34, 34, 34, 0.92);
}

.story-copy__body-rest {
  color: rgba(34, 34, 34, 0.28);
}

.story-copy__read-all {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--elem-moss);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.story-copy__read-all:hover,
.story-copy__read-all:focus-visible {
  opacity: 1;
  outline: none;
}

.story-copy__read-all[hidden] {
  display: none !important;
}

.product-info .story-copy {
  max-width: none;
  margin-top: 0;
}

.product-info .story-copy__title {
  font-size: clamp(24px, 2.4vw, 36px);
  margin-bottom: 14px;
}

.product-info .story-copy--tab .story-copy__body,
.product-tabs .story-copy__body {
  font-size: 14px;
  --story-body-lines: 5;
  height: calc(1em * var(--story-body-lh) * var(--story-body-lines));
  max-height: calc(1em * var(--story-body-lh) * var(--story-body-lines));
}

.story-read[hidden] {
  display: none !important;
}

.story-read {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
}

.story-read__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.42);
  backdrop-filter: blur(3px);
}

.story-read__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(78vh, 640px);
  overflow: auto;
  background: #f6f7f5;
  padding: 44px 28px 32px;
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.12);
}

.story-read__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: var(--elem-moss);
  cursor: pointer;
}

.story-read__eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.story-read__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .product-layout {
    flex-direction: column;
    min-height: 0;
  }

  .product-thumbs-rail {
    display: none;
  }

  .product-gallery {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x pan-y;
  }

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

  .product-gallery__slide {
    flex: 0 0 100%;
    flex-shrink: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .product-info-col {
    width: 100%;
  }

  .product-info-sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 0;
  }

  .product-info {
    max-width: none;
    max-height: none;
    overflow: visible;
    padding: 50px 20px;
  }
}

/* -- About / Povestea noastră -- */
.about-page {
  background: var(--elem-white);
  min-height: calc(100vh - var(--header-h));
}

.about-shell {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 40px;
  padding: 40px 50px 100px;
}

.about-nav {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  z-index: 2;
  flex: 0 0 auto;
  width: fit-content;
}

.about-nav__track {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}

.about-nav__btn {
  color: var(--text-main);
  width: fit-content;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 12px;
  white-space: nowrap;
  text-align: left;
  background: none;
  border: 0;
  text-decoration: none;
}

.about-nav__btn.is-active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-panels {
  flex: 1 1 auto;
  width: 100%;
  max-width: 740px;
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.about-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.about-panel[hidden] {
  display: none !important;
}

.about-panel__title {
  width: 100%;
  color: var(--elem-black);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.about-panel__subtitle {
  margin: 1.25em 0 0.4em;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05rem;
}

.about-panel__subtitle:first-child {
  margin-top: 0;
}

.about-panel__media,
.about-panel__video {
  width: 100%;
  display: block;
}

.about-panel__video {
  height: auto;
  max-height: none;
  background: var(--blackground);
}

.about-panel__body {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05rem;
  color: var(--text-main);
}

.about-panel__body p + p {
  margin-top: 0.85em;
}

@media (max-width: 768px) {
  .about-shell {
    flex-direction: column;
    gap: 30px;
    padding: 0 0 70px;
  }

  .about-nav {
    top: var(--header-h);
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 16px 0;
  }

  .about-nav__track {
    flex-direction: row;
    overflow-x: auto;
    gap: 7px;
    padding: 0 30px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .about-nav__track::-webkit-scrollbar {
    display: none;
  }

  .about-nav__btn {
    scroll-snap-align: start;
  }

  .about-panels {
    padding: 0 30px;
    max-width: none;
  }
}


/* --- Checkout (inside bag slider) --- */
.checkout-page {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--background-crem);
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
  container-type: inline-size;
  container-name: checkout-page;
}

.checkout-banner {
  display: none;
}

.checkout-shell {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: stretch;
  gap: 1px;
  background: var(--elem-border);
  padding: 0;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

.checkout-form {
  flex: 1 1 50%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  gap: 14px;
  padding: 16px;
  background: var(--background-crem);
  overflow: hidden;
  min-height: 0;
  box-sizing: border-box;
  container-type: inline-size;
  container-name: checkout-form;
}

.checkout-form > * {
  max-width: none;
  width: 100%;
  align-self: stretch;
  box-sizing: border-box;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 0 8px;
  width: 100%;
  max-width: none;
  flex: 0 0 auto;
}

.checkout-steps__tab {
  min-width: 0;
  min-height: 45px;
  padding: 8px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
  color: var(--elems-grey-1);
  background: transparent;
  border: 1px solid var(--elem-border);
  border-radius: 5px;
  cursor: pointer;
}

.checkout-steps__tab:hover {
  border-color: var(--elems-grey-1);
}

.checkout-steps__tab.is-active {
  color: #fff;
  background: var(--elem-black);
  border-color: var(--elem-black);
}

.checkout-steps__tab.is-done:not(.is-active) {
  border-color: var(--elem-moss);
  color: var(--elem-forest);
}

.checkout-steps__tab--optional {
  font-weight: 500;
  opacity: 0.9;
}

.checkout-step {
  display: none;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: none;
}

.checkout-step.is-active {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.checkout-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  align-self: stretch;
  justify-content: stretch;
  gap: 10px;
  flex: 0 0 auto;
  margin-top: 0;
  padding: 10px 8px 4px;
  width: 100%;
  max-width: none;
  min-width: 0;
  box-sizing: border-box;
  background: var(--background-crem);
  z-index: 2;
}

#checkout-form .checkout-nav {
  width: 100%;
  max-width: none;
  min-width: 0;
  align-self: stretch;
  box-sizing: border-box;
}

.checkout-nav__btn {
  flex: 1 1 0;
  width: 100%;
  max-width: none;
  min-width: 0;
  height: 45px;
  min-height: 45px;
  max-height: 45px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-sizing: border-box;
}

.checkout-nav__btn--ghost {
  color: var(--text-main);
  background: transparent;
  border: 1px solid var(--elem-border);
}

.checkout-nav__btn--ghost:hover {
  border-color: var(--elem-black);
}

.checkout-nav__btn--primary {
  color: #fff;
  background: var(--elem-black);
  border: 1px solid #000;
}

.checkout-nav__btn--primary:hover {
  opacity: 0.92;
}

.checkout-nav .checkout-submit {
  flex: 1 1 0;
  width: 100%;
  max-width: none;
  min-width: 0;
  height: 45px;
  min-height: 45px;
  max-height: 45px;
  padding: 0 16px;
  margin: 0;
  border-width: 1px;
  box-sizing: border-box;
}

.checkout-nav [hidden] {
  display: none !important;
}

.checkout-summary {
  flex: 1 1 50%;
  width: 100%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  background: rgb(246, 242, 238);
  padding: 20px;
  position: relative;
  top: auto;
  height: auto;
  max-height: none;
  overflow: hidden;
  min-height: 0;
}

.checkout-summary__items,
.checkout-summary__totals,
.checkout-summary__empty {
  max-width: none;
  width: 100%;
}

.checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px 8px 20px 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.checkout-summary__totals {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgb(246, 242, 238);
  padding: 20px 0 0;
  margin-top: 0;
}

.checkout-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 8px;
}

.checkout-block[hidden] {
  display: none !important;
}

.checkout-block--terms {
  gap: 8px;
  background: var(--elem-white);
  box-shadow: 0 0 0 1px #dad2c999;
  border-radius: 10px;
  padding: 14px 16px;
  margin-inline: 8px;
  width: auto;
  max-width: none;
  align-self: stretch;
  box-sizing: border-box;
}

.checkout-block__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
  min-width: 0;
}

.checkout-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.checkout-row .checkout-field {
  flex: 1 1 0;
  min-width: 0;
}

.checkout-input,
.checkout-textarea,
.checkout-select {
  width: 100%;
  box-sizing: border-box;
  color: var(--text-main);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  background: var(--elem-white);
  box-shadow: 0 0 0 1px var(--elem-border);
  border: 0;
  border-radius: 5px;
  padding: 0 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.checkout-input:focus,
.checkout-textarea:focus,
.checkout-select:focus {
  box-shadow: 0 0 0 1px var(--elem-black);
}

.checkout-input,
.checkout-select {
  height: 45px;
  min-height: 45px;
  max-height: 45px;
  flex-shrink: 0;
}

.checkout-field > .checkout-input,
.checkout-field > .checkout-select,
.checkout-field > .checkout-textarea {
  width: 100%;
}

.checkout-select-wrap {
  position: relative;
}

.checkout-select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23222' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.checkout-textarea {
  resize: vertical;
  min-height: 80px;
  padding: 14px 16px;
  box-shadow: 0 0 0 1px rgb(218, 210, 201);
}

.checkout-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
  margin: 0;
  line-height: 1.3;
}

.checkout-label__hint {
  font-weight: 400;
  color: var(--elems-grey-1, #666);
  opacity: 0.85;
}

.checkout-hint {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-main);
  max-width: 52ch;
}

/* Gift moment - immersive editorial (Awwwards-calm) */
.checkout-step[data-checkout-step="gift"].is-active {
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
}

.checkout-gift-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transition: gap 0.35s ease;
}

.checkout-gift-card__stage {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  width: 100%;
  min-height: clamp(400px, 62vh, 580px);
  overflow: hidden;
  border-radius: 2px;
  background: #1c1812;
  animation: checkout-gift-stage-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: min-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Cadou ales: scena se strânge pe text; inputs apar dedesubt */
.checkout-gift-card.is-open .checkout-gift-card__stage {
  min-height: 0;
  height: auto;
  box-shadow: 0 0 0 1px rgba(83, 95, 55, 0.28);
}

.checkout-gift-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.checkout-gift-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 38%;
  transform: scale(1.12);
  filter: contrast(1.04) saturate(1.05);
  animation: checkout-gift-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.checkout-gift-card.is-open .checkout-gift-card__media img {
  animation: none;
  transform: scale(1.06);
  object-position: 50% 32%;
}

.checkout-gift-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(95% 75% at 72% 30%, transparent 28%, rgba(16, 12, 8, 0.14) 100%),
    linear-gradient(90deg, rgba(16, 12, 8, 0.18) 0%, rgba(16, 12, 8, 0.04) 55%, rgba(16, 12, 8, 0.1) 100%),
    linear-gradient(180deg, rgba(16, 12, 8, 0.04) 0%, transparent 45%, rgba(16, 12, 8, 0.42) 100%);
  transition: background 0.35s ease;
}

.checkout-gift-card.is-open .checkout-gift-card__veil {
  background:
    linear-gradient(90deg, rgba(16, 12, 8, 0.22) 0%, rgba(16, 12, 8, 0.1) 60%, rgba(16, 12, 8, 0.14) 100%),
    linear-gradient(180deg, rgba(16, 12, 8, 0.12) 0%, rgba(16, 12, 8, 0.28) 100%);
}

.checkout-gift-card__head {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 3.5vw, 36px) clamp(18px, 3vw, 28px) clamp(24px, 3.5vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 40rem;
  animation: checkout-gift-copy-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  transition: padding 0.35s ease;
}

.checkout-gift-card.is-open .checkout-gift-card__head {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: clamp(20px, 2.8vw, 28px) clamp(18px, 3vw, 28px);
}

.checkout-gift-card.is-open .checkout-gift-card__title {
  font-size: clamp(22px, 3vw, 30px);
}

.checkout-gift-card.is-open .checkout-gift-card__lead {
  max-width: 42ch;
}

.checkout-gift-card--step {
  min-height: 0;
  justify-content: flex-start;
  flex: 1 1 auto;
}

.checkout-gift-card.is-open {
  box-shadow: none;
}

.checkout-gift-card > .checkout-gift {
  padding: 4px 2px 20px;
  margin: 0;
  gap: 12px;
  animation: checkout-gift-reveal 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes checkout-gift-stage-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes checkout-gift-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes checkout-gift-drift {
  from {
    transform: scale(1.1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes checkout-gift-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-2px);
  }
  70% {
    transform: translateY(1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-gift-card__media img,
  .checkout-gift-card__stage,
  .checkout-gift-card__head {
    animation: none;
  }

  .checkout-gift-card__media img {
    transform: scale(1.06);
  }
}

.checkout-gift-card__lead--soft {
  margin-top: 8px;
  color: var(--elems-grey-1);
  opacity: 0.9;
}

.checkout-gift-card__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252, 250, 247, 0.78);
}

.checkout-gift-card__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}

.checkout-gift-card__lead {
  margin: 0;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.55;
  color: rgba(252, 250, 247, 0.88);
  max-width: 38ch;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.checkout-gift-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.checkout-gift-choice {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  max-width: none;
}

.checkout-gift-choice[hidden] {
  display: none !important;
}

.checkout-gift-choice .checkout-nav__btn {
  flex: 1 1 0;
  width: 100%;
  max-width: none;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.checkout-gift-choice [data-gift-choice="no"][hidden] {
  display: none !important;
}

.checkout-gift-card.is-need-choice .checkout-gift-choice .checkout-nav__btn {
  animation: checkout-gift-nudge 0.45s ease;
}

.checkout-nav:has(.checkout-gift-choice:not([hidden])) {
  align-items: stretch;
  justify-content: stretch;
  padding-left: 0;
  padding-right: 0;
}

.checkout-gift-card__dedication .checkout-textarea {
  min-height: 96px;
  border-color: transparent;
  background: var(--elem-white);
  box-shadow: 0 0 0 1px rgba(218, 210, 201, 0.9);
}

.checkout-gift-card__dedication .checkout-textarea:focus {
  box-shadow: 0 0 0 1px var(--elem-forest);
}

@keyframes checkout-gift-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .checkout-gift-card__stage {
    min-height: clamp(340px, 55vh, 480px);
  }

  .checkout-gift-card.is-open .checkout-gift-card__stage {
    min-height: 0;
    height: auto;
  }
}

.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-main);
  user-select: none;
}

.checkout-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-check__box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid var(--elem-forest);
  border-radius: 3px;
  background: var(--elem-white);
  position: relative;
}

.checkout-check input:checked + .checkout-check__box,
.checkout-pay__option input:checked + .checkout-check__box {
  background: var(--elem-black);
  border-color: var(--elem-black);
}

.checkout-check input:checked + .checkout-check__box::after,
.checkout-pay__option input:checked + .checkout-check__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.checkout-gift,
.checkout-company {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  margin-top: 8px;
}

.checkout-gift[hidden],
.checkout-company[hidden],
#checkout-billing-address[hidden] {
  display: none !important;
}

.checkout-company:not([hidden]) {
  display: flex !important;
}

.checkout-pay {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.checkout-pay__option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 80px;
  padding: 14px 16px;
  background: var(--elem-white);
  box-shadow: 0 0 0 1px #dad2c999;
  border-radius: 10px;
  cursor: pointer;
}

.checkout-pay__option:has(input:checked) {
  box-shadow: 0 0 0 1px var(--elem-black);
}

.checkout-pay__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-pay__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding-top: 0;
}

.checkout-pay__text strong {
  font-size: 14px;
  font-weight: 600;
}

.checkout-pay__text small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-main);
}

.checkout-pay__fee {
  display: block;
  margin-top: 2px;
}

.checkout-submit-wrap {
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  padding: 4px 0 8px;
}

.checkout-submit {
  width: 100%;
  height: 45px;
  min-height: 45px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  background: var(--elem-black);
  border: 1px solid #000;
  border-radius: 5px;
  padding: 0 20px;
  margin: 0;
  max-width: none;
}

.checkout-submit:hover {
  opacity: 0.92;
}

.checkout-submit:disabled,
.checkout-submit.is-loading {
  opacity: 0.6;
  cursor: wait;
}

.checkout-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.checkout-line__media {
  position: relative;
  flex: 0 0 auto;
}

.checkout-line__img {
  width: 70px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 5px;
  background: #eee;
}

.checkout-line__qty {
  position: absolute;
  top: -5px;
  right: -5px;
  color: #fff;
  font-size: 12px;
  background: #343232cc;
  padding: 2px 9px;
  border-radius: 100px;
  line-height: 1.3;
}

.checkout-line__meta {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 7px 50px;
  padding: 10px 0;
}

.checkout-line__name {
  font-size: 14px;
  font-weight: 400;
  max-width: 300px;
}

.checkout-line__size {
  font-size: 12px;
  color: var(--elems-grey-1);
  width: 100%;
}

.checkout-line__price {
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}

.checkout-summary__title {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}

.checkout-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}

.checkout-summary__row span:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: baseline;
}

.checkout-summary__row em {
  font-style: normal;
  font-weight: 600;
}

.checkout-summary__row .muted {
  font-size: 12px;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 16px;
  font-weight: 700;
  padding-top: 4px;
}

.checkout-summary__shipping.is-pending {
  font-style: italic;
  opacity: 0.75;
}

.checkout-summary__shipping.is-error {
  color: #a33;
  font-size: 11px;
  line-height: 1.35;
  max-width: 220px;
  text-align: right;
}

.checkout-summary__compact {
  display: none;
}

.checkout-summary__count {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
}

.checkout-summary__view {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-summary__view:hover,
.checkout-summary__view:focus-visible {
  opacity: 0.65;
  outline: none;
}

.checkout-summary__currency {
  display: block;
  width: 100%;
  text-align: right;
  font-size: 12px;
  color: var(--text-main);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  padding: 12px 0 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-summary__currency:hover,
.checkout-summary__currency:focus-visible {
  opacity: 0.75;
}

/* Currency picker */
.currency-picker {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.currency-picker[hidden] {
  display: none !important;
}

.currency-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.currency-picker__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  background: var(--bg-main, #fff);
  color: var(--text-main);
  padding: 28px 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.currency-picker__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}

.currency-picker__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.currency-picker__hint {
  font-size: 13px;
  color: var(--elems-grey-1, #666);
  margin: 0 0 18px;
  line-height: 1.45;
}

.currency-picker__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.currency-picker__option {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--elems-grey-3, #ddd);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.currency-picker__option:hover,
.currency-picker__option:focus-visible {
  border-color: var(--text-main);
}

.currency-picker__option.is-active {
  border-color: var(--text-main);
  font-weight: 700;
  background: rgba(0, 0, 0, 0.03);
}

.checkout-summary__empty {
  padding: 40px 20px;
  font-size: 14px;
  color: var(--elems-grey-1);
}

.checkout-summary__empty a {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .checkout-shell {
    flex-direction: column;
    overflow: hidden;
  }

  .checkout-form {
    flex: 1 1 auto;
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    align-self: stretch;
    overflow: hidden;
    padding-bottom: 0;
  }

  .checkout-pay__option {
    min-height: 104px;
  }

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

  /* iOS Safari zooms focused fields under 16px. Keep 14px desktop type; bump on small viewports. */
  .checkout-input,
  .checkout-textarea,
  .checkout-select,
  #bag-panel input[type="text"],
  #bag-panel input[type="email"],
  #bag-panel input[type="tel"],
  #bag-panel input[type="search"],
  #bag-panel input[type="number"],
  #bag-panel input:not([type]),
  #bag-panel textarea,
  #bag-panel select {
    font-size: 16px;
  }

  .checkout-steps__tab {
    font-size: 11px;
    padding: 6px 4px;
  }

  .checkout-summary {
    flex: 0 0 auto;
    flex-basis: auto;
    flex-direction: column;
    overflow: visible;
    height: auto;
    max-height: none;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -1px 0 rgba(218, 210, 201, 0.8);
  }

  .checkout-summary__items,
  .checkout-summary__title,
  .checkout-summary__rows,
  .checkout-summary__currency {
    display: none;
  }

  .checkout-summary__compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .checkout-summary__totals {
    padding: 0;
    gap: 10px;
  }

  .checkout-submit-wrap {
    position: sticky;
    bottom: 0;
    z-index: 6;
    max-width: none;
    width: auto;
    margin: 0 -16px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(
      to top,
      var(--background-crem) 65%,
      rgba(252, 250, 247, 0.92) 85%,
      rgba(252, 250, 247, 0)
    );
  }

  /* Footer real sub conținut - nu mai plutește peste inputs */
  #checkout-form .checkout-nav,
  .checkout-nav {
    position: relative;
    bottom: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: stretch;
    /* width:auto + stretch + negative margin fills the form padding box, not a 100% shrink-wrap */
    width: auto;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 -16px;
    padding: 10px 16px;
    background: var(--background-crem);
    box-shadow: 0 -1px 0 rgba(218, 210, 201, 0.8);
  }

  #checkout-form .checkout-gift-choice,
  .checkout-gift-choice {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  #checkout-form .checkout-nav > .checkout-nav__btn,
  #checkout-form .checkout-nav > .checkout-submit,
  #checkout-form .checkout-gift-choice .checkout-nav__btn,
  .checkout-nav > .checkout-nav__btn,
  .checkout-nav > .checkout-submit,
  .checkout-gift-choice .checkout-nav__btn {
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
  }

  #checkout-form .checkout-nav:has(.checkout-gift-choice:not([hidden])),
  .checkout-nav:has(.checkout-gift-choice:not([hidden])) {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/*
  Viewport media queries miss the bag drawer when the window is >1000px but the
  form column is ~600px (50% of .checkout-shell). Stack from the form's own width.
*/
@container checkout-form (max-width: 1000px) {
  #checkout-form .checkout-nav,
  .checkout-nav {
    position: relative;
    bottom: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: stretch;
    width: auto;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 -16px;
    padding: 10px 16px;
    background: var(--background-crem);
    box-shadow: 0 -1px 0 rgba(218, 210, 201, 0.8);
  }

  #checkout-form .checkout-gift-choice,
  .checkout-gift-choice {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  #checkout-form .checkout-nav > .checkout-nav__btn,
  #checkout-form .checkout-nav > .checkout-submit,
  #checkout-form .checkout-gift-choice .checkout-nav__btn,
  .checkout-nav > .checkout-nav__btn,
  .checkout-nav > .checkout-submit,
  .checkout-gift-choice .checkout-nav__btn {
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
  }

  #checkout-form .checkout-nav:has(.checkout-gift-choice:not([hidden])),
  .checkout-nav:has(.checkout-gift-choice:not([hidden])) {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@container checkout-page (max-width: 1000px) {
  .checkout-shell {
    flex-direction: column;
    overflow: hidden;
  }

  .checkout-form,
  #checkout-form {
    flex: 1 1 auto;
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
    overflow: hidden;
    padding-bottom: 0;
  }
}

@media (max-width: 600px) {

  .checkout-line__meta {
    column-gap: 12px;
  }
}

/* -- Toast notifications (top-right stack) -- */
.toast-host {
  position: fixed;
  top: max(16px, env(safe-area-inset-top, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  position: relative;
  display: grid;
  grid-template-columns: 4px 1fr auto;
  align-items: start;
  gap: 0 12px;
  width: 100%;
  padding: 14px 12px 14px 0;
  background: var(--elem-white);
  color: var(--text-main);
  border: 1px solid var(--elem-border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(44, 51, 30, 0.12);
  font-family: var(--font);
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.is-in {
  opacity: 1;
  transform: translateX(0);
}

.toast.is-leaving {
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
}

.toast__accent {
  grid-row: 1 / -1;
  align-self: stretch;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: var(--elem-moss);
}

.toast--success .toast__accent {
  background: var(--elem-moss);
}

.toast--error .toast__accent {
  background: #8b3a2f;
}

.toast--info .toast__accent {
  background: var(--elem-forest);
}

.toast--warning .toast__accent {
  background: #9a7b2f;
}

.toast__body {
  min-width: 0;
  padding-top: 1px;
}

.toast__title {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--elems-grey-1);
}

.toast__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-main);
  word-wrap: break-word;
}

.toast__close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: -4px -2px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--elems-grey-02);
  border-radius: 4px;
}

.toast__close:hover,
.toast__close:focus-visible {
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.04);
}

@media (prefers-reduced-motion: reduce) {
  .toast,
  .toast.is-in,
  .toast.is-leaving {
    transition: none;
    transform: none;
  }
}

/* -- Gift page (/gift.html) -- */
.gift-page {
  background: var(--elem-white);
  overflow-x: clip;
}

.gift-hero {
  position: relative;
  color: #f4f1e8;
  background: #1c1812;
  overflow: clip;
}

.gift-hero__stage {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template: 1fr / 1fr;
  isolation: isolate;
}

.gift-hero__media {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1c1812;
}

.gift-hero__media picture,
.gift-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.gift-hero__media img {
  object-fit: cover;
  object-position: 55% 45%;
  filter: contrast(1.03) saturate(1.04);
}

.gift-hero__veil {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(95% 80% at 70% 40%, transparent 20%, rgba(16, 12, 8, 0.45) 100%),
    linear-gradient(90deg, rgba(16, 12, 8, 0.72) 0%, rgba(16, 12, 8, 0.28) 48%, rgba(16, 12, 8, 0.35) 100%),
    linear-gradient(180deg, rgba(16, 12, 8, 0.22) 0%, transparent 38%, rgba(16, 12, 8, 0.8) 100%);
}

.gift-hero__grain {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.gift-hero__content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: min(100%, 560px);
  padding: clamp(48px, 10vh, 100px) var(--pad) clamp(44px, 8vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gift-hero__brand {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7f3ea;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.gift-hero__title {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.96;
  color: #f7f3ea;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.gift-hero__lead {
  margin: 0 0 28px;
  max-width: 28ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(244, 241, 232, 0.82);
}

.gift-hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0 5px;
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-decoration: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gift-hero__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gift-hero__cta:hover,
.gift-hero__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

.gift-hero__cta:hover::after,
.gift-hero__cta:focus-visible::after {
  transform: scaleX(1);
}

.gift-story,
.gift-emotions,
.gift-care,
.gift-close {
  padding: clamp(56px, 10vh, 110px) var(--pad);
}

.gift-story__inner,
.gift-emotions__inner,
.gift-care__inner,
.gift-close__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.gift-story {
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(83, 95, 55, 0.07), transparent 60%),
    var(--elem-white);
}

.gift-story__eyebrow,
.gift-care__eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.gift-story__title,
.gift-emotions__title,
.gift-care__title,
.gift-close__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--elem-forest);
}

.gift-emotions__title,
.gift-care__title,
.gift-close__title {
  margin-bottom: 22px;
}

.gift-story__whisper {
  margin: 0 0 22px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--elem-moss);
}

.gift-story__text,
.gift-emotions__lead,
.gift-emotions__text,
.gift-care__lead {
  margin: 0 0 1.1em;
  max-width: 44ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.gift-story__text:last-child,
.gift-emotions__text:last-child,
.gift-care__lead {
  margin-bottom: 0;
}

.gift-emotions {
  background: var(--blackground);
}

.gift-emotions__inner {
  width: min(100%, 1100px);
}

.gift-emotions__lead {
  margin-bottom: 1.25em;
  max-width: 44ch;
}

.gift-emotions__showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 36px);
  align-items: center;
  margin: 28px 0 32px;
  padding: 0;
  min-width: 0;
}

.gift-emotions__photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: rgba(44, 51, 30, 0.06);
  min-width: 0;
}

.gift-emotions__example-text {
  margin: 0;
  min-width: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.gift-emotions__example-text em {
  font-style: italic;
  color: var(--elem-forest);
}

.gift-emotions__text {
  max-width: 44ch;
}

.gift-care {
  background: var(--elem-white);
}

.gift-care__lead {
  margin-bottom: 36px;
}

.gift-care__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gift-care__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(44, 51, 30, 0.12);
}

.gift-care__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gift-care__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--elem-moss);
  padding-top: 4px;
}

.gift-care__heading {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--text-main);
}

.gift-care__copy a {
  color: var(--elem-moss);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gift-care__copy p {
  margin: 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.8);
}

.gift-occasions .gift-care__lead {
  max-width: 48ch;
}

.gift-close {
  background:
    radial-gradient(800px 380px at 90% 20%, rgba(44, 51, 30, 0.08), transparent 55%),
    var(--blackground);
  text-align: left;
}

.gift-close__text {
  margin: 0 0 28px;
  max-width: 38ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 0.82);
}

.gift-close__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--elem-forest);
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.gift-close__cta:hover,
.gift-close__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

/* -- Corporate (B2B gifts) -- */
.corporate-page {
  background: var(--elem-white);
  overflow-x: clip;
}

.page-corporate .gift-hero__cta--solid {
  min-height: 48px;
  padding: 0 24px;
  background: #f7f3ea;
  border: 1px solid #f7f3ea;
  color: var(--elem-forest);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.page-corporate .gift-hero__cta--solid::after {
  display: none;
}

.page-corporate .gift-hero__cta--solid:hover,
.page-corporate .gift-hero__cta--solid:focus-visible {
  background: transparent;
  color: #f7f3ea;
  border-color: rgba(247, 243, 234, 0.75);
  opacity: 1;
}

.corporate-audiences {
  padding: clamp(56px, 10vh, 110px) var(--pad);
  background:
    radial-gradient(900px 420px at 92% 10%, rgba(83, 95, 55, 0.06), transparent 58%),
    var(--blackground);
}

.corporate-audiences__inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.corporate-audiences__lead {
  margin: 0 0 36px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.8);
}

.corporate-audiences__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.corporate-audiences__heading {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--elem-forest);
}

.corporate-audiences__item p {
  margin: 0;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.8);
}

.corporate-close__note {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.7);
}

.corporate-close__note a {
  color: var(--elem-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .corporate-audiences__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .corporate-audiences {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 1024px) {
  .gift-hero__stage {
    min-height: calc(100svh - var(--header-h));
  }

  .gift-hero__media img {
    object-position: 48% 42%;
  }

  .gift-hero__veil {
    background:
      radial-gradient(100% 85% at 60% 35%, transparent 15%, rgba(16, 12, 8, 0.5) 100%),
      linear-gradient(90deg, rgba(16, 12, 8, 0.78) 0%, rgba(16, 12, 8, 0.35) 55%, rgba(16, 12, 8, 0.4) 100%),
      linear-gradient(180deg, rgba(16, 12, 8, 0.18) 0%, transparent 32%, rgba(16, 12, 8, 0.82) 100%);
  }

  .gift-hero__content {
    width: min(100%, 520px);
    padding: clamp(40px, 7vh, 72px) clamp(28px, 4vw, 40px) clamp(36px, 6vh, 56px);
  }

  .gift-story,
  .gift-emotions,
  .gift-care,
  .gift-close {
    padding: clamp(52px, 8vh, 80px) clamp(28px, 4vw, 40px);
  }

  .gift-emotions__inner {
    width: min(100%, 920px);
  }

  .gift-emotions__showcase {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr) minmax(0, 0.95fr);
    gap: 18px;
  }

  .gift-emotions__example-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .gift-hero__stage {
    min-height: min(100svh - var(--header-h), 640px);
  }

  .gift-hero__media img {
    object-position: 42% 38%;
  }

  .gift-hero__veil {
    background:
      linear-gradient(180deg, rgba(16, 12, 8, 0.25) 0%, rgba(16, 12, 8, 0.15) 35%, rgba(16, 12, 8, 0.88) 100%),
      linear-gradient(90deg, rgba(16, 12, 8, 0.55) 0%, rgba(16, 12, 8, 0.2) 100%);
  }

  .gift-hero__content {
    width: 100%;
    max-width: none;
    padding: 28px var(--pad-m) calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .gift-hero__brand {
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: 0.14em;
  }

  .gift-hero__title {
    margin-bottom: 12px;
    font-size: clamp(34px, 11vw, 48px);
  }

  .gift-hero__lead {
    margin-bottom: 22px;
    max-width: 28ch;
    font-size: 15px;
  }

  .gift-story,
  .gift-emotions,
  .gift-care,
  .gift-close {
    padding: 44px var(--pad-m) calc(44px + env(safe-area-inset-bottom, 0px) * 0.25);
  }

  .gift-story__title,
  .gift-emotions__title,
  .gift-care__title,
  .gift-close__title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .gift-story__whisper {
    font-size: clamp(22px, 6vw, 28px);
  }

  .gift-story__text,
  .gift-emotions__lead,
  .gift-emotions__text,
  .gift-care__lead,
  .gift-care__copy p,
  .gift-emotions__example-text,
  .gift-close__text {
    max-width: none;
    font-size: 15px;
  }

  .gift-emotions__inner {
    width: 100%;
  }

  .gift-emotions__showcase {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 22px 0 28px;
  }

  .gift-emotions__example-text {
    grid-column: 1 / -1;
    order: -1;
    margin-bottom: 4px;
  }

  .gift-emotions__photo {
    aspect-ratio: 3 / 4;
    border-radius: 0;
  }

  .gift-care__item {
    gap: 10px 12px;
    padding-bottom: 20px;
  }

  .gift-care__num {
    padding-top: 2px;
  }

  .gift-close__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gift-hero__stage {
    min-height: min(92svh - var(--header-h), 560px);
  }

  .gift-emotions__showcase {
    gap: 10px;
  }

  .gift-emotions__photo {
    aspect-ratio: 3 / 4;
  }

  .gift-story,
  .gift-emotions,
  .gift-care,
  .gift-close {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 1024px) and (orientation: landscape) and (max-height: 520px) {
  .gift-hero__stage {
    min-height: auto;
  }

  .gift-hero__content {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .gift-hero__title {
    font-size: clamp(28px, 6vw, 40px);
  }
}

/* -- Responsibility page (/responsabilitate.html) -- */
.resp-page {
  background: var(--elem-white);
  overflow-x: clip;
}

.resp-hero {
  position: relative;
  color: #f4f1e8;
  background: #1a1c14;
  overflow: clip;
}

.resp-hero__stage {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template: 1fr / 1fr;
  isolation: isolate;
}

.resp-hero__media {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a1c14;
}

.resp-hero__media picture,
.resp-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.resp-hero__media img {
  object-fit: cover;
  object-position: 50% 42%;
  filter: contrast(1.02) saturate(0.96);
  animation: resp-hero-drift 28s ease-in-out infinite alternate;
}

@keyframes resp-hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, 0.8%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .resp-hero__media img {
    animation: none;
  }
}

.resp-hero__veil {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(90% 75% at 62% 38%, transparent 18%, rgba(20, 24, 14, 0.55) 100%),
    linear-gradient(90deg, rgba(20, 24, 14, 0.78) 0%, rgba(20, 24, 14, 0.28) 55%, rgba(20, 24, 14, 0.4) 100%),
    linear-gradient(180deg, rgba(20, 24, 14, 0.2) 0%, transparent 36%, rgba(20, 24, 14, 0.86) 100%);
}

.resp-hero__grain {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.resp-hero__content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: min(100%, 560px);
  min-width: 0;
  max-width: 100%;
  padding: clamp(48px, 10vh, 100px) var(--pad) clamp(44px, 8vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: resp-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes resp-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.resp-hero__brand {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7f3ea;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.resp-hero__title {
  margin: 0 0 16px;
  max-width: 100%;
  font-size: clamp(32px, 5.4vw, 68px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.98;
  color: #f7f3ea;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.resp-hero__lead {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(244, 241, 232, 0.84);
}

.resp-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.resp-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--elem-forest);
}

.resp-whisper {
  margin: 0 0 20px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--elem-moss);
}

.resp-text {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.resp-intro,
.resp-material,
.resp-credo,
.resp-care,
.resp-close {
  padding: clamp(56px, 10vh, 110px) var(--pad);
}

.resp-intro__inner,
.resp-material__inner,
.resp-credo__inner,
.resp-care__inner,
.resp-close__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.resp-intro {
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(83, 95, 55, 0.08), transparent 60%),
    var(--elem-white);
}

.resp-origin {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 7vh, 80px) var(--pad);
  background: var(--blackground);
}

.resp-origin__visual {
  min-width: 0;
  overflow: hidden;
  background: rgba(44, 51, 30, 0.08);
}

.resp-origin__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  object-position: 50% 40%;
}

.resp-origin__copy {
  min-width: 0;
  padding-right: clamp(0px, 2vw, 24px);
}

.resp-material {
  background: var(--elem-white);
}

.resp-credo {
  background:
    radial-gradient(780px 360px at 90% 10%, rgba(44, 51, 30, 0.09), transparent 55%),
    var(--blackground);
  text-align: left;
}

.resp-credo__quote {
  margin: 0 0 22px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--elem-forest);
}

.resp-care {
  background: var(--elem-white);
}

.resp-care__lead {
  margin-bottom: 36px;
}

.resp-pillars {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.resp-pillars__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(44, 51, 30, 0.12);
}

.resp-pillars__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.resp-pillars__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--elem-moss);
  padding-top: 4px;
}

.resp-pillars__heading {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--text-main);
}

.resp-pillars__item p {
  margin: 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.8);
}

.resp-close {
  background:
    radial-gradient(800px 380px at 12% 20%, rgba(83, 95, 55, 0.08), transparent 55%),
    var(--blackground);
}

.resp-close__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 28px;
}

.resp-close__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--elem-forest);
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.resp-close__cta:hover,
.resp-close__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

.resp-close__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--elem-forest);
  text-decoration: none;
}

.resp-close__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.resp-close__link:hover::after,
.resp-close__link:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .resp-hero__stage {
    min-height: calc(100svh - var(--header-h));
  }

  .resp-hero__media img {
    object-position: 48% 40%;
  }

  .resp-hero__content {
    width: min(100%, 520px);
    padding: clamp(40px, 7vh, 72px) clamp(28px, 4vw, 40px) clamp(36px, 6vh, 56px);
  }

  .resp-intro,
  .resp-material,
  .resp-credo,
  .resp-care,
  .resp-close,
  .resp-origin {
    padding-left: clamp(28px, 4vw, 40px);
    padding-right: clamp(28px, 4vw, 40px);
  }

  .resp-origin {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .resp-origin__visual img {
    min-height: 360px;
    max-height: 480px;
  }
}

@media (max-width: 768px) {
  .resp-hero__stage {
    min-height: min(100svh - var(--header-h), 640px);
  }

  .resp-hero__media img {
    object-position: 42% 38%;
    animation: none;
  }

  .resp-hero__veil {
    background:
      linear-gradient(180deg, rgba(20, 24, 14, 0.22) 0%, rgba(20, 24, 14, 0.12) 35%, rgba(20, 24, 14, 0.9) 100%),
      linear-gradient(90deg, rgba(20, 24, 14, 0.55) 0%, rgba(20, 24, 14, 0.2) 100%);
  }

  .resp-hero__content {
    width: 100%;
    max-width: none;
    padding: 28px var(--pad-m) calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .resp-hero__brand {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .resp-hero__title {
    margin-bottom: 12px;
    font-size: clamp(22px, calc((100vw - 40px) / 10.6), 40px);
    letter-spacing: 0.01em;
  }

  .resp-hero__lead {
    font-size: 15px;
  }

  .resp-intro,
  .resp-material,
  .resp-credo,
  .resp-care,
  .resp-close,
  .resp-origin {
    padding: 44px var(--pad-m);
  }

  .resp-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .resp-text,
  .resp-pillars__item p {
    max-width: none;
    font-size: 15px;
  }

  .resp-origin__visual img {
    min-height: 280px;
    max-height: 380px;
  }

  .resp-pillars__item {
    gap: 10px 12px;
    padding-bottom: 20px;
  }

  .resp-close__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .resp-hero__stage {
    min-height: min(92svh - var(--header-h), 560px);
  }

  .resp-intro,
  .resp-material,
  .resp-credo,
  .resp-care,
  .resp-close,
  .resp-origin {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .resp-credo__quote {
    font-size: clamp(30px, 10vw, 40px);
  }
}

@media (max-width: 1024px) and (orientation: landscape) and (max-height: 520px) {
  .resp-hero__stage {
    min-height: auto;
  }

  .resp-hero__content {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .resp-hero__title {
    font-size: clamp(28px, 6vw, 40px);
  }
}

/* -- Why silk page (/de-ce-matase.html) -- */
.silk-page {
  background: var(--elem-white);
  overflow-x: clip;
}

.silk-hero {
  position: relative;
  color: #f7f3ea;
  background: #1f1a16;
  overflow: clip;
}

.silk-hero__stage {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template: 1fr / 1fr;
  isolation: isolate;
}

.silk-hero__media {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1f1a16;
}

.silk-hero__media picture,
.silk-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.silk-hero__media img {
  object-fit: cover;
  object-position: 55% 40%;
  filter: contrast(1.03) saturate(1.02);
  animation: silk-hero-glow 26s ease-in-out infinite alternate;
}

@keyframes silk-hero-glow {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(1%, -0.6%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .silk-hero__media img {
    animation: none;
  }
}

.silk-hero__veil {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(95% 80% at 68% 36%, transparent 16%, rgba(28, 22, 16, 0.52) 100%),
    linear-gradient(95deg, rgba(28, 22, 16, 0.8) 0%, rgba(28, 22, 16, 0.3) 52%, rgba(28, 22, 16, 0.42) 100%),
    linear-gradient(180deg, rgba(28, 22, 16, 0.18) 0%, transparent 34%, rgba(28, 22, 16, 0.88) 100%);
}

.silk-hero__grain {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.silk-hero__content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: min(100%, 560px);
  padding: clamp(48px, 10vh, 100px) var(--pad) clamp(44px, 8vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: silk-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes silk-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.silk-hero__brand {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7f3ea;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.silk-hero__title {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.96;
  color: #f7f3ea;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.silk-hero__lead {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.84);
}

.silk-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.silk-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--elem-forest);
}

.silk-whisper {
  margin: 0 0 20px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--elem-moss);
}

.silk-text {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.silk-text a,
.silk-pillars__item a,
.care-text a {
  color: var(--elem-moss);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.silk-compare__lead {
  margin-bottom: 28px;
  max-width: 48ch;
}

.silk-intro,
.silk-benefits,
.silk-close {
  padding: clamp(56px, 10vh, 110px) var(--pad);
}

.silk-intro__inner,
.silk-benefits__inner,
.silk-close__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.silk-intro {
  background:
    radial-gradient(880px 400px at 92% 0%, rgba(83, 95, 55, 0.07), transparent 58%),
    var(--elem-white);
}

.silk-nature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 7vh, 80px) var(--pad);
  background: var(--blackground);
}

.silk-nature__copy {
  min-width: 0;
  order: 1;
}

.silk-nature__visual {
  min-width: 0;
  order: 2;
  overflow: hidden;
  background: rgba(44, 51, 30, 0.08);
}

.silk-nature__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  object-position: 48% 42%;
}

.silk-benefits {
  background: var(--elem-white);
}

.silk-pillars {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.silk-pillars__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(44, 51, 30, 0.12);
}

.silk-pillars__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.silk-pillars__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--elem-moss);
  padding-top: 4px;
}

.silk-pillars__heading {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--text-main);
}

.silk-pillars__item p {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.8);
}

.silk-close {
  background:
    radial-gradient(760px 360px at 85% 15%, rgba(44, 51, 30, 0.09), transparent 55%),
    var(--blackground);
}

.silk-close__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 28px;
}

.silk-close__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--elem-forest);
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.silk-close__cta:hover,
.silk-close__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

.silk-close__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--elem-forest);
  text-decoration: none;
}

.silk-close__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.silk-close__link:hover::after,
.silk-close__link:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .silk-hero__content {
    width: min(100%, 520px);
    padding: clamp(40px, 7vh, 72px) clamp(28px, 4vw, 40px) clamp(36px, 6vh, 56px);
  }

  .silk-intro,
  .silk-benefits,
  .silk-close,
  .silk-nature {
    padding-left: clamp(28px, 4vw, 40px);
    padding-right: clamp(28px, 4vw, 40px);
  }

  .silk-nature {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .silk-nature__copy {
    order: 2;
  }

  .silk-nature__visual {
    order: 1;
  }

  .silk-nature__visual img {
    min-height: 360px;
    max-height: 480px;
  }
}

@media (max-width: 768px) {
  .silk-hero__stage {
    min-height: min(100svh - var(--header-h), 640px);
  }

  .silk-hero__media img {
    object-position: 45% 38%;
    animation: none;
  }

  .silk-hero__veil {
    background:
      linear-gradient(180deg, rgba(28, 22, 16, 0.22) 0%, rgba(28, 22, 16, 0.12) 35%, rgba(28, 22, 16, 0.9) 100%),
      linear-gradient(90deg, rgba(28, 22, 16, 0.55) 0%, rgba(28, 22, 16, 0.22) 100%);
  }

  .silk-hero__content {
    width: 100%;
    max-width: none;
    padding: 28px var(--pad-m) calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .silk-hero__brand {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .silk-hero__title {
    margin-bottom: 12px;
    font-size: clamp(36px, 12vw, 52px);
  }

  .silk-intro,
  .silk-benefits,
  .silk-close,
  .silk-nature {
    padding: 44px var(--pad-m);
  }

  .silk-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .silk-text,
  .silk-pillars__item p {
    max-width: none;
    font-size: 15px;
  }

  .silk-nature__visual img {
    min-height: 280px;
    max-height: 380px;
  }

  .silk-pillars__item {
    gap: 10px 12px;
    padding-bottom: 20px;
  }

  .silk-close__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .silk-hero__stage {
    min-height: min(92svh - var(--header-h), 560px);
  }

  .silk-intro,
  .silk-benefits,
  .silk-close,
  .silk-nature {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 1024px) and (orientation: landscape) and (max-height: 520px) {
  .silk-hero__stage {
    min-height: auto;
  }

  .silk-hero__content {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .silk-hero__title {
    font-size: clamp(28px, 6vw, 40px);
  }
}

/* -- Care guide page (/ghid-ingrijire.html) -- */
.care-page {
  background: var(--elem-white);
  overflow-x: clip;
}

.care-hero {
  position: relative;
  color: #f7f3ea;
  background: #18140f;
  overflow: clip;
}

.care-hero__stage {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template: 1fr / 1fr;
  isolation: isolate;
}

.care-hero__media {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #18140f;
}

.care-hero__media picture,
.care-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.care-hero__media img {
  object-fit: cover;
  object-position: 52% 42%;
  filter: contrast(1.02) saturate(1.03);
  animation: care-hero-soft 24s ease-in-out infinite alternate;
}

@keyframes care-hero-soft {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-0.8%, 0.5%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .care-hero__media img {
    animation: none;
  }
}

.care-hero__veil {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(95% 80% at 65% 38%, transparent 18%, rgba(18, 14, 10, 0.5) 100%),
    linear-gradient(90deg, rgba(18, 14, 10, 0.78) 0%, rgba(18, 14, 10, 0.28) 55%, rgba(18, 14, 10, 0.4) 100%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.2) 0%, transparent 36%, rgba(18, 14, 10, 0.88) 100%);
}

.care-hero__grain {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.care-hero__content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: min(100%, 560px);
  padding: clamp(48px, 10vh, 100px) var(--pad) clamp(44px, 8vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: care-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes care-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.care-hero__brand {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7f3ea;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.care-hero__title {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.96;
  color: #f7f3ea;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.care-hero__lead {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.84);
}

.care-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.care-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--elem-forest);
}

.care-whisper {
  margin: 0 0 20px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--elem-moss);
}

.care-text {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.care-intro,
.care-clean,
.care-close {
  padding: clamp(56px, 10vh, 110px) var(--pad);
}

.care-intro__inner,
.care-clean__inner,
.care-close__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.care-intro {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(83, 95, 55, 0.07), transparent 60%),
    var(--elem-white);
}

.care-clean {
  background: var(--blackground);
}

.care-clean__lead {
  margin-bottom: 36px;
}

.care-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.care-steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(44, 51, 30, 0.12);
}

.care-steps__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.care-steps__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--elem-moss);
  padding-top: 4px;
}

.care-steps__heading {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--text-main);
}

.care-steps__item p {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.8);
}

.care-protect {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 7vh, 80px) var(--pad);
  background: var(--elem-white);
}

.care-protect__visual {
  min-width: 0;
  overflow: hidden;
  background: rgba(44, 51, 30, 0.08);
}

.care-protect__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  object-position: 50% 40%;
}

.care-protect__copy {
  min-width: 0;
}

.care-close {
  background:
    radial-gradient(780px 360px at 88% 12%, rgba(44, 51, 30, 0.09), transparent 55%),
    var(--blackground);
}

.care-close__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 28px;
}

.care-close__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--elem-forest);
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.care-close__cta:hover,
.care-close__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

.care-close__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--elem-forest);
  text-decoration: none;
}

.care-close__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.care-close__link:hover::after,
.care-close__link:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .care-hero__content {
    width: min(100%, 520px);
    padding: clamp(40px, 7vh, 72px) clamp(28px, 4vw, 40px) clamp(36px, 6vh, 56px);
  }

  .care-intro,
  .care-clean,
  .care-close,
  .care-protect {
    padding-left: clamp(28px, 4vw, 40px);
    padding-right: clamp(28px, 4vw, 40px);
  }

  .care-protect {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .care-protect__visual img {
    min-height: 360px;
    max-height: 480px;
  }
}

@media (max-width: 768px) {
  .care-hero__stage {
    min-height: min(100svh - var(--header-h), 640px);
  }

  .care-hero__media img {
    object-position: 42% 38%;
    animation: none;
  }

  .care-hero__veil {
    background:
      linear-gradient(180deg, rgba(18, 14, 10, 0.22) 0%, rgba(18, 14, 10, 0.12) 35%, rgba(18, 14, 10, 0.9) 100%),
      linear-gradient(90deg, rgba(18, 14, 10, 0.55) 0%, rgba(18, 14, 10, 0.22) 100%);
  }

  .care-hero__content {
    width: 100%;
    max-width: none;
    padding: 28px var(--pad-m) calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .care-hero__brand {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .care-hero__title {
    margin-bottom: 12px;
    font-size: clamp(36px, 12vw, 52px);
  }

  .care-intro,
  .care-clean,
  .care-close,
  .care-protect {
    padding: 44px var(--pad-m);
  }

  .care-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .care-text,
  .care-steps__item p {
    max-width: none;
    font-size: 15px;
  }

  .care-protect__visual img {
    min-height: 280px;
    max-height: 380px;
  }

  .care-steps__item {
    gap: 10px 12px;
    padding-bottom: 20px;
  }

  .care-close__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .care-hero__stage {
    min-height: min(92svh - var(--header-h), 560px);
  }

  .care-intro,
  .care-clean,
  .care-close,
  .care-protect {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 1024px) and (orientation: landscape) and (max-height: 520px) {
  .care-hero__stage {
    min-height: auto;
  }

  .care-hero__content {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .care-hero__title {
    font-size: clamp(28px, 6vw, 40px);
  }
}

/* -- Contact page (/contact.html) -- */
.contact-page {
  background: var(--elem-white);
  overflow-x: clip;
}

.contact-hero {
  position: relative;
  color: #f7f3ea;
  background: #16140f;
  overflow: clip;
}

.contact-hero__stage {
  position: relative;
  min-height: min(72svh - var(--header-h), 640px);
  display: grid;
  grid-template: 1fr / 1fr;
  isolation: isolate;
}

.contact-hero__media {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #16140f;
}

.contact-hero__media picture,
.contact-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-hero__media img {
  object-fit: cover;
  object-position: 48% 28%;
  filter: contrast(1.02) saturate(0.98);
}

.contact-hero__veil {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(90% 75% at 60% 30%, transparent 20%, rgba(16, 14, 10, 0.5) 100%),
    linear-gradient(90deg, rgba(16, 14, 10, 0.82) 0%, rgba(16, 14, 10, 0.32) 55%, rgba(16, 14, 10, 0.45) 100%),
    linear-gradient(180deg, rgba(16, 14, 10, 0.18) 0%, transparent 40%, rgba(16, 14, 10, 0.9) 100%);
}

.contact-hero__grain {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.contact-hero__content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: min(100%, 560px);
  padding: clamp(40px, 8vh, 80px) var(--pad) clamp(36px, 6vh, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: contact-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes contact-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.contact-hero__brand {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7f3ea;
}

.contact-hero__title {
  margin: 0 0 14px;
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.98;
  color: #f7f3ea;
}

.contact-hero__lead {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.84);
}

.contact-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.contact-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--elem-forest);
}

.contact-whisper {
  margin: 0 0 18px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--elem-moss);
}

.contact-text {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.contact-main,
.contact-help,
.contact-social {
  padding: clamp(56px, 9vh, 100px) var(--pad);
}

.contact-main__inner,
.contact-help__inner,
.contact-social__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.contact-main {
  background:
    radial-gradient(860px 400px at 8% 0%, rgba(83, 95, 55, 0.07), transparent 58%),
    var(--elem-white);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin: 18px 0 28px;
  padding: 0;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--elem-forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 51, 30, 0.35);
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  opacity: 0.82;
  border-color: var(--elem-forest);
  outline: none;
}

.contact-main__note {
  margin-bottom: 40px;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(44, 51, 30, 0.14);
}

.contact-facts__item {
  padding: 22px 18px 0 0;
  border-right: 1px solid rgba(44, 51, 30, 0.1);
}

.contact-facts__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.contact-facts__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.contact-facts__value {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-main);
}

.contact-facts__value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-help {
  background: var(--blackground);
}

.contact-help__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 28px;
}

.contact-help__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(44, 51, 30, 0.28);
  color: var(--elem-forest);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-help__link:hover,
.contact-help__link:focus-visible {
  background: var(--elem-forest);
  color: #f7f3ea;
  outline: none;
}

.contact-social {
  background: var(--elem-white);
}

.contact-social__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-social__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--elem-forest);
  text-decoration: none;
}

.contact-social__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-social__list a:hover::after,
.contact-social__list a:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .contact-hero__stage {
    min-height: min(68svh - var(--header-h), 560px);
  }

  .contact-hero__content,
  .contact-main,
  .contact-help,
  .contact-social {
    padding-left: clamp(28px, 4vw, 40px);
    padding-right: clamp(28px, 4vw, 40px);
  }
}

@media (max-width: 768px) {
  .contact-hero__stage {
    min-height: min(62svh - var(--header-h), 480px);
  }

  .contact-hero__media img {
    object-position: 42% 22%;
  }

  .contact-hero__veil {
    background:
      linear-gradient(180deg, rgba(16, 14, 10, 0.2) 0%, rgba(16, 14, 10, 0.12) 35%, rgba(16, 14, 10, 0.9) 100%),
      linear-gradient(90deg, rgba(16, 14, 10, 0.55) 0%, rgba(16, 14, 10, 0.22) 100%);
  }

  .contact-hero__content {
    width: 100%;
    padding: 28px var(--pad-m) calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .contact-hero__brand {
    font-size: 18px;
  }

  .contact-hero__title {
    font-size: clamp(36px, 12vw, 48px);
  }

  .contact-main,
  .contact-help,
  .contact-social {
    padding: 44px var(--pad-m);
  }

  .contact-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .contact-text {
    max-width: none;
    font-size: 15px;
  }

  .contact-email {
    font-size: clamp(20px, 6.5vw, 28px);
    min-height: 48px;
  }

  .contact-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-facts__item {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(44, 51, 30, 0.1);
  }

  .contact-facts__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .contact-help__link {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero__stage {
    min-height: min(56svh - var(--header-h), 420px);
  }

  .contact-main,
  .contact-help,
  .contact-social {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* -- Legal pages (terms / policies) -- */
.legal-page {
  background: var(--elem-white);
  overflow-x: clip;
  max-width: 100%;
}

.legal-top {
  padding: clamp(48px, 8vh, 88px) var(--pad) clamp(32px, 5vh, 48px);
  background:
    radial-gradient(900px 380px at 6% 0%, rgba(83, 95, 55, 0.08), transparent 58%),
    linear-gradient(180deg, var(--blackground) 0%, var(--elem-white) 100%);
  border-bottom: 1px solid rgba(44, 51, 30, 0.1);
}

.legal-top__inner {
  width: min(100%, 1100px);
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
}

.legal-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.legal-top__title {
  margin: 0 0 14px;
  max-width: 100%;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--elem-forest);
  overflow-wrap: break-word;
}

.legal-top__lead {
  margin: 0 0 28px;
  max-width: 52ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.84);
  overflow-wrap: anywhere;
}

.legal-hub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-hub__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(44, 51, 30, 0.2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--elem-forest);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.legal-hub__link:hover,
.legal-hub__link:focus-visible {
  border-color: var(--elem-forest);
  outline: none;
}

.legal-hub__link.is-active {
  background: var(--elem-forest);
  border-color: var(--elem-forest);
  color: #f7f3ea;
}

.legal-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  width: min(100%, 1100px);
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: clamp(40px, 7vh, 72px) var(--pad) clamp(64px, 10vh, 110px);
  align-items: start;
  box-sizing: border-box;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-width: 0;
  max-width: 100%;
}

.legal-toc__label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.legal-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc;
}

.legal-toc__list li {
  counter-increment: toc;
}

.legal-toc__list a {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.78);
  text-decoration: none;
  transition: color 0.25s ease;
}

.legal-toc__list a::before {
  content: counter(toc) ". ";
  color: var(--elem-moss);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.legal-toc__list a:hover,
.legal-toc__list a:focus-visible {
  color: var(--elem-forest);
  outline: none;
}

.legal-doc {
  min-width: 0;
  max-width: min(720px, 100%);
}

.legal-doc__intro {
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(44, 51, 30, 0.12);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.legal-doc__intro a,
.legal-article a,
.legal-doc__footer a {
  color: var(--elem-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-article {
  margin: 0 0 32px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.legal-article h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
  min-width: 0;
  max-width: 100%;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--elem-forest);
}

.legal-article h2 span {
  color: var(--elem-moss);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.legal-subhead {
  margin: 1.1em 0 0.45em;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.legal-subhead:first-of-type {
  margin-top: 0.35em;
}

.legal-countries {
  padding: 16px 18px;
  background: var(--blackground);
  border-left: 2px solid rgba(83, 95, 55, 0.45);
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.legal-article p {
  margin: 0 0 0.9em;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.legal-article p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0 0 0.9em;
  padding-left: 1.2em;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
  overflow-wrap: anywhere;
}

.legal-list li + li {
  margin-top: 0.35em;
}

.legal-doc__footer {
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(44, 51, 30, 0.12);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.84);
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .legal-top,
  .legal-shell {
    padding-left: clamp(28px, 4vw, 40px);
    padding-right: clamp(28px, 4vw, 40px);
  }

  .legal-shell {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .legal-top,
  .legal-shell {
    padding-left: var(--pad-m);
    padding-right: var(--pad-m);
  }

  .legal-top {
    padding-top: 40px;
    padding-bottom: 28px;
  }

  .legal-top__lead {
    max-width: none;
  }

  .legal-hub {
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    min-width: 0;
    margin: 0 calc(-1 * var(--pad-m));
    padding: 0 var(--pad-m) 4px;
    scrollbar-width: none;
  }

  .legal-hub::-webkit-scrollbar {
    display: none;
  }

  .legal-hub__link {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .legal-shell {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .legal-toc {
    position: static;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(44, 51, 30, 0.1);
    min-width: 0;
    max-width: 100%;
  }

  .legal-toc__list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
    max-width: 100%;
    min-width: 0;
    scrollbar-width: none;
  }

  .legal-toc__list::-webkit-scrollbar {
    display: none;
  }

  .legal-toc__list a {
    white-space: nowrap;
    font-size: 12px;
  }

  .legal-doc {
    max-width: 100%;
    min-width: 0;
  }
}

/* -- Story page immersive (/povestea-noastra.html) -- */
.page-story {
  --story-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--elem-white);
}

.page-story .site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 40;
}

.page-story .site-header .nav-link,
.page-story .site-header .bag-btn {
  color: #f7f3ea;
}

.page-story .site-header .logo img {
  filter: brightness(0) invert(1);
}

.page-story .site-header.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-story .site-header.is-scrolled.is-on-light .nav-link,
.page-story .site-header.is-scrolled.is-on-light .bag-btn {
  color: var(--text-main);
}

.page-story .site-header.is-scrolled.is-on-light .logo img {
  filter: none;
}

.story-page {
  overflow-x: clip;
}

.story-hero {
  position: relative;
  color: #f7f3ea;
  background: #12140f;
}

.story-hero__stage {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, min(56vw, calc(100svh * 9 / 16))) minmax(260px, 1fr);
  grid-template-rows: 1fr;
  isolation: isolate;
  overflow: clip;
}

.story-hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 55% at 18% 45%, rgba(83, 95, 55, 0.18), transparent 62%),
    radial-gradient(55% 50% at 88% 20%, rgba(247, 243, 234, 0.05), transparent 55%),
    linear-gradient(105deg, #0e100c 0%, #151811 48%, #1a1d16 100%);
}

.story-hero__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  align-self: stretch;
  padding: 0;
  min-width: 0;
  min-height: 0;
}

.story-hero__frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  line-height: 0;
  margin: 0;
  overflow: hidden;
  background: #0a0c09;
  animation: story-frame-in 1.35s var(--story-ease) both;
}

.story-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  background: #0a0c09;
  aspect-ratio: 9 / 16;
}

.story-hero__media-glow {
  position: absolute;
  inset: 12% 8% 18% 8%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(120, 130, 90, 0.22), transparent 68%);
  filter: blur(28px);
  opacity: 0.85;
}

.story-hero__bridge {
  position: absolute;
  top: 0;
  bottom: 0;
  left: min(56vw, calc(100svh * 9 / 16));
  z-index: 3;
  width: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: none;
}

.story-hero__seam {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(247, 243, 234, 0.18) 18%,
    rgba(247, 243, 234, 0.42) 50%,
    rgba(247, 243, 234, 0.18) 82%,
    transparent 100%
  );
  transform: translateX(-50%) scaleY(0);
  transform-origin: center;
  animation: story-seam 1.4s var(--story-ease) 0.35s both;
}

.story-hero__index {
  position: relative;
  z-index: 1;
  margin-top: 42vh;
  padding: 10px 0;
  background: #12140f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(247, 243, 234, 0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: story-rise 1.1s var(--story-ease) 0.55s both;
}

.story-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(88px, 14vh, 120px) clamp(36px, 5vw, 72px) clamp(48px, 8vh, 80px) clamp(28px, 3.5vw, 48px);
  animation: story-rise 1.15s var(--story-ease) 0.2s both;
}

.story-hero__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 120px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(18, 20, 15, 0) 0%, rgba(18, 20, 15, 0.35) 100%);
  opacity: 0.5;
}

@keyframes story-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes story-frame-in {
  from {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes story-seam {
  from {
    transform: translateX(-50%) scaleY(0);
  }
  to {
    transform: translateX(-50%) scaleY(1);
  }
}

.story-hero__brand {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f7f3ea;
}

.story-hero__title {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(40px, 5.8vw, 78px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.94;
  color: #f7f3ea;
}

.story-hero__whisper {
  margin: 0 0 18px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(247, 243, 234, 0.78);
}

.story-hero__lead {
  margin: 0 0 32px;
  max-width: 22ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.78);
}

.story-hero__scroll {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: #f7f3ea;
  border: 1px solid #f7f3ea;
  color: var(--elem-forest);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition:
    background 0.35s var(--story-ease),
    color 0.35s var(--story-ease),
    border-color 0.35s var(--story-ease),
    transform 0.35s var(--story-ease);
}

.story-hero__scroll::after {
  display: none;
}

.story-hero__scroll:hover,
.story-hero__scroll:focus-visible {
  background: transparent;
  color: #f7f3ea;
  border-color: rgba(247, 243, 234, 0.7);
  transform: translateY(-1px);
  outline: none;
}

.story-hero__controls {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.story-hero__ctrl {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(247, 243, 234, 0.35);
  color: #f7f3ea;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(12, 14, 10, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.story-hero__ctrl:hover,
.story-hero__ctrl:focus-visible,
.story-hero__ctrl[aria-pressed="true"] {
  background: rgba(12, 14, 10, 0.62);
  border-color: rgba(247, 243, 234, 0.7);
  outline: none;
}

.story-hero__frame:fullscreen,
.story-hero__frame:-webkit-full-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  background: #0a0c09;
  box-shadow: none;
  animation: none;
}

.story-hero__frame:fullscreen .story-hero__video,
.story-hero__frame:-webkit-full-screen .story-hero__video {
  width: auto !important;
  height: auto !important;
  max-width: 100vw;
  max-height: 100vh;
}

.story-hero__frame:fullscreen .story-hero__controls,
.story-hero__frame:-webkit-full-screen .story-hero__controls {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
}

.story-fs {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  background: rgba(8, 10, 7, 0.96);
}

.story-fs[hidden] {
  display: none !important;
}

.story-fs__stage {
  width: min(100%, 920px);
  height: min(100%, 92vh);
  display: grid;
  place-items: center;
}

.story-fs__stage .story-hero__video {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: min(92vh, 100%);
}

.story-fs__close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(247, 243, 234, 0.4);
  color: #f7f3ea;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(12, 14, 10, 0.45);
}

.story-fs__close:hover,
.story-fs__close:focus-visible {
  border-color: rgba(247, 243, 234, 0.8);
  outline: none;
}

.story-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.story-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--elem-forest);
}

.story-whisper {
  margin: 0 0 28px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--elem-moss);
}

.story-text {
  margin: 0 0 1.15em;
  max-width: 42ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: rgba(34, 34, 34, 0.88);
}

.story-text--lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--elem-forest);
}

.story-text--emphasis {
  margin-top: 1.6em;
  font-weight: 500;
  color: var(--elem-forest);
}

.story-intro,
.story-pillars,
.story-values,
.story-paths,
.story-close {
  padding: clamp(64px, 12vh, 128px) var(--pad);
}

.story-intro__inner,
.story-values__head,
.story-paths__inner,
.story-close__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.story-intro {
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(83, 95, 55, 0.08), transparent 58%),
    var(--elem-white);
}

.story-manifesto {
  position: relative;
  padding: clamp(80px, 16vh, 160px) var(--pad);
  background:
    radial-gradient(70% 60% at 12% 20%, rgba(247, 243, 234, 0.06), transparent 55%),
    radial-gradient(55% 50% at 90% 80%, rgba(83, 95, 55, 0.35), transparent 60%),
    var(--elem-forest);
  color: #f7f3ea;
  overflow: clip;
}

.story-manifesto__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.story-manifesto__eyebrow {
  margin: 0 0 clamp(36px, 6vh, 56px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.55);
}

.story-manifesto__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 7vh, 64px);
}

.story-manifesto__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: baseline;
  width: 100%;
}

.story-manifesto__item--end {
  grid-template-columns: minmax(0, 1fr) 64px;
  justify-items: end;
  text-align: right;
}

.story-manifesto__item--end .story-manifesto__num {
  order: 2;
  text-align: right;
}

.story-manifesto__item--end .story-manifesto__line {
  order: 1;
  width: auto;
  max-width: 100%;
  text-align: right;
}

.story-manifesto__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(247, 243, 234, 0.42);
}

.story-manifesto__line {
  margin: 0;
  width: 100%;
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #f7f3ea;
}

.story-manifesto__line em {
  font-style: normal;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: 1.12em;
  color: rgba(247, 243, 234, 0.92);
}

.story-pillars {
  background:
    radial-gradient(900px 420px at 90% 0%, rgba(83, 95, 55, 0.07), transparent 55%),
    var(--blackground);
}

.story-pillars__head {
  width: min(100%, 640px);
  margin: 0 auto clamp(40px, 7vh, 64px);
  text-align: left;
}

.story-pillars__lead {
  margin: 0;
  max-width: 38ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--elem-forest);
}

.story-pillars__grid {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.story-pillars__item {
  padding-top: 22px;
  border-top: 1px solid rgba(44, 51, 30, 0.16);
}

.story-pillars__label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.story-pillars__name {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--elem-forest);
}

.story-pillars__text {
  margin: 0;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.82);
}

.story-prose__inner {
  width: min(100%, 720px);
  margin: clamp(8px, 2vw, 20px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-prose__inner .story-text {
  max-width: none;
}

.story-values__head .story-close__cta {
  margin-top: 12px;
}

.story-values {
  background: var(--elem-white);
}

.story-values__list {
  width: min(100%, 900px);
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-values__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px 28px;
  padding: 32px 0;
  border-top: 1px solid rgba(44, 51, 30, 0.12);
}

.story-values__item:last-child {
  border-bottom: 1px solid rgba(44, 51, 30, 0.12);
}

.story-values__num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--elem-moss);
  padding-top: 6px;
}

.story-values__name {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--elem-forest);
}

.story-values__copy p {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.84);
}

.story-origin {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 9vh, 100px) var(--pad);
  background: var(--blackground);
}

.story-origin__visual {
  min-width: 0;
  overflow: hidden;
  background: rgba(44, 51, 30, 0.08);
}

.story-origin__visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 780px;
  object-fit: cover;
  object-position: 50% 20%;
}

.story-origin__copy {
  min-width: 0;
  padding-right: clamp(0px, 2vw, 24px);
}

.story-origin__copy .story-text {
  max-width: 40ch;
}

.story-paths {
  background: var(--elem-white);
}

.story-paths__list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.story-paths__link {
  display: grid;
  gap: 6px;
  padding: 26px 0;
  border-top: 1px solid rgba(44, 51, 30, 0.12);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.story-paths__list li:last-child .story-paths__link {
  border-bottom: 1px solid rgba(44, 51, 30, 0.12);
}

.story-paths__link:hover,
.story-paths__link:focus-visible {
  opacity: 0.72;
  outline: none;
}

.story-paths__label {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--elem-forest);
}

.story-paths__hint {
  font-size: 14px;
  color: rgba(34, 34, 34, 0.62);
}

.story-close {
  background:
    radial-gradient(780px 360px at 90% 10%, rgba(44, 51, 30, 0.09), transparent 55%),
    var(--blackground);
}

.story-close__cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  background: var(--elem-forest);
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.story-close__cta:hover,
.story-close__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

[data-story-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.9s var(--story-ease),
    transform 0.9s var(--story-ease);
}

[data-story-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story-manifesto__item[data-story-reveal] {
  transition-delay: 0.04s;
}

.story-manifesto__item[data-story-reveal]:nth-child(2) {
  transition-delay: 0.14s;
}

.story-manifesto__item[data-story-reveal]:nth-child(3) {
  transition-delay: 0.24s;
}

.story-pillars__item[data-story-reveal]:nth-child(1) {
  transition-delay: 0.06s;
}

.story-pillars__item[data-story-reveal]:nth-child(2) {
  transition-delay: 0.14s;
}

.story-pillars__item[data-story-reveal]:nth-child(3) {
  transition-delay: 0.22s;
}

.story-values__item[data-story-reveal]:nth-child(2) {
  transition-delay: 0.06s;
}

.story-values__item[data-story-reveal]:nth-child(3) {
  transition-delay: 0.12s;
}

.story-values__item[data-story-reveal]:nth-child(4) {
  transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .story-hero__content,
  .story-hero__frame,
  .story-hero__seam,
  .story-hero__index,
  [data-story-reveal] {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .story-hero__seam {
    transform: translateX(-50%) scaleY(1);
  }
}

@media (max-width: 1100px) {
  .story-hero__stage {
    grid-template-columns: minmax(0, min(52vw, calc(100svh * 9 / 16))) minmax(240px, 1fr);
  }

  .story-hero__bridge {
    left: min(52vw, calc(100svh * 9 / 16));
  }

  .story-hero__content {
    padding-left: clamp(24px, 3vw, 36px);
    padding-right: clamp(28px, 4vw, 44px);
  }

  .story-hero__title {
    font-size: clamp(36px, 5.4vw, 64px);
  }
}

@media (max-width: 1024px) {
  .story-pillars__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-pillars__item {
    padding: 28px 0;
    border-top: none;
    border-bottom: 1px solid rgba(44, 51, 30, 0.12);
  }

  .story-pillars__item:first-child {
    border-top: 1px solid rgba(44, 51, 30, 0.12);
  }

  .story-intro,
  .story-pillars,
  .story-values,
  .story-paths,
  .story-close,
  .story-manifesto,
  .story-origin {
    padding-left: clamp(28px, 4vw, 40px);
    padding-right: clamp(28px, 4vw, 40px);
  }

  .story-origin {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-origin__visual img {
    min-height: 420px;
    max-height: 560px;
  }
}

@media (max-width: 900px) {
  .story-hero__stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .story-hero__bridge {
    display: none;
  }

  .story-hero__media {
    padding: 0;
    min-height: 0;
  }

  .story-hero__frame {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .story-hero__video {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }

  .story-hero__content {
    justify-content: flex-start;
    padding: 28px var(--pad-m) calc(40px + env(safe-area-inset-bottom, 0px));
  }

  .story-hero__content::before {
    display: none;
  }

  .story-hero__brand {
    font-size: clamp(22px, 6vw, 28px);
  }

  .story-hero__title {
    font-size: clamp(36px, 11vw, 52px);
  }

  .story-hero__sound {
    right: 10px;
    bottom: 10px;
  }

  .story-intro,
  .story-pillars,
  .story-values,
  .story-paths,
  .story-close,
  .story-manifesto,
  .story-origin {
    padding: 52px var(--pad-m);
  }

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

  .story-text,
  .story-text--lead,
  .story-values__copy p,
  .story-origin__copy .story-text {
    max-width: none;
  }

  .story-manifesto__item {
    width: 100%;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .story-manifesto__item--end {
    grid-template-columns: minmax(0, 1fr) 40px;
    justify-items: end;
    text-align: right;
  }

  .story-manifesto__item--end .story-manifesto__num {
    order: 2;
    text-align: right;
  }

  .story-manifesto__item--end .story-manifesto__line {
    order: 1;
    width: auto;
    text-align: right;
  }

  .story-manifesto__line {
    width: 100%;
    font-size: clamp(24px, 7vw, 34px);
  }

  .story-pillars__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-pillars__text {
    max-width: none;
  }

  .story-values__item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 24px 0;
  }

  .story-origin__visual img {
    min-height: 360px;
    max-height: 460px;
  }

  .story-close__cta {
    width: 100%;
    justify-content: center;
  }
}

/* -- Values page (/valorile.html) -- */
.values-page {
  background: var(--elem-white);
  overflow-x: clip;
}

.values-hero {
  position: relative;
  color: #f7f3ea;
  background: #16140f;
  overflow: clip;
}

.values-hero__stage {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template: 1fr / 1fr;
  isolation: isolate;
}

.values-hero__media {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #16140f;
}

.values-hero__media picture,
.values-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.values-hero__media img {
  object-fit: cover;
  object-position: 52% 40%;
  filter: contrast(1.03) saturate(1.02);
  animation: values-hero-drift 26s ease-in-out infinite alternate;
}

@keyframes values-hero-drift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(1.2%, -0.6%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .values-hero__media img {
    animation: none;
  }
}

.values-hero__veil {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(90% 75% at 58% 35%, transparent 18%, rgba(16, 14, 10, 0.5) 100%),
    linear-gradient(95deg, rgba(16, 14, 10, 0.8) 0%, rgba(16, 14, 10, 0.28) 55%, rgba(16, 14, 10, 0.4) 100%),
    linear-gradient(180deg, rgba(16, 14, 10, 0.2) 0%, transparent 36%, rgba(16, 14, 10, 0.88) 100%);
}

.values-hero__grain {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.values-hero__content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: min(100%, 580px);
  padding: clamp(48px, 10vh, 100px) var(--pad) clamp(44px, 8vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: values-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes values-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.values-hero__brand {
  margin: 0 0 16px;
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7f3ea;
}

.values-hero__title {
  margin: 0 0 16px;
  font-size: clamp(42px, 7.5vw, 86px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  color: #f7f3ea;
}

.values-hero__lead {
  margin: 0;
  max-width: 26ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.84);
}

.values-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--elem-moss);
}

.values-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--elem-forest);
}

.values-whisper {
  margin: 0 0 22px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--elem-moss);
}

.values-text {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.values-intro,
.values-close {
  padding: clamp(56px, 10vh, 110px) var(--pad);
}

.values-intro__inner,
.values-close__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.values-intro {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(83, 95, 55, 0.08), transparent 58%),
    var(--elem-white);
}

.values-chapter {
  padding: clamp(72px, 12vh, 130px) var(--pad);
}

.values-chapter--light {
  background: var(--elem-white);
}

.values-chapter--soft {
  background: var(--blackground);
}

.values-chapter--forest {
  background: var(--elem-forest);
  color: #f7f3ea;
}

.values-chapter--forest .values-chapter__num {
  color: rgba(247, 243, 234, 0.55);
}

.values-chapter--forest .values-chapter__name {
  color: #f7f3ea;
}

.values-chapter--forest .values-chapter__text {
  color: rgba(247, 243, 234, 0.86);
}

.values-chapter__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.values-chapter__inner--wide {
  width: min(100%, 780px);
}

.values-chapter__num {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--elem-moss);
}

.values-chapter__name {
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--elem-forest);
}

.values-chapter__text {
  margin: 0 0 1.2em;
  max-width: 42ch;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
  color: rgba(34, 34, 34, 0.88);
}

.values-chapter__text:last-child {
  margin-bottom: 0;
}

.values-pulse {
  padding: clamp(56px, 10vh, 100px) var(--pad);
  background: var(--elem-forest);
  text-align: center;
}

.values-pulse__line {
  margin: 0 auto;
  max-width: 16ch;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 500;
  line-height: 1.15;
  color: #f7f3ea;
}

.values-close {
  background:
    radial-gradient(780px 360px at 88% 12%, rgba(44, 51, 30, 0.09), transparent 55%),
    var(--blackground);
}

.values-close__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 28px;
}

.values-close__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--elem-forest);
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.values-close__cta:hover,
.values-close__cta:focus-visible {
  opacity: 0.88;
  outline: none;
}

.values-close__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--elem-forest);
  text-decoration: none;
}

.values-close__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.values-close__link:hover::after,
.values-close__link:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .values-hero__content {
    width: min(100%, 520px);
    padding: clamp(40px, 7vh, 72px) clamp(28px, 4vw, 40px) clamp(36px, 6vh, 56px);
  }

  .values-intro,
  .values-close,
  .values-chapter,
  .values-pulse {
    padding-left: clamp(28px, 4vw, 40px);
    padding-right: clamp(28px, 4vw, 40px);
  }
}

@media (max-width: 768px) {
  .values-hero__stage {
    min-height: min(100svh - var(--header-h), 640px);
  }

  .values-hero__media img {
    object-position: 45% 38%;
    animation: none;
  }

  .values-hero__content {
    width: 100%;
    padding: 28px var(--pad-m) calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .values-hero__brand {
    font-size: 18px;
  }

  .values-hero__title {
    font-size: clamp(36px, 12vw, 52px);
  }

  .values-intro,
  .values-close,
  .values-chapter,
  .values-pulse {
    padding: 52px var(--pad-m);
  }

  .values-chapter__name {
    font-size: clamp(30px, 10vw, 44px);
  }

  .values-text,
  .values-chapter__text {
    max-width: none;
  }

  .values-close__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .values-hero__stage {
    min-height: min(92svh - var(--header-h), 560px);
  }
}

/* -- Choose scarf experience (/alege.html) -- */
.page-choose {
  --choose-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background:
    radial-gradient(1000px 480px at 8% -5%, rgba(83, 95, 55, 0.07), transparent 58%),
    var(--elem-white);
}

.choose-page {
  overflow-x: clip;
}

.choose-hero {
  padding: clamp(48px, 10vh, 100px) var(--pad) clamp(28px, 5vh, 48px);
}

.choose-hero__inner {
  width: min(100%, 720px);
}

.choose-hero__brand {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--elem-forest);
}

.choose-hero__title {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--elem-forest);
}

.choose-hero__whisper {
  margin: 0 0 16px;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--elem-moss);
}

.choose-hero__lead {
  margin: 0;
  max-width: 36ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 0.8);
}

.choose-flow {
  padding: 0 var(--pad) clamp(72px, 12vh, 120px);
}

.choose-flow__inner {
  width: min(100%, 980px);
}

.choose-step {
  padding: clamp(28px, 5vh, 48px) 0;
  border-top: 1px solid rgba(44, 51, 30, 0.12);
  animation: choose-rise 0.7s var(--choose-ease) both;
}

.choose-step[hidden] {
  display: none !important;
}

@keyframes choose-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.choose-step__index {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--elem-moss);
}

.choose-step__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--elem-forest);
}

.choose-step__lead {
  margin: -12px 0 28px;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 0.78);
}

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

.choose-option {
  min-height: 52px;
  padding: 10px 22px;
  border: 1px solid rgba(44, 51, 30, 0.22);
  background: transparent;
  color: var(--elem-forest);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  text-align: left;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.choose-option__main {
  font-size: 14px;
  font-weight: 500;
}

.choose-option__sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(44, 51, 30, 0.55);
}

.choose-option.is-active .choose-option__sub {
  color: rgba(247, 243, 234, 0.7);
}

.choose-option:hover,
.choose-option:focus-visible {
  border-color: var(--elem-forest);
  outline: none;
}

.choose-option.is-active {
  background: var(--elem-forest);
  border-color: var(--elem-forest);
  color: #f7f3ea;
}

.choose-paths,
.choose-palettes,
.choose-styles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.choose-path,
.choose-palette,
.choose-style {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 120px;
  padding: 22px 20px;
  border: 1px solid rgba(44, 51, 30, 0.18);
  background: rgba(247, 246, 245, 0.65);
  color: var(--elem-forest);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.35s var(--choose-ease);
}

.choose-path:hover,
.choose-palette:hover,
.choose-style:hover,
.choose-path:focus-visible,
.choose-palette:focus-visible,
.choose-style:focus-visible {
  border-color: var(--elem-forest);
  outline: none;
}

.choose-path.is-active,
.choose-palette.is-active,
.choose-style.is-active {
  background: var(--elem-forest);
  border-color: var(--elem-forest);
  color: #f7f3ea;
}

.choose-path__label,
.choose-palette__label,
.choose-style__label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.choose-path__hint,
.choose-palette__hint,
.choose-style__hint {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(44, 51, 30, 0.62);
}

.choose-path.is-active .choose-path__hint,
.choose-palette.is-active .choose-palette__hint,
.choose-style.is-active .choose-style__hint {
  color: rgba(247, 243, 234, 0.72);
}

.choose-palette__swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.choose-palette__swatches i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sw);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.choose-card__why {
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: 20px;
  line-height: 1.25;
  color: var(--elem-moss);
}

.choose-results--tight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
}

.choose-results--tight:has(.choose-card:only-child),
.choose-results--tight:has(.choose-card:first-child:nth-last-child(2)) {
  max-width: 640px;
}

.choose-back,
.choose-shop-link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--elem-forest);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.choose-results__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}

.choose-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.choose-results__loading,
.choose-results__empty {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.75);
}

.choose-results__empty a {
  color: var(--elem-forest);
}

.choose-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.choose-card:hover,
.choose-card:focus-visible {
  outline: none;
}

.choose-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(44, 51, 30, 0.06);
}

.choose-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.choose-card__img--main {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.choose-card__img--hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .choose-card:hover .choose-card__img--main,
  .choose-card:focus-visible .choose-card__img--main {
    opacity: 0;
  }

  .choose-card:hover .choose-card__img--hover,
  .choose-card:focus-visible .choose-card__img--hover {
    opacity: 1;
  }
}

.choose-card__name {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--elem-forest);
}

.choose-card__cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.5);
}

@media (max-width: 900px) {
  .choose-hero,
  .choose-flow {
    padding-left: var(--pad-m);
    padding-right: var(--pad-m);
  }

  .choose-paths,
  .choose-styles {
    grid-template-columns: 1fr;
  }

  .choose-palettes {
    grid-template-columns: 1fr;
  }

  .choose-results,
  .choose-results--tight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 560px) {
  .choose-option {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .choose-results,
  .choose-results--tight {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .choose-step,
  .choose-card__img {
    animation: none;
    transition: none;
  }
}

/* -- Gift ideas pillar (/idei-cadouri.html) -- */
.ideas-page {
  background: var(--elem-white);
  overflow-x: clip;
}

.ideas-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 16px var(--pad) 18px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.55);
  background: var(--background-crem);
  border-top: 1px solid var(--elem-border);
}

.page-ideas .site-footer {
  border-top: none;
  padding-top: 48px;
}

.ideas-crumb a {
  color: var(--elem-moss);
  text-decoration: none;
}

.ideas-crumb a:hover,
.ideas-crumb a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.ideas-map {
  padding: clamp(48px, 8vh, 96px) var(--pad);
  background:
    radial-gradient(900px 420px at 92% 8%, rgba(83, 95, 55, 0.07), transparent 58%),
    var(--blackground);
}

.ideas-map__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.ideas-map__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--elem-forest);
}

.ideas-map__lead {
  margin: 0 0 36px;
  max-width: 44ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.ideas-map__lead a,
.ideas-why .gift-story__text a,
.ideas-occasion__copy p a,
.ideas-page .gift-care__copy a,
.ideas-page .seo-faq__item a {
  color: var(--elem-moss);
  font-weight: 600;
  text-decoration: none;
}

.ideas-map__lead a:hover,
.ideas-map__lead a:focus-visible,
.ideas-why .gift-story__text a:hover,
.ideas-why .gift-story__text a:focus-visible,
.ideas-occasion__copy p a:hover,
.ideas-occasion__copy p a:focus-visible,
.ideas-page .gift-care__copy a:hover,
.ideas-page .gift-care__copy a:focus-visible,
.ideas-page .seo-faq__item a:hover,
.ideas-page .seo-faq__item a:focus-visible {
  color: var(--elem-forest);
  outline: none;
}

.ideas-map__foot {
  margin: 28px 0 0;
  max-width: 48ch;
}

.ideas-map__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ideas-map__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 22px 24px;
  background: var(--elem-white);
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(44, 51, 30, 0.1);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.ideas-map__card:hover,
.ideas-map__card:focus-visible {
  border-color: rgba(83, 95, 55, 0.45);
  box-shadow: 0 16px 40px rgba(44, 51, 30, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.ideas-map__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--elem-moss);
  margin-bottom: 14px;
}

.ideas-map__name {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--elem-forest);
}

.ideas-map__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.72);
}

.ideas-occasion {
  scroll-margin-top: calc(var(--header-h) + 12px);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(56px, 9vh, 100px) var(--pad);
}

.ideas-occasion:nth-of-type(even)::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: var(--blackground);
  pointer-events: none;
}

.ideas-occasion--flip {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.ideas-occasion--flip .ideas-occasion__media {
  order: 2;
}

.ideas-occasion--flip .ideas-occasion__copy {
  order: 1;
}

.ideas-occasion__media {
  overflow: hidden;
}

.ideas-occasion__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  object-position: center center;
  background: #ece8e1;
}

.ideas-occasion__media--primary {
  aspect-ratio: 1;
}

.ideas-occasion__media--primary img {
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
}

.ideas-occasion__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--elem-forest);
}

.ideas-occasion__copy .gift-story__whisper {
  margin-bottom: 18px;
}

.ideas-occasion__copy p {
  margin: 0 0 1.05em;
  max-width: 44ch;
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.88);
}

.ideas-occasion__copy p:last-of-type {
  margin-bottom: 0;
}

.ideas-picks {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ideas-picks a {
  display: inline;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--elem-forest);
  text-decoration: none;
}

.ideas-picks a:hover,
.ideas-picks a:focus-visible {
  color: var(--elem-moss);
  outline: none;
}

.ideas-picks span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(34, 34, 34, 0.62);
}

.ideas-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 8px;
}

.ideas-cta .gift-close__cta {
  color: #f7f3ea;
  text-decoration: none;
}

.ideas-cta__text {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--elem-forest);
  background: transparent;
  color: var(--elem-forest);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.ideas-cta__text:hover,
.ideas-cta__text:focus-visible {
  background: var(--elem-forest);
  color: #f7f3ea;
  outline: none;
}

.ideas-related {
  padding: clamp(48px, 8vh, 88px) var(--pad);
  background: var(--blackground);
}

.ideas-related__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.ideas-related__title {
  margin: 0 0 28px;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--elem-forest);
}

.ideas-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ideas-related__list a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  background: var(--elem-white);
  color: var(--elem-forest);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  border: 1px solid rgba(44, 51, 30, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ideas-related__list a:hover,
.ideas-related__list a:focus-visible {
  border-color: rgba(83, 95, 55, 0.45);
  transform: translateY(-1px);
  outline: none;
}

.ideas-related__hub {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 0.78);
}

.ideas-related__hub a {
  color: var(--elem-moss);
  font-weight: 600;
  text-decoration: none;
}

.ideas-related__hub a:hover,
.ideas-related__hub a:focus-visible {
  color: var(--elem-forest);
  outline: none;
}

.ideas-gifts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ideas-gifts a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.ideas-gifts a:hover .ideas-gifts__name,
.ideas-gifts a:focus-visible .ideas-gifts__name {
  color: var(--elem-moss);
  outline: none;
}

.ideas-gifts img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  background: #ece8e1;
  margin-bottom: 14px;
}

.ideas-gifts__name {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--elem-forest);
}

.ideas-gifts span {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(34, 34, 34, 0.62);
}

#ocazii,
#esarfe,
#pentru-cine,
#pentru-cand,
#botez,
#nunta,
#multumesc,
#pentru-nasa,
#sfarsit-an,
#de-la-parinti,
#8-martie-edu,
#pentru-educatoare,
#multumesc-doctor,
#8-martie-doctor,
#nu-stii-doctor,
#pentru-doamna-doctor {
  scroll-margin-top: calc(var(--header-h) + 8px);
}

@media (max-width: 900px) {
  .ideas-map__grid,
  .ideas-gifts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ideas-occasion,
  .ideas-occasion--flip {
    grid-template-columns: 1fr;
  }

  .ideas-occasion--flip .ideas-occasion__media,
  .ideas-occasion--flip .ideas-occasion__copy {
    order: unset;
  }

  .ideas-occasion__media {
    width: min(100%, 420px);
  }
}

@media (max-width: 640px) {
  .ideas-crumb,
  .ideas-map,
  .ideas-occasion,
  .ideas-related {
    padding-left: var(--pad-m);
    padding-right: var(--pad-m);
  }

  .ideas-map__grid,
  .ideas-gifts,
  .ideas-related__list {
    grid-template-columns: 1fr;
  }

  .ideas-occasion__media {
    width: 100%;
  }

  .ideas-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .ideas-cta .gift-close__cta,
  .ideas-cta__text {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ideas-map__card {
    transition: none;
  }

  .ideas-map__card:hover,
  .ideas-map__card:focus-visible {
    transform: none;
  }
}

/* Failed / incomplete card payment — slim sticky bar */
:root {
  --open-order-h: 0px;
}

body.has-open-order {
  --open-order-h: 2.75rem;
}

.open-order {
  position: sticky;
  top: 0;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  min-height: var(--open-order-h, 2.75rem);
  padding: 8px 16px;
  background: var(--elem-forest, #2c331e);
  color: #fcfaf7;
  font-family: var(--font, "Montserrat", sans-serif);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.open-order[hidden] {
  display: none !important;
}

.open-order__copy {
  min-width: 0;
  text-align: left;
}

.open-order__title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.open-order__body {
  margin: 2px 0 0;
  opacity: 0.88;
}

.open-order__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  flex-shrink: 0;
}

.open-order__retry,
.open-order__cancel {
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 0;
}

.open-order__retry {
  text-decoration: none;
  border: 1px solid rgba(252, 250, 247, 0.55);
  padding: 6px 12px;
  letter-spacing: 0.06em;
}

.open-order__retry:hover,
.open-order__retry:focus-visible {
  background: #fcfaf7;
  color: var(--elem-forest, #2c331e);
}

.open-order__cancel {
  opacity: 0.9;
}

.open-order__cancel:hover,
.open-order__cancel:focus-visible {
  opacity: 1;
}

.open-order__retry:focus-visible,
.open-order__cancel:focus-visible {
  outline: 2px solid #fcfaf7;
  outline-offset: 3px;
}

.open-order.is-busy .open-order__retry,
.open-order.is-busy .open-order__cancel {
  pointer-events: none;
  opacity: 0.55;
}

body.has-open-order .site-header {
  top: var(--open-order-h);
}

@media (max-width: 720px) {
  body.has-open-order {
    --open-order-h: 4.25rem;
  }

  .open-order {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 12px;
    padding: 8px 14px;
  }

  .open-order__actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .open-order,
  .open-order__retry {
    transition: none;
  }
}

