/* ===== Fonts (Paperlogy) ===== */
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-1Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-2ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-3Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-4Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-5Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-6SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-7Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-8ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-9Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 400;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.5;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.7;
}

/* 햄버거 버튼 – 모바일에서만 표시 */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* 오른쪽 → 왼쪽 슬라이드 메뉴 패널 */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 101;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 102;
  flex-direction: column;
  padding: 4rem 1.5rem 2rem;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.nav-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.nav-drawer-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nav-drawer-close svg {
  width: 24px;
  height: 24px;
}

.nav-drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.nav-drawer-nav a {
  display: block;
  width: 100%;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.nav-drawer-logo {
  margin-top: auto;
  padding-top: 2rem;
  text-align: center;
}

.nav-drawer-logo img {
  height: 56px;
  width: auto;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg-layer.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  color: #fff;
}

/* 텍스트 윤곽(부곽) - 여러 방향 그림자로 아웃라인 효과 */
.hero-title {
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  color: #fff;
  text-shadow:
    0 0 1px #000,
    0 0 2px #000,
    1px 1px 2px rgba(0, 0, 0, 0.8),
    -1px -1px 2px rgba(0, 0, 0, 0.8),
    1px -1px 2px rgba(0, 0, 0, 0.8),
    -1px 1px 2px rgba(0, 0, 0, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow:
    0 0 1px #000,
    1px 1px 2px rgba(0, 0, 0, 0.8),
    -1px -1px 2px rgba(0, 0, 0, 0.8),
    0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow:
    0 0 1px #000,
    1px 1px 2px rgba(0, 0, 0, 0.8),
    -1px -1px 2px rgba(0, 0, 0, 0.8),
    0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-desc:last-of-type {
  margin-bottom: 1.75rem;
}

.hero-cta a {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #fff;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-cta a:hover {
  background: #fff;
  color: #1a1a1a;
  text-shadow: none;
}

/* ===== Sections ===== */
.section {
  padding: 4.5rem 1.5rem;
  background: #fff;
}

.section--alt {
  background: #f8f8f8;
}

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

/* ===== 3섹션 다양한 서비스 (지그재그 + 부곽 + 애니메이션) ===== */
@keyframes serviceFadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes serviceFadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-services .section-inner {
  max-width: 1000px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  min-height: 280px;
}

.service-row:first-of-type {
  margin-top: 2rem;
}

.service-row--reverse {
  flex-direction: row-reverse;
}

.service-row--animate.service-row--initial {
  opacity: 0;
  transform: translateY(24px);
}

.service-row--animate.is-visible {
  animation: serviceFadeInUp 0.7s ease-out forwards;
}

.service-row--animate.is-visible:nth-child(2) { animation-delay: 0.1s; }
.service-row--animate.is-visible:nth-child(3) { animation-delay: 0.2s; }
.service-row--animate.is-visible:nth-child(4) { animation-delay: 0.3s; }

.service-row-img,
.service-row-content {
  flex: 1;
  min-width: 0;
}

.service-row-img--outline {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.12),
    0 6px 24px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-row-img--outline:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.18);
}

.service-row-img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: contain;
  object-position: center;
}

.service-row-content {
  padding: 0 0.5rem;
}

.service-row-title {
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.service-row-title--outline {
  text-shadow:
    0 0 1px #fff,
    0 0 2px #fff,
    1px 1px 2px rgba(0, 0, 0, 0.15),
    -1px -1px 2px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.1);
}

.service-row-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

