*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:#FFF9F1;
  color:#073E4A;
}

a{
  color:inherit;
  text-decoration:none;
}

.yk-container{
  width:min(1200px,92%);
  margin:0 auto;
}

.yk-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(7,62,74,.08);
}

.yk-nav{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.yk-logo{
  height:92px;
  width:auto;
  display:block;
  object-fit:contain;
}

.yk-menu{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:900;
}

.yk-menu a{
  padding:32px 0 27px;
  border-bottom:4px solid transparent;
  transition:.25s ease;
}

.yk-menu a:hover,
.yk-menu a.active{
  color:#159EA6;
  border-color:#20C7CC;
}

.yk-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.yk-social{
  font-weight:900;
  font-size:13px;
}

.yk-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:16px 24px;
  font-weight:950;
  border:0;
  cursor:pointer;
  transition:.25s ease;
  white-space:nowrap;
}

.yk-btn:hover{
  transform:translateY(-3px);
}

.yk-btn-coral{
  background:#FF6F6B;
  color:#fff;
  box-shadow:0 16px 30px rgba(255,111,107,.25);
}

.yk-btn-turquoise{
  background:#18B7BC;
  color:#fff;
  box-shadow:0 16px 30px rgba(24,183,188,.25);
}

.yk-btn-white{
  background:#fff;
  color:#073E4A;
  box-shadow:0 16px 30px rgba(7,62,74,.1);
}

.yk-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:transparent;
  border:0;
}

.yk-burger span{
  width:28px;
  height:3px;
  border-radius:10px;
  background:#073E4A;
}

.yk-burger span:nth-child(2){
  width:20px;
  margin-left:auto;
}

.yk-hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(110deg,#FFF3E5 0%,#FFF9F1 45%,#FCE0D3 100%);
}

.yk-hero-grid{
  min-height:620px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  padding:70px 0;
}

.yk-eyebrow{
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:#FF6F6B;
  font-weight:950;
  font-size:13px;
}

.yk-eyebrow.light{
  color:#BFFBFF;
}

.yk-hero h1{
  margin:0;
  font-size:clamp(52px,7vw,88px);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:950;
}

.yk-hero h1 span{
  color:#FF6F6B;
  font-family:Georgia, serif;
  font-style:italic;
  font-weight:400;
  letter-spacing:-.04em;
}

.yk-lead{
  max-width:480px;
  margin:28px 0 34px;
  font-size:20px;
  line-height:1.6;
  font-weight:650;
  color:#315A63;
}

.yk-hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.yk-hero-visual{
  position:relative;
  min-height:460px;
}

.yk-bubble-tea{
  position:absolute;
  right:115px;
  top:8px;
  width:215px;
  height:330px;
  border-radius:34px 34px 42px 42px;
  background:linear-gradient(180deg,#FFC6B9 0%,#FF736F 100%);
  box-shadow:0 30px 60px rgba(255,111,107,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotate(-4deg);
}

.yk-cup-lid{
  position:absolute;
  top:-18px;
  width:160px;
  height:32px;
  border-radius:999px;
  background:#073E4A;
  opacity:.15;
}

.yk-cup-body{
  font-size:88px;
}

.yk-cookie-stack{
  position:absolute;
  right:10px;
  bottom:35px;
  width:330px;
  height:260px;
}

.yk-cookie{
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:110px;
  background:#F2C48B;
  box-shadow:0 24px 50px rgba(88,52,18,.18);
}

.yk-cookie.c1{right:62px;bottom:85px;transform:rotate(8deg);}
.yk-cookie.c2{right:122px;bottom:40px;transform:rotate(-12deg);}
.yk-cookie.c3{right:20px;bottom:12px;transform:rotate(18deg);}

.yk-floating-tag{
  position:absolute;
  left:20px;
  bottom:16px;
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(12px);
  padding:15px 22px;
  border-radius:999px;
  font-weight:950;
  box-shadow:0 14px 30px rgba(7,62,74,.12);
}

.yk-categories{
  background:#fff;
  padding:28px 0;
}

.yk-category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.yk-category-card{
  background:#FFF9F1;
  border-radius:24px;
  padding:18px;
  display:flex;
  align-items:center;
  gap:16px;
  box-shadow:0 10px 24px rgba(7,62,74,.04);
  transition:.25s ease;
}

.yk-category-card:hover{
  transform:translateY(-4px);
}

.yk-category-img{
  min-width:78px;
  height:78px;
  border-radius:20px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
}

.yk-category-card h3{
  margin:0 0 4px;
  font-size:21px;
  font-weight:950;
}

.yk-category-card p{
  margin:0;
  font-size:13px;
  color:#38636B;
  font-weight:700;
}

.yk-menu-section{
  background:#FFF9F1;
  padding:86px 0;
}

.yk-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:34px;
}

.yk-section-head h2{
  margin:0;
  font-size:52px;
  line-height:1;
  letter-spacing:-.04em;
}

.yk-section-head p:last-child{
  max-width:430px;
  color:#38636B;
  font-weight:650;
  line-height:1.6;
}

.yk-products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.yk-product-card{
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 35px rgba(7,62,74,.07);
  transition:.25s ease;
}

.yk-product-card:hover{
  transform:translateY(-7px);
}

.yk-product-visual{
  height:190px;
  background:linear-gradient(135deg,rgba(32,199,204,.28),rgba(255,111,107,.48));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:86px;
}

.yk-product-content{
  padding:22px;
}

.yk-product-content span{
  display:inline-block;
  background:#18B7BC;
  color:#fff;
  padding:7px 11px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
}

.yk-product-content h3{
  margin:16px 0 8px;
  font-size:22px;
  font-weight:950;
}

.yk-product-content p{
  min-height:66px;
  color:#38636B;
  font-weight:650;
  line-height:1.45;
}

.yk-product-content strong{
  font-size:20px;
}

.yk-compose{
  position:relative;
  overflow:hidden;
  background:#078E94;
  color:#fff;
}

.yk-compose-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr 2fr;
  align-items:center;
  gap:40px;
  padding:80px 0;
}

