/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  /* Modern OKLCH Colors - Vibrant & Perceptually Uniform */
  --rice:    oklch(97.61% 0.007 86.1);  /* #FAF7F0 */
  --cream:   oklch(93.18% 0.024 85.5);  /* #F0E8D4 */
  --gold:    oklch(56.12% 0.155 77.2);  /* #B8720A */
  --gold-lt: oklch(74.41% 0.177 78.5);  /* #E8A832 */
  --green:   oklch(33.15% 0.101 144.1); /* #1A5228 */
  --green-lt:oklch(45.21% 0.122 145.5);
  --dark:    oklch(15.22% 0.015 70.2);  /* #1A1208 */
  --white:   #FFFFFF;

  --serif: 'Nanum Myeongjo', 'Georgia', serif;
  --sans:  'Noto Sans KR', sans-serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(26,18,8,.07);
  --shadow-md: 0 8px 32px rgba(26,18,8,.10);
  --shadow-lg: 0 20px 60px rgba(26,18,8,.13);

  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--rice);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Noise Texture - G-STACK Premium Feel */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: var(--sans); }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 28px; height: 1.5px; background: var(--gold);
}
.section-title {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.15; letter-spacing: -1px;
  color: var(--dark); margin-bottom: 16px;
}
.section-desc {
  font-size: 15px; color: var(--gray); font-weight: 300;
  line-height: 1.95; max-width: 500px;
}

/* Fade-up animation */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: none; cursor: pointer; font-family: var(--sans);
  font-weight: 500; border-radius: 100px; transition: all .22s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn-lg { font-size: 15px; padding: 15px 32px; }
.btn-md { font-size: 14px; padding: 12px 24px; }
.btn-sm { font-size: 13px; padding: 9px 20px; }

.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--brown); border: 1.5px solid rgba(92,58,30,.3); }
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-bg); }

.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--gold-bg); color: var(--gold); }

.btn-success { background: var(--gold) !important; color: white !important; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(250,247,240,.96);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(92,58,30,.10);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(26,18,8,.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 5%;
}
.nav-logo {
  font-family: var(--serif); font-size: 22px; font-weight: 800;
  color: var(--green); letter-spacing: 3px; line-height: 1;
}
.nav-logo span {
  display: block; font-family: var(--sans); font-size: 9.5px;
  font-weight: 500; letter-spacing: 2px; color: var(--gold);
  margin-top: 1px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--brown);
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1.5px; background: var(--green);
  transition: right .25s var(--ease);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { right: 0; }
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-ham { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.ham-line {
  display: block; width: 22px; height: 1.5px; background: var(--brown);
  margin: 5px 0; transition: all .25s;
}

/* Mobile drawer */
.mob-drawer {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--rice); z-index: 800; padding: 32px 7%;
  flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .3s var(--ease);
}
.mob-drawer.open { transform: none; }
.mob-drawer a {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--dark); padding: 14px 0;
  border-bottom: 1px solid rgba(92,58,30,.1);
}
.mob-drawer a:last-child { border: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta-wrap .btn { display: none; }
  .nav-ham { display: block; }
  .mob-drawer { display: flex; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 55% 45%;
  padding-top: 64px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 5% 80px 7%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-bg); border: 1px solid rgba(42,112,64,.2);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 500; color: var(--green2);
  letter-spacing: .5px; margin-bottom: 28px; width: fit-content;
}
.hero-eyebrow::before {
  content: ''; width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -2px; color: var(--dark);
  margin-bottom: 24px;
}
.hero-h1 em { color: var(--green); font-style: normal; display: block; }
.hero-sub {
  font-size: 16px; color: var(--gray); font-weight: 300;
  line-height: 1.9; max-width: 400px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 52px; display: flex; align-items: center; gap: 20px;
  padding-top: 36px; border-top: 1px solid rgba(92,58,30,.12);
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--serif); font-size: 26px; font-weight: 800;
  color: var(--green); display: block; line-height: 1;
}
.trust-label { font-size: 11px; color: var(--gray-lt); margin-top: 4px; }
.trust-div { width: 1px; height: 36px; background: rgba(92,58,30,.15); }

