/* ============================================
   NIARA — Master Stylesheet
   Beauty that feels like you.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,200;0,300;0,400;1,300&family=Noto+Sans+KR:wght@300;400&display=swap');

/* ── VARIABLES ── */
:root {
  --blush: #f2c4ce;
  --petal: #e8aab8;
  --deep-rose: #c4384a;
  --crimson: #8b1a2a;
  --ivory: #fdf6f0;
  --warm-white: #faf3ee;
  --ink: #2a1a1e;
  --muted: #9a7a82;
  --light-muted: #c9a8b0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Noise texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.5;
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 9px; height: 9px;
  background: var(--crimson);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1px solid rgba(139,26,42,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 64px;
  background: rgba(250,243,238,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,26,42,0.07);
}
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img { text-decoration: none; display: block; }
.nav-logo span { font-style: italic; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  background: var(--crimson) !important;
  color: white !important;
  opacity: 1 !important;
  padding: 10px 20px;
  letter-spacing: 0.25em;
}
.nav-cta:hover { background: var(--deep-rose) !important; }
.nav-hangul {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.3em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(0.8);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,26,42,0.6) 0%, rgba(42,26,30,0.5) 50%, rgba(232,170,184,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 96px;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10px;
  letter-spacing: 0.6em;
  color: rgba(242,196,206,0.8);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  color: #fdf6f0;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-headline em { font-style: italic; color: var(--blush); }
.hero-sub {
  font-size: 15px;
  font-weight: 200;
  line-height: 1.85;
  color: rgba(253,246,240,0.7);
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,246,240,0.4);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(253,246,240,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blush);
  color: var(--crimson);
  border: none;
  padding: 16px 36px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  cursor: none;
  transition: background 0.3s, color 0.3s;
}
.btn-primary:hover { background: white; color: var(--crimson); }
.btn-ghost {
  background: transparent;
  color: rgba(253,246,240,0.8);
  border: 1px solid rgba(253,246,240,0.3);
  padding: 15px 28px;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-family: 'Noto Sans KR', sans-serif;
  cursor: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: rgba(253,246,240,0.8); color: white; }

/* ── MARQUEE ── */
.marquee-band {
  background: var(--crimson);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  padding: 0 48px;
  letter-spacing: 0.1em;
}

/* ── SECTION COMMONS ── */
.section-eyebrow {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.7;
}
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  color: var(--crimson);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-headline em { font-style: italic; }

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about-img { position: relative; overflow: hidden; }
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(139,26,42,0.15), transparent);
}
.about-text {
  background: var(--ivory);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.9;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 36px;
}
.about-values { display: flex; flex-direction: column; gap: 12px; }
.value-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--ink);
  opacity: 0.6;
}
.value-row::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--petal);
  flex-shrink: 0;
}

/* ── RITUAL ── */
.ritual { padding: 100px 64px; background: var(--warm-white); }
.ritual-header { text-align: center; margin-bottom: 64px; }
.ritual-sub {
  font-size: 13px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.1em;
  max-width: 480px;
  margin: 0 auto;
}
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(196,56,74,0.1);
  margin-top: 48px;
}
.ritual-step-card {
  background: var(--warm-white);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.ritual-step-card:hover { background: rgba(242,196,206,0.2); }
.rs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--crimson);
  opacity: 0.4;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}
.rs-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--crimson);
  margin-bottom: 8px;
}
.rs-name em { font-style: italic; }
.rs-hero {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.rs-hangul {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 9px;
  color: var(--light-muted);
  letter-spacing: 0.2em;
}
.rs-line { width: 20px; height: 1px; background: var(--petal); margin: 16px 0; }

/* ── PRODUCTS ── */
.products { padding: 100px 64px; background: var(--ivory); }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.products-note {
  font-size: 12px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-align: right;
  max-width: 200px;
  line-height: 1.7;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(196,56,74,0.08);
}
.product-card {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--blush);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: saturate(0.9);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,26,42,0.3) 0%, transparent 50%);
}
.oos-badge, .coming-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 7px 14px;
  font-family: 'Noto Sans KR', sans-serif;
  backdrop-filter: blur(8px);
}
.oos-badge {
  background: rgba(42,26,30,0.75);
  color: rgba(253,246,240,0.9);
  border: 1px solid rgba(253,246,240,0.15);
}
.coming-badge {
  background: rgba(139,26,42,0.85);
  color: rgba(253,246,240,0.95);
  border: 1px solid rgba(232,170,184,0.3);
}
.product-step {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-style: italic;
  color: rgba(253,246,240,0.7);
  letter-spacing: 0.2em;
}
.product-info { padding: 28px 28px 36px; }
.product-ritual-tag {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--crimson);
  line-height: 1.2;
  margin-bottom: 8px;
}
.product-name em { font-style: italic; }
.product-hero-ing {
  font-size: 11px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  line-height: 1.7;
}
.product-line { width: 100%; height: 1px; background: rgba(196,56,74,0.1); margin: 16px 0; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--crimson);
  font-weight: 400;
}
.product-price.oos { opacity: 0.4; text-decoration: line-through; }
.notify-btn {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson);
  background: none;
  border: 1px solid rgba(139,26,42,0.3);
  padding: 8px 14px;
  cursor: none;
  font-family: 'Noto Sans KR', sans-serif;
  transition: background 0.3s, color 0.3s;
}
.notify-btn:hover { background: var(--crimson); color: white; }

