/* ===========================================================
   JEEVAN STUDIO — Design System
   Signature motif: the diagonal cut from the logo mark.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,400..600&family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800;900&display=swap');

:root {
  --ink: #17130F;
  --ink-soft: #2A241F;
  --paper: #F7F3EC;
  --paper-dim: #EFE9DD;
  --studio-red: #c7262e;
  --studio-red-deep: #B70D15;
  --foil-gold: #C79A3D;
  --foil-gold-soft: #E4C77A;
  --charcoal: #3A332E;
  --line: rgba(23, 19, 15, 0.12);
  --shadow: 0 30px 60px -20px rgba(23, 19, 15, 0.35);

  --display: 'Playfair Display', serif;
  --serif: 'Fraunces', serif;
  --sans: 'Inter', sans-serif;

  --cut: 6deg;
  /* the diagonal signature angle, reused everywhere */
  --ease: cubic-bezier(.16, .84, .36, 1);
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
}

.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--foil-gold);
  outline-offset: 3px;
}

/* ---------- Utility type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--studio-red);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--studio-red);
  display: inline-block;
}

.display {
  font-family: var(--display);
  font-weight: 800;
  line-height: .96;
  letter-spacing: 0;
}

.serif-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.8rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-102%) skewX(-12deg);
  transform-origin: left;
  z-index: -1;
  transition: transform .5s var(--ease);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(0) skewX(-12deg);
}

.btn:hover,
.btn:focus-visible {
  color: var(--paper);
}

.btn .arrow {
  transition: transform .4s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(6px);
}

.btn-solid {
  background: var(--studio-red);
  border-color: var(--studio-red);
  color: #fff;
}

.btn-solid::before {
  background: var(--ink);
}

.btn-solid:hover {
  color: #fff;
  border-color: var(--ink);
}

.btn-whatsapp {
  background: #1E9E52;
  border-color: #1E9E52;
  color: #fff;
}

.btn-whatsapp::before {
  background: #12793D;
}

.btn-whatsapp:hover {
  color: #fff;
  border-color: #12793D;
}

.btn-ghost {
  border-color: rgba(247, 243, 236, 0.5);
  color: var(--paper);
}

.btn-ghost::before {
  background: var(--paper);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--paper);
}

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 20px rgba(23, 19, 15, 0.08);
  transition: box-shadow .4s var(--ease);
}

/* 2-column flex wrapper: logo+name | links */
.nav-inner-wrap {
  max-width: 1240px;
  width: 92%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .45rem 0;
}

/* Logo — left column */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
  transition: opacity .3s var(--ease);
  text-decoration: none;
}

.nav-logo:hover {
  opacity: .82;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -.02em;
  line-height: 1;
}

/* Nav links — right side, pulled slightly inward */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-left: auto;
  padding-right: 4rem;
}

.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .88rem;
  color: var(--ink);
  letter-spacing: .01em;
  position: relative;
  padding: .22rem 0;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 2px;
  border-radius: 2px;
  background: var(--studio-red);
  transition: right .3s var(--ease);
}

.nav-links a:hover {
  color: var(--studio-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-links a.active {
  color: var(--studio-red);
  font-weight: 600;
}

/* CTA — right column */
.nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .8rem;
}

/* WhatsApp pill button — coral/salmon style from screenshot */
.nav-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #E8574A;
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .01em;
  padding: .62rem 1.3rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 3px 12px rgba(232, 87, 74, 0.35);
  white-space: nowrap;
}

.nav-wa-cta svg {
  flex-shrink: 0;
}

.whatsapp-icon {
  width: 1.2em;
  height: 1.2em;
  display: block;
  flex-shrink: 0;
}

.nav-wa-cta:hover {
  background: #D04337;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 87, 74, 0.45);
}

.nav-wa-cta:active {
  transform: translateY(0);
}

/* Mobile-menu WA override */
.mm-wa {
  margin-top: 0;
  border-radius: 100px;
  justify-content: center;
  padding: .6rem 1.2rem;
  font-size: .9rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  display: block;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 4.5rem 1.8rem 1.8rem;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu>a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  display: block;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(247, 243, 236, 0.12);
  letter-spacing: .02em;
}

.mobile-menu>a:last-of-type {
  border-bottom: none;
}