/* Hero right — visual canvas */
.hero-right {
  background: var(--cream);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 35% 38%, rgba(184,114,10,.18) 0%, transparent 58%),
    radial-gradient(ellipse at 72% 72%, rgba(26,82,40,.13) 0%, transparent 52%);
}
.hero-visual {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.hero-plate {
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.6); border: 2px dashed rgba(92,58,30,.2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  font-size: 13px; color: var(--brown-lt); text-align: center;
  backdrop-filter: blur(4px);
}
.hero-plate .big { font-size: 72px; line-height: 1; }
/* Floating badges */
.f-badge {
  position: absolute; background: var(--white);
  border-radius: var(--r-sm); padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-size: 12px; font-weight: 500; color: var(--dark);
  display: flex; align-items: center; gap: 8px;
}
.f-badge .dot { width: 8px; height: 8px; border-radius: 50%; }
.f-badge-1 { top: 22%; left: 6%; animation: floatA 3.8s ease-in-out infinite; }
.f-badge-2 { top: 55%; right: 5%; animation: floatB 4.2s ease-in-out infinite; }
.f-badge-3 { bottom: 16%; left: 12%; animation: floatA 3.5s ease-in-out .8s infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 6% 48px; }
  .hero-right { min-height: 360px; }
  .hero-plate { width: 210px; height: 210px; }
  .hero-plate .big { font-size: 52px; }
  .f-badge { display: none; }
  .hero-trust { gap: 16px; }
  .trust-num { font-size: 20px; }
}

/* ═══════════════════════════════════════
   ROLLING TICKER
═══════════════════════════════════════ */
.ticker-wrap {
  background: var(--green); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,.08);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 22s linear infinite;
  font-size: 11.5px; letter-spacing: 3px; font-weight: 600;
  color: rgba(255,255,255,.55); text-transform: uppercase;
}
.ticker-track span { padding: 0 40px; white-space: nowrap; }
.ticker-track span::after { content: '✦'; margin-left: 40px; color: rgba(255,255,255,.28); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════
   SHOP SECTION
═══════════════════════════════════════ */
.sec-shop { background: var(--white); padding: 100px 0; }
.shop-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 20px; flex-wrap: wrap;
}
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.prod-card {
  background: var(--rice); border-radius: var(--r-md); overflow: hidden;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-thumb {
  aspect-ratio: 4/3; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.prod-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.prod-card:hover .prod-thumb img { transform: scale(1.1); }
.prod-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,18,8,0.15));
  pointer-events: none;
}
.wed-main-img img, .story-img-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.prod-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  padding: 4px 12px; border-radius: 100px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .8px;
}
.badge-g { background: var(--green); color: var(--white); }
.badge-gd { background: var(--gold); color: var(--white); }
.prod-body { padding: 20px 22px 22px; }
.prod-name {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
}
.prod-desc { font-size: 13px; color: var(--gray); line-height: 1.75; margin-bottom: 18px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price {
  font-family: var(--serif); font-size: 22px; font-weight: 800; color: var(--green);
}
.prod-price small { font-size: 12px; color: var(--gray-lt); font-family: var(--sans); font-weight: 300; }

@media (max-width: 860px) { .prod-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } .sec-shop { padding: 72px 0; } }

