/* BASIC css start */
:root {
    --black: #111111;
    --dark: #1c1c1c;
    --white: #ffffff;
    --off-white: #f7f7f5;
    --gray-100: #f0f0ee;
    --gray-200: #e2e2de;
    --gray-400: #b0afa9;
    --gray-600: #7a7974;
    --text-sub: #5c5b57;
    --accent: #90c9f1;
    --accent-pale: #ffeae4;
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
  }
 
  @keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
  @keyframes wiggle { 0%,100%{transform:rotate(-3deg)} 50%{transform:rotate(3deg)} }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
 
  .reveal { opacity:0; transform:translateY(26px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }
  .d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}
 
  /* ═══════════════════════════
     INLINE LOGO (사람 3명 아이콘 + 워드마크)
  ═══════════════════════════ */
  .ahmoo-logo-svg { display: block; }
  .ahmoo-logo-svg .lg-fig { fill: none; stroke: var(--black); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }
  .ahmoo-logo-svg .lg-word { fill: var(--black); }
  .cta-logo-mini .ahmoo-logo-svg .lg-fig { stroke: var(--black); }
  .hero {
    min-height: 72vh;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 24px;
  }
 
  /* 점선 테두리 장식 */
  .hero::before {
    content: '';
    position: absolute;
    top: 28px; left: 28px; right: 28px; bottom: 28px;
    border: 2px dashed var(--gray-200);
    border-radius: 24px;
    pointer-events: none;
  }
 
  /* 떠다니는 도형 장식 */
  .doodle {
    position: absolute;
    pointer-events: none;
  }
  .doodle svg { fill: none; stroke: var(--black); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .doodle-1 { top: 12%; left: 8%; width: 46px; animation: float 4s ease-in-out infinite; }
  .doodle-2 { top: 20%; right: 10%; width: 36px; animation: wiggle 3s ease-in-out infinite; }
  .doodle-3 { bottom: 16%; left: 12%; width: 40px; animation: float 5s ease-in-out infinite .5s; }
  .doodle-4 { bottom: 22%; right: 8%; width: 30px; animation: wiggle 3.5s ease-in-out infinite .3s; }
 
  .hero-logo {
    width: clamp(140px, 18vw, 220px);
    margin-bottom: 28px;
    animation: fadeUp .6s ease both;
  }
  .hero-logo img { width: 100%; display: block; }
 
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--black); color: var(--white);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 16px; border-radius: 30px;
    margin-bottom: 26px;
    animation: fadeUp .6s .08s ease both;
  }
  .hero-badge-dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; animation: blink 1.6s infinite; }
 
  .hero-title {
    font-family: 'Jua', sans-serif;
    font-size: clamp(28px, 5vw, 54px);
    line-height: 1.4;
    color: var(--black);
    word-break: keep-all;
    margin-bottom: 22px;
    animation: fadeUp .6s .16s ease both;
  }
  .hero-title .hl-text {
    color: var(--accent);
  }
 
  .hero-sub {
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--text-sub);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeUp .6s .24s ease both;
  }
 
  .hero-tags {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp .6s .32s ease both;
  }
  .tag {
    display: inline-flex; align-items: center; gap: 6px;
    border: 1.5px solid var(--black);
    padding: 7px 14px; border-radius: 30px;
    font-size: 12px; font-weight: 600; color: var(--black);
  }
 
  .hero-scroll {
    position: absolute; bottom: 30px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    animation: fadeUp .6s .5s ease both;
  }
  .hero-scroll-text { font-size: 10px; letter-spacing: 2px; color: var(--gray-400); text-transform: uppercase; }
  .hero-scroll-arrow { animation: float 1.6s ease-in-out infinite; }
  .hero-scroll-arrow svg { width: 16px; height: 16px; fill:none; stroke:var(--gray-400); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
 
  /* ═══════════════════════════
     SECTION COMMON
  ═══════════════════════════ */
  .section { padding: clamp(64px,9vw,150px) clamp(24px,7vw,150px); }
  .inner { max-width: 1345px; margin: 0 auto; }
  .s-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 16px;
  }
  .s-eyebrow-mark { font-family:'Jua',sans-serif; font-size:14px; }
  .s-eyebrow-text {
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--gray-600);
    border-bottom: 2px solid var(--black);
    padding-bottom: 2px;
  }
  .s-title {
    font-family: 'Jua', sans-serif;
    font-size: clamp(24px, 3.4vw, 40px);
    line-height: 1.4; color: var(--black);
    word-break: keep-all; margin-bottom: 18px;
  }
  .s-title.light { color: var(--white); }
  .s-body { font-size: 15px; color: var(--text-sub); line-height: 1.9; word-break: keep-all; }
 
  /* ═══════════════════════════
     NAMING STORY
  ═══════════════════════════ */
  .naming-section { background: var(--white); }
 
  .naming-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
 
  .naming-word-card {
    background: var(--black);
    border-radius: 24px;
    padding: 80px 36px;
    position: relative;
    overflow: hidden;
  }
  .naming-word-card::before {
    content: 'AHMOO';
    position: absolute;
    top: -14px; right: -10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 86px;
    color: rgba(255,255,255,.04);
    letter-spacing: 2px;
    pointer-events: none;
  }
 
  .naming-line {
    display: flex; align-items: baseline; gap: 14px;
    margin-bottom: 18px;
    position: relative; z-index: 1;
  }
  .naming-ko {
    font-family: 'Jua', sans-serif;
    font-size: 24px; color: var(--white);
  }
  .naming-arrow { color: rgba(255,255,255,.3); font-size: 18px; }
  .naming-en {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 18px;
    color: var(--white);
    letter-spacing: .5px;
  }
 
  .naming-final {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px dashed rgba(255,255,255,.2);
    position: relative; z-index: 1;
  }
  .naming-final-label { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
  .naming-final-word {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 44px;
    color: var(--white); letter-spacing: 1px; line-height: 1;
  }
 
  .naming-text-desc { font-size: 15px; color: var(--text-sub); line-height: 1.95; word-break: keep-all; margin-bottom: 28px; }
  .naming-text-desc strong { color: var(--black); font-weight: 800; }
 
  .naming-meta-row {
    display: flex; gap: 0;
    border: 1.5px solid var(--black);
    border-radius: 14px;
    overflow: hidden;
  }
  .nm-item { flex: 1; padding: 16px 18px; border-right: 1.5px solid var(--black); }
  .nm-item:last-child { border-right: none; }
  .nm-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-600); margin-bottom: 4px; }
  .nm-val { font-family: 'Jua', sans-serif; font-size: 18px; color: var(--black); }
 
  .naming-products { margin-top: 24px; }
  .np-label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-600); margin-bottom: 10px; }
  .np-chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .np-chip {
    display: inline-flex; align-items: center;
    border: 1.5px solid var(--black);
    padding: 7px 14px; border-radius: 30px;
    font-size: 12.5px; font-weight: 600; color: var(--black);
    background: var(--white);
  }
  .np-chip.np-more {
    border-style: dashed;
    color: var(--gray-600);
    font-weight: 500;
  }
 
  /* ═══════════════════════════
     MOOD / PHILOSOPHY
  ═══════════════════════════ */
  .mood-section { background: var(--black); position: relative; overflow: hidden; }
  .mood-bg-type {
    position: absolute; left: -10px; top: 50%; transform: translateY(-50%);
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: 240px; color: rgba(255,255,255,.025);
    line-height: 1; letter-spacing: 4px;
    pointer-events: none; white-space: nowrap;
  }
 
  .mood-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
  .mood-header .s-eyebrow-text { color: rgba(255,255,255,.5); border-bottom-color: rgba(255,255,255,.5); }
  .mood-header .s-eyebrow { justify-content: center; }
 
  .mood-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; position: relative; z-index: 1;
  }
  .mood-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 32px 26px;
    transition: transform .25s, background .25s;
  }
  .mood-card:hover { transform: translateY(-6px); background: #232323; }
  .mood-icon {
    width: 52px; height: 52px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .mood-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--black); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .mood-card h3 { font-family: 'Jua', sans-serif; font-size: 18px; color: var(--white); margin-bottom: 10px; }
  .mood-card p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; word-break: keep-all; }
 
  /* ═══════════════════════════
     AHMOO 제품 (placeholder grid)
  ═══════════════════════════ */
  .ahmoo-products-section { background: var(--off-white); }
  .ahmoo-products-header {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
    flex-direction: column;
  }
  .ahmoo-products-note { font-size: 13px; color: var(--gray-600); line-height: 1.7; }
 
  .ahmoo-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
 
  .ahmoo-product-card {
    display: flex; flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    transition: transform .25s, border-color .25s;
  }
  .ahmoo-product-card:hover { transform: translateY(-5px); border-color: var(--black); }
 
  .ahmoo-product-thumb {
    aspect-ratio: 1;
    background: var(--gray-100);
    border-bottom: 1.5px dashed var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .ahmoo-product-thumb svg { width: 34px; height: 34px; fill: none; stroke: var(--gray-400); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .ahmoo-product-soon {
    position: absolute; top: 10px; right: 10px;
    background: var(--accent); color: var(--white);
    font-size: 9px; font-weight: 700; letter-spacing: 1px;
    padding: 3px 9px; border-radius: 20px;
    text-transform: uppercase;
  }
 
  .ahmoo-product-info { padding: 16px 16px 18px; flex: 1; }
  .ahmoo-product-cat {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
  }
  .ahmoo-product-name { font-family: 'Jua', sans-serif; font-size: 15px; color: var(--black); margin-bottom: 4px; }
  .ahmoo-product-desc { font-size: 11.5px; color: var(--gray-600); line-height: 1.6; }
 
  .ahmoo-product-card.is-more {
    align-items: center; justify-content: center;
    border-style: dashed;
    background: transparent;
  }
  .ahmoo-product-card.is-more .ahmoo-product-thumb { background: transparent; border-bottom: none; aspect-ratio: auto; flex: 1; }
  .ahmoo-more-text { font-family: 'Jua', sans-serif; font-size: 14px; color: var(--gray-600); text-align: center; padding: 0 12px; }
 
  /* ═══════════════════════════
     CTA
  ═══════════════════════════ */
  .cta-section {
    background: var(--off-white);
    text-align: center;
  }
  .cta-inner { max-width: 560px; margin: 0 auto; }
  .cta-logo-mini { width: 56px; margin: 0 auto 24px; }
  .cta-logo-mini img { width: 100%; display: block; }
  .cta-title {
    font-family: 'Jua', sans-serif;
    font-size: clamp(22px, 3.4vw, 36px);
    color: var(--black); line-height: 1.5;
    margin-bottom: 16px; word-break: keep-all;
  }
  .cta-sub { font-size: 14px; color: var(--text-sub); line-height: 1.8; margin-bottom: 34px; }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--black); color: var(--white);
    font-size: 14px; font-weight: 700;
    padding: 15px 32px; border-radius: 40px;
    text-decoration: none; transition: transform .2s, background .2s;
  }
  .cta-btn:hover { background: #333; transform: translateY(-2px); }
  .cta-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
 
  /* ═══════════════════════════
     RESPONSIVE
  ═══════════════════════════ */
  @media (max-width: 860px) {
    .naming-layout { grid-template-columns: 1fr; gap: 36px; }
    .mood-grid { grid-template-columns: 1fr; }
    .ahmoo-products-grid { grid-template-columns: repeat(2, 1fr); }
    .doodle { display: none; }
  }
  @media (max-width: 560px) {
    .naming-meta-row { flex-direction: column; }
    .nm-item { border-right: none; border-bottom: 1.5px solid var(--black); }
    .nm-item:last-child { border-bottom: none; }
  }
  
  
  
  
  
  
/* 탭 콘텐츠 */
.products-section .tab_cont { display: none; }
.products-section .tab_cont.active { display: block; }

/* 상품 목록 */
.products-section .sec10_cont ul { display: flex; flex-wrap: wrap; }
.products-section .sec10_cont ul li { width: 310px; margin-right: 35px; }
.products-section .sec10_cont ul li:nth-child(4n) { margin-right: 0; }

/* more 버튼 */
.products-section .sec10_cont { position: relative; }
.products-section .sec10_cont div.more { display: block; text-align: right; position: absolute; height: auto; top: -60px; right: 0; }


/* BASIC css end */

