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

:root {
  --cream: #faf8f5;
  --warm-white: #ffffff;
  --text-dark: #2c2c2c;
  --text-mid: #6b6b6b;
  --text-light: #9a9a9a;
  --pastel-pink: #f2d9d9;
  --pastel-blue: #d9e4f2;
  --pastel-mint: #d9f2e6;
  --pastel-peach: #f5e6d3;
  --accent: #c49a7c;
  --accent-dark: #a07a5c;
  --border: #e8e4e0;
  --font-en: 'Cormorant Garamond', serif;
  --font-kr: 'NanumSquareNeo', 'Noto Sans KR', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-kr);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Back Link === */
.back-link {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.3s;
}
.back-link:hover { color: var(--accent); }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 24px;
  color: var(--accent-dark);
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  padding: 32px 0; gap: 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 16px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mid);
}
.mobile-menu a.active { color: var(--text-dark); }
.mobile-cta {
  padding: 10px 28px;
  border: 1px solid var(--accent);
  border-radius: 24px;
  color: var(--accent-dark) !important;
}

/* === Hero Slideshow === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(44,44,44,0.2) 0%,
    rgba(44,44,44,0.15) 40%,
    rgba(44,44,44,0.5) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero-sub {
  font-family: var(--font-en);
  font-size: 16px; font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px; opacity: 0.9;
}
.hero-title {
  font-family: var(--font-kr);
  font-size: clamp(36px, 8vw, 68px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}
.hero-desc {
  font-size: 17px; font-weight: 400;
  line-height: 1.9; opacity: 0.9;
  letter-spacing: 1px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-btn {
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.hero-btn.primary {
  background: #fff; color: var(--text-dark);
}
.hero-btn.primary:hover {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
}
.hero-btn.secondary {
  background: #03c75a; color: #fff;
}
.hero-btn.secondary:hover {
  background: #02b350;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,199,90,0.3);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: #fff; opacity: 0.6;
  animation: float 2s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-family: var(--font-en);
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === Section Labels === */
.section-label {
  font-family: var(--font-en);
  font-size: 15px; font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-kr);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 40px;
}
.section-title.center { text-align: center; }

.section-more {
  display: block;
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.section-more:hover { color: var(--text-dark); }

/* === Intro Preview (리리컬 why choose 스타일) === */
.intro-preview {
  padding: 120px 0;
  background: var(--warm-white);
  text-align: center;
}
.intro-line {
  width: 60px; height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}
.intro-question {
  font-family: 'Anton', 'Black Han Sans', 'NanumSquareNeo', sans-serif;
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 1.05;
}
.intro-answer {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 64px;
  letter-spacing: 1px;
}
.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.intro-card {
  padding: 48px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.4s;
}
.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.intro-card:nth-child(1) { border-top: 3px solid var(--pastel-pink); }
.intro-card:nth-child(2) { border-top: 3px solid var(--pastel-blue); }
.intro-card:nth-child(3) { border-top: 3px solid var(--pastel-mint); }
.intro-card h3 {
  font-size: 22px; font-weight: 600;
  margin-bottom: 16px; letter-spacing: 2px;
}
.intro-card p {
  font-size: 15px; font-weight: 400;
  color: var(--text-mid); line-height: 1.9;
}
.intro-more {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.intro-more:hover { color: var(--text-dark); }

/* === Gallery Preview (Home) === */
.gallery-preview {
  padding: 120px 0;
  background: var(--cream);
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.preview-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
}
.preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.preview-item:hover img { transform: scale(1.05); }

/* === CTA Banner === */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-pink) 50%, var(--pastel-blue) 100%);
}
.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  padding: 64px 48px;
  border-radius: 16px;
}
.cta-inner h2 {
  font-size: 28px; font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.cta-inner p {
  font-size: 16px; font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.booking-btn {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 16px 44px;
  background: #03c75a; color: #fff;
  font-size: 17px; font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
  letter-spacing: 1px;
}
.booking-btn:hover {
  background: #02b350;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,199,90,0.3);
}
.booking-alt {
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-light);
}
.booking-alt a {
  color: var(--accent-dark);
  font-weight: 500;
}

/* === Page Header (서브페이지) === */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 64px;
}
.page-header-short {
  height: auto;
  min-height: auto;
  padding: 100px 0 60px;
  margin-top: 64px;
  background: var(--cream);
}
.page-header-bg {
  position: absolute;
  inset: 0;
}
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.45);
}
.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300;
  letter-spacing: 6px;
  color: #fff;
}
.page-header-short .page-header-title {
  color: var(--text-dark);
}
.page-header-short .section-label { color: var(--accent); }

