/* ===== KAMAGIO — Brand stylesheet ===== */
:root {
  --ink: #1f2a23;
  --ink-soft: #2c3a30;
  --lime: #7fb344;
  --lime-bright: #9ed05a;
  --lime-soft: #d8ecbb;
  --sand: #f6f3ec;
  --paper: #ffffff;
  --line: #e5e2d8;
  --muted: #6b756c;
  --coral: #f08572;
  --sky: #7fc3d8;
  --shadow-sm: 0 4px 18px rgba(31, 42, 35, 0.06);
  --shadow-md: 0 18px 50px rgba(31, 42, 35, 0.12);
  --shadow-lg: 0 30px 80px rgba(31, 42, 35, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  font-weight: 700;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--lime); display: inline-block;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  background: rgba(246, 243, 236, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(31,42,35,.06);
}
.nav .row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 2px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--lime);
  transition: right .3s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: var(--ink); color: var(--sand) !important;
  padding: 10px 20px !important; border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--lime); color: var(--ink) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
}
.lang-toggle .opt {
  background: none; border: none; cursor: pointer;
  padding: 4px 8px; border-radius: 999px;
  color: var(--muted); transition: all .2s var(--ease);
}
.lang-toggle .opt.active { background: var(--ink); color: var(--sand); }
.lang-toggle .opt:not(.active):hover { color: var(--ink); }
.lang-toggle .sep { color: var(--line); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translate(0, 7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translate(0, -7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  --mx: 50%; --my: 50%;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 80% 20%, rgba(127,179,68,.18), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(127,195,216,.15), transparent 60%),
    var(--sand);
  z-index: -2;
}
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(380px circle at var(--mx) var(--my),
    rgba(127, 179, 68, 0.12), transparent 70%);
  z-index: -1; transition: background .15s linear;
}
.hero .grid-blob {
  position: absolute; right: -10%; top: 8%;
  width: 60vw; max-width: 820px; aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, var(--lime-bright), var(--lime) 60%, var(--ink) 100%);
  filter: blur(80px); opacity: .25; border-radius: 50%;
  animation: float 14s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 96px);
  margin: 18px 0 22px;
}
.hero h1 .accent {
  background: linear-gradient(110deg, var(--lime) 0%, var(--ink) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero h1 .dot {
  display: inline-block; width: .55em; height: .55em; border-radius: 50%;
  background: var(--lime); transform: translateY(.05em);
  box-shadow: 0 0 0 0 rgba(127,179,68,.4);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127,179,68,.45); }
  70% { box-shadow: 0 0 0 22px rgba(127,179,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,179,68,0); }
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted); max-width: 540px; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  text-align: center;
}
.btn-primary { background: var(--ink); color: var(--sand); }
.btn-primary:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--sand); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-stats {
  margin-top: 56px;
  display: flex; gap: 40px; flex-wrap: wrap;
}
.hero-stats .stat .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px; font-weight: 700; color: var(--ink);
}
.hero-stats .stat .lab {
  font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em;
}

.hero-visual {
  position: relative; aspect-ratio: 1; max-width: 540px; justify-self: end;
  transition: transform .4s var(--ease);
}
.hero-visual .shape {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--lime) 0%, var(--ink) 100%);
  border-radius: 42% 58% 64% 36% / 42% 38% 62% 58%;
  animation: morph 12s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 64% 36% / 42% 38% 62% 58%; transform: rotate(0); }
  50%      { border-radius: 60% 40% 36% 64% / 56% 62% 38% 44%; transform: rotate(8deg); }
}
.hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 42% 58% 64% 36% / 42% 38% 62% 58%;
  animation: morph 12s ease-in-out infinite;
  filter: saturate(1.05);
}
.hero-visual .badge {
  position: absolute; bottom: -10px; left: -10px;
  background: var(--paper);
  border-radius: 18px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatY 6s ease-in-out infinite;
  z-index: 3;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-visual .badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); }
.hero-visual .badge .text { font-size: 13px; font-weight: 600; }

/* ===== SECTION ===== */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 56px); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 17px; max-width: 620px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center p { margin: 0 auto; }