.mobile-menu .mm-foot {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: row;
  gap: .8rem;
  align-items: center;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  padding-top: 5rem;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1360px, 85%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 3.2rem;
  align-items: center;
  padding-block: 3rem 5rem;
}

/* Hero copy column */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 580px;
  justify-self: start;
}

/* Hero image column */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 8px;
  border-radius: 14px;
  isolation: isolate;
  overflow: hidden;
  animation: heroImageFloat 5s ease-in-out infinite;
  transition: transform .45s var(--ease);
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: conic-gradient(from 0deg, var(--studio-red), var(--foil-gold-soft), var(--studio-red), transparent 70%);
  animation: heroLineSpin 4s linear infinite;
}

/* Decorative accent kept hidden after animated frame update */
.hero-img-accent {
  display: none;
}

.hero-banner-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 84vh;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: none;
  display: block;
  background: var(--paper);
}

.hero-kicker {
  color: var(--studio-red);
  mix-blend-mode: normal;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.3rem, 5.6vw, 5rem);
  color: var(--ink);
  mix-blend-mode: normal;
}

.hero-title .line {
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  will-change: transform;
}

.hero-title .accent {
  color: var(--studio-red);
  -webkit-text-stroke: 0;
}

.hero-sub {
  max-width: 34ch;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  margin-top: 1.6rem;
  color: var(--charcoal);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.4rem;
}

.hero-highlights span {
  border: 1px solid rgba(23, 19, 15, .14);
  border-radius: 999px;
  padding: .62rem .9rem;
  background: rgba(255, 255, 255, .56);
  color: var(--ink);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-image-wrap:hover {
  animation-play-state: paused;
  transform: translateY(-8px);
}

.hero-banner-img {
  transition: transform .5s var(--ease);
}

@keyframes heroImageFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes heroLineSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-22px) rotate(3deg);
  }
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 3;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  animation: scrollCueBounce 1.8s var(--ease-soft) infinite;
}

.hero-scroll-cue span:first-child {
  position: relative;
  padding: .38rem .55rem;
  border: 1px solid rgba(23, 19, 15, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
}

.hero-scroll-cue span:first-child::after {
  content: '';
  position: absolute;
  inset: -.28rem;
  border: 1px solid rgba(199, 38, 46, .28);
  border-radius: inherit;
  animation: scrollCuePulse 1.8s ease-out infinite;
}

.hero-scroll-cue .stick {
  width: 1px;
  height: 36px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero-scroll-cue .stick::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--studio-red);
  animation: cueDrop 1.8s ease-in-out infinite;
}

@keyframes cueDrop {
  0% {
    top: -100%;
  }

  60% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes scrollCueBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes scrollCuePulse {
  0% {
    opacity: .75;
    transform: scale(.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

/* reveal-on-load helper */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease);
}

.reveal-clip.in-view {
  clip-path: inset(0 0 0% 0);
}

.stagger>* {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ===========================================================
   MARQUEE STATEMENT
   =========================================================== */
.marquee-band {
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-block: 1px solid rgba(247, 243, 236, .15);
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(0.65rem, 1.2vw, 0.95rem);
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-track span i {
  color: var(--studio-red);
  font-style: normal;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

/* ===========================================================
   SECTION SCAFFOLDING
   =========================================================== */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-tight {
  padding: 4.5rem 0;
}

.products-page>.section.section-tight {
  padding-top: 1.5rem;
}

.category-section {
  min-height: calc(100svh - 80px);
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.category-section .section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin-top: .6rem;
}

.section-head p {
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--charcoal);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
  padding-block: 1rem;
}

.section-dark .eyebrow {
  color: var(--foil-gold-soft);
}

.section-dark .section-head {
  margin-bottom: 2.4rem;
}

.section-dark .eyebrow::before {
  background: var(--foil-gold-soft);
}

/* Homepage compact spacing */
.home-page .hero {
  min-height: auto;
  padding-top: 4.4rem;
}

.home-page .hero-inner {
  gap: 2rem;
  padding-block: 2rem 2.8rem;
}

.home-page .hero-sub {
  margin-top: 1rem;
}

.home-page .hero-highlights {
  margin-top: 1rem;
}

.home-page .marquee-band {
  padding: 1rem 0;
}

.home-page .section {
  padding: 4rem 0;
}

.home-page .section-tight {
  padding: 3rem 0;
}

.home-page .section-head {
  margin-bottom: 1.8rem;
}

.home-page .category-section {
  min-height: auto;
  padding: 3rem 0;
}

.home-page .cat-explorer {
  height: clamp(340px, 46svh, 430px);
}

.home-page .cat-main {
  padding: 1.5rem;
}

.home-page .cat-main-content .btn {
  margin-top: 1rem;
}

.home-page .rail {
  padding-top: .4rem;
  padding-bottom: 1.4rem;
}

.diagonal-top {
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
}

.diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 4vw));
}

/* ===========================================================
   CATEGORY EXPLORER (asymmetric interactive)
   =========================================================== */
.cat-explorer {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
  height: clamp(420px, 58svh, 500px);
}

.cat-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.cat-main img,
.cat-main .cat-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.cat-main:hover img,
.cat-main:hover .cat-bg {
  transform: scale(1.06);
}

.cat-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 19, 15, .88) 0%, rgba(23, 19, 15, .34) 48%, rgba(23, 19, 15, .04) 78%);
  z-index: 1;
}