.yk-compose h2{
  margin:0 0 22px;
  font-size:clamp(42px,5vw,64px);
  line-height:.95;
  letter-spacing:-.05em;
}

.yk-compose h2 span{
  font-family:Georgia,serif;
  font-weight:400;
  font-style:italic;
}

.yk-compose p{
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.55;
  font-weight:650;
}

.yk-compose-circle{
  position:absolute;
  border-radius:50%;
  background:#FF6F6B;
}

.yk-circle-one{
  width:280px;
  height:280px;
  right:-70px;
  top:-95px;
}

.yk-circle-two{
  width:150px;
  height:150px;
  left:32%;
  bottom:-75px;
}

.yk-bowl-area{
  position:relative;
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.yk-bowl{
  position:relative;
  z-index:2;
  width:380px;
  height:260px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:120px;
  box-shadow:0 30px 70px rgba(0,0,0,.22);
}

.yk-note{
  position:absolute;
  color:#fff !important;
  font-family:Georgia,serif;
  font-style:italic;
  font-size:18px !important;
}

.note-1{left:30px;top:40px;}
.note-2{right:40px;top:44px;}
.note-3{right:120px;bottom:46px;}

.yk-stores{
  padding:86px 0;
}

.yk-stores-grid{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:44px;
  align-items:center;
}

.yk-stores h2{
  margin:0 0 18px;
  font-size:44px;
  line-height:1.02;
  letter-spacing:-.04em;
}

.yk-stores p{
  color:#38636B;
  font-weight:650;
  line-height:1.6;
}

.yk-store-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.yk-store-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(7,62,74,.06);
}

.yk-store-img{
  height:190px;
  background:linear-gradient(135deg,#073E4A,#18B7BC);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:950;
}

.yk-store-card h3{
  margin:20px 20px 6px;
  font-size:20px;
  font-weight:950;
}

.yk-store-card p{
  margin:0 20px 22px;
  font-size:14px;
}

.yk-franchise{
  background:#FF6F6B;
  color:#fff;
  padding:54px 0;
}

.yk-franchise-grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
}

.yk-franchise h2{
  margin:0 0 10px;
  font-size:42px;
  letter-spacing:-.04em;
}

.yk-franchise p{
  margin:0;
  font-size:18px;
  font-weight:700;
  max-width:760px;
}

.yk-recruitment{
  padding:86px 0;
  background:linear-gradient(135deg,#E9FDFF,#FFF9F1);
}

.yk-recruit-grid{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:34px;
}

.yk-recruitment h2{
  margin:0 0 10px;
  font-size:48px;
  letter-spacing:-.04em;
}

.yk-recruitment h2 span{
  color:#FF6F6B;
  font-family:Georgia,serif;
  font-weight:400;
  font-style:italic;
}

.yk-recruitment p{
  color:#38636B;
  font-weight:650;
}

.yk-job-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:30px;
}

.yk-job-grid article{
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 14px 30px rgba(7,62,74,.06);
  transition:.25s ease;
}

.yk-job-grid article:hover{
  transform:translateY(-5px);
}