@media (max-width: 768px) {
  .service-row,
  .service-row--reverse {
    flex-direction: column;
    margin-top: 2.5rem;
    min-height: 0;
  }

  .service-row-content {
    order: 2;
    padding: 0;
  }

  .service-row-img {
    order: 1;
  }
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

/* ===== 4섹션 호리존 대형 스튜디오 (3블록 + 자동슬라이드) ===== */
.section-horizon .section-inner {
  max-width: 960px;
}

.section-horizon-inner .section-title {
  margin-bottom: 2rem;
}

.horizon-block {
  margin-bottom: 3rem;
}

.horizon-block:last-child {
  margin-bottom: 0;
}

.horizon-block-title {
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.horizon-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
  min-height: 200px;
}

.horizon-slider-bg {
  position: absolute;
  inset: 0;
}

.horizon-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.horizon-slide.active {
  opacity: 1;
  z-index: 1;
}

/* ===== 푸드 · 주방 스튜디오 (2블록 + 자동슬라이드) ===== */
.section-food {
  background: #f8f8f8;
}

.section-food-inner {
  max-width: 960px;
}

.section-food-inner .section-title {
  margin-bottom: 2rem;
}

.food-block {
  margin-bottom: 3rem;
}

.food-block:last-child {
  margin-bottom: 0;
}

.food-block-title {
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.food-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
  min-height: 200px;
}

.food-slider-bg {
  position: absolute;
  inset: 0;
}

.food-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.food-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Intro section - 로고 + 렌탈스튜디오란? (배경 s2-bg) */
.section-intro {
  position: relative;
  background-image: url('images/2section/s2-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.section-intro .section-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.section-intro .section-title-with-logo,
.section-intro .section-title-with-logo .section-logo,
.section-intro-text,
.section-intro-text p,
.section-intro-text .intro-lead,
.section-intro-text .intro-close,
.section-intro-text strong {
  color: #fff;
}

.section-intro .section-title-with-logo {
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.8);
}

.section-intro-text p {
  color: #fff;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 1px 4px rgba(0, 0, 0, 0.7),
    0 2px 8px rgba(0, 0, 0, 0.5);
}

/* 강조 문구 – 마케팅 포인트 컬러 */
.section-intro-text .intro-lead em,
.section-intro-text em {
  font-style: normal;
  color: #ffeb3b;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.9),
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 2px 6px rgba(0, 0, 0, 0.6);
}

.section-title-with-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-title-with-logo .section-logo {
  height: 32px;
  width: auto;
  vertical-align: middle;
}

.section-intro-text {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro-text p {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.section-intro-text p:last-child {
  margin-bottom: 0;
}

.section-intro-text .intro-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #fff;
}

.section-intro-text .intro-close {
  font-weight: 500;
  padding-top: 0.5rem;
}

.section-intro-text strong {
  font-weight: 700;
  font-size: 1.05em;
}

.section-lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}

.strength-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.strength-list li {
  font-size: 0.95rem;
  font-weight: 500;
}

.strength-list li::before {
  content: '· ';
  margin-right: 0.25rem;
  font-weight: 700;
}

/* ===== 이용 안내 (임팩트) ===== */
.section-service {
  background: linear-gradient(180deg, #f0f0f0 0%, #fff 100%);
  padding: 4.5rem 1.5rem;
  overflow-x: hidden;
}

/* 슬라이더만 좌우 패딩 없이 통으로 + 다른 이미지 영역처럼 크게 */
.service-info-slider {
  position: relative;
  width: calc(100% + 3rem);
  max-width: none;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background: #f0f0f0;
}

.section-service-inner {
  max-width: 800px;
}

/* 이용 안내 – service 이미지 슬라이더 (전체 너비 통으로) */
.service-info-slider-bg {
  position: absolute;
  inset: 0;
}

.service-info-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.service-info-slide.active {
  opacity: 1;
  z-index: 1;
}

.section-service-title {
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  margin-bottom: 1rem;
}

.section-service-lead {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 500;
}

.section-service-lead strong {
  font-weight: 700;
  color: #1a1a1a;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.service-tag {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ===== 문의 폼 (흰색 톤 · 로고 · 세련된 디자인) ===== */
.section-contact {
  padding: 4rem 1.5rem;
  background: #fafafa;
  color: #1a1a1a;
}

.section-contact-inner {
  max-width: 560px;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section-contact-title {
  color: #1a1a1a;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

/* 문의 폼 카드 – 다른 섹션 카드와 동일 (horizon/service-row 스타일) */
.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.08),
    0 4px 24px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  border: none;
}

.contact-form-row {
  flex: 1 1 calc(50% - 0.625rem);
  min-width: 0;
}

.contact-form-row--full {
  flex: 1 1 100%;
}

.contact-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  letter-spacing: 0.01em;
}

.contact-label .required {
  color: #c62828;
  font-weight: 700;
}

.contact-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input::placeholder {
  color: #9e9e9e;
}

.contact-input:focus {
  outline: none;
  border-color: #bdbdbd;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-select option {
  background: #fff;
  color: #1a1a1a;
}

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

.contact-form-actions {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.25rem;
}

.contact-submit {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #1a1a1a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.contact-submit:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .contact-form-row {
    flex: 1 1 100%;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* ===== 푸터 (화이트 배경 · 텍스트 색상 변경) ===== */
.footer {
  background: #fff;
  color: #1a1a1a;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
}

.footer-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  color: #1a1a1a;
}

.footer-address {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* ===== 오른쪽 하단 고정 아이콘 ===== */
.float-icons {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* SNS 아이콘 – 원형 없이 통 이미지 그대로 */
.float-icon--sns {
  width: auto;
  height: auto;
  padding: 4px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.float-icon--sns:hover {
  transform: scale(1.08);
  box-shadow: none;
}

.float-icon--sns img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.float-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.float-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.float-icon svg {
  flex-shrink: 0;
}

.float-icon--top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .float-icons {
    right: 1rem;
    bottom: 1rem;
    gap: 0.4rem;
  }

  .float-icon:not(.float-icon--sns) {
    width: 44px;
    height: 44px;
  }

  .float-icon img {
    width: 22px;
    height: 22px;
  }

  .float-icon--sns img {
    width: 36px;
    height: 36px;
  }
}

/* ===== 모바일 반응형 (768px 이하) ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }

  .nav-overlay,
  .nav-drawer {
    display: block;
  }

  .nav-drawer {
    display: flex;
  }

  body.nav-open .nav-drawer {
    transform: translateX(0);
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .header-inner {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 30px;
  }

  .hero-content {
    padding: 5rem 1rem 3rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    letter-spacing: 0.08em;
  }

  .section-inner,
  .section-service-inner,
  .section-contact-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-service {
    padding: 3rem 1rem;
  }

  .section-contact {
    padding: 3rem 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .service-info-slider {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    min-height: 220px;
  }

  .service-tags {
    gap: 0.75rem;
  }

  .service-tag {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .horizon-block,
  .food-block {
    margin-bottom: 2rem;
  }

  .horizon-slider,
  .food-slider {
    min-height: 180px;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer-name {
    font-size: 1rem;
  }

  .footer-address {
    font-size: 0.85rem;
  }
}