.cat-main-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.cat-main-content .tag {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: var(--foil-gold-soft);
}

.cat-main-content h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  line-height: 1;
  margin-top: .4rem;
}

.cat-main-content p {
  font-family: var(--serif);
  font-style: italic;
  max-width: 34ch;
  margin-top: .6rem;
  opacity: .85;
}

.cat-main-content .btn {
  margin-top: 1.4rem;
}

.cat-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  height: 100%;
}

.cat-item {
  position: relative;
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}

.cat-item:hover,
.cat-item.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.cat-item .num {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--studio-red);
  margin-right: 1rem;
}

.cat-item h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.cat-item .arrow-ic {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .35s var(--ease);
}

.cat-item:hover .arrow-ic,
.cat-item.is-active .arrow-ic {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================================================
   PRODUCT RAIL (horizontal scroll)
   =========================================================== */
.rail-wrap {
  position: relative;
}

.rail {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  padding: 1rem .5rem 2.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--studio-red) transparent;
}

.rail::-webkit-scrollbar {
  height: 6px;
}

.rail::-webkit-scrollbar-thumb {
  background: var(--studio-red);
  border-radius: 10px;
}

.product-card {
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.product-card .pc-media {
  aspect-ratio: 1/1;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card .pc-media svg {
  width: 58%;
  height: 58%;
  transition: transform .6s var(--ease);
}

.product-card .pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

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

.product-card:hover .pc-media svg {
  transform: scale(1.1) rotate(-3deg);
}

.product-card .pc-price,
.product-card .pc-stock-badge {
  position: absolute;
  top: .8rem;
  z-index: 2;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  padding: .35rem .55rem;
  border-radius: 3px;
}

.product-card .pc-price {
  left: .8rem;
}

.product-card .pc-stock-badge {
  right: .8rem;
  color: #147a3d;
}

.product-card .pc-stock-badge.is-out-stock {
  color: #9b1c1c;
}

.product-card .pc-tag {
  position: absolute;
  bottom: .8rem;
  left: .8rem;
  background: var(--studio-red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 2px;
  z-index: 2;
}

.product-card .pc-stock-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: .4rem;
  color: #147a3d;
  font-size: 0.82rem;
  font-weight: 600;
}

.product-card .pc-stock-line span,
.pd-commerce__stock span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.product-card .pc-stock-line.is-out-stock,
.pd-commerce__stock.is-out-stock {
  color: #9b1c1c;
}

.product-card .pc-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .pc-cat {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--studio-red);
  font-weight: 700;
}

.product-card h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.12;
  margin-top: .4rem;
}

.product-card .pc-body h4:first-child {
  margin-top: 0;
}

.product-card p {
  font-size: .88rem;
  color: var(--charcoal);
  margin-top: .4rem;
  line-height: 1.5;
}

.pc-actions {
  display: flex;
  gap: .6rem;
  margin-top: auto;
  padding-top: 1.1rem;
}

.pc-actions a {
  flex: 1;
  text-align: center;
  padding: .65rem .5rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 2px;
  border: 1.5px solid var(--ink);
  transition: all .3s var(--ease);
}