.yk-job-grid article div{
  font-size:34px;
  margin-bottom:14px;
}

.yk-job-grid h3{
  margin:0 0 12px;
  font-size:19px;
  font-weight:950;
}

.yk-job-grid p{
  min-height:72px;
  font-size:14px;
}

.yk-job-grid a{
  display:inline-block;
  margin-top:12px;
  font-weight:950;
  font-size:14px;
}

.yk-cv-box{
  background:#078E94;
  color:#fff;
  border-radius:26px;
  padding:32px;
  align-self:stretch;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:0 24px 48px rgba(7,62,74,.18);
}

.yk-cv-box h3{
  margin:0 0 18px;
  font-size:32px;
  line-height:1;
}

.yk-cv-box p{
  color:rgba(255,255,255,.88);
  margin-bottom:28px;
}

.yk-footer{
  background:#033A42;
  color:#fff;
  padding:70px 0;
}

.yk-footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr 1.3fr;
  gap:36px;
}

.yk-footer-logo{
  height:120px;
  width:auto;
  object-fit:contain;
}

.yk-footer h4{
  margin:0 0 18px;
  font-size:18px;
  font-weight:950;
}

.yk-footer p,
.yk-footer a{
  display:block;
  color:rgba(255,255,255,.72);
  margin:0 0 10px;
  font-weight:650;
}

.yk-newsletter{
  display:flex;
  overflow:hidden;
  border-radius:14px;
  background:#fff;
  margin-top:16px;
}

.yk-newsletter input{
  flex:1;
  min-width:0;
  border:0;
  padding:16px;
  outline:0;
  color:#073E4A;
}

.yk-newsletter button{
  border:0;
  background:#FF6F6B;
  color:#fff;
  width:56px;
  font-size:24px;
  cursor:pointer;
}

@media(max-width:1100px){
  .yk-menu,
  .yk-actions{
    display:none;
  }

  .yk-burger{
    display:flex;
  }

  .yk-menu.is-open{
    display:grid;
    position:absolute;
    left:0;
    right:0;
    top:86px;
    background:#fff;
    padding:18px 6%;
    gap:0;
    box-shadow:0 18px 36px rgba(7,62,74,.08);
  }

  .yk-menu.is-open a{
    padding:15px 0;
    border-bottom:1px solid rgba(7,62,74,.08);
  }

  .yk-category-grid,
  .yk-products,
  .yk-job-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .yk-hero-grid,
  .yk-compose-grid,
  .yk-stores-grid,
  .yk-recruit-grid{
    grid-template-columns:1fr;
  }

  .yk-store-cards{
    grid-template-columns:repeat(2,1fr);
  }

  .yk-section-head{
    display:block;
  }

  .yk-footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .yk-nav{
    height:76px;
  }

  .yk-logo{
    height:52px;
  }

  .yk-menu.is-open{
    top:76px;
  }

  .yk-hero-grid{
    min-height:auto;
    padding:48px 0 70px;
  }

  .yk-hero h1{
    font-size:52px;
  }

  .yk-lead{
    font-size:17px;
  }

  .yk-hero-visual{
    min-height:360px;
  }

  .yk-bubble-tea{
    right:90px;
    width:160px;
    height:245px;
  }

  .yk-cup-body{
    font-size:64px;
  }

  .yk-cookie-stack{
    right:-8px;
    bottom:10px;
    transform:scale(.78);
    transform-origin:right bottom;
  }

  .yk-category-grid,
  .yk-products,
  .yk-store-cards,
  .yk-job-grid,
  .yk-footer-grid{
    grid-template-columns:1fr;
  }

  .yk-category-card{
    padding:16px;
  }

  .yk-section-head h2,
  .yk-stores h2,
  .yk-recruitment h2{
    font-size:38px;
  }

  .yk-compose-grid{
    padding:60px 0;
  }

  .yk-bowl{
    width:290px;
    height:200px;
    font-size:92px;
  }

  .yk-note{
    display:none;
  }

  .yk-franchise-grid{
    grid-template-columns:1fr;
  }
}


/* =========================
   PAGE RECRUTEMENT
========================= */

.yk-page-hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(110deg,#FFF3E5 0%,#FFF9F1 45%,#FCE0D3 100%);
  padding:80px 0 70px;
}

.yk-page-hero::after{
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(255,111,107,.22);
}

.yk-page-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
}

.yk-page-hero h1{
  margin:0;
  font-size:clamp(46px,6vw,78px);
  line-height:.95;
  letter-spacing:-.06em;
  font-weight:950;
}

.yk-page-hero h1 span{
  color:#FF6F6B;
  font-family:Georgia,serif;
  font-weight:400;
  font-style:italic;
}

