/* Archivo Condensed is loaded via a <link rel="stylesheet"> in each page's
   <head> instead of an @import here — @import inside a CSS file can only be
   discovered after the browser has already fetched and started parsing
   this whole file, adding a serial round-trip; a <link> in the HTML is
   found immediately by the browser's preload scanner and fetches in
   parallel with this stylesheet. */

:root {
  --ink: #131315;
  --gray: #6d6e71;
  --gray-soft: #f1f1f1;
  --yellow: #ebea70;
  --font-display: 'Archivo Condensed', ui-sans-serif, system-ui, sans-serif;
  /* One typeface sitewide, by request — headings used to switch to an
     italic serif (Instrument Serif/Playfair Display) here; the .serif
     utility class name is kept (it's referenced throughout the markup)
     but now just maps to the same display font as everything else. */
  --font-serif: var(--font-display);
  --ease: cubic-bezier(.16,.84,.44,1);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; }
.serif { font-family: var(--font-display); font-style: normal; font-weight: 400; }

/* ============================================================
   Header — transparent over hero, solidifies on scroll
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: calc(1rem + env(safe-area-inset-top)) calc(1.75rem + env(safe-area-inset-right)) 1rem calc(1.75rem + env(safe-area-inset-left));
  transition: background-color .45s var(--ease), border-color .45s var(--ease);
}
.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: #ececec;
}
.brand-logo { display: block; }
.brand-logo img { height: 24px; width: auto; display: block; }
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  font-size: .85rem;
  font-weight: 500;
  color: #fff;
  transition: color .35s var(--ease);
}
.site-header.is-scrolled .site-nav a { color: var(--ink); }

/* Hamburger — hidden by default (desktop keeps the inline .site-nav);
   shown only at mobile widths, see the max-width:640px block below, where
   it replaces the inline nav with a dropdown card. Styled as the same
   bordered circle as .lang-toggle so it reads as part of the same icon
   group and stays legible over both a transparent and solid header. */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.menu-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  border-radius: 2px;
  background: #fff;
  transition: background-color .35s var(--ease), transform .3s var(--ease), opacity .2s var(--ease);
}
.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: rgba(19,19,21,.25);
  background: #fff;
}
.site-header.is-scrolled .menu-toggle span,
.site-header.menu-open .menu-toggle span {
  background: var(--ink);
}
.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.follow-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.follow-pill svg { flex: none; }
.follow-pill:hover { background: rgba(255,255,255,.14); }
.site-header.is-scrolled .follow-pill {
  border-color: rgba(19,19,21,.22);
  color: var(--ink);
}
.site-header.is-scrolled .follow-pill:hover { background: rgba(19,19,21,.06); }

.shop-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.shop-pill svg { flex: none; }
.shop-pill:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.15); }
@media (max-width: 640px) {
  .shop-pill span { display: none; }
  .shop-pill { padding: .55rem; }
}
.lang-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent; color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-scrolled .lang-toggle {
  border-color: rgba(19,19,21,.25);
  background: #fff; color: var(--ink);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  height: 86vh;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19,19,21,.5) 0%, rgba(19,19,21,0) 16%),
    linear-gradient(0deg, rgba(19,19,21,.7) 0%, rgba(19,19,21,.25) 38%, rgba(19,19,21,0) 62%);
}
.hero-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0 1.75rem calc(3.2rem + env(safe-area-inset-bottom));
  max-width: var(--container);
  margin: 0 auto;
  color: #fff;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--yellow); }
.eyebrow-dark { color: var(--gray); }
.hero h1 {
  margin: 0 0 1.8rem;
  font-weight: 600;
  letter-spacing: -.01em;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.12;
  max-width: 15em;
}
/* Craft — Manufacturing: split-screen video + statement, referenced from
   gantri.com/process. No scrim or overlay text — the video and the copy
   sit in their own halves, so the copy stays plain dark-on-white. */
