:root {
  --ink: #171323;
  --muted: #6f667a;
  --purple: #4c2b87;
  --purple-deep: #2f1c57;
  --berry: #6f42c1;
  --berry-soft: #efe8ff;
  --green: #2f7d46;
  --green-soft: #eef8ef;
  --cream: #fff8ed;
  --surface: #ffffff;
  --line: rgba(23, 19, 35, 0.12);
  --shadow: 0 24px 80px rgba(47, 28, 87, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: var(--ink);
  background: #fffaf4;
  line-height: 1.6;
  word-break: keep-all;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  transition: transform 0.25s ease, inset 0.25s ease;
}
.site-header.scrolled { inset: 8px 0 auto; }
.nav {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(23, 19, 35, 0.12);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: transparent;
  background:
    radial-gradient(circle at 65% 35%, #b3d1ff 0 18%, transparent 19%),
    radial-gradient(circle at 42% 55%, #5b489b 0 42%, #312056 43% 100%);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,0.24);
}
.brand strong { display: block; font-size: 15px; line-height: 1.1; }
.brand small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(23, 19, 35, 0.75);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { background: var(--berry-soft); color: var(--purple); }
.nav-links .nav-cta {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 10px 24px rgba(76, 43, 135, 0.26);
}
.nav-links .nav-cta:hover { background: var(--purple-deep); color: #fff; transform: translateY(-1px); }
.nav-toggle { display: none; }

.section,
.map-cta { padding: 110px 20px; }
.section-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 64px;
}
.align-center { align-items: center; }
.align-start { align-items: start; }
.section-head {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 48px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.eyebrow.purple { color: var(--purple); }
.eyebrow.light { color: #e5d9ff; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}
h1 span { color: #d6c4ff; }
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
h3 { margin-bottom: 10px; font-size: 22px; letter-spacing: -0.025em; }
p { color: var(--muted); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 20px 84px;
  overflow: hidden;
  background: var(--purple-deep);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10vw -22vw auto;
  width: 56vw;
  height: 56vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 170, 255, 0.45), rgba(187, 170, 255, 0) 62%);
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transform: scale(1.04);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 13, 44, 0.9) 0%, rgba(35, 20, 70, 0.72) 48%, rgba(35, 20, 70, 0.3) 100%),
    linear-gradient(0deg, rgba(23, 19, 35, 0.4), rgba(23, 19, 35, 0.05));
}
.hero-inner { position: relative; z-index: 1; align-items: end; }
.hero-text {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: 19px;
  color: rgba(255,255,255,0.8);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--purple-deep));
  box-shadow: 0 18px 40px rgba(48, 34, 95, 0.3);
}
.button.ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}
.button.white { color: var(--purple); background: #fff; box-shadow: 0 18px 40px rgba(23, 19, 35, 0.12); }
.hero-card {
  justify-self: end;
  width: min(100%, 420px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-image { height: 350px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.quick-order {
  padding: 24px;
  color: #fff;
}
.quick-order strong { font-size: 21px; }
.quick-order p { margin: 6px 0 0; color: rgba(255,255,255,0.78); }
.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #b6f3a6;
  box-shadow: 0 0 0 6px rgba(182, 243, 166, 0.22);
}

.intro { background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%); }
.section-copy > p:not(.eyebrow) { font-size: 18px; }
.feature-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.feature-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 34px rgba(23, 19, 35, 0.06);
}
.feature-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--purple);
  font-weight: 900;
}
.feature-list p { margin-bottom: 0; }
.photo-stack { position: relative; padding: 0 0 90px 80px; }
.photo-main,
.photo-float {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.photo-main { width: 100%; aspect-ratio: 1.05 / 1; }
.photo-float {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1 / 1.18;
  border: 8px solid #fffaf4;
}

.season {
  background:
    radial-gradient(circle at 10% 0%, rgba(111, 66, 193, 0.12), transparent 32%),
    linear-gradient(180deg, #fff, #f9f5ff);
}
.season-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.season-card {
  padding: 28px;
  min-height: 260px;
  border: 1px solid rgba(76, 43, 135, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 46px rgba(76, 43, 135, 0.08);
}
.icon-bubble {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 20px;
  color: var(--purple);
  background: var(--berry-soft);
  font-size: 22px;
  font-weight: 900;
}
.season-card p { margin: 0; }

.promise { padding-block: 48px; background: #f9f5ff; }
.promise-panel {
  width: min(100%, var(--container));
  margin: 0 auto;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: clamp(28px, 6vw, 58px);
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(47, 28, 87, 0.92), rgba(47, 28, 87, 0.58)),
    url("assets/cert.jpg") center/cover;
  box-shadow: var(--shadow);
}
.promise-panel h2 { max-width: 750px; color: #fff; }
.promise-panel p:not(.eyebrow) { max-width: 660px; color: rgba(255,255,255,0.8); font-size: 18px; }

.gallery-section { background: #fffaf4; }
.gallery {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ddd;
  box-shadow: 0 16px 40px rgba(23, 19, 35, 0.1);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 19, 35, 0.55);
  backdrop-filter: blur(10px);
  font-weight: 900;
  font-size: 14px;
}

.order { background: #ffffff; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0 16px;
}
.contact-card,
.bank-box,
.price-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 19, 35, 0.08);
}
.contact-card { padding: 22px; transition: transform 0.2s ease, border-color 0.2s ease; }
.contact-card:hover { transform: translateY(-2px); border-color: rgba(111, 66, 193, 0.34); }
.contact-card span,
.bank-box span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; }
.contact-card strong { display: block; margin-top: 8px; color: var(--purple); font-size: 20px; }
.bank-box { padding: 22px; }
.bank-box strong { display: block; margin: 8px 0 14px; font-size: 19px; }
.bank-box button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: var(--purple);
  cursor: pointer;
}
.price-panel { padding: 30px; }
.price-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.price-header span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--berry-soft);
  font-size: 12px;
  font-weight: 900;
}
.price-header h3 { margin: 0; font-size: 30px; }
.price-list { display: grid; gap: 12px; padding: 22px 0; }
.price-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #faf7ff;
}
.price-list strong { display: block; font-size: 20px; }
.price-list span { color: var(--muted); font-size: 14px; }
.price-list p { margin: 0; color: var(--purple); font-size: 22px; font-weight: 950; }
.delivery-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.delivery-list li { display: flex; gap: 10px; }
.delivery-list li::before { content: "✓"; color: var(--green); font-weight: 900; }

