/* ================================================
   FIRE LINK — Global Stylesheet
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg:          #000000;
  --bg-2:        #080808;
  --bg-3:        #0f0f0f;
  --bg-card:     #0b0b0b;
  --text:        #ffffff;
  --text-2:      #bcbcbc;
  --text-3:      #767676;
  --accent:      #1AABDE;
  --flame:       #FF9A3C;
  --flame-deep:  #FF5722;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.13);
  --glass-bg:    rgba(0,0,0,0.48);
  --serif:       'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:        'Montserrat', system-ui, -apple-system, sans-serif;
  --max-w:       1160px;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --dur:         0.3s;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

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

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

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.88;
}

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.2rem;
}

.section-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 0.88rem;
  color: var(--text-3);
  max-width: 460px;
  margin: 0 auto 3rem;
}

.section-header { text-align: center; }

.text-center { text-align: center; }

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--dur) ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: var(--text); }

.btn-outline {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ================================================
   NAVIGATION — Glassmorphism
   ================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.9rem 2.5rem;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition:
    padding       0.4s var(--ease-out),
    background    0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease,
    border-color  0.4s ease;
}

.nav.scrolled {
  padding: 1.1rem 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  transition: color var(--dur) ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--flame);
  transition: width var(--dur) ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); }

/* ================================================
   FLAME SVG
   ================================================ */

.flame-svg {
  width: 52px;
  height: 83px;
  transform-origin: 50% 100%;
  filter:
    drop-shadow(0 0 14px rgba(255,154,60,0.75))
    drop-shadow(0 0 38px rgba(255,154,60,0.3));
  will-change: transform;
  display: block;
}

.flame-svg--md {
  width: 34px;
  height: 54px;
  filter:
    drop-shadow(0 0 9px rgba(255,154,60,0.65))
    drop-shadow(0 0 22px rgba(255,154,60,0.25));
}

/* ================================================
   HERO
   ================================================ */

.hero {
  height: 230vh;
  position: relative;
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 68% 56% at 50% 44%,
    rgba(255,154,60,0.14)  0%,
    rgba(255,107,53,0.07)  38%,
    rgba(26,171,222,0.035) 62%,
    transparent           78%
  );
  pointer-events: none;
  will-change: opacity;
}

/* --- Candle Assembly --- */
.hero-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  /* Slight vertical offset toward upper-center */
  margin-bottom: 4rem;
}

.flame-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -3px;
  will-change: transform, opacity;
}

/* Wick */
.candle-wick {
  width: 2.5px;
  height: 16px;
  background: linear-gradient(180deg, #6a4820 0%, #2a1500 100%);
  border-radius: 2px;
  position: relative;
  z-index: 3;
  margin-bottom: -1px;
  will-change: opacity;
}

/* Black Tin */
.candle-tin {
  width: 116px;
  height: 136px;
  position: relative;
  border-radius: 5px 5px 4px 4px;
  background: linear-gradient(
    90deg,
    #303030 0%,
    #191919 12%,
    #0d0d0d 32%,
    #080808 50%,
    #0d0d0d 68%,
    #191919 88%,
    #303030 100%
  );
  border: 1px solid #272727;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.022),
    0 14px 52px rgba(0,0,0,1),
    0 4px 14px rgba(0,0,0,0.9),
    inset 2px 0 5px rgba(255,255,255,0.038),
    inset -2px 0 5px rgba(0,0,0,0.55);
  will-change: opacity;
}

/* Rim */
.candle-tin::before {
  content: '';
  position: absolute;
  top: -5px; left: -3px; right: -3px;
  height: 10px;
  background: linear-gradient(180deg, #454545 0%, #2a2a2a 58%, #191919 100%);
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
  border: 1px solid #3a3a3a;
  border-bottom: none;
  z-index: 1;
}

/* Wax pool */
.candle-tin::after {
  content: '';
  position: absolute;
  top: 8px; left: 11%; right: 11%;
  height: 16px;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(250,218,165,0.18) 0%,
    rgba(230,195,138,0.09) 55%,
    transparent 100%
  );
  border-radius: 50%;
  z-index: 0;
}

.tin-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  position: relative;
  z-index: 2;
}