.craft-mfg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  height: 86vh;
}
.craft-mfg-media {
  position: relative;
  overflow: hidden;
  background: #000;
}
.craft-mfg-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.craft-mfg-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(2rem, 6vw, 5rem);
  background: #fff;
}
.craft-mfg-label {
  display: block;
  margin-bottom: .9rem;
  font-size: .95rem;
  color: var(--gray);
}
.craft-mfg-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.18;
  color: var(--ink);
}
@media (max-width: 860px) {
  .craft-mfg {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .craft-mfg-media { aspect-ratio: 4 / 3; }
  .craft-mfg-copy { padding: 2.2rem 1.75rem 2.8rem; }
}

/* ============================================================
   Craft — Commitment: pinned scroll-crossfade gallery (mobile-first).
   Mobile: every wrapper collapses with display:contents so the media
   items and copy blocks promote up into one flex column and interleave
   by their inline `order` (image, caption, image, caption…) — a plain
   reading-order layout, no sticky, no JS. Desktop (min-width:861px)
   reinstates the wrappers as real boxes: the grid pins via
   position:sticky while an oversized .craft-story-scroller supplies the
   scroll distance, and JS (guarded to this breakpoint) toggles
   .is-active on the media item / copy block / thumb for the current
   step. object-fit:contain is used at both breakpoints — these images
   carry baked-in captions and must never be cropped. */
.craft-story { padding: 5.5rem 0 4.5rem; background: #fff; overflow: hidden; }
.craft-story-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 2.2rem;
}
.craft-story-label {
  display: block;
  margin-bottom: .9rem;
  font-size: .95rem;
  color: var(--gray);
}
.craft-story-title {
  margin: 0;
  max-width: 30ch;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  color: var(--ink);
}

.craft-story-scroller { display: block; }

.craft-story-grid {
  display: flex;
  flex-direction: column;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.craft-story-media-wrap,
.craft-story-copy-wrap,
.craft-story-media,
.craft-story-copy-stack {
  display: contents;
}

.craft-story-media-item {
  position: relative;
  margin: 0 0 1.25rem;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #101012;
}
.craft-story-media-item img,
.craft-story-media-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #101012;
}
.craft-story-thumbs { display: none; }

.craft-story-copy-block { margin: 0 0 2.4rem; }
.craft-story-copy-eyebrow {
  display: block;
  margin-bottom: .5rem;
  font-size: .85rem;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}
.craft-story-copy-block h3 {
  margin: 0 0 .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--ink);
}
.craft-story-copy-block p {
  margin: 0;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gray);
}

