/* ==========================================================================
   ARISAND — Premium White & Gold Landing Page
   ========================================================================== */

:root {
  color-scheme: light;

  --header-h: 92px;

  --bg: #ffffff;
  --bg-soft: #faf7f2;
  --surface: #ffffff;
  --frame: #ffffff;

  --line: rgba(158, 120, 58, 0.32);
  --line-soft: rgba(23, 19, 14, 0.09);

  --gold-100: #ecd6a3;
  --gold-200: #8a6a30;
  --gold-300: #a9822f;
  --gold-400: #7c5c26;
  --gold-600: #5c431a;

  --gold-gradient: linear-gradient(120deg, var(--gold-400) 0%, var(--gold-100) 45%, var(--gold-300) 75%, var(--gold-400) 100%);
  --gold-gradient-text: linear-gradient(120deg, var(--gold-400) 0%, var(--gold-200) 50%, var(--gold-400) 100%);

  --text: #1a1512;
  --muted: #6c6156;
  --muted-2: #948a7c;

  --shadow-lg: 0 30px 70px rgba(23, 19, 14, 0.12);
  --shadow-gold: 0 16px 44px rgba(150, 105, 44, 0.22);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif: "Noto Serif KR", "Playfair Display", serif;
  --font-display: "Playfair Display", "Noto Serif KR", serif;
  --font-body: "Pretendard", "Noto Sans KR", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  background: var(--gold-300);
  color: #1a1408;
}

/* thin gold scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-600), var(--gold-300));
  border-radius: 999px;
  border: 2px solid var(--bg);
}

.site-shell {
  position: relative;
  background: var(--bg);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.03;
  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");
}

.progress-rail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 1000;
  background: rgba(23, 19, 14, 0.08);
}
.progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  transform-origin: left;
}

/* ==========================================================================
   Type helpers
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  color: var(--gold-200);
  font-weight: 600;
  margin: 0 0 1rem;
}

.eyebrow-shop {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: 0.16em;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 1.1rem;
}

.section-lead {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.05rem;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 em,
h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-200);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease), background 400ms var(--ease), color 400ms var(--ease);
  white-space: nowrap;
}

.button-sm {
  padding: 0.75rem 1.4rem;
  font-size: 0.85rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #17130a;
  background: var(--gold-gradient);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: var(--shadow-gold);
}

.button-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 22px 60px rgba(150, 105, 44, 0.3);
}

.button-secondary {
  color: var(--text);
  background: rgba(23, 19, 14, 0.02);
  border-color: var(--line-soft);
}

.button-secondary:hover {
  border-color: var(--gold-300);
  color: var(--gold-200);
}

.button-secondary svg {
  transition: transform 300ms var(--ease);
}

.button-secondary:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 400ms var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(23, 19, 14, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 1.18rem;
  transition: color 250ms ease;
}

.brand:hover .brand-text {
  color: var(--gold-200);
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.15rem;
}

/* Right-side icon cluster (cart / all-menu) */

.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: background 250ms ease, color 250ms ease;
}

.icon-btn:hover {
  background: rgba(23, 19, 14, 0.05);
  color: var(--gold-200);
}

.icon-btn[aria-expanded="true"] {
  background: rgba(201, 160, 84, 0.14);
  color: var(--gold-200);
}