.pc-actions a.pc-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3rem;
  padding-inline: .5rem;
}

.icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  min-height: 3.2rem;
}

.pc-actions a.pc-view:hover {
  background: var(--ink);
  color: #fff;
}

.pc-actions a.pc-wa {
  background: #1E9E52;
  border-color: #1E9E52;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 38px;
  padding: 0 !important;
  border-radius: 4px;
}

.pc-actions a.pc-wa svg,
.whatsapp-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
  display: block;
}

.pc-actions a.pc-wa:hover {
  background: #12793D;
  border-color: #12793D;
  transform: scale(1.05);
}

.rail-nav {
  display: flex;
  gap: .8rem;
  justify-content: flex-end;
  margin-top: 1.2rem;
}

.rail-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.rail-nav button:hover {
  background: var(--ink);
}

.rail-nav button:hover svg {
  stroke: var(--paper);
}

.rail-nav svg {
  stroke: var(--ink);
  transition: stroke .3s var(--ease);
}

/* ===========================================================
   TRANSFORMATION SECTION (photo -> keepsake)
   =========================================================== */
.transform-section {
  background: var(--ink);
  color: var(--paper);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.transform-copy h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
}

.transform-copy .serif-lede {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: var(--foil-gold-soft);
}

.transform-stage {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.85) rotate(-6deg);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.t-item.is-active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.t-item svg {
  width: 78%;
  height: 78%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .5));
}

.t-dots {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-top: 2rem;
}

.t-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247, 243, 236, .3);
  transition: background .3s;
}

.t-dots span.is-active {
  background: var(--studio-red);
}

/* ===========================================================
   MASONRY FRAME GALLERY
   =========================================================== */
.masonry {
  columns: 4 220px;
  column-gap: 1.2rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: var(--paper-dim);
  border: 1px solid var(--line);
}

.masonry-item .mi-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
}

.masonry-item figcaption {
  padding: .9rem 1.1rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
}

.masonry-item figcaption span {
  color: var(--studio-red);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===========================================================
   MUG SPOTLIGHT
   =========================================================== */
.mug-spotlight {
  position: relative;
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}

.mug-stage {
  position: relative;
  width: min(360px, 60vw);
  margin-inline: auto;
  aspect-ratio: 1/1;
}

.mug-stage .m-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px) scale(.9);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mug-stage .m-item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mug-stage svg {
  width: 80%;
  height: 80%;
}

.mug-labels {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.mug-labels button {
  background: none;
  border: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: .5;
  transition: opacity .3s, color .3s;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}

.mug-labels button.is-active {
  opacity: 1;
  color: var(--studio-red);
  border-color: var(--studio-red);
}

/* ===========================================================
   OCCASIONS
   =========================================================== */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .9rem;
}

.occasion-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: flex-grow .5s var(--ease);
}

.occasion-card .oc-bg {
  position: absolute;
  inset: 0;
  opacity: .55;
  background: linear-gradient(160deg, var(--studio-red), var(--ink));
  transition: transform .6s var(--ease);
}

.occasion-card:nth-child(2n) .oc-bg {
  background: linear-gradient(160deg, var(--foil-gold), var(--ink));
}

.occasion-card:hover .oc-bg {
  transform: scale(1.1);
}

.occasion-card .oc-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.15rem;
  z-index: 2;
}

.occasion-card .oc-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .7rem;
  opacity: .6;
  z-index: 2;
}

/* ===========================================================
   WHY US — ticket stubs
   =========================================================== */
.ticket-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.ticket {
  flex: 1 1 220px;
  position: relative;
  background: #fff;
  border: 1.5px dashed var(--line);
  border-radius: 4px;
  padding: 2rem 1.6rem;
}

.ticket::before,
.ticket::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.ticket::before {
  left: -11px;
}

.ticket::after {
  right: -11px;
}

.ticket .t-num {
  font-family: var(--display);
  color: var(--studio-red);
  font-size: 1.6rem;
}

.ticket h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.12;
  margin-top: .6rem;
}

