*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink-light: #FFF0F3;
  --pink: #FFB8C6;
  --pink-dark: #E8899E;
  --cream: #FFF8F0;
  --gold: #D4A574;
  --gold-light: #F0DCC8;
  --brown: #5C3D2E;
  --brown-light: #8B6F5E;
  --text-dark: #2D2D2D;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --bg-soft: #FEFBF8;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans KR', 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-mark {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}

.header-logo-text {
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.5px;
}

.nav-header-mark {
  font-size: 28px;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-self: center;
}

.nav-header-mobile,
.nav-footer-mobile,
.nav-icon { display: none; }

.nav a {
  text-decoration: none;
  color: var(--text-medium);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
  padding: 16px 12px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  width: auto;
  height: 2px;
  background: var(--pink-dark);
  transition: transform 0.3s ease;
  border-radius: 1px;
  transform: scaleX(0);
}

.nav a:hover {
  color: var(--pink-dark);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav a.active {
  color: var(--pink-dark);
}

.nav-cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--brown-light) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #2D2D2D 0%, #4A3728 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hero-slide {
  position: relative;
  opacity: 1;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-indicator {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.hero-indicator.active {
  width: 48px;
  background: var(--white);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 1.5px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -2px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-title em {
  font-style: normal;
  color: var(--pink);
  position: relative;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
  font-weight: 500;
  word-break: keep-all;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--brown);
}

.hero .btn-primary:hover {
  background: var(--pink-light);
  color: var(--brown);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero .btn-secondary {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.hero .btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 460px;
}

.hero-logo-container {
  position: relative;
}

.hero-logo-container > img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.1));
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-float-item {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  animation: gentleFloat 5s ease-in-out infinite;
  white-space: nowrap;
}

.hero-float-item:nth-child(2) {
  top: 10%;
  right: -40px;
  animation-delay: -1s;
}