@media (min-width: 861px) {
  .craft-story { padding: 7.5rem 0 6rem; overflow: visible; }
  .craft-story-scroller {
    position: relative;
    height: 600vh; /* 100vh per step x 6 steps */
  }
  .craft-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    position: sticky;
    top: 88px;
    height: calc(100vh - 88px);
    align-items: center;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }
  .craft-story-media-wrap {
    display: block;
    position: relative;
    height: 78vh;
  }
  .craft-story-media {
    display: block;
    position: relative;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #101012;
  }
  .craft-story-media-item {
    position: absolute;
    inset: 0;
    margin: 0;
    aspect-ratio: auto;
    border-radius: 0;
    opacity: 0;
    transition: opacity .6s var(--ease);
  }
  .craft-story-media-item.is-active { opacity: 1; }
  .craft-story-thumbs {
    display: flex;
    gap: .5rem;
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
  }
  .craft-story-thumb {
    flex: 1;
    height: 4px;
    border: 0;
    padding: 0;
    border-radius: 2px;
    background-color: rgba(255,255,255,.35);
    background-size: cover;
    background-position: center;
    cursor: pointer;
  }
  .craft-story-thumb.is-active { background-color: var(--yellow); }
  .craft-story-copy-wrap { display: block; }
  .craft-story-copy-stack { display: block; }
  .craft-story-copy-block {
    display: none;
    margin: 0;
    max-width: 30rem;
  }
  .craft-story-copy-block.is-active {
    display: block;
    animation: craft-story-fade .5s var(--ease);
  }
  .craft-story-copy-block h3 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); }
  .craft-story-copy-block p { font-size: 1.05rem; }
}
@keyframes craft-story-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .85rem;
  padding: .95em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.btn:hover, .btn:active { transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ink { background: var(--ink); color: #fff; border-color: var(--ink); }

.hero-cap {
  position: absolute;
  right: calc(1.75rem + env(safe-area-inset-right));
  bottom: calc(2rem + env(safe-area-inset-bottom));
  z-index: 2;
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .site-header {
    padding-left: calc(1.15rem + env(safe-area-inset-left));
    padding-right: calc(1.15rem + env(safe-area-inset-right));
    gap: .6rem;
  }
  .brand-logo {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .brand-logo img { height: 20px; }
  .hero { height: 78vh; min-height: 520px; }
  .hero h1 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); max-width: none; }
  .hero-cap { display: none; }
  .header-right { gap: .6rem; }
  .follow-pill { padding: .5rem; }
  .follow-pill span { display: none; }

  /* Nav collapses into a hamburger + dropdown card, matching gantri.com's
     mobile pattern: hamburger far left, logo centered independently
     (absolute, above), utility icons far right, menu drops down as a
     floating card right under the header instead of squeezing inline. */
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: calc(1.15rem + env(safe-area-inset-left));
    right: calc(1.15rem + env(safe-area-inset-right));
    margin-top: .6rem;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(19,19,21,.18);
    padding: .4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  }
  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .site-nav a {
    color: var(--ink);
    font-size: .95rem;
    padding: .95rem 1rem;
    border-radius: 10px;
  }
  .site-nav a:active { background: var(--gray-soft); }
}

@media (max-height: 480px) {
  .hero { height: 100vh; min-height: 420px; }
  .hero-inner { padding-bottom: 1.6rem; }
  .hero h1 { margin-bottom: 1.1rem; }
}

/* ============================================================
   Motto statement
   ============================================================ */
.motto-statement {
  background: #fff;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
}
.motto-statement-title {
  margin: .9rem auto 0;
  max-width: 20em;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

/* ============================================================
   Personalize — custom charm / engraving showcase
   ============================================================ */
.personalize {
  background: #fff;
}
.personalize-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.75rem;
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.personalize-player {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-soft);
}
.personalize-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.personalize-copy { max-width: 30em; }
.personalize-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--ink);
}
.personalize-sub {
  margin: 0;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 32em;
}
@media (max-width: 860px) {
  .personalize-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .personalize-player { max-width: 380px; width: 100%; margin: 0 auto; }
}

/* ============================================================
   Film — NOLA launch film
   ============================================================ */
.film {
  background: var(--gray);
}
.film-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.75rem;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.film-copy { max-width: 30em; }
.film-title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.28;
  color: #fff;
}
.film-sub {
  margin: 0;
  font-size: .98rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 32em;
}
.film-player {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  justify-self: center;
}
.film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.film-video:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

@media (max-width: 860px) {
  .film-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .film-copy { max-width: 34em; }
}

/* ============================================================
   Originality — 3-photo editorial grid
   ============================================================ */