.ticket p {
  font-size: .88rem;
  color: var(--charcoal);
  margin-top: .5rem;
  line-height: 1.55;
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-page>.section {
  padding: 4.5rem 0;
}

.about-page .section-head {
  margin-bottom: 2rem;
}

.about-page .ticket {
  padding: 1.4rem 1.3rem;
}

.about-media {
  position: relative;
  height: 100%;
  min-height: 280px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
}

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

.about-media .am-shape {
  display: none;
}

.about-media svg {
  display: none;
  position: absolute;
  inset: 0;
  width: 60%;
  height: 60%;
  margin: auto;
  opacity: .9;
}

.about-copy h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}

.about-copy .serif-lede {
  display: block;
  font-size: 1rem;
  margin-top: 1.2rem;
}

.about-copy p.body {
  margin-top: 1.3rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.about-copy .btn {
  margin-top: 1.8rem;
}

/* ===========================================================
   CONTACT TEASER / CTA BAND
   =========================================================== */
.cta-band {
  background: var(--studio-red);
  color: #fff;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
}

.cta-band .btn {
  margin-top: 2rem;
}

.cta-band .btn-ghost {
  border-color: #fff;
}

/* ===========================================================
   FOOTER — torn ticket style
   =========================================================== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 3rem;
  position: relative;
}

.footer-tear {
  height: 22px;
  width: 100%;
  background: repeating-linear-gradient(115deg, var(--paper) 0 12px, transparent 12px 24px);
  transform: translateY(-1px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-block: 2rem;
  border-bottom: 1px solid rgba(247, 243, 236, .15);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(247, 243, 236, .75);
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1.4rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 243, 236, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.footer-social a:hover {
  background: var(--studio-red);
  border-color: var(--studio-red);
}

.footer-col h5 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--foil-gold-soft);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: .7rem;
}

.footer-col ul li a {
  color: rgba(247, 243, 236, .8);
  font-size: .92rem;
  transition: color .3s, padding-left .3s;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .9rem;
  color: rgba(247, 243, 236, .85);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--studio-red);
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(247, 243, 236, .55);
}

/* ===========================================================
   CUSTOM CURSOR (desktop only)
   =========================================================== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform .28s var(--ease-soft), opacity .28s var(--ease-soft);
}

.custom-cursor.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ===========================================================
   PAGE HEADER (inner pages)
   =========================================================== */
.page-hero {
  padding: 6.5rem 0 1.7rem;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.page-hero .eyebrow {
  color: var(--foil-gold-soft);
}

.page-hero .eyebrow::before {
  background: var(--foil-gold-soft);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  margin-top: .6rem;
}

.page-hero p {
  font-family: var(--serif);
  font-style: italic;
  max-width: 44ch;
  margin-top: 1rem;
  opacity: .85;
}

.page-hero-slash {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, var(--studio-red) 40%, transparent 41%);
  opacity: .5;
}

/* ---------- Breadcrumb ---------- */
.crumb {
  font-size: .82rem;
  opacity: .7;
  margin-bottom: .4rem;
}

.crumb a:hover {
  text-decoration: underline;
}

/* ===========================================================
   PRODUCTS PAGE
   =========================================================== */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 0 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.3rem;
}

.search-box {
  position: relative;
  flex: 1 1 240px;
  max-width: 360px;
}

.search-box input {
  width: 100%;
  padding: .55rem 1rem .55rem 2.3rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-family: var(--sans);
  font-size: .86rem;
  color: var(--ink);
  transition: border-color .3s;
}

.search-box input:focus {
  outline: none;
  border-color: var(--ink);
}

.search-box svg {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  stroke: var(--charcoal);
}

.filter-select-wrap {
  position: relative;
  flex: 0 1 210px;
}

.filter-select {
  width: 100%;
  appearance: none;
  padding: .55rem 2.2rem .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}

.filter-select:focus {
  outline: none;
  border-color: var(--ink);
}