.tin-l1, .tin-l2 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.82);
  line-height: 1.25;
  padding-left: 0.38em; /* optical correction for letter-spacing */
}

/* --- Hero Text --- */
.hero-text {
  position: absolute;
  bottom: 9vh;
  left: 0; right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 4;
  will-change: transform, opacity;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--flame);
  border: 1px solid rgba(255,154,60,0.35);
  padding: 0.38rem 1.25rem;
  border-radius: 2px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-tagline {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Scroll Hint --- */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  will-change: opacity, transform;
}

.scroll-hint span {
  font-size: 0.57rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-3);
}

.scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--text-3), transparent);
  transform-origin: top;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0); opacity: 0; transform-origin: top; }
  25%       { transform: scaleY(1); opacity: 1; transform-origin: top; }
  55%, 75%  { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ================================================
   SECTIONS
   ================================================ */

.section { padding: 7rem 0; }

/* ================================================
   ABOUT
   ================================================ */

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

.about-left > p {
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.feature-accent {
  width: 2px;
  min-height: 44px;
  background: linear-gradient(180deg, var(--flame) 0%, transparent 100%);
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.feature-item p { font-size: 0.8rem; color: var(--text-3); margin: 0; }

/* About candle display */
.about-right { display: flex; justify-content: center; align-items: center; }

/* Real product photo */
.candle-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.candle-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.85)) drop-shadow(0 0 80px rgba(255,154,60,0.08));
  transition: filter 0.5s ease;
}

.candle-photo:hover {
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.85)) drop-shadow(0 0 100px rgba(255,154,60,0.15));
}

.about-candle-display {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acd-flame-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: -3px;
}

.acd-wick {
  width: 2px;
  height: 12px;
  background: linear-gradient(180deg, #6a4820 0%, #2a1500 100%);
  border-radius: 2px;
  margin-bottom: -1px;
  z-index: 1;
  position: relative;
}

.acd-tin {
  width: 100px;
  height: 118px;
  border-radius: 5px 5px 4px 4px;
  background: linear-gradient(
    90deg,
    #2e2e2e 0%, #181818 12%,
    #0a0a0a 40%, #080808 50%,
    #0a0a0a 60%, #181818 88%,
    #2e2e2e 100%
  );
  border: 1px solid #242424;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.85), 0 0 60px rgba(255,154,60,0.04);
}

.acd-tin::before {
  content: '';
  position: absolute;
  top: -4px; left: -2px; right: -2px;
  height: 8px;
  background: linear-gradient(180deg, #404040 0%, #242424 100%);
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}

.acd-label {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.75);
  text-align: center;
  position: relative;
  z-index: 1;
  padding-left: 0.28em;
}

/* ================================================
   SHOP TEASER
   ================================================ */

.shop-teaser {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color var(--dur) ease, transform 0.4s var(--ease-out);
}

.product-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-5px);
}

.pc-image {
  height: 220px;
  background: linear-gradient(180deg, #030303 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.pc-tin {
  width: 72px;
  height: 85px;
  background: linear-gradient(
    90deg,
    #282828 0%, #131313 18%,
    #080808 50%,
    #131313 82%, #282828 100%
  );
  border-radius: 4px;
  border: 1px solid #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.85);
  position: relative;
}

.pc-tin::before {
  content: '';
  position: absolute;
  top: -4px; left: -2px; right: -2px;
  height: 7px;
  background: linear-gradient(180deg, #383838 0%, #1c1c1c 100%);
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}

.pc-tin-label {
  font-family: var(--serif);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  padding-left: 0.22em;
}

.pc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--flame);
  transition: background var(--dur) ease;
}

.product-card:hover .pc-overlay { background: rgba(0,0,0,0.42); }

.pc-info { padding: 1.35rem 1.4rem 1.6rem; }

.pc-info h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.pc-info p { font-size: 0.78rem; color: var(--text-3); margin: 0; }

/* ================================================
   NOTIFY SECTION
   ================================================ */

.notify-section {
  position: relative;
  overflow: hidden;
}

