@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --ch-purple: #3f267d;
  --ch-purple-dark: #2c1a5b;
  --ch-gold: #f2b632;
  --ch-gold-dark: #dc8f22;
  --ch-cream: #f8f5ef;
  --ch-white: #ffffff;
  --ch-text: #31263d;
  --ch-muted: #696071;
  --ch-radius-lg: 42px;
  --ch-shadow: 0 22px 60px rgba(54, 31, 113, 0.18);
  --ch-shadow-gold: 0 18px 35px rgba(242, 182, 50, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--ch-cream);
  color: var(--ch-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--ch-gold);
  color: var(--ch-purple-dark);
}

/* NAVBAR */
.ch-navbar {
  min-height: 70px;
  background: var(--ch-purple);
  transition: all 0.3s ease;
  padding: 0.35rem 0;
  z-index: 1040;
}

.ch-navbar.navbar-scrolled {
  box-shadow: 0 10px 30px rgba(36, 22, 76, 0.25);
}

.brand-logo {
  width: 205px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

.ch-navbar .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  padding-inline: 1rem !important;
  position: relative;
}

.ch-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--ch-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.ch-navbar .nav-link:hover,
.ch-navbar .nav-link:focus {
  color: var(--ch-white);
}

.ch-navbar .nav-link:hover::after,
.ch-navbar .nav-link:focus::after {
  transform: scaleX(1);
}