.filter-select-wrap::after {
  content: '\2193';
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: .85rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.catalog-grid .product-card {
  width: auto;
  min-width: 0;
}

.catalog-grid .product-card .pc-media {
  height: 200px;
  aspect-ratio: auto;
}

.catalog-grid .product-card .pc-media img {
  object-fit: contain;
  padding: 12px;
}

.catalog-grid .product-card .pc-body {
  padding: .95rem 1.05rem 1.05rem;
}

.catalog-grid .product-card h4 {
  font-size: 1.05rem;
}

.catalog-grid .pc-actions {
  padding-top: .75rem;
  gap: .5rem;
  display: flex;
  align-items: center;
}

.catalog-grid .pc-actions a.pc-view {
  flex: 1;
  padding: .5rem .4rem;
  font-size: .72rem;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-grid .pc-actions a.pc-wa {
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 38px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-grid .pc-actions a.pc-wa svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

@media (min-width:1081px) {
  .featured-products-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding: 1rem 0 0;
    scroll-snap-type: none;
    scrollbar-width: none;
  }

  .featured-products-rail::-webkit-scrollbar {
    display: none;
  }

  .featured-products-rail .product-card {
    width: auto;
  }

  .featured-products-rail+.rail-nav {
    display: none;
  }
}

.catalog-empty {
  text-align: center;
  padding: 4rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charcoal);
  display: none;
}

/* ===========================================================
   PRODUCT DETAILS
   =========================================================== */
.pd-grid {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 3rem;
  align-items: start;
}

.pd-media-main {
  width: 100%;
  max-height: 400px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  transition: transform .5s var(--ease);
}

.pd-media-main svg {
  width: 55%;
  height: 55%;
  transition: transform .6s var(--ease);
}

.pd-media-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.pd-thumbs {
  display: flex;
  gap: .65rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}

.pd-thumbs button {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, transform .2s;
}

.pd-thumbs button.is-active {
  border-color: var(--studio-red);
  box-shadow: 0 0 0 1px var(--studio-red);
}

.pd-thumbs svg {
  width: 60%;
  height: 60%;
}

.pd-info .pd-cat {
  color: var(--studio-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
}

.pd-info h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  margin-top: .3rem;
}

.pd-commerce {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  margin-top: .6rem;
}

.pd-commerce__price {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--ink);
}

.pd-commerce__stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #147a3d;
  font-size: 0.88rem;
  font-weight: 600;
}

.pd-info .pd-desc {
  margin-top: .9rem;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--charcoal);
}

.pd-features {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.pd-features li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .9rem;
}

.pd-features svg {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  fill: var(--studio-red);
  flex-shrink: 0;
}

.pd-options {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.1rem;
}

.pd-options span {
  padding: .4rem .85rem;
  border: 1.5px solid var(--ink);
  border-radius: 30px;
  font-size: .76rem;
  font-weight: 600;
}

.pd-actions {
  display: flex;
  gap: .8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.pd-actions .btn {
  padding: .75rem 1.4rem;
  font-size: .8rem;
}

.pd-note {
  margin-top: .8rem;
  font-size: .8rem;
  color: var(--charcoal);
  font-style: italic;
}

/* related */
.related-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 1.6rem;
}

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.contact-page .page-hero,
.about-page .page-hero,
.products-page .page-hero {
  padding-top: 4.8rem;
  padding-bottom: 1.1rem;
}

.products-page .page-hero .crumb,
.about-page .page-hero .crumb,
.contact-page .page-hero .crumb {
  margin-bottom: .2rem;
}

.products-page .page-hero p,
.about-page .page-hero p,
.contact-page .page-hero p {
  margin-top: .3rem;
  font-size: .86rem;
}

.contact-page>.section,
.about-page>.section,
.products-page>.section {
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}

.contact-page .contact-grid {
  gap: 2.2rem;
}

.contact-info-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: linear-gradient(120deg, transparent, var(--studio-red) 45%, transparent 46%);
  opacity: .4;
}

.ci-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  z-index: 1;
  margin-top: 1.6rem;
}

.contact-page .contact-info-card {
  padding: 1.8rem 2rem;
}

.contact-page .contact-info-card .display {
  font-size: 1.8rem !important;
  line-height: 1.02;
  margin-top: .3rem !important;
}

.contact-page .ci-list {
  gap: 1rem;
  margin-top: 1rem;
}

.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-page .ci-item {
  gap: .8rem;
}

.ci-item .ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--studio-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-page .ci-item .ci-icon {
  width: 34px;
  height: 34px;
}

.ci-item .ci-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.contact-page .ci-item .ci-icon svg {
  width: 16px;
  height: 16px;
}

.ci-item h5 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--foil-gold-soft);
  line-height: 1.2;
}

.ci-item p,
.ci-item a {
  font-size: 1rem;
  margin-top: .3rem;
  display: block;
}

