/* ============================================================
   wedding-garden — SIGNATURE+ V3.2
   Palette: pastel-soft (blush + ivory + sage)
   Typography: classical-serif
   Mood: cinematic-dark (golden-hour luxe)
   Hero effects: cinematic-fade-black + petal-fall + ink-stroke-reveal
   Nav: vertical-strip
   Cursor: ink-stroke (trail-cursor variant)
   ============================================================ */

:root {
  /* core palette */
  --blush:        #f4d6cf;
  --blush-deep:   #e7a89c;
  --ivory:        #faf3ea;
  --ivory-warm:   #f5ead7;
  --sage:         #9eae88;
  --sage-deep:    #6b7d5a;
  --gold:         #c79a4f;
  --gold-soft:    #d8b97c;
  --ink:          #1c1614;
  --ink-soft:     #3c3128;
  --paper:        #fdf9f3;
  --shadow-warm:  rgba(28,22,20,0.18);

  /* typography */
  --serif:    'Cormorant Garamond', 'Noto Serif KR', serif;
  --display:  'Playfair Display', 'Cormorant Garamond', serif;
  --sans:     'Inter', 'Noto Sans KR', sans-serif;
  --script:   'Tangerine', 'Caveat', cursive;

  /* layout */
  --rail-w:        88px;
  --content-x:     clamp(28px, 4vw, 96px);
  --section-pad:   clamp(80px, 10vw, 180px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  cursor: none; /* custom ink cursor */
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

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

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

/* ============================================================
   Custom Ink Trail Cursor (1C — cursor-style: ink-stroke)
   ============================================================ */
.ink-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.3s;
  z-index: 9999;
}
.ink-cursor.is-hover { width: 60px; height: 60px; background: var(--blush-deep); }
.ink-trail {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  opacity: 0.6;
  transform: translate(-50%, -50%);
  z-index: 9998;
}

/* ============================================================
   Demo Banner
   ============================================================ */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0;
  height: 36px; z-index: 1000;
  background: linear-gradient(90deg, var(--ink), var(--ink-soft));
  color: var(--ivory-warm);
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.demo-tag {
  background: var(--gold);
  color: var(--ink);
  padding: 2px 10px;
  font-weight: 700;
}
.demo-link { color: var(--blush); text-decoration: underline; }

body { padding-top: 36px; }

/* ============================================================
   Vertical Strip Nav (1A — nav style: vertical-strip)
   ============================================================ */
.vstrip {
  position: fixed;
  left: 0; top: 36px; bottom: 0;
  width: var(--rail-w);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-warm) 100%);
  border-right: 1px solid rgba(28,22,20,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 24px;
  z-index: 100;
}
.vstrip-logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-align: center;
  line-height: 1;
}
.vstrip-logo .ampers {
  display: block;
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  margin: 4px 0;
}
.vstrip-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  writing-mode: horizontal-tb !important;
  transform: none !important;
}
.vstrip-nav a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s;
}
.vstrip-nav a::before {
  content: '';
  position: absolute;
  left: -10px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s;
}
.vstrip-nav a:hover { color: var(--ink); }
.vstrip-nav a:hover::before { transform: translateY(-50%) scale(1); }
.vstrip-foot {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--sage-deep);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}

.burger-btn {
  display: none;
  position: fixed;
  top: 50px; left: 18px;
  width: 44px; height: 44px;
  background: var(--ivory);
  border: 1px solid var(--shadow-warm);
  border-radius: 50%;
  z-index: 200;
  font-size: 22px;
  cursor: pointer;
}

/* ============================================================
   Layout — main shell
   ============================================================ */
.shell {
  margin-left: var(--rail-w);
  min-height: 100vh;
}

@media (max-width: 1024px) {
  :root { --rail-w: 0; }
  .vstrip { transform: translateX(-100%); transition: transform 0.4s; }
  .vstrip.is-open { transform: translateX(0); }
  .burger-btn { display: flex; align-items: center; justify-content: center; }
  .shell { margin-left: 0; }
}

/* ============================================================
   Hero (광고 포스터 미학)
   ============================================================ */