.yk-page-hero p{
  color:#315A63;
  font-size:19px;
  line-height:1.6;
  font-weight:650;
  max-width:560px;
}

.yk-recruit-hero-card{
  background:#078E94;
  color:#fff;
  border-radius:32px;
  padding:36px;
  box-shadow:0 26px 60px rgba(7,62,74,.18);
}

.yk-recruit-hero-card h2{
  margin:0 0 20px;
  font-size:32px;
  line-height:1.05;
}

.yk-recruit-hero-card ul{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:12px;
  color:rgba(255,255,255,.88);
  font-weight:700;
}

.yk-form-section{
  padding:80px 0;
  background:#FFF9F1;
}

.yk-form-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:34px;
  align-items:start;
}

.yk-form-card{
  background:#fff;
  border-radius:32px;
  padding:34px;
  box-shadow:0 20px 50px rgba(7,62,74,.08);
}

.yk-form-card h2{
  margin:0 0 10px;
  font-size:38px;
  letter-spacing:-.04em;
}

.yk-form-card > p{
  margin:0 0 28px;
  color:#38636B;
  font-weight:650;
  line-height:1.6;
}

.yk-form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.yk-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.yk-field.full{
  grid-column:1/-1;
}

.yk-field label{
  font-size:14px;
  font-weight:950;
  color:#073E4A;
}

.yk-field input,
.yk-field select,
.yk-field textarea{
  width:100%;
  border:1px solid rgba(7,62,74,.15);
  background:#FFF9F1;
  color:#073E4A;
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  font-weight:650;
  outline:none;
  transition:.2s ease;
}

.yk-field textarea{
  min-height:130px;
  resize:vertical;
  line-height:1.5;
}

.yk-field input:focus,
.yk-field select:focus,
.yk-field textarea:focus{
  border-color:#18B7BC;
  box-shadow:0 0 0 4px rgba(24,183,188,.12);
  background:#fff;
}

.yk-help{
  color:#69838A;
  font-size:12px;
  font-weight:650;
}

.yk-checkbox{
  grid-column:1/-1;
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:13px;
  color:#38636B;
  font-weight:650;
  line-height:1.5;
}

.yk-checkbox input{
  margin-top:3px;
}

.yk-form-submit{
  grid-column:1/-1;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
  margin-top:10px;
}

.yk-form-note{
  color:#38636B;
  font-size:13px;
  font-weight:650;
  margin:0;
}

.yk-side-panel{
  display:grid;
  gap:18px;
}

.yk-side-box{
  background:#fff;
  border-radius:26px;
  padding:26px;
  box-shadow:0 14px 35px rgba(7,62,74,.06);
}

.yk-side-box.dark{
  background:#033A42;
  color:#fff;
}

.yk-side-box h3{
  margin:0 0 12px;
  font-size:24px;
  letter-spacing:-.03em;
}

.yk-side-box p{
  margin:0;
  color:#38636B;
  line-height:1.55;
  font-weight:650;
}

.yk-side-box.dark p{
  color:rgba(255,255,255,.78);
}

.yk-alert{
  border-radius:20px;
  padding:18px 20px;
  margin-bottom:24px;
  font-weight:800;
  line-height:1.5;
}

.yk-alert.success{
  background:rgba(24,183,188,.12);
  color:#056B70;
  border:1px solid rgba(24,183,188,.25);
}

.yk-alert.error{
  background:rgba(255,111,107,.12);
  color:#A33432;
  border:1px solid rgba(255,111,107,.25);
}

.yk-honeypot{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

@media(max-width:1100px){
  .yk-page-hero-grid,
  .yk-form-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .yk-page-hero{
    padding:54px 0 48px;
  }

  .yk-page-hero h1{
    font-size:46px;
  }

  .yk-form-card{
    padding:24px;
    border-radius:24px;
  }

  .yk-form-grid{
    grid-template-columns:1fr;
  }

  .yk-field.full,
  .yk-checkbox,
  .yk-form-submit{
    grid-column:auto;
  }
}

.yk-hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:460px;
}

.yk-hero-image{
  width:100%;
  max-width:620px;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  border-radius:34px;
  box-shadow:0 35px 80px rgba(7,62,74,.18);
}

.yk-hero-visual::before{
  content:"";
  position:absolute;
  inset:40px;
  border-radius:40px;
  background:linear-gradient(135deg, rgba(32,199,204,.20), rgba(255,111,107,.22));
  transform:rotate(-3deg);
  z-index:0;
}

.yk-hero-image{
  position:relative;
  z-index:2;
}