.hero-float-item:nth-child(3) {
  bottom: 15%;
  left: -30px;
  animation-delay: -3s;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-float-icon.pink { background: var(--pink-light); }
.hero-float-icon.gold { background: #FFF3E0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
  font-family: 'Noto Sans KR', sans-serif;
}

.btn-primary:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 61, 46, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Noto Sans KR', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--pink-dark);
  color: var(--pink-dark);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 120px 40px;
  max-width: 100vw;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 20px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
  background: var(--white);
  position: relative;
  scroll-margin-top: 72px;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: url('images/pexels-little-forest-2150377525-31199325.jpg') center/cover no-repeat;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 48px 36px;
  border-radius: 24px;
  background: transparent;
  border: none;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.feature-icon.pink { background: linear-gradient(135deg, #FFE0E6, #FFBDCA); }
.feature-icon.green { background: linear-gradient(135deg, #E0F5E9, #B8E6C8); }
.feature-icon.gold { background: linear-gradient(135deg, #FFF0DB, #F0DCC8); }

.feature-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.5;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MENU SHOWCASE ===== */
.menu-section {
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--white) 100%);
}

.menu-showcase {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-flavor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.menu-flavor-item {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.menu-flavor-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}

.flavor-color-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
  overflow: hidden;
}

.flavor-color-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 16px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.dot-chocolate { background: linear-gradient(135deg, #8B5E3C, #6B4226); }
.dot-strawberry { background: linear-gradient(135deg, #F4A0B0, #E87A92); }
.dot-vanilla { background: linear-gradient(135deg, #FFF5D6, #F0E0B0); }
.dot-greentea { background: linear-gradient(135deg, #A8C686, #7BA35A); }
.dot-mango { background: linear-gradient(135deg, #FFD966, #FFC107); }
.dot-choco-strawberry { background: linear-gradient(135deg, #E87A92, #6B4226); }
.dot-choco-vanilla { background: linear-gradient(135deg, #FFF5D6, #6B4226); }
.dot-strawberry-banana { background: linear-gradient(135deg, #F4A0B0, #FFE082); }
.dot-blueberry { background: linear-gradient(135deg, #B39DDB, #7E57C2); }

.flavor-name-ko {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.flavor-name-en {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.flavor-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tag-best {
  background: var(--pink-light);
  color: var(--pink-dark);
}

.tag-mix {
  background: #E8F5E9;
  color: #4CAF50;
}

.tag-new {
  background: #EDE7F6;
  color: #7E57C2;
}

/* Menu poster gallery */
.menu-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-poster {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.menu-poster:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.menu-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-poster:hover img {
  transform: scale(1.04);
}

.menu-poster-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 100%);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-poster:hover .menu-poster-overlay {
  opacity: 1;
}

.menu-poster-overlay span {
  font-size: 14px;
  font-weight: 500;
}

/* ===== GELATO FLAVOR CAROUSEL ===== */
.flavor-carousel-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-light) 100%);
  scroll-margin-top: 72px;
  text-align: center;
  overflow-x: hidden;
}

.flavor-carousel-section .section-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 16px;
}

.flavor-carousel-section .section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.flavor-carousel-section .section-desc {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 56px;
  line-height: 1.7;
}

.flavor-carousel-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.flavor-carousel-outer {
  position: relative;
  width: 560px;
  flex-shrink: 0;
}

.flavor-menu-poster {
  width: 500px;
  height: 750px;
  flex-shrink: 0;
  border-radius: 36px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flavor-menu-poster:hover {
  transform: translateY(-8px);
}

.flavor-menu-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.flavor-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--pink-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.flavor-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  visibility: hidden;
}

.flavor-carousel-slide.active {
  transform: translateX(0);
  z-index: 2;
  visibility: visible;
}

.flavor-carousel-slide.exit-left {
  transform: translateX(-100%);
  z-index: 1;
  visibility: visible;
}

.flavor-carousel-slide.exit-right {
  transform: translateX(100%);
  z-index: 1;
  visibility: visible;
}

.flavor-carousel-slide img {
  max-width: 90%;
  max-height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
}

.flavor-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--white);
  text-align: center;
  padding: 32px;
}

.flavor-ph-emoji {
  font-size: 140px;
  line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  letter-spacing: -8px;
}

.flavor-ph-name {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.flavor-ph-chocolate         { background: linear-gradient(135deg, #8B5E3C, #4A2C18); }
.flavor-ph-strawberry        { background: linear-gradient(135deg, #F4A0B0, #C8556F); }
.flavor-ph-vanilla           { background: linear-gradient(135deg, #FFF5D6, #D4B87A); }
.flavor-ph-vanilla .flavor-ph { color: var(--brown); text-shadow: none; }
.flavor-ph-vanilla .flavor-ph-name { text-shadow: none; }
.flavor-ph-greentea          { background: linear-gradient(135deg, #A8C686, #4E7A3A); }
.flavor-ph-mango             { background: linear-gradient(135deg, #FFD966, #E8A93A); }
.flavor-ph-choco-strawberry  { background: linear-gradient(135deg, #E87A92, #4A2C18); }
.flavor-ph-choco-vanilla     { background: linear-gradient(135deg, #FFF5D6, #4A2C18); }
.flavor-ph-strawberry-banana { background: linear-gradient(135deg, #F4A0B0, #FFC966); }
.flavor-ph-blueberry         { background: linear-gradient(135deg, #B39DDB, #5E3A9A); }

.flavor-carousel-name,
.flavor-carousel-name-en {
  display: none;
}

.flavor-info-panel {
  text-align: center;
  margin-top: 20px;
  min-height: 80px;
}

.flavor-info-panel h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  transition: opacity 0.3s ease;
}

.flavor-info-panel .flavor-info-en {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

.flavor-info-panel .flavor-info-desc {
  font-size: 20px;
  color: var(--text-medium);
  line-height: 1.6;
  word-break: keep-all;
  transition: opacity 0.3s ease;
}

.flavor-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.flavor-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--pink);
  opacity: 0.35;
  transition: all 0.4s ease;
}

.flavor-nav-dot.active {
  background: var(--pink-dark);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

.flavor-carousel-arrows {
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.flavor-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--brown);
  transition: all 0.3s ease;
}

.flavor-arrow:hover {
  background: var(--pink-light);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transform: scale(1.1);
}

/* ===== QUALITY BANNER ===== */
.quality-banner {
  background: linear-gradient(135deg, var(--brown) 0%, #7A5A4A 100%);
  padding: 100px 40px;
  text-align: center;
  scroll-margin-top: 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quality-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.sangha-logo {
  display: inline-block;
  margin-bottom: 32px;
  position: relative;
  background: rgba(255,255,255,0.15);
  padding: 14px 28px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.2);
}

.quality-banner h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -1px;
}

.quality-banner > p {
  font-size: 20px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.quality-badges {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  position: relative;
}

.quality-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.quality-badge-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(4px);
}

.quality-badge:hover .quality-badge-icon {
  background: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.quality-badge span {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* ===== STORY ===== */
.story-section {
  background: var(--white);
  overflow: hidden;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.story-visual {
  flex: 1;
  position: relative;
  overflow: visible;
}

.story-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.story-img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.story-stat {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  bottom: -24px;
  right: -24px;
  text-align: center;
}

.story-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--pink-dark);
  line-height: 1;
}

.story-stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

.story-text {
  flex: 1;
}

.story-text .section-label {
  text-align: left;
}

.story-text .section-title {
  text-align: left;
  font-size: 52px;
  font-weight: 800;
}

.story-text p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 600;
  word-break: keep-all;
}

.story-highlights {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}

.story-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.story-highlight:nth-child(1) .story-highlight-icon { background: linear-gradient(135deg, #FFE0E6, #FFBDCA); }
.story-highlight:nth-child(2) .story-highlight-icon { background: linear-gradient(135deg, #E0F5E9, #B8E6C8); }
.story-highlight:nth-child(3) .story-highlight-icon { background: linear-gradient(135deg, #FFF0DB, #F0DCC8); }

.story-highlight span {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ===== DIFFERENCE ===== */
.difference-section {
  background: var(--white);
  padding: 120px 40px;
  overflow: hidden;
  max-width: 100vw;
}

.difference-content {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.difference-visual {
  flex: 1;
  position: relative;
}

.difference-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.difference-img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.difference-text {
  flex: 1;
}

.difference-text .section-label {
  text-align: left;
}

.difference-text .section-title {
  text-align: left;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
}

.difference-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.difference-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.difference-item:nth-child(1) .difference-item-icon { background: linear-gradient(135deg, #FFE0E6, #FFBDCA); }
.difference-item:nth-child(2) .difference-item-icon { background: linear-gradient(135deg, #FFF0DB, #F0DCC8); }
.difference-item:nth-child(3) .difference-item-icon { background: linear-gradient(135deg, #E0F5E9, #B8E6C8); }

.difference-item h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.difference-item h3 .highlight {
  color: var(--pink-dark);
}

.difference-item p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.7;
  word-break: keep-all;
}

/* ===== CTA / FRANCHISE ===== */
.cta-section {
  background: linear-gradient(135deg, var(--pink-light) 0%, #FFF5F0 50%, var(--cream) 100%);
  text-align: center;
  scroll-margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.cta-section::before {
  width: 400px;
  height: 400px;
  background: var(--pink);
  top: -100px;
  right: -100px;
}

.cta-section::after {
  width: 300px;
  height: 300px;
  background: var(--gold-light);
  bottom: -80px;
  left: -80px;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner .section-title {
  margin-bottom: 20px;
}

.cta-inner .section-desc {
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.cta-info-item:hover .cta-info-icon {
  transform: translateY(-3px);
}

.cta-info-text {
  text-align: left;
}

.cta-info-text small {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.cta-info-text strong {
  font-size: 18px;
  color: var(--text-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.6);
  padding: 64px 40px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  font-weight: 700;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--pink-dark);
  color: var(--white);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  right: 32px;
  bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.floating-btn.kakao {
  background: #FEE500;
  color: #3C1E1E;
}

.floating-btn.phone {
  background: var(--brown);
  color: var(--white);
}

.floating-btn-label {
  position: absolute;
  right: 58px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-btn:hover .floating-btn-label {
  opacity: 1;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--brown-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   RESPONSIVE — TABLET (769px ~ 1024px)
   ============================================================ */
@media (max-width: 1200px) {
  .flavor-carousel-layout { gap: 32px; max-width: 95%; }
  .flavor-carousel-outer { width: 440px; }
  .flavor-carousel-wrapper { height: 580px; }
  .flavor-menu-poster { width: 400px; height: 600px; }
}

@media (max-width: 1024px) {
  /* Header */
  .header { padding: 0 28px; }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 80px 24px 80px;
  }
  .hero-text { max-width: 600px; }
  .hero-buttons { justify-content: center; }
  .hero-title { font-size: 54px; }
  .hero-visual { max-width: 260px; }
  .hero-float-item { display: none; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Story */
  .story-content { flex-direction: column; gap: 48px; }
  .story-text .section-label,
  .story-text .section-title { text-align: center; }
  .story-text p { text-align: center; }
  .story-highlights { justify-content: center; flex-wrap: wrap; }
  .story-stat { right: 10px; bottom: -16px; }
  .story-text .section-title { font-size: 40px; }

  /* Difference */
  .difference-content { flex-direction: column; gap: 48px; }
  .difference-text .section-label,
  .difference-text .section-title { text-align: center; }
  .difference-item { justify-content: center; }
  .difference-text .section-title { font-size: 38px; }

  /* CTA */
  .cta-info { flex-direction: column; align-items: center; gap: 24px; }

  /* Section titles */
  .section-title { font-size: 36px; }
  .section-desc { font-size: 18px; }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT / SMALL TABLET (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {
  .flavor-carousel-section { padding: 60px 20px; }
  .flavor-carousel-layout { flex-direction: column; align-items: center; gap: 32px; }
  .flavor-carousel-outer { width: 360px; }
  .flavor-carousel-wrapper { height: 480px; }
  .flavor-menu-poster { width: 360px; height: 480px; }
  .flavor-arrow { width: 36px; height: 36px; font-size: 16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header — mobile nav */
  .header {
    padding: 0 20px;
    height: 60px;
    grid-template-columns: 1fr auto;
  }
  .header-logo img { height: 44px; }
  .header-logo-text { font-size: 20px; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 0 24px 32px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    display: flex !important;
    visibility: hidden;
  }
  .nav.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-header-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 48px 0 20px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--pink-light);
  }
  .nav-header-mobile .nav-header-mark {
    font-size: 28px;
    line-height: 1;
  }
  .nav-header-mobile span {
    font-size: 20px;
    font-weight: 800;
    color: var(--brown);
  }
  .nav a {
    font-size: 16px;
    font-weight: 500;
    padding: 15px 16px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s;
    color: var(--text-dark);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav a:hover,
  .nav a:active {
    background: var(--pink-light);
    transform: translateX(4px);
  }
  .nav a::after {
    display: none;
  }
  .nav-icon {
    font-size: 20px;
    width: 28px;
    text-align: center;
  }
  .nav-footer-mobile {
    margin-top: auto;
    padding: 20px 0 8px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
  }
  .nav-footer-mobile p {
    font-size: 13px;
    color: var(--text-light);
    margin: 4px 0;
  }
  .nav-footer-mobile p:first-child {
    font-weight: 600;
    color: var(--brown);
    font-size: 14px;
  }
  .menu-toggle { display: block; justify-self: end; z-index: 10000; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hamburger animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Sections */
  .section { padding: 80px 20px; }
  .section-header { margin-bottom: 48px; }

  /* Hero */
  .hero { min-height: 100vh; padding-top: 60px; }
  .hero-slideshow { display: block; position: absolute; inset: 0; }
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
  .hero-inner { padding: 60px 20px 100px; }
  .hero-title { font-size: 40px; letter-spacing: -1px; }
  .hero-badge { font-size: 13px; padding: 6px 14px; margin-bottom: 24px; }
  .hero-visual { max-width: 200px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 36px; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 28px; font-size: 14px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .feature-card { padding: 36px 24px; }
  .feature-card h3 { font-size: 22px; }
  .feature-card p { font-size: 16px; }

  /* Marquee */
  .marquee { padding: 14px 0; }
  .marquee-item { font-size: 16px; }

  /* Menu */
  .menu-flavor-list { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .menu-posters { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .menu-poster { aspect-ratio: auto; }

  /* Flavor carousel */
  .flavor-carousel-section { padding: 60px 16px; }
  .flavor-carousel-section .section-title { font-size: 32px; }
  .flavor-carousel-section .section-desc { font-size: 16px; margin-bottom: 36px; }
  .flavor-carousel-outer { width: 100%; max-width: 340px; }
  .flavor-carousel-wrapper { height: 400px; border-radius: 24px; }
  .flavor-menu-poster { width: 100%; max-width: 340px; height: auto; aspect-ratio: 2/3; border-radius: 24px; }
  .flavor-info-panel { min-height: 60px; }
  .flavor-info-panel .flavor-info-desc { font-size: 16px; }
  .flavor-arrow { width: 36px; height: 36px; font-size: 16px; }
  .flavor-ph-emoji { font-size: 90px; letter-spacing: -6px; }
  .flavor-ph-name { font-size: 24px; }
  .flavor-ph { gap: 20px; }

  /* Quality */
  .quality-banner { padding: 64px 20px; }
  .quality-banner h2 { font-size: 28px; }
  .quality-banner > p { font-size: 16px; }
  .quality-badges { gap: 20px; flex-wrap: wrap; }
  .quality-badge-icon { width: 64px; height: 64px; font-size: 28px; }
  .quality-badge span { font-size: 14px; }
  .sangha-logo { font-size: 15px; padding: 12px 22px; }

  /* Story */
  .story-stat { right: 10px; bottom: -10px; padding: 14px 20px; }
  .story-stat-num { font-size: 30px; }
  .story-text .section-title { font-size: 32px; }
  .story-text p { font-size: 16px; }
  .story-highlights { flex-direction: column; gap: 16px; align-items: center; }
  .story-highlight span { font-size: 16px; }

  /* Difference */
  .difference-section { padding: 80px 20px; }
  .difference-text .section-title { font-size: 30px; }
  .difference-item h3 { font-size: 19px; }
  .difference-item p { font-size: 16px; }

  /* CTA */
  .section-title { font-size: 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .cta-info { gap: 20px; }
  .cta-info-item { gap: 12px; flex-direction: column; text-align: center; }
  .cta-info-icon { width: 48px; height: 48px; font-size: 20px; }
  .cta-info-text { text-align: center; }
  .cta-info-text small { font-size: 12px; }
  .cta-info-text strong { font-size: 15px; }

  /* Footer */
  .footer { padding: 48px 20px 32px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: center; }

  /* Floating buttons */
  .floating-buttons { right: 16px; bottom: 80px; }
  .floating-btn { width: 44px; height: 44px; }
  .scroll-top { right: 16px; bottom: 24px; width: 44px; height: 44px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero-badge { font-size: 11px; letter-spacing: 1px; }

  .section { padding: 60px 16px; }
  .section-title { font-size: 24px; letter-spacing: -0.5px; }
  .section-desc { font-size: 15px; }

  .menu-flavor-list { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .menu-flavor-item { padding: 16px 8px; border-radius: 14px; }
  .flavor-color-dot { width: 36px; height: 36px; }
  .flavor-name-ko { font-size: 13px; }
  .flavor-name-en { font-size: 10px; }
  .flavor-tag { font-size: 9px; padding: 2px 8px; }

  .flavor-carousel-outer { max-width: 300px; }
  .flavor-carousel-wrapper { height: 340px; border-radius: 20px; }
  .flavor-ph-emoji { font-size: 72px; letter-spacing: -4px; }
  .flavor-ph-name { font-size: 20px; }
  .flavor-menu-poster { max-width: 300px; border-radius: 20px; }
  .flavor-info-panel .flavor-info-desc { font-size: 14px; }

  .quality-banner { padding: 48px 16px; }
  .quality-banner h2 { font-size: 24px; }
  .quality-badges { gap: 16px; }
  .quality-badge-icon { width: 56px; height: 56px; border-radius: 16px; font-size: 24px; }
  .quality-badge span { font-size: 13px; }
  .sangha-logo { font-size: 13px; padding: 10px 18px; border-radius: 50px; }

  .story-text .section-title { font-size: 26px; }
  .difference-text .section-title { font-size: 24px; }
  .difference-item h3 { font-size: 17px; }
  .difference-item p { font-size: 15px; }

  .cta-info-text strong { font-size: 14px; }

  .footer { padding: 40px 16px 24px; }
  .footer-brand-name { font-size: 22px; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL MOBILE (max-width: 360px)
   ============================================================ */
@media (max-width: 360px) {
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 13px; }

  .feature-card h3 { font-size: 20px; }
  .feature-card p { font-size: 14px; }

  .quality-banner h2 { font-size: 22px; }
  .quality-badges { gap: 12px; }
  .quality-badge-icon { width: 48px; height: 48px; font-size: 20px; }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary { max-width: 100%; }
}