/* ═══════════════════════════════════════
   CATERING — DARK SECTION
═══════════════════════════════════════ */
.sec-catering {
  background: var(--dark); padding: 100px 0;
}
.catering-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.catering-label { color: rgba(232,168,50,.85); }
.catering-label::before { background: var(--gold-lt); }
.catering-h2 { color: var(--white); }
.catering-h2 em { color: var(--gold-lt); font-style: normal; }
.catering-desc { color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.95; margin-bottom: 36px; max-width: 440px; }
.feat-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 40px; }
.feat {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14.5px; color: rgba(255,255,255,.68); line-height: 1.6;
}
.feat-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(184,114,10,.22); color: var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
/* Form card */
.form-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 36px;
}
.form-card-title {
  font-family: var(--serif); font-size: 21px; font-weight: 700;
  color: var(--white); margin-bottom: 24px;
}
.fg { margin-bottom: 16px; }
.fl { display: block; font-size: 12px; color: rgba(255,255,255,.42); margin-bottom: 7px; letter-spacing: .3px; }
.fi, .fsel, .fta {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11); border-radius: var(--r-sm);
  padding: 12px 15px; color: var(--white); font-size: 14px;
  font-family: var(--sans); outline: none; resize: none;
  transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.fi:focus, .fsel:focus, .fta:focus {
  border-color: var(--gold); background: rgba(255,255,255,.10);
}
.fi::placeholder, .fta::placeholder { color: rgba(255,255,255,.22); }
.fsel option { background: #2a1c0a; color: var(--white); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

@media (max-width: 860px) {
  .catering-grid { grid-template-columns: 1fr; gap: 48px; }
  .sec-catering { padding: 72px 0; }
}

/* ═══════════════════════════════════════
   CLASS SECTION
═══════════════════════════════════════ */
.sec-class { background: var(--cream); padding: 100px 0; }
.class-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.class-card {
  background: var(--white); border-radius: var(--r-md); padding: 32px;
  border: 1.5px solid rgba(92,58,30,.08);
  cursor: pointer; transition: all .25s var(--ease);
}
.class-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(26,82,40,.09);
  transform: translateY(-3px);
}
.class-icon { font-size: 38px; margin-bottom: 18px; }
.class-tag {
  display: inline-block; background: var(--gold-bg); color: var(--gold);
  font-size: 10.5px; font-weight: 700; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 13px; letter-spacing: .8px;
}
.class-name { font-family: var(--serif); font-size: 21px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.class-desc { font-size: 13.5px; color: var(--gray); line-height: 1.82; margin-bottom: 20px; }
.class-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.cm { font-size: 12px; color: var(--brown-lt); display: flex; align-items: center; gap: 5px; }
.class-price { font-family: var(--serif); font-size: 23px; font-weight: 800; color: var(--green); margin-bottom: 18px; }
.class-price small { font-size: 13px; font-weight: 300; color: var(--gray); font-family: var(--sans); }
.btn-book {
  width: 100%; background: var(--rice); border: 1.5px solid rgba(92,58,30,.18);
  color: var(--brown); padding: 13px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; cursor: pointer; font-family: var(--sans);
  transition: all .22s;
}
.btn-book:hover { background: var(--green); color: var(--white); border-color: var(--green); }

@media (max-width: 860px) { .class-grid { grid-template-columns: 1fr; } .sec-class { padding: 72px 0; } }

/* ═══════════════════════════════════════
   WEDDING SECTION
═══════════════════════════════════════ */
.sec-wedding { padding: 100px 0; background: var(--rice); }
.wedding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wed-img-wrap { position: relative; }
.wed-main-img {
  width: 100%; aspect-ratio: 3/4; background: var(--cream);
  border-radius: var(--r-lg); display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 12px;
  color: var(--brown-lt); font-size: 13px;
  overflow: hidden; position: relative;
}
.wed-main-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(232,168,50,.14) 0%, transparent 60%);
}
.wed-main-img .wi { font-size: 80px; position: relative; z-index: 1; }
.wed-main-img span { position: relative; z-index: 1; }
.wed-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); color: var(--white);
  padding: 24px 28px; border-radius: var(--r-md); max-width: 230px;
  font-family: var(--serif); font-size: 15px; line-height: 1.65;
  box-shadow: var(--shadow-lg);
}
.wed-float cite {
  display: block; margin-top: 10px; font-size: 11.5px;
  color: rgba(255,255,255,.55); font-style: normal; font-family: var(--sans);
}
.wed-features { display: flex; flex-direction: column; gap: 18px; margin: 32px 0 38px; }
.wf { display: flex; gap: 16px; align-items: flex-start; }
.wf-icon {
  width: 44px; height: 44px; background: var(--green-bg);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.wf-t { font-size: 14.5px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.wf-d { font-size: 13px; color: var(--gray); line-height: 1.65; }

@media (max-width: 860px) {
  .wedding-grid { grid-template-columns: 1fr; gap: 48px; }
  .wed-float { position: static; margin-top: 16px; max-width: 100%; }
  .sec-wedding { padding: 72px 0; }
}

/* ═══════════════════════════════════════
   STORY / ABOUT
═══════════════════════════════════════ */
.sec-story { background: var(--white); padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center; }
.story-quote {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; line-height: 1.45; color: var(--dark);
  letter-spacing: -.5px; margin-bottom: 32px;
  padding-left: 24px; border-left: 4px solid var(--gold);
}
.story-body { font-size: 15px; color: var(--gray); line-height: 2; font-weight: 300; }
.story-body + .story-body { margin-top: 18px; }
.story-body strong { color: var(--brown); font-weight: 500; }
.chef-card {
  margin-top: 44px; padding-top: 36px;
  border-top: 1px solid rgba(92,58,30,.12);
  display: flex; align-items: center; gap: 16px;
}
.chef-av {
  width: 56px; height: 56px; background: var(--cream);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
  border: 2px solid rgba(92,58,30,.15);
}
.chef-name { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--dark); }
.chef-sub { font-size: 12.5px; color: var(--gray); margin-top: 3px; }

/* Story visual side */
.story-visual {
  display: flex; flex-direction: column; gap: 16px;
}
.story-img-main {
  width: 100%; aspect-ratio: 1; background: var(--cream);
  border-radius: var(--r-lg); display: flex; align-items: center;
  justify-content: center; font-size: 80px;
  position: relative; overflow: hidden;
}
.story-img-main::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(184,114,10,.15) 0%, transparent 60%);
}
.story-img-sm {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.story-sm-card {
  background: var(--rice); border-radius: var(--r-md); padding: 20px;
  text-align: center;
}
.story-sm-card .num {
  font-family: var(--serif); font-size: 28px; font-weight: 800;
  color: var(--green); display: block;
}
.story-sm-card .lbl { font-size: 12px; color: var(--gray); margin-top: 4px; }

@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .sec-story { padding: 72px 0; }
}

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.sec-reviews { background: var(--cream); padding: 100px 0; }
.reviews-head { text-align: center; margin-bottom: 56px; }
.reviews-head .section-label { justify-content: center; }
.reviews-head .section-desc { margin: 0 auto; text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border-radius: var(--r-md); padding: 28px; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--gray); line-height: 1.85; font-weight: 300; margin-bottom: 20px; }
.review-text::before { content: '"'; font-family: var(--serif); font-size: 28px; color: var(--cream2); display: block; line-height: .8; margin-bottom: 6px; }
.review-author { font-size: 13.5px; font-weight: 500; color: var(--brown); }
.review-date { font-size: 12px; color: var(--gray-lt); margin-top: 3px; }