/* ===== FEATURES ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--lime-soft); }
.feature .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--lime-soft); color: var(--ink);
  display: grid; place-items: center; margin-bottom: 18px;
}
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ===== AUDIENCES ===== */
.audiences { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.audience {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: block;
}
.audience:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.audience img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.audience:hover img { transform: scale(1.06); }
.audience::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,42,35,.85) 100%);
}
.audience .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px; color: #fff; z-index: 2;
}
.audience .body .tag {
  display: inline-block; font-size: 11px; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 12px;
}
.audience .body h3 { color: #fff; font-size: 28px; margin-bottom: 6px; }
.audience .body p { color: rgba(255,255,255,.85); font-size: 14px; }

/* ===== PRODUCTS ===== */
.product-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tab {
  padding: 10px 18px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all .25s var(--ease);
  color: var(--ink);
}
.tab:hover { border-color: var(--ink); }
.tab.active { background: var(--ink); color: var(--sand); border-color: var(--ink); }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px;
}
.product {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(127,179,68,.3); }
.product .img-wrap {
  aspect-ratio: 1; position: relative;
  background: linear-gradient(160deg, #fafaf6, #efeee6);
  overflow: hidden;
}
.product .img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 18px;
  transition: transform .6s var(--ease), opacity .18s var(--ease);
}
.product:hover .img-wrap img { transform: scale(1.06) rotate(-2deg); }
.product .img-wrap img.swap { opacity: 0; transform: scale(0.97); }
.product .img-wrap .badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--sand);
  font-size: 11px; padding: 6px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .1em;
  z-index: 2;
}
.product .img-wrap .color-name {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  font-size: 11px; font-weight: 600;
  color: var(--ink);
  padding: 6px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 2;
}
.product:hover .img-wrap .color-name { opacity: 1; transform: translateY(0); }
.product .body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product .body .name { font-weight: 700; font-size: 17px; color: var(--ink); }
.product .body .meta { font-size: 13px; color: var(--muted); }
.product .body .swatches {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 6px; padding-top: 4px;
}
.product .body .swatches .sw {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line);
  cursor: pointer; padding: 0;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.product .body .swatches .sw:hover { transform: scale(1.18); }
