/* style.css — Hermes mood for LEO Inc. (drop-in replacement) */

/* Optional: If you want, you can load fonts via <link> in HTML instead.
   This CSS uses safe fallbacks by default. */

   :root{
    --bg: #ffffff;
    --text: #1a1a1a;     /* "rich black" 느낌 */
    --muted: #5a5a5a;
    --line: #e6e6e6;     /* 아주 얇은 구분선 */
    --soft: #f6f6f6;
    --hover: #111111;
  
    --radius: 14px;
    --container: 800px;
  
    /* Typography */
    --serif: ui-serif, "Times New Roman", Times, serif;
    --sans: system-ui, -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
  }
  
  *{ box-sizing:border-box; }
  html, body{ margin:0; padding:0; }
  body{
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
  }
  
  .page{
    min-height: 100svh;
    padding: 40px 16px;
  }
  
  .container{
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
  }
  
  /* --- Top --- */
  .header{
    padding: 6px 0 22px;
  }
  
  .brand-mark{
    width: 96px;
    height: auto;
    display: block;
    margin: 0 auto 14px;
    opacity: .95;
  }
  
  .brand-name{
    margin: 0;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  
  /* --- Mission --- */
  .mission{
    margin: 22px auto 46px;
    border: 1px solid var(--line);   /* 두꺼운 박스 대신 얇게 */
    border-left: none;
    border-right: none;
    padding: 54px 0;
  }
  
  .mission-title{
    margin: 0 0 36px;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  
  .mission-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 6px;
  }
  
  .mission-card{
    border: 1px solid var(--line);  /* 점선 제거 → 얇은 라인 */
    border-radius: var(--radius);
    padding: 22px 20px;
    text-align: left;
    background: #fff;
  }
  
  .mission-card-inner span{
    display: inline-block;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
  }
  
  .mission-card-inner strong{
    display: inline-block;
    margin-top: 8px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.25;
  }
  
  /* --- Intro --- */
  .intro{
    margin: 6px 0 56px;
  }
  
  .k-title{
    margin: 0 0 14px;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  
  .k-desc{
    margin: 0;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--muted);
  }
  
  /* --- Section titles --- */
  .section-title{
    margin: 0 0 26px;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  
  /* --- Products --- */
  .products{
    margin: 0 0 60px;
  }
  
  .product{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .product-icon{
    width: 74px;
    height: 74px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
  }
  
  .product-name{
    margin-top: 6px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  
  .product-desc{
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
  }
  
  .product-link{
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
  }
  .product-link:hover{
    border-bottom-color: var(--text);
  }
  
  /* --- Buttons (default: .btn-row .btn) --- */
  .btn-row{
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 12px 16px;
    border-radius: 999px;                 /* 고급스럽게 둥글게 */
    border: 1px solid var(--line);
    background: transparent;              /* “버튼처럼 안 보이게” */
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background .2s ease, border-color .2s ease, transform .06s ease;
  }
  
  .btn:hover{
    background: var(--soft);
    border-color: #d8d8d8;
  }
  .btn:active{
    transform: translateY(1px);
  }
  
  /* iOS coming soon subtle */
  .coming-soon-btn{
    opacity: .55;
  }
  .coming-soon-btn:hover{
    opacity: .75;
  }
  
  /* --- Store badge style (if you use .store-badges with images) --- */
  .store-badges{
    margin-top: 18px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .store-badges img{
    height: 46px;
    width: auto;
    display: block;
    opacity: .92;
    transition: opacity .2s ease, transform .06s ease;
  }
  .store-badges a:hover img{
    opacity: 1;
  }
  .store-badges a:active img{
    transform: translateY(1px);
  }
  
  .store-badges img{
    height: 48px;
    transition: opacity .2s ease, transform .12s ease;
  }
  
  .store-badges a:hover img{
    opacity: .95;
    transform: translateY(-1px);
  }
  /* --- Contact --- */
  .contact{
    margin: 6px 0 34px;
    padding-top: 10px;
  }
  
  .contact-lines{
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
  }
  
  .contact-link{
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
  }
  .contact-link:hover{
    border-bottom-color: var(--text);
  }
  
  /* --- Footer --- */
  .footer{
    padding: 26px 0 6px;
    border-top: 1px solid var(--line);
    margin-top: 26px;
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.01em;
  }
  
  /* --- Responsive --- */
  @media (min-width: 720px){
    .page{ padding: 56px 24px; }
  
    .brand-mark{ width: 104px; }
  
    .mission-grid{
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      padding: 0;
    }
  
    .mission-card{
      padding: 26px 22px;
      min-height: 170px;
      display: flex;
      align-items: center;
    }
  
    .btn{ min-width: 260px; }
  }
  
  @media (max-width: 420px){
    .brand-name{ font-size: 28px; }
    .mission-title{ font-size: 26px; }
    .section-title{ font-size: 32px; }
  
    .btn, .store-badges img{
      width: 100%;
    }
    .store-badges img{
      height: 52px;
    }
  }
  