@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } .sec-reviews { padding: 72px 0; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.sec-cta {
  background: var(--green);
  padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.sec-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(184,114,10,.15) 0%, transparent 50%);
}
.sec-cta .section-label { color: rgba(232,168,50,.85); }
.sec-cta .section-label::before { background: var(--gold-lt); }
.cta-h2 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: var(--white); letter-spacing: -1px;
  line-height: 1.2; margin-bottom: 16px; position: relative;
}
.cta-desc {
  font-size: 15px; color: rgba(255,255,255,.6); font-weight: 300;
  line-height: 1.9; margin-bottom: 44px; position: relative;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-kakao {
  background: #FEE500; color: #3A1D1D; font-weight: 700;
}
.cta-kakao:hover { background: #FFEC3D; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--dark); color: rgba(255,255,255,.4); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand .logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.9; max-width: 220px; }
.footer-col h4 {
  font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,.8);
  font-weight: 700; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-col ul a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; flex-wrap: wrap; gap: 10px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   MODALS
═══════════════════════════════════════ */
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,18,8,.75); z-index: 1000;
  align-items: center; justify-content: center;
  padding: 16px; backdrop-filter: blur(4px);
}
.overlay.on { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--r-lg);
  padding: 44px 40px; max-width: 500px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
  animation: modalIn .28s var(--ease);
}
@keyframes modalIn { from{opacity:0;transform:translateY(20px) scale(.97)} to{opacity:1;transform:none} }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--cream); border: none; width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 16px;
  color: var(--gray); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: var(--cream2); }
