:root {
  --ink: #222222;
  --muted: #6f675b;
  --line: #eee5d5;
  --paper: #fdf9ee;
  --cream: #fffdf7;
  --green: #76983b;
  --green-dark: #526d2a;
  --gold: #fbe085;
  --gold-deep: #d9af45;
  --brown: #896039;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(34, 34, 34, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.65;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(253, 249, 238, 0.97);
  border-bottom: 1px solid rgba(137, 96, 57, 0.14);
  box-shadow: 0 12px 34px rgba(34, 34, 34, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 71px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 157px;
  height: 140px;
  padding: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.desktop-nav {
  margin-top: 10px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 17px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.header-cta {
  padding: 12px 20px;
  margin-top: 6px;
  border: 1px solid rgba(251, 224, 133, 0.78);
  border-radius: 30px;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(251, 224, 133, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 22px;
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid rgba(137, 96, 57, 0.14);
  font-weight: 700;
}

.mobile-nav .mobile-cta {
  margin-top: 10px;
  padding: 13px 18px;
  text-align: center;
  background: var(--gold);
  color: var(--ink);
  border: 0;
}

.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #171512;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}



/*메인 히어로 css*/
.hero-media {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 78%;
  background-repeat: no-repeat;
  filter: saturate(0.92) contrast(0.98);
  opacity: 0;
  animation: hero-slide-fade 15s infinite;
}

.hero-slide-1 {
   background-position: center 30%;
  background-image: url("assets/img/hero-dosirak.png");
  animation-delay: 0s;
}

.hero-slide-2 {
  background-image: url("assets/img/hero-dosirak2.jpg");
  animation-delay: -10s;
}

.hero-slide-3 {
  background-image: url("assets/img/hero-dosirak3.jpg");
  animation-delay: -5s;
}

@keyframes hero-slide-fade {
  0%, 26.666% { opacity: 1; }
  33.333%, 93.333% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.76) 0%, rgba(9, 8, 6, 0.62) 22%, rgba(9, 8, 6, 0.34) 38%, rgba(9, 8, 6, 0.08) 54%, transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 45%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  margin-top: 30px;
  margin-left:110px;
  padding-top: 215px;
  padding-bottom: 205px;

}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.inquiry-copy .section-kicker {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  margin: 22px 0 34px;
  max-width: 620px;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.35;
}

.hero-actions {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  height: 56px;
  padding: 0 24px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 999px;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(251, 224, 133, 0.22);
  border-radius:0px;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border-radius:0px;
}

.scroll-cue {
  position: absolute;
  left: max(40px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 54px;
  margin: 12px auto 0;
  background: rgba(255, 255, 255, 0.62);
}

.merit-section {
  padding: 104px 0 108px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.merit-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.merit-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 40px;
  align-items: end;
  margin-bottom: 42px;
}

.merit-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.merit-intro h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

.merit-intro > p:last-child {
  margin: 0 0 3px;
  color: var(--muted);
  font-weight: 600;
}

.merit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.merit-card {
  position: relative;
  min-height: 0;
  padding: 0 0 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(137, 96, 57, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(34, 34, 34, 0.06);
}

.merit-card-media {
  position: relative;
  height: 238px;
  overflow: hidden;
  background-color: #ddd2bc;
  background-position: center;
  background-size: cover;
}

.merit-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 20, 14, 0.28), transparent 48%, rgba(25, 20, 14, 0.12));
}

.merit-card-kimchi .merit-card-media {
  background-image: url("assets/img/merit-kimchi.jpg");
  background-position: center 54%;
}

.merit-card-home .merit-card-media {
  background-image: url("assets/img/tica1140001086.jpg");
  background-position: center 58%;
}

.merit-card-ingredient .merit-card-media {
  background-image: url("assets/img/merit-goodsource.jpg");
  background-position: center;
}

.merit-card-science .merit-card-media {
  background-image: url("assets/img/merit-clean.jpg");
  background-position: center;
}

.merit-number {
  display: none;
}

.merit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 27px 30px 0;
  font-size: 25px;
  font-weight: 800;
}

.merit-card p {
  position: relative;
  z-index: 1;
  margin: 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.merit-card .merit-quote {
  margin: 10px 30px 12px;
  color: #3d3024;
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.merit-card p:last-child {
  margin-bottom: 0;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head h2 {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.38;
  letter-spacing: 0;
}

.section-head p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

.services-section {
  padding: 108px 0;
  background: #f4eee2;
  border-bottom: 1px solid var(--line);
}

.services-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.services-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-heading .section-kicker {
  margin-bottom: 10px;
}

.services-heading h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.35;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-intro-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(137, 96, 57, 0.15);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(44, 33, 23, 0.08);
}

.service-intro-card::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -72px;
  width: 200px;
  height: 200px;
  border: 38px solid rgba(251, 224, 133, 0.24);
  border-radius: 50%;
}

.service-intro-meal::after {
  border-color: rgba(118, 152, 59, 0.15);
}

.service-card-topline,
.service-intro-card h3,
.service-intro-card > p,
.service-detail,
.service-cta {
  position: relative;
  z-index: 1;
}

.service-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-card-symbol {
  color: rgba(137, 96, 57, 0.35);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.service-intro-card h3 {
  margin: 18px 0 7px;
  font-size: 32px;
  line-height: 1.2;
}

.service-intro-quote {
  margin: 0;
  color: var(--green-dark);
  font-family: "Noto Serif KR", serif;
  font-size: 18px;
  font-weight: 700;
}

.service-intro-copy {
  margin: 18px 0 25px;
  color: var(--muted);
  line-height: 1.7;
}

.service-detail {
  padding: 20px 0;
  border-top: 1px solid rgba(137, 96, 57, 0.14);
}

.service-detail h4 {
  margin: 0 0 11px;
  font-size: 14px;
}

.service-detail ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4b4035;
  font-size: 14px;
  line-height: 1.55;
}

.service-detail li::before {
  content: "•";
  margin-right: 8px;
  color: var(--brown);
}

.service-reservation p {
  margin: 0;
  color: #4b4035;
  font-size: 14px;
}

.service-reservation p + p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-tags span {
  padding: 6px 10px;
  color: #4b4035;
  background: var(--paper);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.service-cta {
  display: inline-block;
  margin-top: 2px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.service-cta:hover {
  color: var(--brown);
}

.service-comparison-wrap {
  margin-top: 42px;
  padding: 28px 30px 30px;
  background: var(--white);
  border: 1px solid rgba(137, 96, 57, 0.15);
  border-radius: 20px;
}

.service-comparison-wrap h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.service-comparison {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
}

.service-comparison th,
.service-comparison td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.service-comparison thead th {
  color: #3d3024;
  background: #fcf6e8;
  font-size: 15px;
}

.service-comparison tbody th {
  width: 20%;
  color: var(--brown);
  background: rgba(251, 224, 133, 0.15);
}

.service-comparison tr:last-child th,
.service-comparison tr:last-child td {
  border-bottom: 0;
}

.service-promise {
  padding: 70px 24px 68px;
  text-align: center;
}

.service-promise .section-kicker {
  margin-bottom: 16px;
}

.service-promise p {
  margin: 0;
  color: var(--muted);
}

.service-promise strong {
  display: block;
  margin: 10px 0 28px;
  font-size: clamp(20px, 2.5vw, 28px);
}

.service-promise em {
  display: block;
  margin-bottom: 10px;
  color: var(--brown);
  font-family: "Noto Serif KR", serif;
  font-size: 18px;
  font-weight: 700;
}

.service-final-cta {
  padding: 46px 36px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 20px;
  text-align: center;
}

.service-final-cta > p {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-final-cta h3 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(20px, 2.6vw, 29px);
  line-height: 1.45;
}

.service-final-cta h3 strong {
  color: var(--gold);
}

.service-contact-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.service-final-cta .btn {
  min-width: 210px;
}

.story-section {
  padding-bottom: 108px;
}

.kimchi-film-section {
  padding: 104px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(251, 224, 133, 0.16), transparent 28%),
    linear-gradient(130deg, #3c2b1b 0%, #596d2e 58%, #395122 100%);
}

.kimchi-film-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(460px, 1.16fr);
  gap: 70px;
  align-items: center;
}

.kimchi-film-copy .section-kicker { color: var(--gold); }

.kimchi-film-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.7vw, 50px);
  font-weight: 800;
  line-height: 1.28;
  word-break: keep-all;
}

.kimchi-film-copy > p:not(.section-kicker) {
  max-width: 435px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.kimchi-film-copy .kimchi-film-note {
  margin-top: 24px;
  color: var(--gold);
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
  font-weight: 700;
}

.kimchi-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: rgba(22, 26, 14, 0.38);
  box-shadow: 0 28px 70px rgba(18, 17, 10, 0.28);
}

.kimchi-video-frame::before,
.kimchi-video-frame::after { content: ""; position: absolute; pointer-events: none; }

.kimchi-video-frame::before {
  inset: 14px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.kimchi-video-frame::after {
  right: -72px;
  bottom: -76px;
  width: 230px;
  height: 230px;
  border: 42px solid rgba(251, 224, 133, 0.14);
  border-radius: 50%;
}

.kimchi-video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1b1a13;
}

.kimchi-video-placeholder {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(251, 224, 133, 0.08) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(315deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%) 0 0 / 18px 18px;
}

.kimchi-video-placeholder span {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kimchi-video-placeholder strong { font-family: "Noto Serif KR", serif; font-size: clamp(24px, 3vw, 34px); }
.kimchi-video-placeholder small { margin-top: 9px; color: rgba(255, 255, 255, 0.67); font-size: 13px; }

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) 1.14fr;
  gap: 54px;
  align-items: stretch;
}

