@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Suite:wght@300;400;500;600;700;800&display=swap');

/* 디자인 시스템 변수 정의 */
:root {
  --color-primary: #1e3a8a;       /* Deep Ocean Blue */
  --color-primary-dark: #0f172a;  /* Dark Ocean Blue (Text / Dark BG) */
  --color-secondary: #0284c7;     /* Fresh Aqua */
  --color-accent: #f97316;        /* Warm Coral (Point/Alert) */
  --color-bg-light: #f8fafc;      /* Light Gray BG */
  --color-bg-cyan: #e0f2fe;       /* Light Cyan BG */
  --color-white: #ffffff;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  
  --font-main: 'Suite', 'Noto Sans KR', sans-serif;
  --font-heading: 'Suite', 'Noto Sans KR', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

/* 기본 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* 공통 컨테이너 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 헤더 & GNB */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.transparent {
  background-color: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .header-container {
  height: 70px;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, var(--color-secondary) 30%, var(--color-primary) 100%);
  border-radius: 50% 50% 10% 50%;
  display: inline-block;
  transform: rotate(-45deg);
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.5);
}

/* PC GNB 메뉴 */
.gnb {
  display: flex;
}

.gnb-list {
  display: flex;
  gap: 10px;
}

.gnb-item {
  position: relative;
}

.gnb-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  display: block;
  transition: var(--transition-smooth);
}

.gnb-link:hover, .gnb-item:hover .gnb-link {
  color: var(--color-white);
}

/* 서브 GNB 드롭다운 */
.sub-gnb {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  min-width: 180px;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: var(--shadow-premium);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gnb-item:hover .sub-gnb {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-gnb-link {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.sub-gnb-link:hover {
  color: var(--color-white);
  background-color: rgba(2, 132, 199, 0.2);
  padding-left: 25px;
}

/* 모바일 햄버거 메뉴 토글 */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* 모바일 메뉴 열렸을 때 햄버거 애니메이션 */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* 모바일 메뉴 컨테이너 */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--color-primary-dark);
  transition: var(--transition-smooth);
  z-index: 999;
  padding: 40px 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.m-gnb-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.m-gnb-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.m-gnb-title {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.m-sub-gnb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-left: 10px;
}

.m-sub-gnb-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding: 5px 0;
}

/* 메인 비주얼 배너 (Hero Section) */
.hero {
  height: 100vh;
  position: relative;
  color: var(--color-white);
  overflow: hidden;
  text-align: center;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  transform: scale(1.18);
}

.hero-slide.active .hero-bg img {
  animation: heroZoomOut 6.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.18);
  }
  to {
    transform: scale(1.0);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

/* 히어로 컨트롤 */
.hero-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-prev-btn, .hero-next-btn {
  background-color: rgba(15, 23, 42, 0.4);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(4px);
  pointer-events: auto;
}

.hero-prev-btn:hover, .hero-next-btn:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: scale(1.05);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.hero-dot.active {
  background-color: var(--color-secondary);
  width: 30px;
  border-radius: 10px;
}


.hero-tagline {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  background-color: rgba(2, 132, 199, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(2, 132, 199, 0.3);
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
  animation: fadeInUp 1s ease forwards;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  animation: fadeInUp 1.4s ease forwards;
}

/* 버튼 컴포넌트 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
  background-color: #0270a9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

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

.btn-dark:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

/* 섹션 공통 */
.section {
  padding: 100px 0;
}

.section-bg-cyan {
  background-color: var(--color-bg-cyan);
}

.section-bg-dark {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-bg-dark .section-title {
  color: var(--color-white);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 16px;
}

.section-bg-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* SECTION 1: 성원수산 3대 약속 */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.promise-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.promise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.promise-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(2, 132, 199, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: var(--color-secondary);
  font-size: 28px;
  font-weight: 800;
  transition: var(--transition-smooth);
}

.promise-card:hover .promise-icon-wrapper {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: scale(1.1);
}

.promise-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
}

.promise-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* SECTION 2: 가리비 특징 소개 */
.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.feature-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

.feature-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.feature-info p {
  color: var(--color-text-muted);
  font-size: 15px;
}

/* SECTION 3: 주요 상품 미리보기 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.product-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 30px;
}

.product-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.product-features li::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: 900;
}

/* SECTION 4: 가리비 요리 꿀팁 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* SECTION 5: 고객 후기 & 현장 스케치 */
.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.slide-img {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  padding: 20px;
}

.review-stars {
  color: var(--color-accent);
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-primary-dark);
  margin-bottom: 25px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.author-info span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--color-secondary);
  width: 24px;
  border-radius: 10px;
}