/* === Why Section (About 페이지) — 리리컬 스타일 === */
.why-section {
  padding: 120px 0;
  background: var(--warm-white);
}
.why-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
.why-line {
  width: 80px; height: 1px;
  background: var(--border);
}
.why-question {
  font-family: 'Anton', 'Black Han Sans', sans-serif;
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.05;
  text-align: center;
}
.why-subtitle {
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 64px;
  letter-spacing: 1px;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.why-feature { text-align: center; }
.why-feature-num {
  font-family: var(--font-en);
  font-size: 42px; font-weight: 300;
  color: var(--pastel-pink);
  margin-bottom: 16px;
}
.why-feature h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.why-feature-line {
  width: 40px; height: 1px;
  background: var(--accent);
  margin: 0 auto 20px;
}
.why-feature p {
  font-size: 15px; font-weight: 400;
  color: var(--text-mid);
  line-height: 2;
}

/* === About Intro === */
.about-intro {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.about-image::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 1px solid var(--pastel-pink);
  border-radius: 4px;
  z-index: -1;
}
.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.about-desc {
  font-size: 17px; font-weight: 400;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 16px;
}
.about-signature {
  margin-top: 32px;
  font-family: var(--font-en);
  font-size: 17px;
  color: var(--text-light);
}
.about-signature span {
  font-family: var(--font-kr);
  font-size: 15px;
  margin-right: 8px;
}

/* === Gallery Full === */
.gallery-full {
  padding: 80px 0 120px;
  background: var(--cream);
}
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item:hover::after { background: rgba(0,0,0,0.08); }

/* === Service Page === */
.services-page {
  padding: 80px 0;
  background: var(--cream);
}
.services-page .service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 60px;
}
.services-page .service-card.reverse { direction: rtl; }
.services-page .service-card.reverse > * { direction: ltr; }
.service-img { height: 100%; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.service-info { padding: 48px; }
.service-info h2 {
  font-size: 28px; font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 16px; font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}
.service-info ul { list-style: none; margin-bottom: 28px; }
.service-info li {
  font-size: 15px; font-weight: 400;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}
.service-info li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pastel-pink);
  transform: translateY(-50%);
}
.service-book {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.service-book:hover { color: var(--text-dark); }

/* === Process === */
.process {
  padding: 120px 0;
  background: var(--warm-white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.process-step {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--border);
}
.process-step:last-child::after { display: none; }
.process-num {
  font-family: var(--font-en);
  font-size: 40px; font-weight: 300;
  color: var(--pastel-pink);
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 18px; font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.process-step p {
  font-size: 14px; font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
}

/* === Map Section === */
.map-section { background: var(--cream); }
.map-full {
  width: 100%;
  border-bottom: 1px solid var(--border);
}
.map-full iframe { display: block; width: 100%; }

/* === Contact Section === */
.contact-section {
  padding: 80px 0;
  background: var(--cream);
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.contact-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.contact-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-card h3 {
  font-size: 17px; font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.contact-card p {
  font-size: 15px; font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
}
.contact-card a {
  color: var(--accent-dark);
  transition: color 0.3s;
}
.contact-card a:hover { color: var(--text-dark); }
.contact-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-dark) !important;
}
.contact-sub {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-light);
}

/* === Footer === */
.footer {
  padding: 48px 0 32px;
  background: var(--text-dark);
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer-brand img {
  height: 28px;
  width: auto;
  filter: invert(1) brightness(1.2);
  opacity: 0.85;
}
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  font-size: 13px; font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-social a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px; font-weight: 400;
}
.footer-bottom a {
  color: var(--accent);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* === Lightbox === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none; border: none;
  color: #fff; font-size: 36px;
  cursor: pointer; padding: 16px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 20px; right: 24px; font-size: 40px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 48px; }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 48px; }

/* === Animations === */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .back-link { top: 12px; left: 12px; font-size: 11px; padding: 6px 10px; }

  .intro-cards, .why-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image { max-width: 320px; margin: 0 auto; }
  .about-image::after { display: none; }
  .gallery-grid { columns: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }

  .services-page .service-card {
    grid-template-columns: 1fr;
  }
  .services-page .service-card.reverse { direction: ltr; }
  .service-img img { min-height: 240px; }
  .service-info { padding: 32px 24px; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }

  .contact-section .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cta-inner { padding: 48px 24px; }

  .page-header { min-height: 280px; }

  .footer-inner, .footer-nav {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .lightbox-prev { left: 4px; font-size: 36px; }
  .lightbox-next { right: 4px; font-size: 36px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 4px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
