:root {
  --cream: #f7f0e6;
  --cream-light: #fcf9f4;
  --paper: #fffdf9;
  --terracotta: #bd6049;
  --terracotta-dark: #924634;
  --terracotta-light: #e6aa96;
  --ink: #2e2924;
  --muted: #716960;
  --line: #ded3c5;
  --sage: #87967c;
  --plum: #8e6e72;
  --gold: #d0a35e;
  --dark-green: #36483f;
  --shadow: 0 24px 60px rgba(92, 68, 54, 0.12);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream-light); font-family: "Noto Sans KR", sans-serif; font-size: 16px; line-height: 1.7; word-break: keep-all; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 16px; border-radius: 8px; color: white; background: var(--terracotta-dark); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
.site-header.scrolled, .site-header.menu-active { border-color: rgba(110, 88, 71, .12); background: rgba(252, 249, 244, .94); box-shadow: 0 8px 30px rgba(70, 50, 40, .05); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; height: 84px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-family: "Song Myung", serif; font-size: 23px; white-space: nowrap; }
.logo svg { width: 31px; fill: none; stroke: var(--terracotta); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.desktop-nav { display: flex; gap: 34px; margin-left: auto; margin-right: 42px; font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; padding-block: 28px; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; background: var(--terracotta); content: ""; transform: scaleX(0); transition: transform .2s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 12px; padding: 0 25px; border: 0; border-radius: 999px; color: white; background: var(--terracotta); box-shadow: 0 10px 25px rgba(189, 96, 73, .22); font-weight: 700; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { background: var(--terracotta-dark); box-shadow: 0 14px 28px rgba(144, 70, 52, .28); transform: translateY(-2px); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.button-small { min-height: 44px; padding-inline: 21px; font-size: 14px; }
.button-small svg { width: 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 11px 8px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { padding: 15px 24px 32px; background: var(--cream-light); border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 600; }
.mobile-nav .mobile-call { margin-top: 16px; border: 0; border-radius: 12px; color: white; background: var(--terracotta); text-align: center; }

.hero { position: relative; min-height: 790px; overflow: hidden; padding: 150px 0 72px; background: var(--cream); }
.hero::after { position: absolute; right: 0; bottom: -100px; width: 45%; height: 230px; border-radius: 50% 0 0; background: rgba(230, 170, 150, .12); content: ""; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 40px; }
.hero-shape { position: absolute; border-radius: 50%; background: var(--terracotta-light); filter: blur(1px); opacity: .18; }
.hero-shape-one { top: 120px; left: -140px; width: 280px; height: 280px; }
.hero-shape-two { right: 34%; bottom: -130px; width: 210px; height: 210px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 21px; color: var(--terracotta-dark); font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .contact h2 { margin: 0; font-family: "Song Myung", serif; font-weight: 400; letter-spacing: -.045em; line-height: 1.24; }
.hero h1 { font-size: clamp(45px, 5vw, 68px); }
h1 em, h2 em { color: var(--terracotta); font-style: normal; }
.hero-description { margin: 25px 0 32px; color: var(--muted); font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 27px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; font-weight: 700; }
.text-link span { color: var(--terracotta); font-size: 17px; transition: transform .2s; }
.text-link:hover span { transform: translateY(3px); }
.hero-note { display: flex; align-items: center; gap: 16px; margin-top: 46px; }
.avatar-stack { display: flex; padding-left: 10px; }
.avatar-stack span { display: grid; width: 38px; height: 38px; margin-left: -10px; place-items: center; border: 3px solid var(--cream); border-radius: 50%; color: white; background: var(--sage); font-size: 11px; font-weight: 700; }
.avatar-stack span:nth-child(2) { background: var(--gold); }
.avatar-stack span:nth-child(3) { background: var(--plum); }
.hero-note p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.hero-note strong { color: var(--ink); font-size: 13px; }
.hero-art { position: relative; min-height: 560px; }
.sun { position: absolute; top: 17px; right: 78px; width: 395px; height: 395px; border-radius: 50%; background: #efdac0; }
.hero-illustration { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.hero-illustration path, .hero-illustration circle { stroke: #694b40; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.ground, .plant-stem, .face-line, .arm, .hand, .spark { fill: none; }
.leaf { fill: #9cab8d; }
.chair { fill: #c98169; }
.skin, .hand { fill: #edc8ad; }
.hair { fill: #ded2c5; }
.body { fill: #e2aa83; }
.collar { fill: #fff8ef; }
.phone { fill: var(--paper); }
.heart { fill: var(--terracotta); stroke: none !important; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.75); border-radius: 18px; background: rgba(255,253,249,.9); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.card-check { top: 114px; left: 4px; padding: 14px 18px; }
.icon-circle { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: white; background: var(--sage); font-weight: 700; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 14px; }
.floating-card small { color: var(--muted); font-size: 10px; }
.card-time { right: 5px; bottom: 70px; display: grid; grid-template-columns: auto auto; gap: 0 10px; padding: 14px 20px; }
.card-time span { grid-row: span 2; align-self: center; padding: 5px 7px; border-radius: 6px; color: var(--terracotta-dark); background: #f1d8ce; font-size: 10px; font-weight: 700; }
.card-time strong { font-family: "Song Myung", serif; font-size: 19px; }
.scroll-cue { position: absolute; bottom: 42px; left: 31px; z-index: 3; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 9px; letter-spacing: .18em; transform: rotate(90deg); transform-origin: left center; }
.scroll-cue span { width: 32px; height: 1px; background: var(--muted); }

.section { padding: 120px 0; }
.section-heading h2, .contact h2 { font-size: clamp(38px, 4vw, 54px); }
.section-heading > p:last-child { max-width: 540px; margin: 22px 0 0; color: var(--muted); }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.intro-copy { padding: 15px 0 15px 54px; border-left: 1px solid var(--line); color: var(--muted); }
.intro-copy .lead { margin-top: 0; color: var(--ink); font-size: 21px; font-weight: 500; line-height: 1.8; }
.signature { margin-top: 31px; color: var(--terracotta); font-family: "Song Myung", serif; font-size: 19px; }

.features { background: #f2e9dc; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 64px; }
.feature-card { position: relative; min-height: 345px; overflow: hidden; padding: 32px; border: 1px solid rgba(116, 95, 76, .1); border-radius: var(--radius); background: rgba(255,253,249,.82); transition: transform .25s, box-shadow .25s; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-7px); }
.feature-number { position: absolute; top: 23px; right: 26px; color: #b9aa99; font-family: "Song Myung", serif; font-size: 13px; }
.feature-icon { display: grid; width: 74px; height: 74px; margin-bottom: 29px; place-items: center; border-radius: 50%; }
.feature-icon svg { width: 42px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.feature-icon.coral { color: var(--terracotta); background: #f5ddd4; }
.feature-icon.gold { color: #a27634; background: #f3e4c7; }
.feature-icon.sage { color: #64755c; background: #dfe5d9; }
.feature-icon.plum { color: #7d5e64; background: #e8dadd; }
.feature-card h3 { margin: 0 0 12px; font-family: "Song Myung", serif; font-size: 25px; font-weight: 400; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.card-tag { display: inline-block; margin-top: 23px; padding: 5px 10px; border-radius: 6px; color: var(--terracotta-dark); background: #f2ddd5; font-size: 10px; font-weight: 700; }
.feature-card-large { grid-row: span 2; min-height: 500px; padding-top: 55px; }
.feature-card-large .feature-icon { width: 96px; height: 96px; margin: 56px 0 40px; }
.feature-card-large .feature-icon svg { width: 52px; }
.feature-card-wide { grid-column: span 3; display: grid; min-height: 138px; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; padding-block: 25px; }
.feature-card-wide .feature-icon { width: 74px; height: 74px; margin: 0; }
.feature-card-wide h3 { margin-bottom: 5px; }
.status-dot { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; font-weight: 700; }
.status-dot i { width: 8px; height: 8px; border-radius: 50%; background: #76a172; box-shadow: 0 0 0 5px #e2eddf; }

.process { color: white; background: var(--dark-green); }
.process-header { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 40px; }
.eyebrow.light { color: #e3b29f; }
.process h2 em { color: #e5b09c; }
.process-header > p { margin: 0 0 8px; color: rgba(255,255,255,.64); font-size: 14px; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 28px; margin: 74px 0 0; padding: 0; list-style: none; }
.step { text-align: center; }
.step-index { color: #e4ad98; font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.step-art { display: grid; width: 150px; height: 150px; margin: 21px auto 25px; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: rgba(255,255,255,.06); }
.step-art svg { width: 83px; fill: none; stroke: #e5b09c; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.step h3 { margin: 0 0 7px; font-family: "Song Myung", serif; font-size: 23px; font-weight: 400; }
.step p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; }
.step-arrow { color: rgba(255,255,255,.25); font-size: 24px; }

.pricing { background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 110px; }
.pricing .section-heading > p { margin-bottom: 35px; }
.text-link.dark { color: var(--ink); }
.text-link.dark:hover span { transform: translateX(4px); }
.price-card { position: relative; padding: 51px 55px 42px; overflow: hidden; border: 1px solid #e8d8cb; border-radius: 32px; background: #fbf5ec; box-shadow: var(--shadow); }
.price-ribbon { position: absolute; top: 0; right: 0; padding: 9px 22px; border-radius: 0 0 0 16px; color: white; background: var(--terracotta); font-size: 10px; font-weight: 700; }
.price-label { margin: 0; color: var(--terracotta-dark); font-size: 13px; font-weight: 700; }
.price { display: flex; align-items: end; justify-content: space-between; gap: 15px; margin: 9px 0 28px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.price strong { font-family: "Song Myung", serif; font-size: 31px; font-weight: 400; }
.price span { color: var(--muted); font-size: 10px; }
.price-card ul { display: grid; gap: 13px; margin: 0 0 29px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.price-card li span { display: inline-grid; width: 22px; height: 22px; margin-right: 8px; place-items: center; border-radius: 50%; color: var(--terracotta); background: #f1ddd4; font-size: 10px; font-weight: 700; }
.button-full { width: 100%; }
.price-card > small { display: block; margin-top: 15px; color: #9a9188; font-size: 10px; text-align: center; }

.trust { background: var(--cream-light); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 65px; border-block: 1px solid var(--line); }
.trust-item { min-height: 245px; padding: 40px 50px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-mark { color: var(--terracotta); font-family: "Song Myung", serif; font-size: 13px; }
.trust-item h3 { margin: 24px 0 10px; font-family: "Song Myung", serif; font-size: 23px; font-weight: 400; }
.trust-item p { margin: 0; color: var(--muted); font-size: 13px; }

.contact { position: relative; overflow: hidden; padding: 105px 0; color: white; background: var(--terracotta-dark); text-align: center; }
.contact-pattern { position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle at center, transparent 0 70px, white 71px 72px, transparent 73px), radial-gradient(circle at center, transparent 0 160px, white 161px 162px, transparent 163px); background-size: 470px 470px; }
.contact-inner { position: relative; }
.contact .eyebrow { justify-content: center; }
.contact h2 { font-size: clamp(40px, 5vw, 58px); }
.contact h2 em { color: #f1c4b3; }
.contact-inner > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.button-cream { min-width: 220px; margin-top: 18px; color: var(--terracotta-dark); background: var(--cream); box-shadow: none; }
.button-cream:hover { color: white; background: var(--ink); }
.button-cream svg { width: 21px; }
.contact small { display: block; margin-top: 14px; color: rgba(255,255,255,.55); font-size: 10px; }

.site-footer { padding: 59px 0 30px; color: #c9c2b8; background: #292824; font-size: 12px; }
.footer-top { display: flex; justify-content: space-between; padding-bottom: 41px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-logo { color: white; }
.footer-top p { margin: 12px 0 0; }
.footer-call { display: flex; flex-direction: column; align-items: flex-end; }
.footer-call span { font-size: 10px; }
.footer-call a { color: white; font-family: "Song Myung", serif; font-size: 25px; }
.footer-call small { color: #8f8a82; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 27px; }
.company-info { display: flex; max-width: 650px; flex-wrap: wrap; gap: 2px 15px; }
.company-info strong { flex-basis: 100%; margin-top: 5px; color: #988c80; font-weight: 400; }
.footer-legal { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.footer-legal button { padding: 0; border: 0; color: white; background: none; cursor: pointer; font-size: 12px; }
.footer-legal button:hover { text-decoration: underline; }
.privacy-dialog { width: min(calc(100% - 32px), 590px); padding: 0; border: 0; border-radius: 22px; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.privacy-dialog::backdrop { background: rgba(32,28,25,.68); backdrop-filter: blur(3px); }
.dialog-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--line); }
.dialog-header h2 { margin: 0; font-family: "Song Myung", serif; font-size: 23px; font-weight: 400; }
.dialog-header button { width: 35px; height: 35px; border: 0; border-radius: 50%; background: #f1e8de; cursor: pointer; font-size: 24px; line-height: 1; }
.dialog-body { padding: 25px 28px 32px; color: var(--muted); font-size: 14px; }
.dialog-body h3 { margin: 22px 0 3px; color: var(--ink); font-size: 15px; }
.dialog-body p { margin: 5px 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid #d99177; outline-offset: 4px; }

@media (max-width: 960px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-art { width: min(100%, 650px); margin: -25px auto 0; }
  .scroll-cue { display: none; }
  .intro-grid, .pricing-grid { gap: 55px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-row: auto; min-height: 345px; padding-top: 32px; }
  .feature-card-large .feature-icon { width: 74px; height: 74px; margin: 0 0 29px; }
  .feature-card-large .feature-icon svg { width: 42px; }
  .feature-card-wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: .75fr 1.25fr; }
  .trust-item { padding-inline: 28px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { height: 70px; }
  .logo { font-size: 20px; }
  .logo svg { width: 28px; }
  .hero { padding: 117px 0 48px; }
  .hero h1 { font-size: 42px; }
  .hero-description { font-size: 16px; }
  .desktop-only { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-art { min-height: 430px; margin-top: 6px; }
  .sun { top: 25px; right: 7%; width: 315px; height: 315px; }
  .card-check { top: 73px; left: -5px; padding: 10px 12px; }
  .card-time { right: -4px; bottom: 38px; padding: 10px 12px; }
  .section { padding: 85px 0; }
  .section-heading h2, .contact h2 { font-size: 38px; }
  .intro-grid, .pricing-grid, .process-header { grid-template-columns: 1fr; gap: 38px; }
  .intro-copy { padding: 31px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .intro-copy .lead { font-size: 18px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .feature-card, .feature-card-large { min-height: auto; padding: 27px; }
  .feature-card-wide { display: block; grid-column: auto; }
  .feature-card-wide .feature-icon { margin-bottom: 25px; }
  .feature-card-wide .status-dot { margin-top: 20px; }
  .process-header > p { max-width: 450px; }
  .steps { grid-template-columns: 1fr; gap: 19px; margin-top: 54px; }
  .step-arrow { transform: rotate(90deg); }
  .price-card { padding: 45px 25px 28px; }
  .price { align-items: flex-start; flex-direction: column; }
  .price strong { font-size: 27px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; padding: 34px 15px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .contact { padding: 80px 0; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-call, .footer-legal { align-items: flex-start; }
}

@media (max-width: 410px) {
  .hero h1 { font-size: 36px; }
  .hero-art { min-height: 370px; }
  .floating-card { transform: scale(.87); }
  .card-check { transform-origin: left top; }
  .card-time { transform-origin: right bottom; }
  .hero-note { margin-top: 35px; }
}

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