.contact-page .ci-item p,
.contact-page .ci-item a {
  font-size: .92rem;
  line-height: 1.4;
  margin-top: .15rem;
}

.ci-item a:hover {
  color: var(--studio-red);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .06);
  height: 100%;
}

.contact-page .contact-form {
  gap: 1rem;
  padding: 1.8rem 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-page .form-row {
  gap: 1rem;
}

.form-field label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
  display: block;
  color: var(--charcoal);
}

.contact-page .form-field label {
  margin-bottom: .35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--line);
  background: transparent;
  padding: .75rem .2rem;
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color .3s;
  color: var(--ink);
}

.contact-page .form-field input,
.contact-page .form-field select,
.contact-page .form-field textarea {
  padding: .58rem .2rem;
}

.contact-page .form-field textarea {
  min-height: 92px;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .4rem center;
  padding-right: 1.8rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--studio-red);
  outline: none;
}

.map-embed {
  margin-top: 3.5rem;
  aspect-ratio: 16/6;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:1080px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-inner-wrap {
    justify-content: space-between;
  }

  .nav-logo-text {
    font-size: .9rem;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-burger {
    display: flex;
  }

  .cat-explorer {
    grid-template-columns: 1fr;
    height: auto;
  }

  .category-section {
    min-height: auto;
    padding: 4.5rem 0;
  }

  /* Hero: stack image on top, copy below on tablet */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 2rem 4rem;
  }

  .hero-image-wrap {
    order: -1;
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-banner-img {
    max-height: 50vh;
  }

  .hero-img-accent {
    inset: 6% -4% -4% 8%;
  }

  .cat-main {
    height: 380px;
  }

  .cat-list {
    flex-direction: row;
    overflow-x: auto;
    height: auto;
  }

  .cat-item {
    min-width: 220px;
    min-height: 96px;
  }

  .transform-grid,
  .about-split,
  .contact-grid,
  .pd-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .transform-stage {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .masonry {
    columns: 2 200px;
  }

  .occasion-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .custom-cursor {
    display: none;
  }
}

@media (max-width:640px) {
  .section {
    padding: 4.5rem 0;
  }

  .section-dark {
    padding-block: 3rem;
  }

  .about-page>.section {
    padding: 3.2rem 0;
  }

  .about-page .section-head {
    margin-bottom: 1.4rem;
  }

  .page-hero,
  .contact-page .page-hero,
  .about-page .page-hero,
  .products-page .page-hero {
    padding: 5.5rem 0 1.5rem;
  }

  .hero {
    padding-top: 6rem;
  }


  .floater.f1 {
    top: 8%;
    right: 4%;
    width: 130px;
  }

  .floater.f2 {
    top: 70%;
    right: 14%;
    width: 100px;
  }

  /* Hero mobile: full-width stacked */
  .hero {
    padding-top: 3.4rem;
  }

  .hero-inner {
    width: calc(100% - 2rem);
    gap: 1.4rem;
    padding-block: 1.3rem 3.5rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 580px;
    justify-self: center;
    align-items: flex-start;
    order: 1;
  }

  .hero-kicker {
    position: static;
    width: 100%;
    justify-content: flex-start;
    white-space: nowrap;
    font-size: clamp(.48rem, 2.4vw, .65rem);
    letter-spacing: .12em;
    gap: .35em;
    margin-bottom: .9rem;
  }

  .hero-kicker::before {
    width: 18px;
  }

  .hero-image-wrap {
    order: 2;
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
    padding: 5px;
  }

  .hero-title {
    width: 100%;
    font-size: clamp(2.35rem, 12vw, 4rem);
    line-height: 1.12;
  }

  .hero-sub,
  .hero-highlights,
  .hero-ctas {
    width: 100%;
  }

  .hero-sub {
    text-align: justify;
    line-height: 1.45;
  }

  .hero-highlights {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: .25rem;
  }

  .hero-highlights span {
    flex: 0 1 auto;
    white-space: nowrap;
    padding: .5rem .35rem;
    font-size: .48rem;
    letter-spacing: .04em;
  }

  .hero-banner-img {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 20%;
  }

  .hero-img-accent {
    inset: 5% -3% -4% 6%;
  }

  .hero-scroll-cue {
    display: flex;
    bottom: 1.3rem;
  }

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

  .masonry {
    columns: 1 100%;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
  }

  .catalog-toolbar {
    gap: .8rem;
    padding: 1.2rem 0;
    margin-bottom: 1.4rem;
  }

  .search-box,
  .filter-select-wrap {
    flex-basis: 100%;
    max-width: none;
  }

  .catalog-grid .product-card {
    width: auto;
    min-width: 0;
  }

  .catalog-grid .product-card .pc-tag {
    top: .45rem;
    left: .45rem;
    max-width: calc(100% - .9rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: .25rem .35rem;
    font-size: .48rem;
  }

  .catalog-grid .product-card .pc-body {
    display: flex;
    flex-direction: column;
    padding: .7rem;
  }

  .catalog-grid .product-card .pc-cat {
    font-size: .55rem;
    letter-spacing: .06em;
  }

  .catalog-grid .product-card h4 {
    font-size: .9rem;
  }

  .catalog-grid .product-card p {
    font-size: .68rem;
    line-height: 1.35;
  }

  .catalog-grid .pc-actions {
    gap: .35rem;
    margin-top: .7rem;
  }

  .catalog-grid .pc-actions a {
    min-width: 0;
    padding: .5rem .25rem;
    font-size: .55rem;
  }

  .products-page>.section.section-tight {
    padding: 1rem 0 3rem;
  }

  .products-page .catalog-toolbar {
    padding-top: 0;
  }

  .products-page .catalog-grid .product-card {
    height: 100%;
  }

  .products-page .catalog-grid .pc-actions {
    margin-top: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.4rem;
    padding-block: 2.4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-brand img {
    width: min(180px, 72vw);
    height: auto;
    margin-inline: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-grid>.footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-col h5 {
    font-size: .68rem;
  }

  .footer-col ul li a,
  .footer-contact li {
    font-size: .74rem;
  }

  .footer-contact li,
  .footer-contact span,
  .footer-contact a,
  .footer-bottom span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .rail {
    padding-bottom: 1.6rem;
  }
}

/* ===========================================================
   FLOATING WHATSAPP BUTTON
   =========================================================== */
.wa-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 150;
  width: 58px;
  height: 58px;
  background: #1E9E52;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30, 158, 82, .45);
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1E9E52;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  70% {
    transform: scale(1.55);
    opacity: 0;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(30, 158, 82, .6);
}

.wa-float-label {
  position: absolute;
  right: calc(100% + .75rem);
  background: #17130F;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: .4rem .8rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .25s ease, transform .25s ease;
}

.wa-float-label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #17130F;
}

.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
  }
}

/* ===========================================================
   WhatsApp Multi-Branch Modal & Branch Cards
   =========================================================== */
.wa-branches-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px 28px 90px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.wa-branches-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wa-branches-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.wa-branches-dialog {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateY(16px) scale(0.96);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-branches-modal.is-open .wa-branches-dialog {
  transform: translateY(0) scale(1);
}
.wa-branches-header {
  background: #075e54;
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wa-modal-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-branches-header h4 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}
.wa-branches-header p {
  font-size: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.wa-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  opacity: 0.8;
  transition: opacity .2s;
}
.wa-modal-close:hover { opacity: 1; }
.wa-branches-list {
  padding: 12px;
  max-height: 360px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f0f2f5;
}
.wa-branch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all .2s ease;
}
.wa-branch-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #25d366;
}
.wa-branch-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f7ee;
  color: #128c7e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-branch-info {
  flex: 1;
  min-width: 0;
}
.wa-branch-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: #111;
  margin-bottom: 2px;
}
.wa-main-pill {
  font-size: 10px;
  background: #dcf8c6;
  color: #075e54;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
}
.wa-branch-addr {
  font-size: 11.5px;
  color: #667781;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.wa-branch-num {
  font-size: 11px;
  color: #128c7e;
  font-weight: 600;
}
.wa-branch-arrow {
  color: #8696a0;
  transition: transform .2s ease;
}
.wa-branch-item:hover .wa-branch-arrow {
  transform: translateX(3px);
  color: #25d366;
}

@media (max-width: 600px) {
  .wa-branches-modal {
    padding: 0;
    align-items: flex-end;
    justify-content: center;
  }
  .wa-branches-dialog {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
  }
}
