/* 기본 리셋 & 타이포그래피 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: #111827;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

/* 레이아웃 공통 */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #f9fafb;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section-header p {
  color: #4b5563;
  line-height: 1.6;
}

.section-header.center {
  text-align: center;
}

.section-footer {
  margin-top: 40px;
}

/* 헤더 */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
}

.logo img {
  width: 120px;
  height: 60px;
}

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  color: #374151;
}

.nav-link:hover {
  background: #f3f4f6;
}

.nav-link.active {
  background: #111827;
  color: #f9fafb;
}

.nav-cta {
  background: #ef4444;
  color: #ffffff;
  font-weight: 600;
}

.nav-cta:hover {
  background: #dc2626;
}

/* 모바일 메뉴 버튼 */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #111827;
}

/* 히어로 */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #f9fafb;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-foodtruck.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.08), transparent 60%),
    linear-gradient(to bottom right, rgba(220, 38, 38, 0.7), rgba(30, 64, 175, 0.7));
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  padding: 120px 16px 96px;
}

.hero-kicker {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fee2e2;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title span {
  color: #fbbf24;
}

.hero-subtitle {
  font-size: 16px;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  min-width: 140px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
}

.stat-unit {
  margin-left: 4px;
  font-size: 16px;
}

.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #ffffff;
}

/* ✅ 히어로 오른편 전화번호 박스 */
.hero-contact {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  text-align: left;
  color: #ffffff;
  min-width: 240px;
}

.hero-contact p {
  margin: 0 0 8px;
  font-size: 13px;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.hero-contact a {
  display: block;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}

.hero-contact a + a {
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
  opacity: 0.95;
}

.hero-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .hero-contact {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 18px;
    transform: none;
    text-align: center;
    min-width: auto;
  }
}

/* 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
}

.btn.primary {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.btn.primary:hover {
  background: #dc2626;
  border-color: #dc2626;
}

.btn.ghost {
  background: transparent;
  color: #f9fafb;
  border-color: rgba(249, 250, 251, 0.4);
}

.btn.ghost:hover {
  background: rgba(249, 250, 251, 0.1);
}

.btn.outline {
  background: transparent;
  color: #111827;
  border-color: #d1d5db;
}

.btn.outline:hover {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

.btn.full {
  width: 100%;
}

/* 링크 */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #111827;
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
  padding-bottom: 2px;
  margin-right: 16px;
}

.link-arrow::after {
  content: "→";
  font-size: 12px;
}

/* 그리드들 */
.about-grid,
.services-grid,
.gallery-grid,
.menu-grid,
.menu-category-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-card,
.service-card,
.case-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px; /* 내부 여백 증가 */
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 300px; /* 카드 높이 확장 */
}

/* 글씨 간격 여유 있게 */
.case-card h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.case-card li {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 6px;
}

/* 그리드 간격도 살짝 여유 있게 */
.case-grid {
  gap: 32px;
}

.menu-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
}

.about-card {
  padding: 24px;
}

.about-card h3 {
  margin-bottom: 8px;
}

.about-card p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-body {
  padding: 20px;
}

.service-body h3 {
  margin-bottom: 8px;
}

.service-body p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* 메뉴 카드 */
.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-body {
  padding: 16px 18px 18px;
}

.menu-body h3 {
  margin: 0 0 6px;
}

.menu-body p {
  font-size: 14px;
  color: #4b5563;
  margin: 0 0 8px;
}

.menu-price {
  font-size: 13px;
  font-weight: 600;
  color: #ef4444;
}

/* 메뉴 탭 */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.menu-tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
}