.notify-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,171,222,0.055) 0%, transparent 60%);
  pointer-events: none;
}

.notify-box {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.notify-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.notify-box > p { margin-bottom: 2.5rem; }

.form-row {
  display: flex;
  gap: 0.75rem;
}

.form-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 0.82rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.83rem;
  outline: none;
  border-radius: 0;
  transition: border-color var(--dur) ease;
}

.form-input:focus    { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-3); }

.form-note {
  font-size: 0.67rem;
  color: var(--text-3);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

.notify-success {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--flame);
  margin-top: 1.5rem;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-logo span { color: var(--accent); }
.footer-brand p   { font-size: 0.77rem; color: var(--text-3); }

.footer-links { display: flex; gap: 4rem; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.2rem;
}

.footer-col ul  { display: flex; flex-direction: column; gap: 0.85rem; }

.footer-col a {
  font-size: 0.8rem;
  color: var(--text-2);
  transition: color var(--dur) ease;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.7rem; color: var(--text-3); margin: 0; }
.footer-tagline  { font-family: var(--serif); font-style: italic; }

/* ================================================
   SCROLL REVEAL
   ================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.product-grid .product-card:nth-child(2) { transition-delay: 0.1s; }
.product-grid .product-card:nth-child(3) { transition-delay: 0.2s; }

/* ================================================
   INNER PAGE LAYOUTS (shop, terms, privacy, etc.)
   ================================================ */

.page-hero {
  padding: 11rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-hero p { max-width: 500px; margin: 0 auto; }

.page-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

.page-body h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--text);
  margin: 3.5rem 0 1rem;
}

.page-body h2:first-of-type { margin-top: 0; }

.page-body p  { margin-bottom: 1.25rem; }

.page-body ul, .page-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-2);
  line-height: 1.88;
}

.page-body ul { list-style: disc; }
.page-body ol { list-style: decimal; }

.page-body li { margin-bottom: 0.5rem; font-size: 0.92rem; }

.page-body strong { color: var(--text); font-weight: 600; }

.page-body a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) ease;
}
.page-body a:hover { border-bottom-color: var(--accent); }

.policy-meta {
  display: block;
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.policy-highlight {
  background: rgba(255,154,60,0.055);
  border-left: 2px solid var(--flame);
  padding: 1.2rem 1.5rem;
  border-radius: 0 3px 3px 0;
  margin: 1.5rem 0 2rem;
}

.policy-highlight p { color: var(--text-2); margin: 0; }

/* Shop grid (inner page) */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .about-grid   { gap: 4rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { gap: 3rem; }
}

/* Tablet portrait ≤ 768px */
@media (max-width: 768px) {
  .nav         { padding: 1.5rem; }
  .nav.scrolled{ padding: 1rem 1.5rem; }

  /* Slide-in mobile menu */
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 72vw;
    max-width: 300px;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1001;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a    { font-size: 0.9rem; }
  .nav-toggle     { display: flex; }

  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-right   { order: -1; }

  .product-grid  {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
  }

  .product-grid .product-card:nth-child(2),
  .product-grid .product-card:nth-child(3) { transition-delay: 0s; }

  .footer-top    { flex-direction: column; gap: 2.5rem; }
  .footer-links  { gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero-title { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero-cta   { flex-direction: column; align-items: center; width: 100%; padding: 0 1.5rem; }
  .hero-cta .btn { width: 100%; max-width: 280px; }

  .section { padding: 5rem 0; }

  .shop-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .container   { padding: 0 1.25rem; }
  .nav         { padding: 1.2rem 1.25rem; }
  .nav.scrolled{ padding: 0.9rem 1.25rem; }

  .section  { padding: 4rem 0; }

  .form-row { flex-direction: column; }
  .form-row .btn { width: 100%; }

  .candle-tin   { width: 96px; height: 114px; }
  .flame-svg    { width: 42px; height: 67px; }
  .hero-text    { bottom: 8vh; }

  .page-hero    { padding: 9rem 0 3.5rem; }
  .page-body    { padding: 3.5rem 0 5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-line { animation: none; }
}