.map-cta {
  padding-top: 0;
  background: linear-gradient(180deg, #fff, #fff8ed);
}
.map-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--green-soft);
}
.map-inner h2 { margin-bottom: 8px; font-size: clamp(28px, 4vw, 42px); }
.map-inner p:not(.eyebrow) { margin-bottom: 0; }

.footer {
  padding: 36px 20px 92px;
  color: rgba(255,255,255,0.76);
  background: var(--purple-deep);
}
.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.footer strong { color: #fff; }
.footer p { margin: 6px 0 0; color: rgba(255,255,255,0.64); }

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 60;
  display: none;
  transform: translateX(-50%);
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(23, 19, 35, 0.18);
}
.floating-cta a {
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 950;
}
.floating-cta a:first-child { color: #fff; background: var(--purple); }
.floating-cta a:last-child { color: var(--purple); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav { border-radius: 26px; align-items: flex-start; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    place-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--berry-soft);
    cursor: pointer;
  }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--purple); border-radius: 999px; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 18px 40px rgba(23, 19, 35, 0.14);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .section-grid,
  .promise-panel,
  .map-inner { grid-template-columns: 1fr; }
  .hero-inner { align-items: center; }
  .hero-card { justify-self: start; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  body { word-break: normal; }
  .site-header { inset: 10px 0 auto; }
  .brand small { display: none; }
  .hero { padding-top: 118px; min-height: auto; }
  h1 { font-size: clamp(42px, 14vw, 64px); }
  h2 { font-size: 34px; }
  .hero-text { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .section, .map-cta { padding: 76px 18px; }
  .section-grid { gap: 42px; }
  .photo-stack { padding: 0 0 68px 34px; }
  .season-grid,
  .contact-cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.tall,
  .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .price-header { flex-direction: column; align-items: flex-start; }
  .price-list article { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-cta { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