.menu-tab.active {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

/* 갤러리 */
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.3s, filter 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* 진행 절차 */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-step {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.process-step h3 {
  margin: 0 0 8px;
}

.process-step p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* CTA 섹션 */
.section-cta {
  background: linear-gradient(135deg, #874b00, #f09000b5);
  color: #f9fafb;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.cta-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-text p {
  color: #e5e7eb;
  margin-bottom: 16px;
}

.cta-highlights {
  list-style: disc;
  margin-left: 18px;
  font-size: 14px;
  color: #e5e7eb;
}

/* ✅ 현수막 규격 이미지 공통 */
.banner-spec {
  margin: 0;
  margin-top: 32px;    /* 위쪽과 간격 */
  margin-bottom: 16px; /* 아래쪽과 간격 */
}

.banner-spec img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.banner-spec figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  line-height: 1.5;
  opacity: 0.95;
}

/* CTA(어두운 배경)에서는 캡션 색상 보정 */
.section-cta .banner-spec figcaption {
  color: rgba(249, 250, 251, 0.95);
}

/* contact(밝은 배경)에서는 기본 텍스트 컬러 */
.sub-main .banner-spec figcaption {
  color: #111827;
}

/* 폼 */
.form-group > label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #111827;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.section-cta .form-group label {
  color: #e5e7eb;
}

.section-cta .form-group input,
.section-cta .form-group select,
.section-cta .form-group textarea {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(148, 163, 184, 0.8);
  color: #f9fafb;
}

.section-cta .form-group input::placeholder,
.section-cta .form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

.form-note {
  font-size: 12px;
  color: #dcdcdc;
  margin-top: 8px;
}

/* 문의 유형 선택 영역 정렬 */
.inline-options {
  display: flex;
  flex-wrap: wrap;          /* 좁은 화면에서 줄바꿈 허용 */
  gap: 12px;                /* 버튼 간 간격 */
  margin-top: 4px;
}

.inline-options label {
  display: inline-flex;     /* 아이콘(라디오) + 텍스트 한 줄에 */
  align-items: center;      /* 수직 가운데 정렬 */
  gap: 6px;                 /* 라디오와 텍스트 사이 간격 */
  font-size: 0.95rem;
  cursor: pointer;
}

/* 라디오 기본 마진 제거 + 가운데 정렬 보정 */
.inline-options input[type="radio"] {
  margin: 0;
  vertical-align: middle;
}

/* 서브 페이지 공통 */
.sub-header {
  background: #ffffff;
}

.sub-main {
  padding-top: 32px;
}

.sub-hero {
  padding: 72px 0 32px;
  background: linear-gradient(to right, #f9fafb, #eff6ff);
  border-bottom: 1px solid #e5e7eb;
}

.sub-hero-inner h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.sub-hero-inner p {
  color: #4b5563;
}

/* 2컬럼 */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
}

.col p {
  line-height: 1.8;
  color: #374151;
}

.highlight-box {
  background: #111827;
  color: #f9fafb;
  border-radius: 16px;
  padding: 24px;
}

.highlight-box h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.highlight-box ul {
  list-style: disc;
  margin-left: 18px;
  font-size: 14px;
}

/* 통계 행 */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.timeline {
  border-left: 2px solid #e5e7eb;
  padding-left: 24px;
  margin-top: 24px;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-year {
  position: absolute;
  left: -70px;
  top: 0;
  font-weight: 700;
  color: #6b7280;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
}

.timeline-body h3 {
  margin: 0 0 4px;
}

.timeline-body p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* 메뉴 카테고리 그리드 */
.menu-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-category {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 20px;
}

.menu-category h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.menu-category ul {
  list-style: disc;
  margin-left: 16px;
  font-size: 14px;
  color: #4b5563;
}

/* 가격표 */
.table-wrapper {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th,
.price-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
}

.price-table thead {
  background: #f3f4f6;
}

.price-table th {
  text-align: left;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  background: #ffffff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.faq-item p {
  margin-top: 8px;
  font-size: 14px;
  color: #4b5563;
}

/* 리스트 */
.bullet-list {
  list-style: disc;
  margin-left: 18px;
  color: #4b5563;
  font-size: 14px;
}

/* 폼(컨택트) */
.contact-form {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

/* 푸터 */
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 24px 0 16px;
  background: #111827;
  color: #e5e7eb;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-copy {
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  color: #9ca3af;
}

/* 스크롤 애니메이션 기준 클래스 */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
  .about-grid,
  .services-grid,
  .gallery-grid,
  .menu-grid,
  .menu-category-grid,
  .case-grid,
  .process-steps,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .timeline-year {
    left: -64px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 56px;
  }

  .nav {
    position: absolute;
    right: 0;
    top: 56px;
    background: #ffffff;
    border-bottom-left-radius: 16px;
    border-left: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 16px;
    display: none;
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-stats {
    gap: 16px;
  }

  .about-grid,
  .services-grid,
  .gallery-grid,
  .menu-grid,
  .menu-category-grid,
  .case-grid,
  .process-steps,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 200px;
  }

  .section {
    padding: 64px 0;
  }

  .sub-hero {
    padding: 56px 0 24px;
  }
}

/* =======================================
   공통 레이아웃 보정 (반응형 기반)
   ======================================= */

/* 컨테이너는 항상 화면 폭에 맞게 줄어들도록 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* 섹션 기본 패딩 */
.section {
  padding: 72px 0;
}

/* 2컬럼 공통 레이아웃 (회사소개 / 견적 등) */
.two-column {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* 그리드 기본 (서비스, 메뉴, 갤러리 등) */
.about-grid,
.services-grid,
.menu-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* 프로세스 스텝 */
.process-steps {
  display: flex;
  gap: 24px;
}

.process-step {
  flex: 1 1 0;
}

/* CTA 내부 좌우 배치 */
.section-cta .cta-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.section-cta .cta-text,
.section-cta .cta-form {
  flex: 1 1 0;
}

/* 폼 필드 전체 폭 */
.contact-form input,
.contact-form textarea,
.cta-form input,
.cta-form textarea,
.contact-form select,
.cta-form select {
  width: 100%;
  box-sizing: border-box;
}

/* 히어로 텍스트 기본 크기 */
.hero-title {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
}

/* =======================================
   태블릿 레이아웃 (max-width: 1024px)
   ======================================= */
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-grid,
  .services-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    flex-direction: column;
  }

  .section-cta .cta-inner {
    gap: 32px;
  }
}