.originality {
  background: #fff;
}
.originality-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 1.75rem clamp(4rem, 8vw, 7rem);
}
.originality-title {
  margin: 0 0 clamp(2.4rem, 6vw, 3.75rem);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.01em;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.16;
  color: var(--ink);
  max-width: 13em;
}
.originality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.6vw, 1.9rem);
}
.originality-item {
  margin: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.originality-item.is-in { opacity: 1; transform: translateY(0); }
.originality-item:nth-child(1) { transition-delay: 0s; }
.originality-item:nth-child(2) { transition-delay: .12s; }
.originality-item:nth-child(3) { transition-delay: .24s; }
.originality-media {
  overflow: hidden;
  border-radius: 2px;
  background: var(--gray-soft);
}
.originality-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.originality-item:hover img { transform: scale(1.045); }
.originality-item:nth-child(1) img { object-position: center 22%; }
.originality-item:nth-child(2) img { object-position: center 58%; }
.originality-item:nth-child(3) img { object-position: center 38%; }
.originality-item figcaption {
  margin-top: 1rem;
  font-size: clamp(.95rem, 1.3vw, 1.05rem);
  line-height: 1.4;
  color: var(--gray);
}
@media (prefers-reduced-motion: reduce) {
  .originality-item { opacity: 1; transform: none; transition: none; }
  .originality-item img { transition: none; }
}

@media (max-width: 780px) {
  .originality-grid { grid-template-columns: 1fr; gap: 2.2rem; max-width: 420px; margin: 0 auto; }
  .originality-title { margin-bottom: 2rem; }
}

/* ============================================================
   NOLA as Flowers — product grid
   ============================================================ */
.products {
  background: linear-gradient(180deg,
    #fff 0%,
    rgba(235, 234, 112, .55) 14%,
    rgba(235, 234, 112, .55) 86%,
    #fff 100%);
}
.products-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.75rem clamp(4rem, 8vw, 7rem);
}
.products-title {
  margin: 0 0 clamp(2rem, 4.5vw, 3rem);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--ink);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.products-item { margin: 0; }
.products-item img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  background: var(--gray-soft);
  border-radius: 2px;
}
.products-item figcaption {
  margin-top: .85rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.products-name {
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  color: var(--ink);
}
.products-sub {
  font-size: .85rem;
  color: var(--gray);
}

@media (max-width: 860px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.2rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; gap: 1.8rem; }
  .products-item img { aspect-ratio: 8 / 5; }
}

/* ============================================================
   Hues — color-cycle product reel
   ============================================================ */
.hues {
  background: #fff;
}
.hues-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.75rem;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.hues-media {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-soft);
}
.hues-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hues-copy { max-width: 30em; }
.hues-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--ink);
}
.hues-sub {
  margin: 0 0 1.8rem;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 32em;
}
@media (max-width: 860px) {
  .hues-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hues-media { max-width: 380px; width: 100%; margin: 0 auto; }
}

/* ============================================================
   Palette — the 8-color grid
   ============================================================ */
.palette {
  background: var(--gray-soft);
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.75rem;
}
.palette-head {
  max-width: var(--container);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.palette-head .eyebrow { justify-content: center; }
.palette-title {
  margin: .4rem auto .8rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--ink);
  max-width: 20em;
}
.palette-sub {
  margin: 0 auto;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 32em;
}
.palette-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.palette-item {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  padding: .85rem .85rem 1rem;
  box-shadow: 0 1px 2px rgba(19,19,21,.05);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.palette-item img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: 9px;
  background: var(--gray-soft);
  display: block;
}
.palette-item figcaption {
  margin-top: .7rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--ink);
}
.palette-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(19,19,21,.12);
}
@media (max-width: 860px) {
  .palette-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (max-width: 560px) {
  .palette-grid { grid-template-columns: repeat(2, 1fr); }
}
.palette-cta {
  max-width: var(--container);
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(19,19,21,.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}
.palette-cta p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink);
}

/* ============================================================
   Mood — video moment
   ============================================================ */