.hero {
  position: relative;
  min-height: 65vh;
  background: linear-gradient(180deg, rgba(28,22,20,0.0) 0%, rgba(28,22,20,0.25) 60%, rgba(28,22,20,0.65) 100%),
              url('hero_01.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--content-x) calc(var(--section-pad) * 0.6);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,235,200,0.25) 0%, transparent 50%);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* cinematic-fade-black on scroll */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.hero-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ivory-warm);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s forwards;
  position: relative; z-index: 2;
}
.hero-meta::before {
  content: '— '; color: var(--blush);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(54px, 9vw, 142px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: -0.02em;
  position: relative; z-index: 2;
  margin-bottom: 24px;
}
.hero-title .ital {
  font-style: italic;
  color: var(--blush);
  font-family: var(--display);
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  filter: blur(20px);
  transform: translateY(40px);
  animation: blurInWord 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.5s; }
.hero-title .word:nth-child(2) { animation-delay: 0.7s; }
.hero-title .word:nth-child(3) { animation-delay: 0.9s; }
.hero-title .word:nth-child(4) { animation-delay: 1.1s; }
.hero-title .word:nth-child(5) { animation-delay: 1.3s; }
.hero-title .word:nth-child(6) { animation-delay: 1.5s; }

@keyframes blurInWord {
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.hero-sub {
  max-width: 540px;
  font-size: 18px;
  color: rgba(250,243,234,0.88);
  line-height: 1.7;
  position: relative; z-index: 2;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-style: italic;
  opacity: 0;
  animation: fadeUp 1.2s 1.8s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  background: rgba(250,243,234,0.95);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  position: relative; z-index: 2;
  transition: transform 0.3s, background 0.3s;
  opacity: 0;
  animation: fadeUp 1.2s 2.0s forwards;
  align-self: flex-start;
}
.hero-cta:hover { transform: translateY(-2px); background: var(--blush); }
.hero-cta::after { content: '→'; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Petal-fall particle system */
.petal-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.petal {
  position: absolute;
  top: -40px;
  width: 14px; height: 18px;
  background: radial-gradient(circle at 30% 30%, var(--blush) 0%, var(--blush-deep) 100%);
  border-radius: 80% 20% 70% 30%;
  opacity: 0.85;
  animation: petalFall linear infinite;
  filter: drop-shadow(0 1px 2px rgba(28,22,20,0.2));
}
@keyframes petalFall {
  0%   { transform: translate(0, -40px) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.7; }
  100% { transform: translate(120px, 110vh) rotate(720deg); opacity: 0; }
}

/* Ink-stroke reveal SVG */
.ink-stroke-svg {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 220px;
  height: 60px;
  z-index: 2;
  opacity: 0.9;
}
.ink-stroke-path {
  stroke: var(--blush);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawStroke 3s 2.4s ease-out forwards;
}
@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}

/* Hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ivory-warm);
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 2;
}
.hero-scroll-cue::after {
  content: '';
  display: block;
  width: 1px; height: 36px;
  background: var(--ivory-warm);
  margin: 8px auto 0;
  animation: scrollPulse 1.8s infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50%      { transform: scaleY(1.0); opacity: 0.9; }
}

/* ============================================================
   Section base
   ============================================================ */
.section {
  padding: var(--section-pad) var(--content-x);
  position: relative;
}
.section-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-tag::before { content: '◆ '; color: var(--blush-deep); }

.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 900px;
}
.section-title .ital { font-style: italic; color: var(--sage-deep); }

.section-lead {
  font-size: 19px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ============================================================
   Section: About / Story
   ============================================================ */
.about {
  background: linear-gradient(180deg, var(--paper), var(--ivory));
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  aspect-ratio: 3/4;
  background: linear-gradient(45deg, var(--blush), var(--ivory-warm));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 2;
}
.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-text p::first-letter {
  font-family: var(--display);
  font-size: 5em;
  font-style: italic;
  float: left;
  line-height: 0.8;
  margin: 12px 12px 0 0;
  color: var(--gold);
}
.about-text p + p::first-letter { all: unset; }
.about-sig {
  margin-top: 32px;
  font-family: var(--script);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.about-sig-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Section: Ceremony / Reception / Styling triple
   ============================================================ */
.ceremony, .reception, .styling {
  position: relative;
}
.ceremony { background: var(--ivory); }
.reception { background: var(--paper); }
.styling { background: linear-gradient(180deg, var(--paper), var(--ivory-warm)); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.feature-card {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 6px;
  border: 1px solid rgba(28,22,20,0.06);
  transition: transform 0.4s, box-shadow 0.4s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px var(--shadow-warm);
}
.feature-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blush), var(--sage));
  border-radius: 4px;
  margin-bottom: 22px;
  background-size: cover;
  background-position: center;
}
.feature-card-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}
.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Section: Magazine / 2-col editorial spread
   ============================================================ */
.editorial {
  background: var(--paper);
}
.ed-spread {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.ed-image {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--blush), var(--sage));
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}
.ed-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ed-quote {
  font-family: var(--display);
  font-size: 30px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 24px 0;
}
.ed-text p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .ed-spread { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Section: Style gallery (8 thumbs)
   ============================================================ */
.style-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.style-tile {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--blush), var(--ivory-warm));
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.style-tile:hover { transform: scale(1.02); }
.style-tile::after {
  content: attr(data-label);
  position: absolute;
  left: 12px; bottom: 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--paper);
  text-transform: uppercase;
  background: rgba(28,22,20,0.6);
  padding: 4px 10px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .style-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Section: Stats
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--paper);
}
.stats .section-title { color: var(--paper); }
.stats .section-lead { color: rgba(250,243,234,0.7); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.stat-item {
  border-top: 1px solid rgba(232,205,180,0.2);
  padding-top: 24px;
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-soft);
}
.stat-num::after {
  content: attr(data-suffix);
  font-size: 0.5em;
  margin-left: 4px;
  color: var(--blush);
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,243,234,0.7);
  margin-top: 12px;
}
.stat-disclaimer {
  margin-top: 36px;
  font-size: 11px;
  color: rgba(250,243,234,0.4);
  font-style: italic;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Section: Team / Couples / Testimonials
   ============================================================ */
.team {
  background: var(--paper);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.team-member {
  text-align: center;
}
.team-photo {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--sage));
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s;
}
.team-member:hover .team-photo { transform: scale(1.05); }
.team-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.team-bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.testimonials {
  background: linear-gradient(180deg, var(--ivory-warm), var(--paper));
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.test-card {
  background: var(--paper);
  padding: 40px 36px;
  border-radius: 6px;
  border-top: 3px solid var(--gold);
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--display);
  font-size: 80px;
  color: var(--blush);
  line-height: 1;
  opacity: 0.6;
}
.test-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 24px 0 24px;
  position: relative;
}
.test-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--sage));
  background-size: cover;
}
.test-name {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
}
.test-when {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Section: Press / Featured
   ============================================================ */
.press {
  background: var(--ink);
  color: var(--paper);
}
.press .section-title { color: var(--paper); }
.press-marquee {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
  justify-content: space-around;
  padding: 32px 0;
  border-top: 1px solid rgba(232,205,180,0.2);
  border-bottom: 1px solid rgba(232,205,180,0.2);
}
.press-logo {
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(250,243,234,0.5);
  transition: color 0.3s;
}
.press-logo:hover { color: var(--gold-soft); }

/* ============================================================
   Section: Journey / Timeline
   ============================================================ */
.journey {
  background: var(--paper);
}
.journey-line {
  position: relative;
  margin-top: 64px;
  padding-left: 28px;
}
.journey-line::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--blush));
}
.journey-step {
  position: relative;
  padding: 24px 0 24px 56px;
}
.journey-step::before {
  content: '';
  position: absolute;
  left: -7px; top: 32px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--gold);
}
.journey-step-month {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.journey-step h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.journey-step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   Section: Visit / Map
   ============================================================ */
.visit {
  background: var(--ivory-warm);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.visit-map {
  aspect-ratio: 4/3;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--sage), var(--blush));
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.visit-map::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(199,154,79,0.25);
}
.visit-info dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.visit-info dd {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Section: CTA
   ============================================================ */
.cta {
  background: linear-gradient(135deg, var(--blush) 0%, var(--ivory-warm) 100%);
  text-align: center;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-title .ital { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--content-x) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 36px;
  margin-bottom: 16px;
}
.footer-logo .ital { font-style: italic; color: var(--gold); }
.footer-logo .ampers {
  font-family: var(--script);
  font-size: 56px;
  color: var(--gold);
  vertical-align: middle;
  margin: 0 4px;
}
.footer-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer p {
  color: rgba(250,243,234,0.6);
  font-size: 14px;
  line-height: 1.7;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(250,243,234,0.7);
}
.footer li a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(232,205,180,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,243,234,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SUB-PAGE shared
   ============================================================ */
.sub-hero {
  height: 60vh;
  min-height: 420px;
  background: linear-gradient(180deg, rgba(28,22,20,0.2), rgba(28,22,20,0.6)),
              url('../assets/hero_01.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--content-x) 64px;
  color: var(--paper);
}
.sub-hero-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--blush);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sub-hero h1 {
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.sub-hero h1 .ital { font-style: italic; color: var(--blush); }
.sub-hero p {
  margin-top: 18px;
  max-width: 600px;
  font-style: italic;
  color: rgba(250,243,234,0.85);
  font-size: 17px;
  line-height: 1.7;
}

.crumbs {
  position: absolute;
  top: 18px; left: var(--content-x);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  z-index: 4;
}
.crumbs a { color: rgba(250,243,234,0.7); }
.crumbs a:hover { color: var(--blush); }

/* sub-1: Packages — pricing-table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.price-card {
  background: var(--paper);
  border: 1px solid rgba(28,22,20,0.08);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.price-card.is-feature {
  background: linear-gradient(180deg, var(--ink), var(--ink-soft));
  color: var(--paper);
  transform: scale(1.04);
  border: 1px solid var(--gold);
  z-index: 2;
}
.price-card.is-feature .price-name { color: var(--gold-soft); }
.price-card.is-feature .price-amount { color: var(--paper); }
.price-card.is-feature .price-currency { color: var(--blush); }
.price-card.is-feature .price-feat li { color: rgba(250,243,234,0.85); }
.price-card.is-feature .price-feat li::before { color: var(--blush); }
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px var(--shadow-warm);
}
.price-card.is-feature:hover {
  transform: translateY(-6px) scale(1.04);
}
.price-card-img {
  height: 140px;
  background: linear-gradient(135deg, var(--blush), var(--sage));
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  margin-bottom: 22px;
}
.price-tier {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.price-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--ink);
}
.price-amount {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.price-currency {
  font-size: 16px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--gold);
}
.price-period {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-style: italic;
}
.price-feat {
  list-style: none;
  margin-bottom: 28px;
}
.price-feat li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(28,22,20,0.08);
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  padding-left: 24px;
}
.price-feat li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 10px;
  color: var(--gold);
}
.price-cta {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: all 0.3s;
  cursor: pointer;
}
.price-card.is-feature .price-cta {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.price-cta:hover { background: var(--ink); color: var(--paper); }
.price-card.is-feature .price-cta:hover { background: var(--blush); border-color: var(--blush); }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.is-feature { transform: none; }
  .price-card.is-feature:hover { transform: translateY(-6px); }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Compare table */
.compare-table {
  margin-top: 80px;
  border-collapse: collapse;
  width: 100%;
  font-family: var(--sans);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(28,22,20,0.1);
  font-size: 14px;
}
.compare-table th {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
}
.compare-table td.tick { color: var(--gold); font-weight: 700; text-align: center; }
.compare-table td.cross { color: rgba(28,22,20,0.3); text-align: center; }

/* sub-2: Gallery — portfolio-grid + timeline */
.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: 56px;
}
.mosaic-tile {
  background: linear-gradient(135deg, var(--blush), var(--sage));
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.mosaic-tile:hover { transform: scale(1.02); }
.mosaic-tile.tile-large { grid-column: span 3; grid-row: span 2; }
.mosaic-tile.tile-tall  { grid-row: span 2; }
.mosaic-tile.tile-wide  { grid-column: span 2; }
.mosaic-tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(28,22,20,0.7));
  color: var(--paper);
}
.mosaic-tile-couple {
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  color: var(--blush);
}
.mosaic-tile-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-warm);
  margin-top: 2px;
}