/* ── COMING SOON SECTION ── */
.coming-soon-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cs-bg { position: absolute; inset: 0; }
.cs-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
}
.cs-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(139,26,42,0.5), rgba(42,26,30,0.7));
}
.cs-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 48px;
  max-width: 700px;
}
.cs-eyebrow {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10px;
  letter-spacing: 0.6em;
  color: rgba(232,170,184,0.8);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cs-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: #fdf6f0;
  line-height: 1.05;
  margin-bottom: 24px;
}
.cs-headline em { font-style: italic; color: var(--blush); }
.cs-sub {
  font-size: 14px;
  font-weight: 200;
  color: rgba(253,246,240,0.65);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 48px;
}
.cs-form { display: flex; max-width: 420px; margin: 0 auto; }
.cs-input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  padding: 15px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}
.cs-input::placeholder { color: rgba(255,255,255,0.4); }
.cs-input:focus { border-color: rgba(232,170,184,0.6); }
.cs-btn {
  background: var(--blush);
  color: var(--crimson);
  border: 1px solid var(--blush);
  padding: 15px 28px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  cursor: none;
  transition: background 0.3s;
  white-space: nowrap;
}
.cs-btn:hover { background: white; }
.cs-thanks {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--blush);
  letter-spacing: 0.1em;
}
.cs-privacy { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 14px; }

/* ── PHILOSOPHY ── */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.phil-img { position: relative; overflow: hidden; }
.phil-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
.phil-img::after { content: ''; position: absolute; inset: 0; background: rgba(139,26,42,0.1); }
.phil-text {
  background: var(--crimson);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phil-eyebrow {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(232,170,184,0.7);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.phil-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  color: #fdf6f0;
  line-height: 1.2;
  margin-bottom: 32px;
}
.phil-headline em { font-style: italic; color: var(--blush); }
.phil-statements { display: flex; flex-direction: column; gap: 20px; }
.phil-stmt { display: flex; gap: 20px; align-items: flex-start; }
.phil-stmt-line { width: 24px; height: 1px; background: rgba(232,170,184,0.4); margin-top: 10px; flex-shrink: 0; }
.phil-stmt-text { font-size: 14px; font-weight: 200; line-height: 1.7; color: rgba(253,246,240,0.75); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 45vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 80px 96px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.7);
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,26,42,0.7), transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: #fdf6f0;
  line-height: 1.05;
}
.page-hero-content h1 em { font-style: italic; color: var(--blush); }
.page-hero-content p {
  font-size: 14px;
  font-weight: 200;
  color: rgba(253,246,240,0.6);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ── ABOUT PAGE ── */
.about-full { padding: 100px 96px; background: var(--ivory); }
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
.about-full-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 300;
  color: var(--crimson);
  line-height: 1.2;
  margin-bottom: 28px;
}
.about-full-text h2 em { font-style: italic; }
.about-full-text p {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.95;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 20px;
}
.about-full-img { position: relative; overflow: hidden; border-radius: 0; }
.about-full-img img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(196,56,74,0.08);
  margin-top: 64px;
}
.value-card {
  background: var(--ivory);
  padding: 48px 32px;
  transition: background 0.3s;
}
.value-card:hover { background: rgba(242,196,206,0.2); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--crimson);
  opacity: 0.35;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--crimson);
  margin-bottom: 12px;
}
.value-title em { font-style: italic; }
.value-desc {
  font-size: 12px;
  font-weight: 200;
  line-height: 1.8;
  color: var(--muted);
}
.value-divider { width: 20px; height: 1px; background: var(--petal); margin: 14px 0; }

/* ── MASCOTS ── */
.mascots-section { padding: 100px 96px; background: var(--blush); }
.mascots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(139,26,42,0.1); margin-top: 48px; }
.mascot-card { background: var(--blush); padding: 56px 40px; text-align: center; transition: background 0.3s; }
.mascot-card:hover { background: rgba(255,255,255,0.4); }
.mascot-symbol { font-size: 48px; margin-bottom: 20px; }
.mascot-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--crimson);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.mascot-role {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mascot-desc { font-size: 13px; font-weight: 200; line-height: 1.8; color: var(--ink); opacity: 0.65; }
.mascot-divider { width: 24px; height: 1px; background: var(--petal); margin: 16px auto; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #fdf6f0;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}
.footer-logo span { font-style: italic; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(253,246,240,0.4);
  margin-bottom: 16px;
}
.footer-hangul {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 9px;
  color: rgba(253,246,240,0.2);
  letter-spacing: 0.4em;
}
.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(253,246,240,0.3);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  font-weight: 200;
  color: rgba(253,246,240,0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blush); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 10px; color: rgba(253,246,240,0.2); letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(253,246,240,0.3);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--blush); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 0.8; } }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 20px 28px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 32px; }
  .about-strip, .philosophy, .about-full-grid { grid-template-columns: 1fr; }
  .about-img, .phil-img { height: 340px; }
  .about-text, .phil-text { padding: 56px 32px; }
  .ritual { padding: 72px 28px; }
  .ritual-steps { grid-template-columns: 1fr 1fr; }
  .products { padding: 72px 28px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .mascots-grid { grid-template-columns: 1fr; }
  .about-full { padding: 72px 32px; }
  .mascots-section { padding: 72px 32px; }
  footer { grid-template-columns: 1fr 1fr; padding: 48px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 20px 32px; }
  .page-hero { padding: 80px 32px 48px; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .ritual-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 48px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