.mood {
  background: #fff;
  padding-top: clamp(3rem, 7vw, 6rem);
}
.mood-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.mood-title {
  margin: 0 0 clamp(2.2rem, 5vw, 3.5rem);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.01em;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.16;
  color: var(--ink);
  max-width: 13em;
}
.mood-media {
  position: relative;
  overflow: hidden;
  height: 74vh;
  min-height: 460px;
  max-height: 720px;
}
.mood-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.mood-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(19,19,21,.75) 0%, rgba(19,19,21,.2) 42%, rgba(19,19,21,0) 65%);
}
.mood-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0 1.75rem calc(2.4rem + env(safe-area-inset-bottom));
  max-width: var(--container);
  margin: 0 auto;
  color: #fff;
}
.mood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: .95rem;
  letter-spacing: .01em;
}
.mood-tags li { color: rgba(255,255,255,.55); transition: color .25s var(--ease); }
.mood-tags li.is-active { color: #fff; font-weight: 600; }
.mood-caption {
  max-width: 30em;
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

@media (max-width: 640px) {
  .mood-media { height: 62vh; min-height: 420px; }
  .mood-tags { font-size: .88rem; gap: 1rem; }
  .mood-caption { font-size: .88rem; max-width: none; }
}

/* ============================================================
   Colorway — NOLA color range
   ============================================================ */
.colorway {
  background: #fbfae6;
}
.colorway-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 1.75rem clamp(2rem, 4vw, 3rem);
}
.colorway-title {
  margin: .3rem 0 1rem;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 400;
  color: var(--ink);
  max-width: 16em;
}
.colorway-sub {
  margin: 0;
  max-width: 34em;
  color: var(--gray);
  font-size: .98rem;
  line-height: 1.6;
}
.colorway-media {
  position: relative;
  overflow: hidden;
  height: 64vh;
  min-height: 480px;
  max-height: 640px;
}
.colorway-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 47%;
}
@media (max-width: 640px) {
  .colorway-media { height: 56vh; min-height: 380px; }
}

/* ============================================================
   Charm — signature detail
   ============================================================ */
.charm {
  background: #fff;
}
.charm-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.75rem;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.charm-player {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-soft);
}
.charm-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.charm-copy { max-width: 30em; }
.charm-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--ink);
}
.charm-sub {
  margin: 0;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 32em;
}
@media (max-width: 860px) {
  .charm-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .charm-player { max-width: 380px; width: 100%; margin: 0 auto; }
}

/* ============================================================
   Gifting — Tết collection
   ============================================================ */
.gifting {
  background: linear-gradient(135deg, #fbf1cf 0%, #fdf8ea 45%, #fff 78%);
}
.gifting-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.75rem;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.gifting-copy { max-width: 32em; }
.gifting-title {
  margin: .4rem 0 1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--ink);
}
.gifting-sub {
  margin: 0 0 1.4rem;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 32em;
}
.gifting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  list-style: none;
  margin: 0 0 1.9rem;
  padding: 0;
}
.gifting-tags li {
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
  padding: .5em 1.1em;
  border-radius: 999px;
  white-space: nowrap;
}
.gifting-tags .tag-yellow { background: #f2e79a; }
.gifting-tags .tag-orange { background: #f3c988; }
.gifting-tags .tag-red { background: #eeb2a6; }
.gifting-media {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0;
  justify-self: end;
}
.gifting-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  background: var(--gray-soft);
  box-shadow: 0 30px 60px -20px rgba(196, 132, 46, .35);
}
.gifting-media figcaption {
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--gray);
  text-align: right;
}
@media (max-width: 860px) {
  .gifting-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .gifting-media { max-width: 380px; width: 100%; margin: 0 auto; justify-self: center; }
  .gifting-media figcaption { text-align: center; }
}

/* ============================================================
   Spaces — horizontal-scroll gallery
   ============================================================ */
.spaces {
  background: #fff;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.spaces-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.spaces-title {
  margin: .3rem 0 0;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 400;
  color: var(--ink);
  max-width: 16em;
}
.spaces-controls {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: none;
}
.spaces-all {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.3rem;
  border-radius: 999px;
  background: var(--gray-soft);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 500;
  transition: background-color .3s var(--ease);
}
.spaces-all:hover { background: #e8e8e8; }
.spaces-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(19,19,21,.16);
  background: #fff;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease);
}
.spaces-arrow:hover { background: var(--gray-soft); }
.spaces-arrow:disabled { opacity: .35; cursor: default; }
.spaces-arrow:disabled:hover { background: #fff; }
.spaces-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1.75rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.spaces-track::-webkit-scrollbar { display: none; }
.spaces-card {
  position: relative;
  display: block;
  flex: 0 0 clamp(250px, 27vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--gray-soft);
}
.spaces-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.spaces-card:hover img { transform: scale(1.045); }
.spaces-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,19,21,0) 42%, rgba(19,19,21,.68) 100%);
}
.spaces-copy {
  position: absolute;
  left: 1.25rem; right: 1.25rem; top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  color: #fff;
}
.spaces-eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
}
.spaces-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
}
.spaces-go {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .3s var(--ease);
}
.spaces-card:hover .spaces-go { background: rgba(255,255,255,.18); }
@media (max-width: 640px) {
  .spaces-head { align-items: flex-start; }
  .spaces-all span { display: inline; }
  .spaces-card { flex-basis: 72vw; }
}