/* SECTION 6: CTA & 지도 (하단 문의 & 위치) */
.cta-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.cta-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-weight: 700;
}

.cta-map {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background-color: rgba(15, 23, 42, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  text-align: center;
}

.map-placeholder-icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

/* 서브페이지 배너 */
.sub-hero {
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
}

.sub-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sub-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.sub-hero-content {
  position: relative;
  z-index: 2;
}

.sub-hero-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb span::after {
  content: '>';
  margin-left: 10px;
}

.breadcrumb span:last-child::after {
  content: '';
}

.breadcrumb .active {
  color: var(--color-secondary);
  font-weight: 600;
}

/* 서브페이지 공통 레이아웃 */
.sub-layout {
  padding: 80px 0;
}

/* 아코디언 UI (FAQ) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary-dark);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background-color: rgba(2, 132, 199, 0.02);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  color: var(--color-text-muted);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-question {
  color: var(--color-secondary);
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 200px;
  border-top: 1px solid #f1f5f9;
}

.faq-icon {
  font-size: 18px;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* 폼 디자인 (문의/견적) */
.inquiry-form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* 푸터 */
footer {
  background-color: #0b0f19;
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
}

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

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.footer-links-grid a {
  font-size: 14px;
  transition: var(--transition-smooth);
}

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

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-info-list span {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
}

/* 애니메이션 키프레임 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 반응형 미디어 쿼리 */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-img-wrapper img {
    height: 380px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .slide-img {
    height: 280px;
  }
  .cta-split {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .gnb {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 16px;
  }
  /* 모바일 화면에서 슬라이드 이미지 좌우 화살표 숨김 */
  .hero-controls,
  .hero-prev-btn,
  .hero-next-btn,
  .slider-btn {
    display: none !important;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 28px;
  }
  .inquiry-form-container {
    padding: 25px;
  }
}

/* ==========================================
   스크롤 올라오는 이펙트 (Scroll Reveal / Fade In Up)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 카드 및 섹션 타이틀/텍스트문구 자동 Reveal 설정 */
.section-header, 
.promise-card, 
.product-card, 
.gallery-item, 
.feature-card, 
.recipe-card, 
.benefit-card, 
.ship-card, 
.info-box, 
.faq-item, 
.location-card, 
.prep-box, 
.wholesale-flow, 
.inquiry-form-container, 
.notice-board,
.sub-hero-content {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.section-header.active, 
.promise-card.active, 
.product-card.active, 
.gallery-item.active, 
.feature-card.active, 
.recipe-card.active, 
.benefit-card.active, 
.ship-card.active, 
.info-box.active, 
.faq-item.active, 
.location-card.active, 
.prep-box.active, 
.wholesale-flow.active, 
.inquiry-form-container.active, 
.notice-board.active,
.sub-hero-content.active {
  opacity: 1;
  transform: translateY(0);
}

/* 카드 순차적 올라옴 지연 효과 (Stagger Animation) */
.grid-container > *:nth-child(1),
.promise-grid > *:nth-child(1),
.product-grid > *:nth-child(1),
.gallery-grid > *:nth-child(1),
.recipe-grid > *:nth-child(1),
.b2b-benefits > *:nth-child(1),
.shipping-step-container > *:nth-child(1) {
  transition-delay: 0.1s;
}

.grid-container > *:nth-child(2),
.promise-grid > *:nth-child(2),
.product-grid > *:nth-child(2),
.gallery-grid > *:nth-child(2),
.recipe-grid > *:nth-child(2),
.b2b-benefits > *:nth-child(2),
.shipping-step-container > *:nth-child(2) {
  transition-delay: 0.25s;
}

.grid-container > *:nth-child(3),
.promise-grid > *:nth-child(3),
.product-grid > *:nth-child(3),
.gallery-grid > *:nth-child(3),
.recipe-grid > *:nth-child(3),
.b2b-benefits > *:nth-child(3),
.shipping-step-container > *:nth-child(3) {
  transition-delay: 0.4s;
}