.timeline-block {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(28,22,20,0.1);
}
.timeline-rail {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.timeline-rail::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--blush), var(--gold));
}
.timeline-node {
  position: relative;
  text-align: center;
  padding-top: 48px;
}
.timeline-node::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
  transform: translateX(-50%);
}
.timeline-node-year {
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
}
.timeline-node-event {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .portfolio-mosaic { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .portfolio-mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic-tile.tile-large { grid-column: span 2; grid-row: span 2; }
  .timeline-rail { grid-template-columns: repeat(2, 1fr); }
  .timeline-rail::before { display: none; }
}

/* sub-3: Consultation — process-stepper + form */
.stepper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
  position: relative;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%; right: 8%;
  height: 2px;
  background: var(--gold);
  z-index: 0;
}
.step-cell {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--paper);
  padding: 0 8px;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--paper);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
}
.step-cell.is-active .step-num {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}
.step-cell h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}
.step-cell p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.consult-form {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.consult-image {
  background: linear-gradient(180deg, var(--blush), var(--sage));
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  min-height: 480px;
}
.consult-fieldset {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.consult-fieldset h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 6px;
}
.consult-fieldset p.lead {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-style: italic;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  padding: 12px 16px;
  font-family: var(--serif);
  font-size: 16px;
  background: var(--ivory);
  border: 1px solid rgba(28,22,20,0.12);
  border-radius: 4px;
  color: var(--ink);
  transition: border 0.3s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.consult-submit {
  margin-top: 12px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s;
}
.consult-submit:hover { background: var(--gold); color: var(--ink); }

.consult-faq {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(28,22,20,0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(28,22,20,0.1);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--display);
  font-size: 22px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
  font-size: 28px;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .stepper { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stepper::before { display: none; }
  .consult-form { grid-template-columns: 1fr; }
  .consult-image { min-height: 280px; }
}

/* utility — accessibility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* V3.4.4 (사용자 요청 2026-05-01): vertical-strip 메뉴 위쪽 정렬 + 좌측 폭 확보 */
.vstrip {
  width: 96px !important;
}
.vstrip-nav {
  flex: 0 0 auto !important;
  justify-content: flex-start !important;
  padding-top: 64px !important;
  gap: 32px !important;
}
.vstrip-nav a {
  font-size: 10px !important;
  letter-spacing: 0.28em !important;
  white-space: nowrap !important;
}
:root { --rail-w: 96px !important; }

/* V3.4.5: vstrip 메뉴 세로 나열 (writing-mode 제거) */
.vstrip-nav{
  writing-mode: horizontal-tb !important;
  transform: none !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 24px !important;
  gap: 18px !important;
}
.vstrip-nav a{
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-align: center;
  white-space: nowrap !important;
}

/* V3.4.6 (사용자 요청 2026-05-01): hero bg 위쪽 잘림 fix + 높이 100vh 복구 (V3.4.13: bg-position !important 제거 — animation 우선) */
.hero {
  min-height: 100vh !important;
  background-image: 
    linear-gradient(180deg, rgba(28,22,20,0.0) 0%, rgba(28,22,20,0.25) 60%, rgba(28,22,20,0.65) 100%),
    url('hero_01.png') !important;
  background-size: auto, cover !important;
  background-position: 50% 50%, 50% 0%;
  background-repeat: no-repeat !important;
}

/* V3.4.8 (사용자 요청 2026-05-01): 모바일 hero 좌우 슬라이드 애니메이션 */
@media (max-width: 768px) {
  .hero {
    background-size: auto 100% !important;
    animation: heroPanLR 18s ease-in-out infinite alternate;
  }
}
@keyframes heroPanLR {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* V3.4.9 (2026-05-01): wedding multi-layer animation fix + 상단 배너 padding */
@media (max-width: 768px) {
  .hero {
    animation: heroPanLR-multi 18s ease-in-out infinite alternate !important;
  }
}
@keyframes heroPanLR-multi {
  0%   { background-position: 0% 0%, 0% center; }
  100% { background-position: 0% 0%, 100% center; }
}
/* 상단 배너 (.demo-banner) 아래로 페이지 시작 — PC 36px (banner h=36), 모바일 64px (banner wrap=64) */
body {
  padding-top: 36px !important;
}
.hero {
  margin-top: 0 !important;
}

/* V3.4.15 (2026-05-01): wedding 모바일 배너 영역 확실히 분리 */
@media (max-width: 768px) {
  body {
    padding-top: 64px !important;
  }
  .demo-banner {
    height: 64px !important;
    min-height: 64px !important;
    line-height: 1.2 !important;
    overflow: hidden !important;
    z-index: 99999 !important;
  }
}