/* ============================================================
   Mission
   ============================================================ */
.mission {
  position: relative;
  overflow: hidden;
  height: 70vh;
  min-height: 460px;
  max-height: 720px;
}
.mission-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 32% center;
}
.mission-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,19,21,.55) 0%, rgba(19,19,21,.4) 45%, rgba(19,19,21,.6) 100%);
}
.mission-inner {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.75rem;
  color: #fff;
}
.mission-inner .eyebrow { justify-content: center; }
.mission-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.2;
  max-width: 16em;
}
@media (max-width: 640px) {
  .mission { height: 62vh; min-height: 420px; }
}

/* ============================================================
   Content protection
   Deterrents against casual right-click-save / drag-out of media.
   Not a real security measure — anyone using devtools, a screenshot,
   or the network tab can still get the file — but it stops the
   average visitor from saving images or dragging a video out.
   ============================================================ */
img, video {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--gray);
  color: #fff;
  border-top: 3px solid var(--yellow);
}
.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.8rem, 6vw, 4.5rem) 1.75rem clamp(2.4rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem clamp(2rem, 5vw, 4.5rem);
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 220px;
  max-width: 280px;
}
.footer-logo { display: inline-block; }
.footer-logo img { height: 60px; width: auto; display: block; }
.footer-tagline {
  margin: .9rem 0 0;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.05rem;
  color: rgba(255,255,255,.92);
}
.footer-col { flex: 0 1 160px; }
.footer-col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0 0 .7rem; }
.footer-col li:last-child { margin-bottom: 0; }
.footer-col a, .footer-col span {
  font-size: .95rem;
  color: #fff;
}
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--yellow); }
.footer-col span { color: rgba(255,255,255,.92); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.3rem 1.75rem calc(1.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .8rem;
  color: rgba(255,255,255,.92);
}

@media (max-width: 640px) {
  .footer-top { gap: 2.2rem 2rem; }
  .footer-brand { max-width: none; flex-basis: 100%; }
}

/* ============================================================
   Welcome popup — first-visit Instagram prompt
   ============================================================ */
.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.welcome-popup[hidden] { display: none; }
.welcome-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19,19,21,.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.welcome-popup-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.welcome-popup.is-open .welcome-popup-backdrop { opacity: 1; }
.welcome-popup.is-open .welcome-popup-card { opacity: 1; transform: translateY(0) scale(1); }
.welcome-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.welcome-popup-close:hover { background: rgba(255,255,255,.2); }
.welcome-popup-body { padding: 28px 24px 22px; }
.welcome-popup-eyebrow {
  margin: 0 0 .9rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
}
.welcome-popup-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.35;
  color: #fff;
}
.welcome-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .95rem 1.2rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.welcome-popup-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(235,234,112,.6); }
.welcome-popup-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.welcome-popup-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 460px) {
  .welcome-popup { padding: 16px; }
  .welcome-popup-card { border-radius: 18px; max-height: calc(100vh - 32px); }
}
@media (prefers-reduced-motion: reduce) {
  .welcome-popup-backdrop, .welcome-popup-card { transition: none; }
}