/* =======================================
   모바일 레이아웃 (max-width: 768px)
   ======================================= */
@media (max-width: 768px) {
  /* 섹션 패딩 줄이기 */
  .section {
    padding: 48px 0;
  }

  .header-inner {
    padding: 0 16px;
  }

  /* 히어로: 세로 정렬 & 가운데 정렬 */
  .hero {
    padding: 80px 0 56px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* 2컬럼 레이아웃을 1컬럼으로 변경 */
  .two-column {
    flex-direction: column;
    gap: 32px;
  }

  .section-cta .cta-inner {
    flex-direction: column;
  }

  /* 카드/그리드 1컬럼 */
  .about-grid,
  .services-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }

  /* 폼 라벨과 인풋 간격 정돈 */
  .form-group {
    margin-bottom: 14px;
  }

  .form-group > label {
    font-size: 0.95rem;
  }

  .contact-form input,
  .contact-form textarea,
  .cta-form input,
  .cta-form textarea {
    font-size: 0.95rem;
    padding: 9px 10px;
  }

  /* 버튼 크기 축소 및 한 줄에 잘 맞도록 */
  .btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .btn.full {
    width: 100%;
  }
}

/* =======================================
   초소형 모바일 (max-width: 480px)
   ======================================= */
@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 72px 0 48px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-stats .stat-number {
    font-size: 1.4rem;
  }

  .hero-stats .stat-label {
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .about-card p,
  .service-card p,
  .menu-body p,
  .cta-text p,
  .cta-text li {
    font-size: 0.9rem;
  }

  .footer {
    font-size: 0.8rem;
  }

  .footer-inner {
    padding: 24px 16px;
  }
}

/* 문의 유형 라디오 버튼 공통 스타일 */
.inline-options {
  display: flex;
  gap: 12px;              /* 버튼 사이 간격 */
  flex-wrap: wrap;        /* 너무 좁은 화면에서는 줄바꿈 허용 (선택사항) */
}

.inline-options label {
  display: inline-flex;   /* 라디오 + 텍스트를 가로 정렬 */
  align-items: center;
  gap: 6px;               /* 동그라미랑 텍스트 사이 간격 */
  padding: 8px 18px;      /* 버튼처럼 보이게 여백 추가 */
  border-radius: 999px;   /* pill 형태 */
  border: 1px solid #ddd;
  cursor: pointer;

  /* ✅ “일반판매 / 케이터링” 한 줄 유지 핵심 */
  white-space: nowrap;

  font-size: 15px;
}

/* 라디오 기본 마진 제거 */
.inline-options input[type="radio"] {
  margin: 0;
}

/* 혹시 기존 CSS 어딘가에서 width를 강제로 줬다면 덮어씌우기 */
.inline-options label {
  width: auto !important;
}

/* contact 페이지에서만 현수막 이미지 크기 축소 */
.sub-main .banner-spec img {
  max-width: 320px;   /* ← 여기서 크기 조절 */
}
