html,
body {
  margin: 0;
  padding: 0;
}

.brand-hero {
  width: 100%;
  height: 1400px;
  position: relative;
  overflow: hidden;
}

.brand-hero-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-hero-content {
  position: absolute;
  top: 352px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-hero-logo {
  width: 464px;
  height: auto;
  display: block;
}

.brand-hero-title {
  margin: 40px 0 0;

  font-family: 'Paperlogy';
  font-size: 64px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.04em;

  text-align: center;
  color: #111;
}

/* =========================
   Brand Section Layout
========================= */

.brand-history-section {
    width: 100%;
    padding: 120px 0 0;
    background: #ffffff;
  }
  
  .brand-message-section {
    width: 100%;
    padding: 120px 0 0;
    background: #ffffff;
  }
  
  .brand-value-section {
    width: 100%;
    padding: 40px 0 120px;
    background: #ffffff;
  }
  
  .brand-intro-inner {
    width: 1280px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
  }
  
  /* =========================
     Brand Intro Text
  ========================= */
  
  .brand-history {
    text-align: center;
  }
  
  .brand-history-title {
    margin: 0;
  
    font-family: 'Paperlogy';
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0;
  
    color: #000;
  }
  
  .brand-history-desc {
    margin: 16px 0 0;
  
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
  
    text-align: center;
    color: #111;
  }
  
  .brand-message {
    text-align: center;
  }
  
  .brand-message-title {
    margin: 0;
  
    font-family: 'Pretendard';
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0;
  
    color: #000;
  }
  
  .brand-message-desc {
    margin: 16px 0 0;
  
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
  
    text-align: center;
    color: #111;
  }
  
  /* =========================
     Brand Value Cards
  ========================= */
  
  .brand-value-grid {
    margin-top: 0;
  
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  
  .brand-value-card {
    width: 290px;
    height: 436px;
  
    padding: 40px 48px;
    box-sizing: border-box;
  
    display: flex;
    flex-direction: column;
    align-items: center;
  
    text-align: center;
  
    border-radius: 40px;
    background: transparent;
  
    transition: box-shadow 0.25s ease;
  }

.brand-value-card:hover {
  background: transparent;

  box-shadow:
    inset 0 0 0 2px rgba(255, 242, 0, 0.22),
    inset 0 0 18px rgba(255, 242, 0, 0.16);

  cursor: pointer;
}
  
.brand-value-icon {
    width: 100px;
    height: 100px;
  
    flex-shrink: 0;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .brand-value-icon img {
    width: 100%;
    height: 100%;
  
    display: block;
    object-fit: contain;
  }
  
  .brand-value-title {
    margin: 48px 0 0;
  
    min-height: 48px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    font-family: 'Paperlogy';
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0;
  
    color: #000;
  }
  
  .brand-value-line {
    width: 50px;
    height: 2px;
  
    margin-top: 24px;
  
    display: block;
    background: #fff200;
  }
  
  .brand-value-desc {
    margin: 48px 0 0;
  
    font-family: 'Pretendard';
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.05em;
  
    color: #111;
  }

/* =========================
   WHY UHU SECTION
========================= */

.brand-why-section{
    padding:120px 0 120px;
    background:#fafaf8;
  }
  
  .brand-why-inner{
    width:1280px;
    max-width:calc(100% - 80px);
    margin:0 auto;
    position:relative;
  }
  
  
  /* =========================
     WHY UHU LOGO
  ========================= */
  
  .brand-why-title-wrap{
    position:relative;
  
    width:520px;
    margin:0 auto;
  }
  
  .brand-why-logo-video{
    display:block;
  
    height:auto;
  
    object-fit:contain;

    position:relative;
  
    width:300px;
    margin:0 136px 0 auto;
  }

  
  .brand-why-title-wrap:hover .brand-why-logo-default{
    opacity:0;
  }
  
  .brand-why-title-wrap:hover .brand-why-logo-hover{
    opacity:1;
  }
  
  
  /* =========================
     WHY UHU BANNER
  ========================= */
  
  .brand-why-slider{
    position:relative;
  
    width:1020px;
    height:674px;
  
    margin:20px auto 0;
  }
  
  .brand-why-card{
    position:absolute;
    top:50%;
    left:50%;
  
    display:block;
  
    width:632px;
    height:674px;
  
    opacity:0;
    pointer-events:none;
  
    transform:translate(-50%, -50%) scale(.64);
  
    transition:
      transform .42s ease,
      opacity .32s ease;
  
    z-index:0;
  }
  
  .brand-why-card.is-center{
    opacity:1;
    pointer-events:auto;
  
    transform:translate(-50%, -50%) scale(1);
  
    z-index:3;
  }
  
  .brand-why-card.is-left{
    opacity:1;
  
    transform:translate(calc(-50% - 330px), -50%) scale(.64);
  
    z-index:1;
  }
  
  .brand-why-card.is-right{
    opacity:1;
  
    transform:translate(calc(-50% + 330px), -50%) scale(.64);
  
    z-index:1;
  }
  
  .brand-why-card.is-hidden{
    opacity:0;
  
    transform:translate(-50%, -50%) scale(.64);
  
    z-index:0;
  }
  
  
  /* =========================
     WHY UHU BUTTON
  ========================= */
  
  .brand-why-controls{
    position:absolute;
    bottom:20px;
    left:50%;
    z-index:10;
  
    width:760px;
  
    margin-top:0;
  
    display:flex;
    justify-content:space-between;
  
    transform:translate(-50%, -50%);
  
    pointer-events:none;
  }
  
  .brand-why-btn{
    width:64px;
    height:64px;
  
    border:none;
    border-radius:999px;
  
    background:rgba(255,255,255,0);
  
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
  
    box-shadow:
      0 4px 16px rgba(0,0,0,.06);
  
    cursor:pointer;
  
    display:flex;
    align-items:center;
    justify-content:center;
  
    transition:
      background .25s ease,
      box-shadow .25s ease;
  
    pointer-events:auto;
  }
  
  .brand-why-btn:hover{
    background:rgba(255,255,255,0);
  
    box-shadow:
      0 10px 28px rgba(0,0,0,.1);
  }
  
  .brand-why-btn svg{
    width:28px;
    height:28px;
  }
  
  .brand-why-btn path{
    fill:none;
    stroke:#222;
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

/* =========================
   EVERYDAY MAKING
========================= */

.brand-every-section{
    padding:120px 0;
    background:#fff;
  }
  
  .brand-every-inner{
    width:1280px;
    max-width:calc(100% - 80px);
    margin:0 auto;
  }
  
  .brand-every-head{
    text-align:center;
  }
  
  .brand-every-title{
    margin:0;
  
    font-family:'Paperlogy';
    font-size:40px;
    font-weight:700;
    line-height:50Px;
    letter-spacing:0;
  
    color:#000;
  }
  
  .brand-every-desc{
    margin:16px 0 0;
  
    font-family:'Pretendard';
    font-size:20px;
    font-weight:400;
    line-height:140%;
  
    color:#111;
  }
  
  .brand-every-accordion{
    margin-top:80px;
  
    display:flex;
    gap:16px;
  
    width:100%;
    height:600px;
  }
  
  .brand-every-card{
    position:relative;
  
    width:100px;
    height:600px;
  
    padding:0;
    border:0;
    border-radius:50px;
  
    overflow:hidden;
  
    cursor:pointer;
  
    background:#111;
  
    flex-shrink:0;
  
    transition:
      width .55s ease,
      opacity .35s ease;
  }
  
  .brand-every-card.is-active{
    width:766px;
  }
  
  .brand-every-card.is-next{
    width:266px;
  }
  
  .brand-every-card img{
    width:100%;
    height:100%;
  
    display:block;
    object-fit:cover;
  
    opacity:.58;
  
    transition:
      opacity .35s ease,
      transform .55s ease;
  }
  
  .brand-every-card.is-active img{
    opacity:1;
  }
  
  .brand-every-card:hover img{
    transform:scale(1.03);
  }
  
  .brand-every-number{
    position:absolute;
    top:25px;
    right:25px;
  
    width:50px;
    height:50px;
  
    border-radius:999px;
  
    background:rgba(255,255,255,.28);
  
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.22),
      0 8px 20px rgba(0,0,0,.16);
  
    display:flex;
    align-items:center;
    justify-content:center;
  
    font-family:'Paperlogy';
    font-size:30px;
    font-weight:700;
    line-height:1;
  
    color:#fff;
  
    transition:
      top .55s ease,
      right .55s ease,
      left .55s ease,
      transform .55s ease;
  }
  
  .brand-every-card-title{
    position:absolute;
  
    font-family:'Paperlogy';
    font-size:32px;
    font-weight:700;
    line-height:1;
    letter-spacing:0;
  
    color:#fff;
    white-space:nowrap;
  
    transition:
      left .55s ease,
      bottom .55s ease,
      top .55s ease,
      font-size .55s ease,
      font-weight .55s ease,
      transform .55s ease;
  }
  
  /* 활성 카드 : 766px */
  .brand-every-card.is-active .brand-every-card-title{
    left:25px;
    bottom:25px;
  
    font-size:64px;
    font-weight:800;
  
    transform:none;
  }
  
  /* 다음 카드 : 266px */
  .brand-every-card.is-next .brand-every-number{
    top:25px;
    right:25px;
    left:auto;
  
    transform:none;
  }
  
  .brand-every-card.is-next .brand-every-card-title{
    top:50%;
    left:50%;
  
    font-size:32px;
    font-weight:800;
  
    transform:translate(-50%, -50%);
  }
  
  /* 얇은 카드 : 100px */
  .brand-every-card:not(.is-active):not(.is-next) .brand-every-number{
    top:25px;
    left:50%;
    right:auto;
  
    transform:translateX(-50%);
  }
  
  .brand-every-card:not(.is-active):not(.is-next) .brand-every-card-title{
    top:50%;
    left:50%;
  
    font-size:32px;
    font-weight:700;
  
    transform:translate(-50%, -50%) rotate(90deg);
    transform-origin:center;
  }

  /* =========================
   BRAND MESSAGE
========================= */

.brand-message-section-1932{
    position:relative;
  
    padding:160px 0 80px;
    background:#fff;
  
    overflow:hidden;
  }
  
  .brand-message-inner-1932{
    width:1280px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    position:relative;
    z-index:2;
  }
  
  .brand-message-content-1932{
    margin: 0 80px;
  }

  .brand-message-bg{
    position:absolute;
  
    top:50%;
    right: 0px;
  
    width:980px;
  
    transform:translateY(-50%);
  
    opacity:1;
  
    z-index: 0;
    pointer-events:none;
  }
  
  .brand-message-bg img{
    width:100%;
    display:block;
  }
  
  .brand-message-title-1932{
    margin:0;
  
    font-family:'Pretendard';
    font-size:48px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:0.04em;
  
    color:#000;
  }
  
  .brand-message-line-1932{
    width:52px;
    height:4px;
  
    margin:48px 0;
  
    background:#FFF200;
  }
  
  .brand-message-desc-1932{
    margin:0;
  
    font-family:'Pretendard';
    font-size:24px;
    font-weight:400;
    line-height:1.45;
    letter-spacing:0.04em;

    text-align: left;
  
    color:#111;
  }
  
  .brand-message-slogan-1932{
    margin:40px 0 0;
  
    font-family:'Paperlogy';
    font-size:24px;
    font-weight:800;
    line-height:1.45;
  
    color:#000;
  }
  

  .brand-message-logo-1932{
    margin-top:80px;

    display: flex;
    justify-content: center;
  }
  
  .brand-message-logo-1932 img{
    width:207px;
    display:block;
  }

  .brand-message-content-1932, .brand-message-logo-1932{
    position: relative;
    z-index: 2;
  }


  /* =========================
   MOBILE - BRAND HERO
========================= */
@media (max-width: 960px){

  .brand-hero{
    height: 720px;
  }

  .brand-hero-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .brand-hero-content{
    top: 160px;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .brand-hero-logo{
    width: 200px;
  }

  .brand-hero-title{
    margin-top: 80px;

    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

  /* =========================
     MOBILE - INTRO TEXT
  ========================= */
  .brand-history-section{
    padding: 80px 0 0;
  }

  .brand-message-section{
    padding: 80px 0 0;
  }

  .brand-value-section{
    padding: 56px 0 80px;
  }

  .brand-intro-inner{
    width: 100%;
    max-width: none;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .brand-history-title,
  .brand-message-title{
    font-size: 28px;
    line-height: 1.35;
  }

  .brand-history-desc,
  .brand-message-desc{
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }


  /* =========================
     MOBILE - VALUE CARDS
  ========================= */
/*  .brand-value-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .brand-value-card{
    width: auto;
    height: 260px;
    padding: 28px 18px;
    border-radius: 28px;

    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  }

  .brand-value-card:hover{
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  }

  .brand-value-icon{
    width: 64px;
    height: 64px;
  }

  .brand-value-title{
    margin-top: 28px;
    min-height: 38px;

    font-size: 16px;
    line-height: 19px;
  }

  .brand-value-line{
    width: 38px;
    height: 2px;
    margin-top: 16px;
  }

  .brand-value-desc{
    margin-top: 24px;

    font-size: 13px;
    line-height: 1.45;
    letter-spacing: -0.02em;
  }*/

  /* =========================
   MOBILE - VALUE ACCORDION
========================= */

  .brand-value-grid{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding: 0 10px;
  }

  .brand-value-card{
    width:100%;
    height:auto;
    min-height:0;

    padding:10px 0 10px 32px;
    border-radius:40px;

    display:grid;
    grid-template-columns:88px 1fr;
    align-items:center;
    column-gap:16px;

    text-align: start;

    cursor:pointer;
    overflow:hidden;

    background: transparent;

    box-shadow:
    0 0 0 0px rgba(0, 0, 0, 0.22),
    0 0 8px rgba(0, 0, 0, 0.06);
  }

  .brand-value-icon{
    width:40px;
    height:40px;
  }

  .brand-value-title{
    margin:0 0 0 0px;
    min-height:0;

    justify-content:flex-start;

    font-size:20px;
    line-height:1.1;
  }

  .brand-value-line,
  .brand-value-desc{
    display:none;
  }

  .brand-value-card.is-open{
    grid-template-columns:1fr 72px;
    row-gap:12px;
    padding: 16px;
  }

  .brand-value-card.is-open .brand-value-title{
    grid-column:1 / 2;
    grid-row:1;

    margin-left: 16px;

    font-size:25px;
  }

  .brand-value-card.is-open .brand-value-icon{
    grid-column:2 / 3;
    grid-row:1;

    width:50px;
    height:50px;

    justify-self:end;
    margin-right: 18px;
  }

  .brand-value-card.is-open .brand-value-line{
    grid-column:1 / 3;

    display:block;

    width:180px;
    height:1px;
    margin:0 0 0 16px;

    background:#fff200;
  }

  .brand-value-card.is-open .brand-value-desc{
    grid-column:1 / 3;

    display:block;

    margin:0 0 0 16px;

    text-align:left;
    font-size:16px;
    line-height:1.55;
    letter-spacing:-0.04em;
  }


  /* =========================
     MOBILE - WHY UHU
  ========================= */
  .brand-why-section{
    padding: 90px 0 90px;
    overflow: hidden;
  }

  .brand-why-inner{
    width: 100%;
    max-width: none;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .brand-why-logo-video{
    display:block;
  
    height:auto;
  
    object-fit:contain;

    position:relative;
  
    width:200px;
    top: 32px;
    margin:0 88px 0 auto;
  }

  .brand-why-title-wrap{
    position:relative;
  
    width:auto;
    margin:0 auto;
  
    display:flex;
    justify-content:center;
  }

  .brand-why-slider{
    width: 100%;
    height: 420px;
    margin-top: 0px;
  }

  .brand-why-card{
    width: 300px;
    height: auto;
  }

  .brand-why-card.is-center{
    transform: translate(-50%, -50%) scale(1);
  }

  .brand-why-card.is-left{
    transform: translate(calc(-50% - 170px), -50%) scale(.62);
  }

  .brand-why-card.is-right{
    transform: translate(calc(-50% + 170px), -50%) scale(.62);
  }

  .brand-why-controls{
    bottom: -20px;
    width: auto;
    gap: 16px;
  }

  .brand-why-btn{
    width: 48px;
    height: 48px;
    box-shadow: 1px 3px 12px rgba(0, 0, 0, .1);
  }

  .brand-why-btn svg{
    width: 22px;
    height: 22px;
  }


  /* =========================
     MOBILE - EVERYDAY MAKING
  ========================= */
  .brand-every-section{
    padding: 96px 0;
  }

  .brand-every-inner{
    width: 100%;
    max-width: none;
    padding: 0 0px;
    box-sizing: border-box;
  }

  .brand-every-title{
    font-size: 28px;
    line-height: 1.25;
  }

  .brand-every-desc{
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .brand-every-accordion{
    margin-top: 48px;

    padding-left: calc((100vw - 300px) / 2);
    padding-right: calc((100vw - 300px) / 2);

    box-sizing: border-box;

    height: 420px;
    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .brand-every-accordion::-webkit-scrollbar{
    display: none;
  }

  .brand-every-card,
  .brand-every-card.is-active,
  .brand-every-card.is-next{
    width: 300px;
    min-width: 300px;
    height: 420px;

    border-radius: 32px;
    scroll-snap-align: center;
  }

  .brand-every-card img{
    opacity: 1;
  }

  .brand-every-card:hover img{
    transform: none;
  }

  .brand-every-number{
    top: 20px;
    right: 20px;

    width: 44px;
    height: 44px;

    font-size: 24px;
  }

  .brand-every-card:not(.is-active):not(.is-next) .brand-every-number{
    top:20px;
    left:auto;
    right:20px;

    transform:none;
  }

  .brand-every-card-title,
  .brand-every-card.is-active .brand-every-card-title,
  .brand-every-card.is-next .brand-every-card-title,
  .brand-every-card:not(.is-active):not(.is-next) .brand-every-card-title{
    left: 22px;
    bottom: 22px;
    top: auto;

    font-size: 38px;
    font-weight: 800;

    transform: none;
  }

  .brand-every-card .brand-every-number,
  .brand-every-card.is-active .brand-every-number,
  .brand-every-card.is-next .brand-every-number,
  .brand-every-card:not(.is-active):not(.is-next) .brand-every-number{
    top:20px;
    right:20px;
    left:auto;

    transform:none;
  }

  /* =========================
     MOBILE - 1932 MESSAGE
  ========================= */
  .brand-message-section-1932{
    padding: 96px 0 96px;
    background: #FAFAF8;
  }

  .brand-message-inner-1932{
    width: 100%;
    max-width: none;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .brand-message-bg{
    top: 120px;
    right: -260px;

    width: 620px;
    opacity: 0;

    transform: none;
    display: none;
  }

  .brand-message-content-1932{
    margin: 0;
  }

  .brand-message-title-1932{
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: -0.04em;
  }

  .brand-message-line-1932{
    width: 44px;
    height: 3px;
    margin: 36px 0;
  }

  .brand-message-desc-1932{
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -0.02em;
  }

  .brand-message-slogan-1932{
    margin-top: 36px;

    font-size: 22px;
    line-height: 1.35;
  }

  .brand-message-logo-1932{
    margin-top: 0px;
  }

  .brand-message-logo-1932 img{
    display: none;
  }

}