.story-visual {
  min-height: 560px;
  background-image:
    linear-gradient(180deg, rgba(32, 23, 16, 0.04), rgba(32, 23, 16, 0.26)),
    url("assets/img/story-visual.jpg");
  background-position: center, 45% center;
  background-size: cover, cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(137, 96, 57, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.story-text {
  padding: 34px;
  color: #352b22;
  font-size: 17px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(137, 96, 57, 0.12);
  border-radius: 18px;
}

.story-text p {
  margin: 0 0 18px;
}

.story-text p:last-child {
  margin-top: 28px;
  color: var(--brown);
  font-weight: 800;
}

.menu-section {
  border-top: 1px solid var(--line);
  
    padding-top: 30px;

}

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

.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(137, 96, 57, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(34, 34, 34, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(34, 34, 34, 0.12);
}

.menu-card:focus-visible {
  outline: 3px solid rgba(118, 152, 59, 0.58);
  outline-offset: 4px;
}

.menu-thumb {
  position: relative;
  height: 210px;
  background-image: url("assets/menu-lineup.png");
  background-size: 1180px auto;
  background-repeat: no-repeat;
  background-color: #211910;
}

.thumb-a {
  background-image: url("assets/img/jeyukreal1.png");
  background-position: center;
  background-size: cover;
}

.thumb-b {
  background-image: url("assets/img/bulgogi1.jpg");
  background-position: center;
  background-size: cover;
}

.thumb-c {
  background-image: url("assets/img/galbi1.jpg");
  background-position: center;
  background-size: cover;
}

.thumb-d {
  background-image: url("assets/img/cod1.jpg");
  background-position: center;
  background-size: cover;
}

.thumb-premium {
  height: 100%;
  min-height: 315px;
  background-image: url("assets/img/premiumreal1.png");
  background-size: cover;
   background-position: center 90%;
  
}

.menu-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.menu-thumb span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
}

.menu-body {
  padding: 24px 22px 26px;
}

.menu-type {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.menu-body h3 {
  margin: 0 0 10px;
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.menu-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.menu-body ul {
  margin: 0;
  padding: 14px 16px;
  list-style: none;
  background: var(--paper);
  color: #3b3129;
  font-size: 14px;
  font-weight: 700;
}

.menu-body li + li {
  margin-top: 6px;
}

.premium-card {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.premium-card .menu-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.premium-card h3 {
  font-size: 32px;
}

.service-band {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(137, 96, 57, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(34, 34, 34, 0.06);
}

.service-band article {
  min-height: 142px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.service-band article:last-child {
  border-right: 0;
}

.service-band span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.service-band strong {
  display: block;
  margin-top: 16px;
  font-size: 18px;
}

.service-band p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.clients-section {
  position: relative;
  padding-top: 86px;
  padding-bottom: 82px;
  border-top: 1px solid rgba(137, 96, 57, 0.1);
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.8), rgba(247, 237, 207, 0.72)),
    var(--cream);
}

.clients-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.client-logo-card {
  min-height: 126px;
  padding: 24px 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(137, 96, 57, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.07);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  filter: saturate(0.96) contrast(0.98);
}

.client-logo-text strong {
  color: #5f462e;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.client-proof {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -20px;
}

.client-proof span {
  padding: 7px 12px;
  color: #5f462e;
  background: rgba(251, 224, 133, 0.42);
  border: 1px solid rgba(217, 175, 69, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.client-name-panel {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 0;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(137, 96, 57, 0.13);
  border-radius: 16px;
}

.client-name-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  border-radius: 16px;
  transition: background-color 0.25s ease;
}

.client-name-head::-webkit-details-marker {
  display: none;
}

.client-name-head strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.client-name-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.client-name-head em {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(137, 96, 57, 0.14);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.client-name-head em::before {
  content: "더보기";
}

.client-name-head em::after {
  content: "→";
  transition: transform 0.25s ease;
}

.client-name-head:hover {
  background: rgba(251, 224, 133, 0.12);
}

.client-name-head:hover em {
  transform: translateY(-2px);
  background: #ffd75a;
  box-shadow: 0 8px 18px rgba(137, 96, 57, 0.22);
}

.client-name-head:hover em::after {
  transform: translateX(2px);
}

.client-name-head:active em {
  transform: translateY(0) scale(0.97);
}

.client-name-head:focus-visible {
  outline: 3px solid rgba(217, 175, 69, 0.4);
  outline-offset: 3px;
}

.client-name-panel[open] .client-name-head {
  border-bottom: 1px solid rgba(137, 96, 57, 0.12);
  border-radius: 16px 16px 0 0;
}

.client-name-panel[open] .client-name-head em::before {
  content: "접기";
}

.client-name-panel[open] .client-name-head em::after {
  content: "↑";
}


.client-name-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 0;
  padding: 18px 24px 24px;
  list-style: none;
}

.client-name-list li {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  color: #4d3b2b;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(137, 96, 57, 0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  word-break: keep-all;
}

.client-review-block {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.client-review-block > p {
  margin: 0 0 18px;
  color: #5f462e;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.55;
}

.client-review-block .review-grid {
  margin-top: 0;
}
.reviews-section {
  padding-top: 40px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 124px;
  padding: 19px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(137, 96, 57, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(34, 34, 34, 0.07);
}

.review-card p {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 16px;
  line-height: 1.55;
}

.review-card footer {
  margin-top: 12px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
}

.order-guide {
  padding-top: 82px;
  border-top: 1px solid var(--line);
}

.order-guide .section-head {
  margin-bottom: 34px;
}

.order-guide-notice {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
  padding: 20px 26px;
  background: #f7edcf;
  border: 1px solid rgba(217, 175, 69, 0.32);
  border-radius: 14px;
}

.order-guide-notice span {
  flex: 0 0 auto;
  padding: 6px 11px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.order-guide-notice p {
  margin: 0;
  color: #4b3a29;
  font-size: 15px;
}

.order-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.order-guide-card {
  position: relative;
  min-height: 208px;
  padding: 26px 28px 28px;
  background: var(--white);
  border: 1px solid rgba(137, 96, 57, 0.13);
  border-radius: 14px;
}

.order-guide-card-cancel {
  background: #fffaf1;
  border-color: rgba(217, 175, 69, 0.32);
}

.order-guide-number {
  display: block;
  margin-bottom: 12px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.order-guide-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.order-guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.order-guide-card strong,
.order-guide-notice strong {
  color: #49331e;
  font-weight: 800;
}

.order-guide-card-wide {
  grid-column: span 2;
  min-height: 0;
}

.order-guide-contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  margin-top: 18px;
  padding: 30px 32px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 16px;
}

.order-guide-contact .section-kicker {
  margin-bottom: 7px;
  color: var(--gold);
}

.order-guide-contact h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.order-guide-contact p:not(.section-kicker) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.kakao-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: -3px;
  fill: #fee500;
}

.order-guide-contact .order-guide-message {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Noto Serif KR", serif;
  line-height: 1.8;
}

.order-guide-message strong {
  color: var(--gold);
}

.inquiry-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
}

.inquiry-bg {
  display: none;
}

.inquiry-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

.inquiry-copy h2 {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 3.55vw, 52px);
  line-height: 1.25;
  word-break: keep-all;
  white-space: nowrap;
}

.title-divider {
  display: inline-block;
  margin: 0 0.12em;
}

.inquiry-copy > p:not(.section-kicker) {
  margin: 20px 0 28px;
  color: #59442d;
  font-size: 18px;
}

.inquiry-copy .section-kicker {
  color: var(--brown);
}

.inquiry-services {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.inquiry-services-title {
  margin: 0 0 2px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
}

.inquiry-service-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.inquiry-service-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.inquiry-service-content {
  display: grid;
  gap: 3px;
  padding: 15px 17px;
  border: 1px solid rgba(137, 96, 57, 0.2);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.inquiry-service-card:hover .inquiry-service-content {
  border-color: var(--brown);
  background: #fffdf7;
}

.inquiry-service-card input:checked + .inquiry-service-content {
  border-color: var(--green-dark);
  background: #f8fbef;
  box-shadow: inset 4px 0 0 var(--green-dark);
}

.inquiry-service-card input:focus-visible + .inquiry-service-content {
  outline: 3px solid rgba(82, 109, 42, 0.38);
  outline-offset: 3px;
}

.inquiry-service-card.field-error .inquiry-service-content {
  border-color: #ffaaa4;
}

.inquiry-service-content > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.inquiry-service-content .inquiry-service-type {
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 800;
}

.inquiry-service-content strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.contact-box {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 26px;
  border: 1px solid rgba(137, 96, 57, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.contact-box strong {
  color: var(--brown);
}

.contact-box a {
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.inquiry-section:not(.has-service) .inquiry-form {
  display: none;
}

.inquiry-section:not(.has-service) .inquiry-inner {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.inquiry-section.has-service .inquiry-copy {
  display: none;
}

.inquiry-section.has-service .inquiry-inner {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.inquiry-form-top {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.inquiry-back-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 25px;
  margin-left: -6px;

  padding: 8px 13px;
  border: 1px solid rgba(137, 96, 57, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: #5f462e;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.inquiry-back-button:hover,
.inquiry-back-button:focus-visible {
  border-color: var(--brown);
  color: var(--brown);
}

.inquiry-form-top p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form-top strong {
  display: block;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.25;
}

.inquiry-section.has-service .inquiry-form {
  animation: inquiryFormEnter 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes inquiryFormEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide-1 { opacity: 1; }
  .inquiry-section.has-service .inquiry-form {
    animation: none;
  }
}
.inquiry-form {
  padding: 34px;
  background: rgba(253, 249, 238, 0.98);
  color: var(--ink);
  border: 1px solid rgba(251, 224, 133, 0.3);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

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

.inquiry-form label {
  display: block;
}

.inquiry-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #e2d5bd;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.inquiry-form input,
.inquiry-form select {
  height: 50px;
  padding: 0 14px;
}

.inquiry-form textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(49, 86, 64, 0.14);
}

.full-field {
  margin-top: 18px;
}

.privacy-consent {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.privacy-consent legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.privacy-consent details {
  border: 1px solid #e2d5bd;
  background: var(--white);
}

.privacy-consent summary {
  padding: 13px 15px;
  color: #4b4035;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.privacy-consent-copy {
  padding: 3px 15px 14px;
  border-top: 1px solid #eee5d5;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  word-break: keep-all;
}

.privacy-consent-copy p {
  margin: 8px 0 0;
}

.privacy-consent-copy strong {
  color: #49331e;
}

.privacy-check {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  cursor: pointer;
}

.inquiry-form .privacy-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green-dark);
}

.inquiry-form .privacy-check span {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.privacy-check em {
  color: #9a3b2a;
  font-style: normal;
}

.inquiry-form .privacy-check small {
  flex-basis: 100%;
  min-height: 0;
  margin: 0 0 0 26px;
}

.form-submit-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: #b3261e;
  font-size: 13px;
  font-weight: 700;
}

.inquiry-form small {
  display: block;
  min-height: 20px;
  margin-top: 5px;
  color: #b3261e;
  font-size: 12px;
}

.inquiry-form .field-error input,
.inquiry-form .field-error select,
.inquiry-form .field-error textarea {
  border-color: #b3261e;
}

.submit-btn {
  width: 100%;
  height: 58px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background: var(--green-dark);
}

.submit-btn:active {
  transform: translateY(1px);
}

.site-footer {
  background: var(--white);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 4px;
}

.footer-brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
 
}

.footer-inner strong {
  display: block;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.footer-inner p {
  margin: 6px 0 0;
}

.footer-inner address {
  padding-top: 18px;
  margin: 0;
  font-style: normal;
  text-align: right;
}

.modal,
.menu-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;
  background: rgba(0, 0, 0, 0.58);
}

.modal { z-index: 200; }
.menu-modal { z-index: 210; padding: 28px; background: rgba(20, 17, 12, 0.72); backdrop-filter: blur(6px); }
.modal.is-visible,
.menu-modal.is-visible { display: flex; }

.modal-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 42px 30px 30px;
  text-align: center;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-close,
.menu-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.modal-panel h2 { margin: 0 0 10px; font-family: "Noto Serif KR", serif; }
.modal-panel p:not(.modal-icon) { margin: 0; color: var(--muted); }
.modal-ok { width: 100%; height: 50px; margin-top: 26px; border: 0; background: var(--green); color: var(--white); font-weight: 800; cursor: pointer; }

.menu-modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  overflow: auto;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3);
}

.menu-modal-gallery { min-width: 0; padding: 24px; background: #e8dfcf; }
.menu-modal-main-image { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; background: #d0c2a9; }
.menu-modal-thumbnails { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.menu-modal-thumbnail { padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 8px; background: transparent; cursor: pointer; }
.menu-modal-thumbnail.is-active { border-color: var(--green-dark); }
.menu-modal-thumbnail:focus-visible { outline: 3px solid rgba(118, 152, 59, 0.52); outline-offset: 2px; }
.menu-modal-thumbnail img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.menu-modal-info { display: flex; flex-direction: column; padding: 52px 42px 38px; }
.menu-modal-type { margin: 0 0 8px; color: var(--green-dark); font-size: 13px; font-weight: 900; }
.menu-modal-info h2 { margin: 0; font-size: clamp(28px, 3vw, 38px); line-height: 1.25; }
.menu-modal-description { margin: 16px 0 24px; color: var(--muted); line-height: 1.75; word-break: keep-all; }
.menu-modal-details { margin: 0; border-top: 1px solid var(--line); }
.menu-modal-details > div { display: grid; grid-template-columns: 82px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.menu-modal-details dt { color: var(--brown); font-size: 13px; font-weight: 900; }
.menu-modal-details dd { margin: 0; color: #40362d; font-size: 14px; line-height: 1.6; word-break: keep-all; }
.menu-modal-notice { margin: 18px 0 26px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.menu-modal-cta { display: flex; min-height: 54px; align-items: center; justify-content: center; margin-top: auto; padding: 12px 20px; background: var(--green-dark); color: var(--white); font-size: 15px; font-weight: 900; transition: background 0.2s ease; }
.menu-modal-cta:hover,
.menu-modal-cta:focus-visible { background: var(--brown); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 22px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-card { grid-column: span 2; }
  .merit-grid,
  .service-band,
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-inner { height: 82px; }
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header.is-open .mobile-nav { display: block; }
  .site-header { color: var(--ink); background: rgba(253, 249, 238, 0.94); border-color: rgba(137, 96, 57, 0.14); backdrop-filter: blur(16px); }
  .menu-toggle span { background: var(--ink); }
  .hero { min-height: 690px; }
  .hero-inner {
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 72px;
  }
  .hero-actions { margin-top: 44px; }
  .hero-slide { background-position: 58% center; }
  .hero-slide-1 { background-position: 56% center; }
  .hero-slide-2 { background-position: 52% center; }
  .hero-slide-3 { background-position: 50% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 8, 6, 0.72) 0%, rgba(9, 8, 6, 0.48) 58%, rgba(9, 8, 6, 0.2) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.42) 100%);
  }
  .story-grid,
  .inquiry-inner { grid-template-columns: 1fr; }
  .kimchi-film-inner { grid-template-columns: 1fr; gap: 34px; }
  .service-intro-grid { grid-template-columns: 1fr; }
  .order-guide-contact { grid-template-columns: 1fr; }
  .order-guide-contact .order-guide-message { padding: 20px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .story-visual { min-height: 390px; background-position: center, 50% 55%; }
  .inquiry-inner { gap: 34px; }
  .inquiry-copy h2 { white-space: normal; }
}

@media (max-width: 720px) {
  .header-inner,
  .mobile-nav,
  .hero-inner,
  .merit-inner,
  .services-inner,
  .section,
  .inquiry-inner,
  .footer-inner { width: min(100% - 28px, 1180px); }
  .brand { width: 130px; height: 72px; }
  .hero { min-height: 640px; }
  .hero-inner {
    margin: 0 auto;
    padding-top: 118px;
    padding-bottom: 54px;
  }
  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.45;
  }
  .hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .hero-copy {
    max-width: 320px;
    margin: 18px 0 0;
    font-size: clamp(20px, 6vw, 25px);
  }
  .hero-actions {
    margin-top: 38px;
    gap: 10px;
  }
  .btn { width: 100%; }
  .scroll-cue { display: none; }
  .menu-grid,
  .service-band,
  .review-grid,
  .form-grid { grid-template-columns: 1fr; }
  .menu-modal { align-items: end; padding: 0; }
  .menu-modal-panel { width: 100%; max-height: min(90vh, 820px); grid-template-columns: 1fr; border-radius: 20px 20px 0 0; }
  .menu-modal-gallery { padding: 18px; }
  .menu-modal-info { padding: 28px 22px 26px; }
  .menu-modal-main-image { aspect-ratio: 16 / 10; }
  .merit-section,
  .kimchi-film-section,
  .services-section { padding: 72px 0; }
  .kimchi-film-inner { width: min(100% - 28px, 1180px); }
  .kimchi-film-copy h2 br { display: none; }
  .merit-intro { display: block; margin-bottom: 30px; }
  .merit-intro .section-kicker { margin-bottom: 12px; }
  .merit-intro > p:last-child { margin-top: 10px; }
  .merit-grid { grid-template-columns: 1fr; }
  .merit-card { min-height: 0; padding: 0 0 28px; }
  .merit-card-media { height: 210px; }
  .merit-card h3 { padding: 24px 22px 0; font-size: 23px; }
  .merit-card p,
  .merit-card .merit-quote { margin-left: 22px; margin-right: 22px; }
  .services-heading,
  .section-head,
  .section-head.align-left { margin-bottom: 34px; text-align: left; }
  .service-intro-card { padding: 27px 22px; }
  .service-intro-card h3 { font-size: 28px; }
  .service-comparison-wrap { margin-top: 28px; padding: 23px 18px 18px; }
  .service-comparison-scroll { overflow-x: auto; }
  .service-comparison { min-width: 530px; }
  .service-comparison th,
  .service-comparison td { padding: 13px 14px; }
  .service-promise { padding: 52px 8px; }
  .service-final-cta { padding: 35px 20px; }
  .service-contact-list { display: grid; gap: 9px; }
  .clients-section { padding-top: 68px; padding-bottom: 68px; }
  .clients-inner { display: block; }
  .clients-section .section-head { margin-bottom: 28px; }
  .client-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .client-logo-card { min-height: 104px; padding: 18px 14px; }
  .client-logo-card img { max-height: 48px; }
  .client-logo-text strong { font-size: 16px; }
  .client-proof { margin-top: 16px; }
  .client-name-panel { margin-top: 18px; padding: 0; }
  .client-name-head { grid-template-columns: 1fr auto; gap: 8px 12px; padding: 18px 16px; }
  .client-name-head strong,
  .client-name-head span { grid-column: 1; }
  .client-name-head em { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .client-name-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 14px 14px 16px; }
  .client-name-list li { min-height: 36px; padding: 8px 10px; border-radius: 12px; font-size: 13px; }
  .order-guide { padding-top: 60px; }
  .order-guide-notice { display: block; padding: 20px; }
  .order-guide-notice p { margin-top: 10px; }
  .order-guide-grid { grid-template-columns: 1fr; }
  .order-guide-card,
  .order-guide-card-wide { grid-column: auto; min-height: 0; padding: 24px 22px; }
  .order-guide-contact { padding: 26px 22px; }
  .section { padding: 72px 0; }
  .story-text { font-size: 16px; }
  .premium-card { grid-column: span 1; grid-template-columns: 1fr; }
  .thumb-premium { min-height: 230px; }
  .premium-card .menu-body { padding: 24px 22px 26px; }
  .premium-card h3 { font-size: 24px; }
  .service-band article { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-band article:last-child { border-bottom: 0; }
  .review-card { min-height: 118px; }
  .inquiry-form { padding: 24px 18px; }
  .inquiry-title-part { display: block; }
  .title-divider { display: none; }
  .footer-inner { display: block; }
  .footer-brand { align-items: flex-start; }
  .footer-inner address { margin-top: 20px; text-align: left; }
}

@media (max-width: 420px) {
  .header-inner { height: 74px; }
  .brand { width: 64px; height: 64px; }
  .hero { min-height: 620px; }
  .hero-inner {
    padding-top: 104px;
    padding-bottom: 42px;
  }
  .hero h1 { font-size: 38px; }
  .hero-copy { font-size: 20px; }
  .menu-thumb { height: 188px; }
  .review-card p { font-size: 15px; }
  .contact-box a { font-size: 24px; }
  .footer-brand img { width: 92px; height: 92px; }
}