.product .body .swatches .sw.active { box-shadow: 0 0 0 2px var(--ink); transform: scale(1.12); }
.product .body .card-cta {
  margin-top: auto; padding-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.product .body .card-cta .count { color: var(--muted); }
.product .body .card-cta .link {
  color: var(--ink); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .25s var(--ease);
}
.product:hover .body .card-cta .link { color: var(--lime); }
.product:hover .body .card-cta .link .arrow { transform: translateX(3px); }
.product .body .card-cta .arrow { transition: transform .25s var(--ease); display: inline-block; }

/* ===== PROCESS ===== */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  position: relative;
}
.process::before {
  content: ""; position: absolute;
  top: 70px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--lime) 0 8px, transparent 8px 18px);
  opacity: .35; z-index: 0;
}
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  position: relative; z-index: 1;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: var(--lime-soft); box-shadow: var(--shadow-md); }
.step .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--lime);
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.step .ico {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--lime-soft); color: var(--ink);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ===== ENGRAVING ===== */
.engraving {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--sand);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.engraving::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  opacity: .3;
}
.engraving h2 { color: var(--sand); font-size: clamp(32px, 4vw, 48px); }
.engraving .eyebrow { color: var(--lime-bright); }
.engraving .eyebrow::before { background: var(--lime-bright); }
.engraving p { color: rgba(246,243,236,.78); font-size: 16.5px; margin: 16px 0 28px; }
.engraving ul { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.engraving ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.engraving ul li::before {
  content: "✓"; color: var(--lime-bright); font-weight: 700; flex-shrink: 0;
}
.engraving .visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  background: var(--sand);
}
.engraving .visual img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.engraving .btn-primary { background: var(--lime); color: var(--ink); }
.engraving .btn-primary:hover { background: var(--lime-bright); color: var(--ink); }
.engraving .btn-ghost { border-color: rgba(246,243,236,.4); color: var(--sand); }
.engraving .btn-ghost:hover { background: var(--sand); color: var(--ink); border-color: var(--sand); }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery .g-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
}
.gallery .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
}
.gallery .g-item:hover img { transform: scale(1.08); }
.gallery .g-item.span-2 { grid-column: span 2; }
.gallery .g-item.row-2 { grid-row: span 2; }
.gallery .g-item .g-cap {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(31,42,35,.7);
  backdrop-filter: blur(6px);
  color: #fff; padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .04em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery .g-item:hover .g-cap { opacity: 1; transform: translateY(0); }

/* ===== WHOLESALE ===== */
.wholesale {
  background: var(--ink);
  color: var(--sand);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.wholesale::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(127,179,68,.18), transparent 60%),
    radial-gradient(500px 300px at 80% 80%, rgba(127,195,216,.10), transparent 60%);
}
.wholesale > * { position: relative; z-index: 1; }
.wholesale .eyebrow { color: var(--lime-bright); justify-content: center; display: inline-flex; }
.wholesale .eyebrow::before { background: var(--lime-bright); }
.wholesale h2 { color: var(--sand); font-size: clamp(32px, 4vw, 48px); margin: 14px 0 18px; }
.wholesale p { color: rgba(246,243,236,.78); max-width: 640px; margin: 0 auto 30px; font-size: 16.5px; }
.wholesale .tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 760px; margin: 0 auto 40px;
}
.tier {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 22px;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--lime-bright); }
.tier .qty { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 700; color: var(--lime-bright); }
.tier .lab { font-size: 13px; color: rgba(246,243,236,.7); text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 16px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-card:hover { border-color: var(--lime); transform: translateX(4px); }
.contact-card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--lime-soft); color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-card .lab { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.contact-card .val { font-size: 17px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.contact-card .val a:hover { color: var(--lime); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form h3 { font-size: 24px; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px; font-family: inherit; color: var(--ink);
  background: var(--sand);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--lime); background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.footer-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-col p { color: var(--muted); font-size: 14.5px; }
.footer-col img.logo { height: 28px; margin-bottom: 14px; }
.footer-bot {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-size: 13px; color: var(--muted); flex-wrap: wrap;
}

/* ===== STICKY BOTTOM CTA ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 18px;
  z-index: 80;
  pointer-events: none;
  opacity: 0; transform: translateY(40px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta.hidden { opacity: 0 !important; pointer-events: none !important; transform: translateY(40px); }
.sticky-cta .row {
  background: var(--ink); color: var(--sand);
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 20px 60px rgba(31,42,35,.25);
  border: 1px solid rgba(255,255,255,.06);
  max-width: 720px; margin: 0 auto;
}
.sticky-cta .msg { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }
.sticky-cta .ping {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime-bright);
  position: relative; flex-shrink: 0;
}
.sticky-cta .ping span {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--lime-bright);
  animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping {
  0% { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.sticky-cta .actions { display: flex; align-items: center; gap: 6px; }
.sticky-cta .btn-primary {
  background: var(--lime); color: var(--ink);
  padding: 10px 18px; font-size: 14px;
}
.sticky-cta .btn-primary:hover { background: var(--lime-bright); transform: translateY(0); }
.sticky-cta .dismiss {
  background: rgba(255,255,255,.06); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  color: rgba(255,255,255,.6);
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.sticky-cta .dismiss:hover { background: rgba(255,255,255,.12); color: var(--sand); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31,42,35,.92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
  opacity: 0; transition: opacity .25s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox .panel {
  background: var(--paper); border-radius: var(--radius-lg);
  max-width: 1080px; width: 100%; max-height: 90vh;
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(20px); transition: transform .35s var(--ease);
}
.lightbox.open .panel { transform: translateY(0); }
.lightbox .left {
  background: linear-gradient(160deg, #fafaf6, #efeee6);
  display: grid; place-items: center; padding: 40px;
  position: relative;
}
.lightbox .left img {
  max-width: 100%; max-height: 70vh; object-fit: contain;
  transition: opacity .18s var(--ease), transform .25s var(--ease);
}
.lightbox .left img.swap { opacity: 0; transform: scale(0.97); }
.lightbox .right {
  padding: 40px; overflow-y: auto; max-height: 90vh;
}
.lightbox .right .eyebrow { margin-bottom: 12px; }
.lightbox .right h3 { font-size: 28px; margin-bottom: 10px; }
.lightbox .right .lb-meta { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.lightbox .right p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.65; }

.lb-color-row {
  background: var(--sand); border-radius: 16px;
  padding: 14px 16px; margin-bottom: 22px;
}
.lb-color-label { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 13px; }
.lb-color-label .lab { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; font-size: 11px; }
.lb-color-label .val { font-weight: 700; color: var(--ink); }
.lb-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.lb-swatches .lb-sw {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer; padding: 0;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.lb-swatches .lb-sw:hover { transform: scale(1.15); }
.lb-swatches .lb-sw.active { box-shadow: 0 0 0 2px var(--ink); transform: scale(1.1); }

.lightbox .right .lb-features {
  list-style: none; display: grid; gap: 8px; margin-bottom: 24px;
}
.lightbox .right .lb-features li {
  padding-left: 22px; position: relative; font-size: 14.5px; color: var(--ink-soft);
}
.lightbox .right .lb-features li::before {
  content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 700;
}
.lightbox .right .lb-cta {
  background: var(--ink); color: var(--sand);
  width: 100%; justify-content: center;
}
.lightbox .right .lb-cta:hover { background: var(--lime); color: var(--ink); }

.lightbox .close {
  position: absolute; top: 18px; right: 18px; z-index: 5;
  background: var(--paper); border: 1px solid var(--line);
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
  color: var(--ink);
}
.lightbox .close:hover { background: var(--ink); color: var(--sand); transform: rotate(90deg); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .54s; }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--ink); color: var(--sand);
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 60px; align-items: center;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px; font-weight: 600; opacity: .9;
  display: flex; align-items: center; gap: 60px;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-self: center; max-width: 420px; width: 100%; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .audiences { grid-template-columns: 1fr; }
  .engraving { grid-template-columns: 1fr; padding: 50px 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-row { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-item.span-2, .gallery .g-item.row-2 { grid-column: auto; grid-row: auto; }
  .lightbox .panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .lightbox .left { padding: 24px; }
  .lightbox .right { max-height: none; padding: 28px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); flex-direction: column; gap: 0; padding: 18px 24px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-links a:last-child { border-bottom: none; }
  .menu-toggle { display: block; }
  .features, .wholesale .tiers, .row-2, .process { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; gap: 30px; }
  .wholesale, .engraving { padding: 40px 24px; }
  .hero { padding: 110px 0 60px; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat .num { font-size: 28px; }
  .sticky-cta { bottom: 12px; padding: 0 12px; }
  .sticky-cta .row { padding: 6px 6px 6px 16px; gap: 8px; }
  .sticky-cta .msg span:not(.ping) { display: none; }
  .sticky-cta .btn-primary { padding: 10px 14px; font-size: 13px; }
  .lightbox { padding: 0; }
  .lightbox .panel { border-radius: 0; max-height: 100vh; }
}