.btn-login {
  min-width: 158px;
  border-radius: 0;
  border: none;
  background: var(--ch-gold);
  color: var(--ch-white);
  font-weight: 800;
  padding: 1.45rem 1.35rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-login:hover,
.btn-login:focus {
  background: var(--ch-gold-dark);
  color: var(--ch-white);
  transform: translateY(-2px);
}

/* GLOBAL */
.section-padding-top {
  padding-top: 105px;
}

.eyebrow,
.mini-label {
  display: inline-block;
  color: var(--ch-gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.purple-text {
  color: var(--ch-purple);
}

.btn-purple,
.btn-outline-purple {
  border-radius: 0;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.86rem 2.3rem;
  min-width: 170px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-purple {
  background: var(--ch-purple);
  border: 2px solid var(--ch-purple);
  color: var(--ch-white);
  box-shadow: 0 12px 22px rgba(63, 38, 125, 0.18);
}

.btn-purple:hover,
.btn-purple:focus {
  background: var(--ch-purple-dark);
  border-color: var(--ch-purple-dark);
  color: var(--ch-white);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(63, 38, 125, 0.26);
}

.btn-outline-purple {
  border: 2px solid var(--ch-purple);
  color: var(--ch-purple);
  background: transparent;
}

.btn-outline-purple:hover,
.btn-outline-purple:focus {
  background: var(--ch-purple);
  color: var(--ch-white);
  transform: translateY(-3px);
}

.btn-sm-wide {
  min-width: 130px;
  padding: 0.72rem 1.5rem;
  font-size: 0.82rem;
}

.pattern-yellow {
  background-image: linear-gradient(rgba(242, 182, 50, 0.94), rgba(242, 182, 50, 0.94)), url('assets/pattern-yellow.jpg');
  background-size: 290px, 290px;
}

.pattern-purple {
  background-image: linear-gradient(rgba(63, 38, 125, 0.94), rgba(63, 38, 125, 0.94)), url('assets/pattern-purple.jpg');
  background-size: 320px, 320px;
}

/* HERO */
.hero-section {
  min-height: 680px;
  background: var(--ch-cream);
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 70px;
}

.hero-copy h1 {
  color: var(--ch-gold);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 900;
  max-width: 560px;
  margin-bottom: 1.4rem;
}

.hero-copy p {
  color: var(--ch-muted);
  font-weight: 500;
  line-height: 1.68;
  max-width: 575px;
  margin-bottom: 1.8rem;
}

.hero-image-wrap {
  position: relative;
  overflow: visible;
}

.hero-food-img {
  width: 100%;
  border-bottom-left-radius: 150px;
  box-shadow: var(--ch-shadow);
  animation: floatHero 5.5s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  left: 7%;
  bottom: 4%;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ch-purple);
  color: var(--ch-gold);
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: var(--ch-shadow-gold);
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-soft {
  animation: floatSoft 3.8s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

/* ABOUT */
.about-section {
  padding: 80px 0;
  overflow: hidden;
}

.about-brand-img {
  width: min(390px, 92%);
  margin-inline: auto;
  border-bottom-left-radius: 160px;
  border-bottom-right-radius: 160px;
  box-shadow: 0 20px 45px rgba(52, 29, 107, 0.18);
}

.about-card {
  width: min(720px, 100%);
  margin-left: auto;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 92px 92px 92px 28px;
  padding: clamp(2rem, 4vw, 4.7rem);
  text-align: center;
  box-shadow: 0 22px 50px rgba(79, 47, 15, 0.12);
}

.about-card h2 {
  color: var(--ch-purple);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--ch-muted);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

/* STORY */
.story-section {
  background: var(--ch-white);
}

.story-photo,
.story-copy {
  min-height: 380px;
  height: 100%;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  text-align: center;
  background: var(--ch-white);
}

.story-copy p {
  color: var(--ch-muted);
  font-weight: 500;
  line-height: 1.65;
  max-width: 520px;
}

.story-copy h3 {
  color: var(--ch-gold-dark);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.06;
  max-width: 560px;
}

/* FEATURES */
.features-section {
  background: var(--ch-purple);
  padding: 82px 0;
  color: var(--ch-white);
}

.feature-card {
  height: 100%;
  padding: 1.3rem 1rem;
  transition: transform 0.28s ease, background 0.28s ease;
  border-radius: 24px;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--ch-gold);
  color: var(--ch-purple);
  border-radius: 50%;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}

.feature-card h4 {
  color: var(--ch-gold);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
  line-height: 1.55;
  max-width: 350px;
}

/* WIDE DISH */
.wide-dish-section {
  width: 100%;
  overflow: hidden;
  background: var(--ch-purple-dark);
}

.wide-dish-img {
  width: 100%;
  min-height: 320px;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
}

/* MENU */
.menu-section {
  padding: 88px 0 95px;
  background: var(--ch-cream);
}

.menu-section h2 {
  color: var(--ch-purple);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.menu-card {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  padding-top: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.menu-card-featured {
  margin-top: -18px;
}

.dish-circle {
  width: 260px;
  height: 260px;
  margin: 0 auto -70px;
  border-radius: 50%;
  background: var(--ch-white);
  overflow: hidden;
  border: 10px solid var(--ch-cream);
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 45px rgba(68, 38, 14, 0.18);
}

.dish-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 0.35s ease;
}

.menu-card:hover .dish-circle img {
  transform: scale(1.16);
}

.menu-pill {
  min-height: 390px;
  padding: 90px 2rem 2.2rem;
  border-radius: 0 0 170px 170px;
  background: var(--ch-gold);
  color: var(--ch-white);
  box-shadow: var(--ch-shadow-gold);
}

.korean {
  display: block;
  color: var(--ch-white);
  font-weight: 900;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.06em;
}

.menu-pill h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.menu-pill p {
  font-weight: 500;
  line-height: 1.58;
  margin: 0;
  opacity: 0.95;
}

/* PRODUCT STRIPS */
.product-strip {
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}

.strip-purple {
  color: var(--ch-purple);
}

.strip-gold {
  color: var(--ch-gold-dark);
}

.product-bubble {
  max-width: 1070px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  padding: 2rem 4.5rem;
  box-shadow: 0 22px 50px rgba(65, 38, 126, 0.16);
  overflow: hidden;
}

.product-bubble-light {
  background: rgba(255, 255, 255, 0.96);
}

.product-img {
  max-height: 330px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.12));
}

.product-img-left {
  transform: translateX(-20px) scale(1.15);
}

.product-img-right {
  transform: translateX(24px) scale(1.12);
}

.product-korean {
  color: var(--ch-gold);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.product-bubble h2 {
  color: var(--ch-gold-dark);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.product-bubble p {
  color: var(--ch-muted);
  font-weight: 500;
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

/* SOCIAL */
.social-section {
  padding: 78px 0;
  background: var(--ch-purple);
  color: var(--ch-white);
}

.social-section h2 {
  max-width: 560px;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.03;
  margin: 0;
}

.social-section h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 1.4rem;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
}

.text-lg-end .social-icons {
  justify-content: flex-end;
}

.social-icons a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ch-purple);
  background: var(--ch-white);
  font-size: 1.65rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.social-icons a:hover,
.social-icons a:focus {
  background: var(--ch-gold);
  color: var(--ch-purple-dark);
  transform: translateY(-6px) rotate(7deg);
}

/* CONTACT */
.contact-section {
  background: var(--ch-white);
}

.contact-panel,
.promo-panel {
  min-height: 560px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-panel {
  background: var(--ch-white);
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-item i {
  color: var(--ch-purple);
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.contact-item h4 {
  color: var(--ch-gold-dark);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin-bottom: 0.2rem;
}

.contact-item p {
  margin: 0;
  color: var(--ch-muted);
  font-weight: 500;
  line-height: 1.45;
}

.contact-map-img {
  width: 100%;
  margin-top: auto;
  opacity: 0.88;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(63, 38, 125, 0.08);
}

.promo-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

/* GALLERY + FOOTER */
.gallery-section {
  overflow: hidden;
  background: var(--ch-purple-dark);
}

.gallery-img {
  width: 100%;
  min-height: 190px;
  object-fit: cover;
}

.footer-section {
  background: var(--ch-purple);
  color: var(--ch-white);
  padding: 28px 0;
}

.footer-logo {
  width: 205px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.footer-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-section a:hover {
  color: var(--ch-gold);
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .hero-section {
    min-height: auto;
  }

  .btn-login {
    padding: 0.95rem 1.25rem;
    border-radius: 12px;
    margin-top: 0.8rem;
  }

  .menu-pill {
    min-height: 360px;
  }
}

@media (max-width: 991.98px) {
  .section-padding-top {
    padding-top: 96px;
  }

  .navbar-collapse {
    padding: 1rem 0 1.2rem;
  }

  .brand-logo {
    width: 180px;
    height: 54px;
  }

  .hero-section {
    padding-bottom: 52px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .hero-copy h1 {
    margin-inline: auto;
  }

  .hero-copy .d-flex {
    justify-content: center;
  }

  .hero-food-img {
    border-bottom-left-radius: 80px;
  }

  .about-card {
    margin-inline: auto;
    border-radius: 52px 52px 52px 22px;
  }

  .story-photo img,
  .story-photo,
  .story-copy {
    min-height: 320px;
  }

  .feature-card {
    text-align: center;
  }

  .feature-icon,
  .feature-card p {
    margin-inline: auto;
  }

  .menu-card-featured {
    margin-top: 0;
  }

  .product-bubble {
    border-radius: 46px;
    padding: 2rem;
    text-align: center;
  }

  .product-bubble p {
    margin-inline: auto;
  }

  .product-img-left,
  .product-img-right {
    transform: none;
    max-height: 260px;
  }

  .social-section,
  .social-section h2 {
    text-align: center;
  }

  .social-icons,
  .text-lg-end .social-icons {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: min(100% - 28px, 540px);
  }

  .hero-section {
    padding-bottom: 42px;
  }

  .hero-image-wrap {
    margin-top: 1rem;
  }

  .hero-food-img {
    border-bottom-left-radius: 46px;
  }

  .hero-badge {
    width: 72px;
    height: 72px;
    font-size: 1rem;
  }

  .btn-purple,
  .btn-outline-purple {
    width: 100%;
  }

  .about-section,
  .features-section,
  .menu-section,
  .product-strip,
  .social-section {
    padding-block: 58px;
  }

  .about-brand-img {
    border-bottom-left-radius: 92px;
    border-bottom-right-radius: 92px;
  }

  .about-card {
    padding: 2rem 1.35rem;
    border-radius: 34px;
  }

  .dish-circle {
    width: 210px;
    height: 210px;
  }

  .menu-pill {
    min-height: 340px;
    border-radius: 0 0 120px 120px;
    padding-inline: 1.45rem;
  }

  .product-bubble {
    padding: 1.5rem;
    border-radius: 34px;
  }

  .social-icons a {
    width: 52px;
    height: 52px;
  }

  .contact-panel,
  .promo-panel,
  .promo-img {
    min-height: auto;
  }

  .contact-panel {
    padding: 2rem 1.2rem;
  }

  .footer-logo {
    margin-inline: auto;
  }
}
