 :root {
   --bg: #f7f3ea;
   --surface: #ffffff;
   --text: #1f2026;
   --muted: #777777;
   --line: #e9e3d8;
   --brand: #1f5147;
   --brand-soft: #e7dcc5;
   --shadow: 0 24px 60px rgba(24, 28, 27, 0.14);
   --radius: 24px;
   --container: min(1400px, calc(100% - 48px));
   --header-height: 84px;
   --topbar-height: 44px;
   --font: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
 }
 * {
   box-sizing: border-box;
 }
 html {
   scroll-behavior: smooth;
 }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
   background:
     radial-gradient(circle at top left, rgba(31, 81, 71, 0.08), transparent 28%),
     linear-gradient(180deg, #fcfbf8 0%, #f6f1e8 100%);
}
body.quickview-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
 img {
   display: block;
   max-width: 100%;
 }
button {
  font: inherit;
  color: inherit;
}
.back-to-top {
  --scroll-progress: 0%;
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  color: #111111;
  box-shadow:
    0 18px 40px rgba(17, 18, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.92);
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  z-index: 50;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  box-shadow:
    0 22px 46px rgba(17, 18, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translate3d(0, -2px, 0) scale(1.02);
}
.back-to-top__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #111111;
  transform: translate3d(0, calc(100% - var(--scroll-progress)), 0);
  transition: transform 0.18s linear;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.back-to-top__icon {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
  color: #ffffff;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.back-to-top__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.back-to-top__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@supports (-webkit-touch-callout: none) {
  .back-to-top {
    clip-path: inset(0 round 999px);
  }
}
.hero {
  width: var(--container);
  margin: 0 auto;
  min-height: calc(100vh - var(--topbar-height) - var(--header-height));
   display: grid;
   align-items: center;
   padding: 48px 0 72px;
 }
 .hero__panel {
   border-radius: 34px;
   padding: clamp(28px, 5vw, 56px);
   background:
     linear-gradient(130deg, rgba(31, 81, 71, 0.98) 0%, rgba(46, 71, 64, 0.9) 48%, rgba(215, 199, 170, 0.85) 100%);
   color: #fcfaf5;
   box-shadow: 0 24px 64px rgba(31, 81, 71, 0.16);
   min-height: 420px;
   display: grid;
   align-content: end;
   gap: 18px;
 }
 .hero__eyebrow {
   width: max-content;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(240, 228, 202, 0.22);
   border: 1px solid rgba(255, 255, 255, 0.12);
   font-size: 14px;
   font-weight: 600;
 }
 .hero__title {
   margin: 0;
   max-width: 620px;
   font-size: clamp(38px, 6vw, 78px);
   line-height: 0.96;
   letter-spacing: -0.05em;
 }
 .hero__text {
   max-width: 560px;
   margin: 0;
   font-size: 18px;
   line-height: 1.65;
   color: rgba(255, 255, 255, 0.84);
 }
 @media (max-width: 980px) {
   :root {
     --container: min(100% - 32px, 1000px);
     --header-height: 76px;
   }
 }
 @media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
  }
  .back-to-top {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }
  .hero {
    padding: 22px 0 44px;
  }
   .hero__panel {
     min-height: 320px;
     border-radius: 24px;
   }
   .hero__text {
     font-size: 16px;
   }
 }
 @media (max-width: 374px) {
   :root {
     --container: calc(100% - 24px);
   }
   .back-to-top {
     width: 50px;
     height: 50px;
     right: 10px;
     bottom: 10px;
   }
 }



/* Brand */
.brand-index-box { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); }
.alphabet-nav { display: flex; flex-wrap: wrap; gap: 10px; border-bottom: 1px solid #f0f0f0; padding-bottom: 20px; margin-bottom: 25px; }
.alphabet-nav a { color: #555; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 4px; }
.alphabet-nav a:hover { background: #f0f0f0; color: #000; }
.alphabet-nav a.active { background: #000; color: #fff; }
.index-scroll-area { max-height: 300px; overflow-y: auto; padding-right: 15px; }
.index-scroll-area::-webkit-scrollbar { width: 5px; }
.index-scroll-area::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.index-scroll-area::-webkit-scrollbar-thumb { background: #aaa; border-radius: 10px; }
.index-letter-group { margin-bottom: 25px; }
.index-letter-title { font-size: 16px; font-weight: bold; margin-bottom: 15px; display: block; color: #000; }
.text-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; row-gap: 20px; }
.text-grid a { color: #555; font-size: 13px; }
.text-grid a:hover { color: #000; font-weight: bold; }
.brand-section { padding-top: 40px; margin-top: -40px; margin-bottom: 50px; }
.section-heading { font-size: 28px; font-weight: 400; margin-bottom: 25px; color: #000; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.brand-card { display: flex; flex-direction: column; align-items: center; color: #333; }
.brand-card:hover { transform: translateY(-5px); }
.logo-box { background: #fff; width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); margin-bottom: 15px; padding: 15px; box-sizing: border-box; border: 1px solid #f9f9f9; }
.logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-name { font-size: 14px; text-align: center; margin-top: 5px; }
@media (max-width: 1024px) {
  .text-grid, .logo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .text-grid, .logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .text-grid, .logo-grid { grid-template-columns: repeat(2, 1fr); }
}