.icon-btn-instagram img {
  display: block;
  border-radius: 6px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

/* Video carousel — sits below the solid header bar, not behind it */

.hero-slider {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 3%;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: calc(50% + var(--header-h) / 2);
  transform: translateY(-50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(23, 19, 14, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  opacity: 0.2;
  transition: opacity 250ms ease, background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.hero-arrow:hover {
  opacity: 1;
  background: rgba(201, 160, 84, 0.35);
  border-color: var(--gold-100);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0.2;
  transition: opacity 250ms ease;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll:hover {
  opacity: 1;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ==========================================================================
   OEM factory slider — full-bleed, no side frame, like the hero
   ========================================================================== */

.oem-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2.3 / 1;
  min-height: 260px;
  overflow: hidden;
  background: var(--frame);
}

.oem-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.oem-slide.is-active {
  opacity: 1;
}

.oem-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oem-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(23, 19, 14, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  opacity: 0.2;
  transition: opacity 250ms ease, background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.oem-arrow:hover {
  opacity: 1;
  background: rgba(201, 160, 84, 0.35);
  border-color: var(--gold-100);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.oem-arrow-prev {
  left: 1.5rem;
}

.oem-arrow-next {
  right: 1.5rem;
}

@media (max-width: 760px) {
  .oem-slider {
    min-height: 200px;
  }

  .oem-arrow {
    width: 2.4rem;
    height: 2.4rem;
  }

  .oem-arrow-prev {
    left: 0.8rem;
  }

  .oem-arrow-next {
    right: 0.8rem;
  }
}

/* ==========================================================================
   Stats banner
   ========================================================================== */

.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #faf8f5;
  padding: 1.8rem 3rem;
}

.stats-item {
  padding: 0 1.5rem;
  text-align: center;
  border-right: 1px solid #e8e2d8;
}

.stats-item:last-child {
  border-right: none;
}

.stats-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 2.3rem);
  line-height: 1;
  color: var(--text);
}

.stats-unit {
  font-size: 0.32em;
  font-weight: 600;
  color: var(--gold-300);
}

.stats-text {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.stats-check {
  align-self: center;
  width: 18px;
  height: 18px;
  color: var(--gold-300);
  flex-shrink: 0;
}

.stats-label {
  margin: 0;
  font-size: clamp(0.78rem, 0.8vw, 0.86rem);
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   Signature reveal
   ========================================================================== */

.signature {
  padding: 7rem 2rem 2.5rem;
  display: grid;
  justify-items: center;
  gap: 2.2rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(201, 160, 84, 0.1), transparent 55%), var(--bg);
}

.signature-lead {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

.signature-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.72rem;
  color: var(--muted-2);
  font-weight: 600;
}

.signature-heading {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.35;
  color: var(--text);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 3rem 2rem;
}

.stat-card {
  padding: 2.2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(23, 19, 14, 0.025), rgba(23, 19, 14, 0));
  text-align: center;
  transition: border-color 400ms ease, transform 400ms ease, box-shadow 400ms ease, background 400ms ease;
}

.stat-card:hover {
  border-color: var(--gold-300);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(150, 105, 44, 0.16);
  background: linear-gradient(160deg, rgba(201, 160, 84, 0.12), rgba(23, 19, 14, 0));
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.7rem;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Generic section
   ========================================================================== */

.section {
  padding: 7rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-product {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.section-shop {
  padding-top: 2rem;
}

/* ==========================================================================
   Product showcase
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 2.6rem 0;
}

.product-card {
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 400ms ease, transform 400ms ease, box-shadow 400ms ease;
  padding-bottom: 1.5rem;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-300);
  box-shadow: var(--shadow-lg);
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--frame);
}

.product-card-img {
  position: absolute;
  inset: 1.4rem;
  width: calc(100% - 2.8rem);
  height: calc(100% - 2.8rem);
  object-fit: contain;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 500ms ease, transform 700ms var(--ease);
}

.product-card-img.is-default {
  opacity: 1;
}

.product-card:hover .product-card-img.is-default {
  opacity: 0;
}

.product-card:hover .product-card-img.is-hover {
  opacity: 1;
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card h3 {
  margin: 1.3rem 1.4rem 0.5rem;
  font-size: 1.15rem;
}

.product-card p {
  margin: 0 1.4rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.product-tag {
  margin: 0 1.4rem;
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-200);
  border: 1px solid var(--line);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* ==========================================================================
   Shop — product showroom
   ========================================================================== */

.shop-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.shop-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  cursor: pointer;
}

.shop-item:focus-visible {
  outline: 1px solid var(--gold-300);
  outline-offset: 8px;
}

.shop-item-slider {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--frame);
  box-shadow: var(--shadow-lg);
  transition: border-color 400ms ease;
}

.shop-item:hover .shop-item-slider {
  border-color: var(--gold-300);
}

.shop-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.shop-slide {
  position: absolute;
  inset: 0;
  padding: 1.1rem;
  opacity: 0;
  transition: opacity 600ms ease;
}

.shop-slide.is-active {
  opacity: 1;
}

.shop-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.shop-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(23, 19, 14, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity 250ms ease, background 250ms ease, border-color 250ms ease, color 250ms ease;
}

.shop-item-slider:hover .shop-arrow {
  opacity: 0.75;
}

.shop-arrow:hover {
  opacity: 1 !important;
  background: rgba(150, 105, 44, 0.75);
  border-color: var(--gold-100);
  color: #fff;
}

.shop-arrow-prev {
  left: 1rem;
}

.shop-arrow-next {
  right: 1rem;
}

.shop-dots {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.shop-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(23, 19, 14, 0.22);
  transition: background 250ms ease, transform 250ms ease;
}

.shop-dot.is-active {
  background: var(--gold-300);
  transform: scale(1.3);
}

.shop-item-info {
  display: grid;
  gap: 0.25rem;
}

.shop-item-index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-200);
  margin-bottom: 0.2rem;
}

.shop-item-info h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.shop-item-info > p {
  margin: 0.15rem 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.shop-view-btn {
  justify-self: start;
  padding: 0.7rem 1.4rem;
  font-size: 0.82rem;
  pointer-events: none;
}

.shop-item:hover .shop-view-btn,
.shop-item:focus-visible .shop-view-btn {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(150, 105, 44, 0.3);
}

/* ==========================================================================
   Reviews CTA
   ========================================================================== */

.section-reviews {
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.reviews-btn {
  white-space: normal;
  max-width: min(92vw, 560px);
  margin: 0 auto;
  text-align: center;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gold-300);
  box-shadow: none;
  padding: 1.25rem 2.3rem;
  font-size: 1.08rem;
}

.reviews-btn:hover {
  background: rgba(201, 160, 84, 0.08);
  border-color: var(--gold-200);
  box-shadow: none;
}

.reviews-btn-icon {
  color: var(--gold-300);
  flex-shrink: 0;
}

/* ==========================================================================
   Certifications
   ========================================================================== */

.section-cert {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2.6rem auto 0;
}

.cert-card {
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: var(--surface);
  padding: 1.8rem 1.8rem 2.2rem;
  text-align: center;
  transition: border-color 400ms ease, transform 400ms ease, box-shadow 400ms ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-300);
  box-shadow: var(--shadow-lg);
}

.cert-card-media {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(23, 19, 14, 0.08);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cert-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.cert-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ==========================================================================
   Partnership banner — white & blue, gold accent (scoped local palette)
   ========================================================================== */

.section-partner {
  padding-top: 0.5rem;
}

.partner-banner {
  --partner-navy: #16375e;
  --partner-blue: #2f5f92;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem 0;
}

.partner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  color: var(--gold-300);
  font-weight: 700;
  margin: 0 0 1rem;
}

.partner-heading {
  margin: 0 0 1.2rem;
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  color: var(--partner-navy);
}

.partner-lead {
  margin: 0 auto 2.2rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.18rem;
  max-width: 34rem;
}

.partner-cta {
  padding: 1.15rem 2.6rem;
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .partner-banner {
    padding: 0.5rem 1rem 0;
  }
}

/* ==========================================================================
   Reveal animation base states (progressively enhanced by GSAP)
   ========================================================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-scroll {
    animation: none !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }

  .cert-grid .cert-card:last-child {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    padding: 0 1.5rem;
  }

  .quick-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.8rem 1.5rem 1.5rem;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .stats-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.8rem 1.5rem;
    row-gap: 1.8rem;
  }

  .stats-item {
    border-right: none;
    border-bottom: 1px solid #e8e2d8;
    padding: 0 1rem 2rem;
  }

  .stats-item:nth-child(2n) {
    border-right: none;
  }

  .stats-item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 92vh;
  }

  .hero-arrow {
    width: 2.4rem;
    height: 2.4rem;
  }

  .hero-arrow-prev {
    left: 0.8rem;
  }

  .hero-arrow-next {
    right: 0.8rem;
  }

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

  .quick-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature {
    padding: 5rem 1.5rem;
  }

  .shop-list {
    gap: 1rem;
  }

  .shop-arrow {
    width: 2.2rem;
    height: 2.2rem;
    opacity: 0.7;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .brand-text small {
  
    display: none;
  }단에

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

  .shop-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .stats-banner {
    grid-template-columns: 1fr;
    row-gap: 2.2rem;
  }

  .stats-item {
    border-right: none;
    border-bottom: 1px solid #e8e2d8;
    padding: 0 0.5rem 2.2rem;
  }

  .stats-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   Site footer
   ========================================================================== */

.site-footer {
  background: #faf8f5;
  border-top: 1px solid #e8e2d8;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
}

.footer-logo-img {
  height: 3.8rem;
  width: auto;
  display: block;
  margin: 0 0 1.1rem;
}

.footer-logo {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #111111;
}

.footer-logo-sub {
  margin: 0 0 1.6rem;
  font-size: 0.85rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

.footer-intro {
  margin: 0;
  max-width: 26rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--muted);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 2.5rem;
  align-content: start;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-row svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #c9a227;
}

.footer-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #111111;
}

.footer-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  text-decoration: none;
}

a.footer-value:hover {
  color: #c9a227;
}

.footer-copyright {
  border-top: 1px solid #e8e2d8;
  padding: 1.6rem 3rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted-2);
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    padding: 4rem 1.8rem;
  }

  .footer-intro {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .footer-info {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-copyright {
    padding: 1.4rem 1.5rem;
  }
}