.modal-title { font-family: var(--serif); font-size: 25px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.modal-sub { font-size: 13.5px; color: var(--gray); margin-bottom: 28px; line-height: 1.65; }
.m-fg { margin-bottom: 16px; }
.m-fg label { display: block; font-size: 12.5px; color: var(--gray); margin-bottom: 7px; }
.m-fi, .m-fsel, .m-fta {
  width: 100%; background: var(--rice);
  border: 1px solid rgba(92,58,30,.15); border-radius: var(--r-sm);
  padding: 12px 15px; color: var(--dark); font-size: 14px;
  font-family: var(--sans); outline: none; resize: none;
  transition: border-color .2s; appearance: none; -webkit-appearance: none;
}
.m-fi:focus, .m-fsel:focus, .m-fta:focus { border-color: var(--green); }
.m-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-submit {
  width: 100%; background: var(--green); color: var(--white);
  border: none; padding: 15px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: var(--sans); margin-top: 20px; transition: background .2s;
}
.m-submit:hover { background: var(--dark); }

/* ═══════════════════════════════════════
   FLOATING KAKAO & SCROLL TOP
═══════════════════════════════════════ */
.fab-wrap {
  position: fixed; bottom: 28px; right: 24px; z-index: 800;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.fab-kakao {
  display: flex; align-items: center; gap: 10px;
  background: #FEE500; color: #3A1D1D;
  padding: 12px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: all .22s var(--ease); font-family: var(--sans);
  animation: fabPop .5s var(--ease) 1s both;
}
.fab-kakao:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }
@keyframes fabPop { from{opacity:0;transform:scale(.8) translateY(10px)} to{opacity:1;transform:none} }
.fab-top {
  width: 42px; height: 42px; background: var(--white);
  border: 1px solid rgba(92,58,30,.15); border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: var(--shadow-sm);
  transition: all .22s; opacity: 0; pointer-events: none;
}
.fab-top.show { opacity: 1; pointer-events: all; }
.fab-top:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   CEO CATERING SECTION (PREMIUM DARK)
═══════════════════════════════════════ */
.sec-catering-ceo {
  background: var(--dark);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.sec-catering-ceo::after {
  content: "";
  position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184,114,10,.05));
  pointer-events: none;
}

.catering-ceo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.ceo-label {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}
.ceo-label::before { background: var(--gold-lt); }

.ceo-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.ceo-h2 em {
  font-style: normal;
  color: var(--gold-lt);
  position: relative;
}

.ceo-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  max-width: 600px;
}

.ceo-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-item {
  padding: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  transition: all .3s;
}

.benefit-item:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--gold-lt);
  transform: translateY(-5px);
}

.benefit-icon { font-size: 24px; margin-bottom: 12px; }
.benefit-title { font-weight: 700; font-size: 16px; color: var(--gold-lt); margin-bottom: 8px; }
.benefit-text { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* CEO Form Card */
.ceo-form-card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--r-lg);
  color: var(--dark);
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}

.ceo-form-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

.ceo-form-card .fi, .ceo-form-card .fsel {
  background: #f8f8f8;
  border-color: #eee;
}

.btn-ceo {
  background: var(--dark);
  color: var(--white);
  width: 100%;
  padding: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
.btn-ceo:hover {
  background: var(--gold);
}

@media (max-width: 992px) {
  .catering-ceo-grid { grid-template-columns: 1fr; gap: 60px; }
  .sec-catering-ceo { padding: 80px 0; }
}

/* ═══════════════════════════════════════
   TOAST VARIANTS
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark); color: var(--white);
  padding: 13px 28px; border-radius: 12px;
  font-size: 14px; font-weight: 500; z-index: 10000;
  box-shadow: var(--shadow-lg);
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  white-space: nowrap; pointer-events: none;
  display: flex; align-items: center; gap: 8px;
}
.toast.on { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); border-bottom: 3px solid var(--gold); }
.toast.error { background: #E24B4A; }
.toast.info { background: var(--brown); }

/* ═══════════════════════════════════════
   MOBILE OVERRIDES
═══════════════════════════════════════ */
@media (max-width: 560px) {
  .modal-box { padding: 32px 24px; }
  .m-frow { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .fab-kakao span.kakao-label { display: none; }
  .fab-kakao { padding: 12px; border-radius: 50%; }
}
