:root {
  --paper: #f4f1e9;
  --paper-deep: #eae5d9;
  --ink: #151714;
  --muted: #66695f;
  --line: #c9c7bd;
  --signal: #173a63;
  --signal-dark: #0f2d4d;
  --signal-soft: #dce6f0;
  --white: #ffffff;
  --orange: #ff7048;
  --max: 1480px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.65;
}
main { padding-top: 92px; display: flex; flex-direction: column; }
.hero { order: 1; }
.price-band { order: 2; }
.work { order: 3; }
.included { order: 4; }
.process { order: 5; }
.care { order: 6; }
.trust { order: 7; }
.faq { order: 8; }
.state-locations { order: 9; }
.contact { order: 10; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--signal); color: var(--white); }

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  pointer-events: none;
  animation: introLeave .85s cubic-bezier(.76,0,.24,1) 2.15s forwards;
}
.intro__word {
  position: absolute;
  font-size: clamp(54px, 11vw, 180px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .8;
  opacity: 0;
  transform: translateY(30px);
  animation: introWord .7s cubic-bezier(.22,1,.36,1) forwards;
}
.intro__word--ready { animation-delay: .15s; }
.intro__word--set { animation-delay: .75s; }
.intro__word--page { animation-delay: 1.35s; }
.intro__word--page span { color: var(--signal); }
@keyframes introWord {
  0% { opacity: 0; transform: translateY(35px); }
  35%, 70% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-25px); }
}
@keyframes introLeave { to { transform: translateY(-100%); visibility: hidden; } }

.section-shell { width: min(100%, var(--max)); margin: 0 auto; padding-inline: var(--pad); }

.site-header {
  width: 100%;
  margin: 0;
  padding: 20px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(244, 241, 233, .94);
  border-bottom: 1px solid rgba(21, 23, 20, .10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.brand { justify-self: start; }
.brand__stack {
  display: inline-flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 17px;
  line-height: .82;
  letter-spacing: -.04em;
}
.brand__dot { color: var(--signal-dark); }
html[lang="ko"] .eyebrow,
html[lang="ko"] .section-number,
html[lang="ko"] .trust-row,
html[lang="ko"] .project__meta > span,
html[lang="ko"] .contact-form label span {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  letter-spacing: .02em;
}
html[lang="ko"] body {
  word-break: keep-all;
  overflow-wrap: break-word;
}
html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] p,
html[lang="ko"] li,
html[lang="ko"] dt,
html[lang="ko"] dd,
html[lang="ko"] summary,
html[lang="ko"] label span {
  word-break: keep-all;
  overflow-wrap: break-word;
}
html[lang="ko"] .keep-together { white-space: nowrap; }
html[lang="ko"] .hero h1 { letter-spacing: -.07em; }
html[lang="ko"] .hero__lead { max-width: 760px; letter-spacing: -.04em; }
html[lang="ko"] .demo-hero h2 { font-size: clamp(30px, 3.1vw, 50px); line-height: 1.02; letter-spacing: -.055em; max-width: 350px; }
html[lang="ko"] .demo-hero p { font-size: 10px; line-height: 1.65; }
.nav { display: flex; gap: 28px; font-size: 15px; font-weight: 600; }
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px; background: var(--ink);
  transition: right .25s ease;
}
.nav a:hover::after { right: 0; }
.nav-cta { display: none; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.language-switch { display: inline-flex; align-items: center; border: 1px solid rgba(21,23,20,.16); background: rgba(244,241,233,.68); height: 38px; }
.language-switch a { height: 100%; display: inline-flex; align-items: center; padding: 0 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
.language-switch a + a { border-left: 1px solid rgba(21,23,20,.16); }
.language-switch a.is-active { background: var(--ink); color: var(--paper); }
.site-header.is-scrolled { background: rgba(244, 241, 233, .98); box-shadow: 0 10px 30px rgba(15,45,77,.10); }
.menu-button { display: none; }

.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--signal); color: var(--white); border-color: var(--signal); }
.button span, .text-link span, .price-card > a span { font-family: "Manrope", Arial, sans-serif; font-variant-emoji: text; line-height: 1; }
.button--small { min-height: 46px; padding: 0 20px; font-size: 13px; }
.button--light { background: var(--signal-soft); color: var(--signal-dark); border-color: var(--signal-soft); }
.button--light:hover { background: var(--white); color: var(--signal-dark); border-color: var(--white); }

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  padding-top: clamp(60px, 8vh, 110px);
  padding-bottom: clamp(78px, 10vh, 130px);
}
.eyebrow, .section-number {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 30px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal-dark); box-shadow: 0 0 0 5px rgba(23,58,99,.14); }
.hero h1 {
  margin: 0;
  font-size: clamp(66px, 7.8vw, 132px);
  line-height: .88;
  letter-spacing: -.082em;
  font-weight: 800;
  max-width: 950px;
}
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.hero__lead {
  max-width: 650px;
  margin: 40px 0 0;
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.5;
  letter-spacing: -.025em;
  color: #42463d;
}
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.text-link { font-size: 15px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.text-link span { margin-left: 10px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; font-family: "DM Mono", monospace; font-size: 12px; text-transform: uppercase; }
.trust-row span { display: flex; gap: 7px; align-items: center; }
.trust-row span::before { content: "✓"; color: var(--signal); font-weight: 700; }

.hero__visual { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.browser-card {
  width: min(100%, 660px);
  background: #151714;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 45px 100px rgba(31,32,27,.2);
  transform: rotate(2deg);
  transition: transform .25s ease-out;
}
.browser-card__top { height: 42px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; color: #aeb0a7; font-family: "DM Mono", monospace; font-size: 8px; padding-inline: 10px; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 6px; height: 6px; border-radius: 50%; background: #454841; }
.browser-url { justify-self: center; color: #e6e6df; }
.browser-live { justify-self: end; display: flex; align-items: center; gap: 5px; }
.browser-live span { width: 5px; height: 5px; background: var(--signal); border-radius: 50%; }
.browser-card__screen { background: #f1eee5; border-radius: 10px; min-height: 570px; padding: 24px; position: relative; overflow: hidden; }
.demo-nav { display: flex; justify-content: space-between; align-items: flex-start; }
.demo-logo { font-size: 13px; line-height: .9; font-weight: 800; }
.demo-links { display: flex; gap: 20px; font-size: 8px; font-weight: 700; }
.demo-hero { min-height: 430px; position: relative; display: block; padding-top: 42px; }
.demo-hero > div:first-child { position: relative; z-index: 2; width: 54%; }
.demo-hero small { font-family: "DM Mono", monospace; font-size: 7px; }
.demo-hero h2 { margin: 15px 0; font-size: clamp(34px, 4vw, 64px); line-height: .93; letter-spacing: -.07em; max-width: 370px; }
.demo-hero p { max-width: 310px; font-size: 11px; line-height: 1.55; color: #5f6159; }
.demo-hero button { margin-top: 15px; border: 0; background: #1a1c19; color: #fff; padding: 13px 16px; font-size: 8px; font-weight: 700; }
.demo-art { position: absolute; z-index: 1; right: -300px; top: 2px; bottom: -34px; width: 72%; height: auto; overflow: visible; pointer-events: none; }
.demo-art::before { display: none; }
.demo-art img { position: absolute; right: 0; bottom: 0; width: auto; max-width: none; height: 100%; object-fit: contain; object-position: right bottom; border: 0; box-shadow: none; }
.demo-badge { display: none; }
.demo-footer { position: absolute; left: 24px; right: 24px; bottom: 23px; border-top: 1px solid #bcbcb4; padding-top: 16px; display: flex; justify-content: space-between; font-size: 8px; }
.demo-footer span:first-child { letter-spacing: .1em; }
.floating-note { position: absolute; background: var(--white); border: 1px solid var(--line); box-shadow: 0 15px 30px rgba(0,0,0,.09); padding: 13px 16px; font-family: "DM Mono", monospace; font-size: 11px; text-transform: uppercase; }
.floating-note--top { right: -5%; top: 18%; transform: rotate(4deg); }
.floating-note--bottom { left: -4%; bottom: 12%; transform: rotate(-4deg); }
.floating-note--bottom span { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--signal); margin-right: 7px; }

.price-band { background: var(--ink); color: var(--paper); padding: 90px var(--pad) 56px; }
.price-band__inner { width: min(100%, calc(var(--max) - (var(--pad) * 2))); margin: auto; display: grid; grid-template-columns: .85fr 1fr 1fr; gap: 18px; align-items: stretch; }
.price-intro { padding: 12px 35px 20px 0; display: flex; flex-direction: column; justify-content: space-between; }
.price-intro h2 { font-size: clamp(38px, 4vw, 64px); line-height: 1.02; letter-spacing: -.06em; margin: 110px 0 0; }
.price-card { border: 1px solid #4a4d46; padding: clamp(28px, 3vw, 46px); min-height: 510px; display: flex; flex-direction: column; }
.price-card--primary { background: var(--signal); color: var(--white); border-color: var(--signal); }
.price-card--care { background: #20231f; }
.price-card p { margin: 0 0 24px; font-family: "DM Mono", monospace; font-size: 12px; letter-spacing: .08em; }
.price-card h3 { margin: 0; font-size: clamp(85px, 8vw, 130px); line-height: .8; letter-spacing: -.085em; }
.price-card h3 sup { font-size: .28em; vertical-align: top; top: .08em; position: relative; margin-right: 5px; }
.price-card > div > span { display: block; margin-top: 16px; font-size: 13px; font-family: "DM Mono", monospace; text-transform: uppercase; }
.price-card s { color: rgba(255,255,255,.72); text-decoration-thickness: 1px; }
.price-card ul { list-style: none; margin: 55px 0 40px; padding: 0; display: grid; gap: 15px; font-size: 16px; }
.price-card li { display: flex; align-items: center; gap: 10px; }
.price-card li::before { content: "✓"; width: 20px; height: 20px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-size: 9px; }
.price-card > a { margin-top: auto; border-top: 1px solid currentColor; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; text-transform: uppercase; font-weight: 700; }
.price-note { width: min(100%, calc(var(--max) - (var(--pad) * 2))); margin: 25px auto 0; text-align: right; font-family: "DM Mono", monospace; font-size: 11px; color: #aeb1a8; }
.ownership-note { width: min(100%, calc(var(--max) - (var(--pad) * 2))); margin: 42px auto 0; padding: 34px; border: 1px solid #444740; display: grid; grid-template-columns: .85fr 2fr; gap: 48px; align-items: start; background: #171916; }
.ownership-note h3 { margin: 16px 0 0; max-width: 500px; font-size: clamp(30px, 3vw, 52px); line-height: 1.02; letter-spacing: -.055em; }
.ownership-note__copy { display: grid; gap: 16px; }
.ownership-note__copy p { margin: 0; color: #d7d9d0; font-size: 16px; line-height: 1.68; }
.add-on-services { width: min(100%, calc(var(--max) - (var(--pad) * 2))); margin: 55px auto 0; padding-top: 34px; border-top: 1px solid #444740; display: grid; grid-template-columns: .85fr 2fr; gap: 48px; align-items: start; }
.add-on-services h3 { margin: 16px 0 0; font-size: clamp(29px, 3vw, 48px); line-height: 1.05; letter-spacing: -.055em; }
.add-on-services dl { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #444740; border-left: 1px solid #444740; }
.add-on-services dl div { min-height: 74px; padding: 17px 18px; border-right: 1px solid #444740; border-bottom: 1px solid #444740; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.add-on-services dt, .add-on-services dd { margin: 0; }
.add-on-services dt { color: #d7d9d0; font-size: 15px; line-height: 1.45; }
.add-on-services dd { color: var(--paper); font-family: "DM Mono", monospace; font-size: 13px; white-space: nowrap; }

.section-heading { max-width: 950px; }
.section-heading h2 { margin: 25px 0 24px; font-size: clamp(48px, 6vw, 92px); line-height: .96; letter-spacing: -.072em; }
.section-heading h2 em { font-weight: 400; color: #7b7e74; }
.section-heading > p { max-width: 650px; color: var(--muted); font-size: 19px; line-height: 1.75; }
.section-heading--row { max-width: none; display: grid; grid-template-columns: 1.5fr .5fr; gap: 80px; align-items: end; }
.section-heading--row > p { margin: 0 0 8px; }

.included { background: #dfdbcf; box-shadow: 0 0 0 100vmax #dfdbcf; clip-path: inset(0 -100vmax); padding-top: 150px; padding-bottom: 160px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { min-height: 520px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-rows: auto auto minmax(68px, auto) auto; align-content: start; }
.feature-card > span { font-family: "DM Mono", monospace; font-size: 11px; }
.feature-card h3 { align-self: end; font-size: 25px; letter-spacing: -.04em; margin: 0 0 14px; }
.feature-card p { color: var(--muted); line-height: 1.72; font-size: 16px; margin: 0; }
.feature-icon { width: 100%; aspect-ratio: 1 / 1; margin-top: 30px; overflow: hidden; border: 1px solid rgba(21,23,20,.16); background: transparent; box-shadow: 0 18px 38px rgba(21,23,20,.1); }
.feature-icon img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.work { background: var(--paper); padding: 150px 0 170px; }
.projects { display: grid; gap: 95px; margin-top: 90px; }
.project { display: grid; grid-template-columns: 1.55fr .45fr; gap: 45px; align-items: end; }
.project:nth-child(even) { grid-template-columns: .45fr 1.55fr; }
.project:nth-child(even) .project__visual { order: 2; }
.project__visual { min-height: auto; padding: 0; display: grid; place-items: center; overflow: hidden; background: transparent; }
.project__visual--sushi,
.project__visual--boba,
.project__visual--hair,
.project__visual--bbq { background: transparent; }
.project-showcase { width: 100%; aspect-ratio: 1.5 / 1; }
.project-shot { display: block; width: 100%; height: 100%; object-fit: cover; border: 1px solid rgba(21,23,20,.18); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.food-layout, .service-layout, .beauty-layout { aspect-ratio: 1.48/1; position: relative; overflow: hidden; }
.food-layout { background: #f4e6c7; padding: 22px; }
.food-top { display: flex; justify-content: space-between; font-size: 8px; }
.food-top b { line-height: .9; }
.food-title { position: absolute; left: 22px; bottom: 68px; font-size: clamp(38px, 5vw, 82px); font-weight: 800; line-height: .85; letter-spacing: -.08em; }
.food-title i { color: #ed4a2f; font-style: normal; }
.food-circle { position: absolute; right: 9%; top: 15%; width: 37%; aspect-ratio: 1; border-radius: 50%; background: #f2a12f; display: grid; place-items: center; box-shadow: inset 0 0 0 18px #db3521; }
.food-circle::before, .food-circle::after { content: ""; position: absolute; border-radius: 50%; background: #f8dfb4; }
.food-circle::before { width: 45%; height: 45%; }
.food-circle::after { width: 22%; height: 22%; background: #922919; }
.food-circle span { z-index: 1; transform: rotate(10deg); color: #fff; font-size: 12px; font-weight: 800; text-align: center; }
.food-bottom { position: absolute; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; border-top: 1px solid; padding-top: 10px; font-size: 8px; }
.service-layout { background: #f6f4ec; padding: 22px; }
.service-nav { display: flex; justify-content: space-between; font-size: 8px; }
.service-copy { width: 58%; padding-top: 12%; }
.service-copy small { font-family: "DM Mono", monospace; font-size: 7px; }
.service-copy h4 { font-size: clamp(34px, 4vw, 66px); line-height: .93; letter-spacing: -.07em; margin: 15px 0; }
.service-copy p { font-size: 9px; width: 75%; line-height: 1.55; }
.service-copy button { border: 0; background: #242722; color: white; padding: 11px 14px; font-size: 7px; margin-top: 10px; }
.service-grid { position: absolute; width: 38%; right: 0; top: 0; bottom: 0; display: grid; grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,1fr); }
.service-grid i:nth-child(1), .service-grid i:nth-child(4), .service-grid i:nth-child(5) { background: #bed6ff; }
.service-grid i:nth-child(2) { background: #f5d8b0; border-radius: 0 0 0 70%; }
.service-grid i:nth-child(3) { background: #223627; border-radius: 50% 0 0 50%; }
.service-grid i:nth-child(6) { background: #ff7a56; border-radius: 50% 50% 0 0; }
.beauty-layout { background: #ece8dc; padding: 22px; }
.beauty-nav { display: flex; justify-content: space-between; font-size: 8px; }
.beauty-nav b { font-size: 14px; }
.beauty-arch { position: absolute; left: 8%; top: 14%; width: 42%; height: 77%; background: #2b2c28; border-radius: 50% 50% 0 0; overflow: hidden; }
.beauty-arch::before { content: ""; position: absolute; inset: 17%; border-radius: inherit; background: radial-gradient(circle at 50% 32%, #ccbca7 0 13%, transparent 14%), linear-gradient(150deg,#654d3e 0 35%,#bca891 36% 63%,#302821 64%); filter: grayscale(.35); }
.beauty-arch span { position: absolute; color: #ece8dc; font-size: 58px; bottom: -10px; left: 14px; letter-spacing: -.08em; font-weight: 800; }
.beauty-copy { position: absolute; right: 4%; bottom: 10%; width: 43%; }
.beauty-copy small { font-family: "DM Mono", monospace; font-size: 7px; }
.beauty-copy h4 { font-family: Georgia, serif; font-weight: 400; font-size: clamp(28px, 3.7vw, 58px); line-height: 1.02; margin: 14px 0 25px; }
.beauty-copy button { border: 1px solid; background: transparent; padding: 11px 14px; font-size: 7px; }
.project__meta { padding-bottom: 12px; }
.project__meta > span { font-family: "DM Mono", monospace; font-size: 11px; text-transform: uppercase; }
.project__meta h3 { font-size: 38px; letter-spacing: -.055em; margin: 13px 0; }
.project__meta p { color: var(--muted); font-size: 16px; line-height: 1.75; }

.process { padding-top: 160px; padding-bottom: 160px; }
.steps { margin-top: 85px; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 100px 1fr auto; gap: 35px; align-items: center; padding: 42px 0; border-bottom: 1px solid var(--line); }
.step__number { font-family: "DM Mono", monospace; font-size: 13px; }
.step > div:nth-child(2) { display: grid; grid-template-columns: 120px .8fr 1.2fr; align-items: baseline; gap: 30px; }
.step > div:nth-child(2) > span { font-size: 15px; font-weight: 800; }
.step h3 { font-size: clamp(25px, 2.4vw, 38px); margin: 0; letter-spacing: -.05em; }
.step p { color: var(--muted); font-size: 16px; line-height: 1.72; margin: 0; max-width: 550px; }
.step__tag { font-family: "DM Mono", monospace; font-size: 11px; border: 1px solid var(--line); padding: 9px 12px; }

.care { background: var(--ink); color: var(--paper); }
.care__inner { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; padding-top: 110px; padding-bottom: 110px; }
.section-number--light { color: #8e9188; }
.care__copy h2 { font-size: clamp(55px, 6.8vw, 100px); line-height: .93; letter-spacing: -.075em; margin: 25px 0 30px; }
.care__copy p { color: #aeb0aa; max-width: 560px; font-size: 19px; line-height: 1.75; margin-bottom: 38px; }
.care__checklist { border-top: 1px solid #444740; }
.care__checklist > div { display: grid; grid-template-columns: 50px 1fr auto; gap: 20px; padding: 26px 0; border-bottom: 1px solid #444740; align-items: center; }
.care__checklist span { font-family: "DM Mono", monospace; font-size: 11px; color: #777a72; }
.care__checklist p { margin: 0; font-size: 18px; }
.care__checklist b { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--signal-soft); color: var(--signal-dark); font-size: 11px; }

.trust { padding-top: 150px; padding-bottom: 150px; }
.trust__statement blockquote { max-width: 1200px; margin: 35px 0 100px; font-size: clamp(42px, 5.7vw, 86px); line-height: 1.02; letter-spacing: -.065em; font-weight: 600; }
.trust__grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust__grid article { padding: 28px; min-height: 240px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-rows: auto 95px auto; align-content: start; }
.trust__grid span { font-family: "DM Mono", monospace; font-size: 11px; }
.trust__grid h3 { align-self: end; margin: 0 0 10px; font-size: 23px; }
.trust__grid p { color: var(--muted); font-size: 15px; line-height: 1.72; margin: 0; }

.faq { padding-bottom: 160px; }
.faq-list { margin-top: 75px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: clamp(21px, 2vw, 29px); font-weight: 600; letter-spacing: -.035em; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 30px; font-weight: 300; transition: transform .25s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 850px; padding: 0 0 34px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.85; }

.state-locations { padding: 0 0 160px; }
.state-grid { margin-top: 65px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.state-grid a { min-height: 138px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: background .25s ease, color .25s ease; }
.state-grid a:hover { background: var(--ink); color: var(--paper); }
.state-grid strong { font-size: 22px; line-height: 1.15; letter-spacing: -.04em; }
.state-grid span { color: var(--muted); font-family: "DM Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .04em; transition: color .25s ease; }
.state-grid a:hover span { color: rgba(244,241,233,.68); }

.state-main { padding-top: 92px; display: block; }
.state-hero { padding-top: 110px; padding-bottom: 110px; }
.state-hero__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(48px, 7vw, 110px); align-items: end; }
.state-hero h1 { margin: 26px 0 0; font-size: clamp(60px, 8vw, 128px); line-height: .88; letter-spacing: -.08em; }
.state-hero h1 span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.state-hero__lead { margin: 36px 0 0; max-width: 760px; color: #42463d; font-size: clamp(20px, 1.8vw, 28px); line-height: 1.58; letter-spacing: -.035em; }
.state-hero__actions { margin-top: 42px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.state-card { border: 1px solid var(--line); background: #dfdbcf; padding: clamp(28px, 4vw, 48px); box-shadow: 16px 16px 0 var(--ink); }
.state-card h2 { margin: 16px 0 20px; font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -.06em; }
.state-card p { color: var(--muted); margin: 0; }
.state-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.state-chips span { border: 1px solid rgba(21,23,20,.18); padding: 8px 10px; font-family: "DM Mono", monospace; font-size: 10px; text-transform: uppercase; }
.state-content { padding-top: 120px; padding-bottom: 130px; border-top: 1px solid var(--line); }
.state-content__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
.state-content h2 { margin: 22px 0 0; font-size: clamp(42px, 5.6vw, 86px); line-height: .96; letter-spacing: -.072em; }
.state-content__body { display: grid; gap: 28px; }
.state-content__body p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; }
.state-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.state-list li { border: 1px solid var(--line); padding: 18px; background: rgba(255,255,255,.18); }
.state-list strong { display: block; margin-bottom: 6px; font-size: 18px; }
.state-list span { color: var(--muted); font-size: 15px; line-height: 1.55; }
.state-faq { padding-top: 120px; padding-bottom: 140px; }
.state-related { background: #dfdbcf; box-shadow: 0 0 0 100vmax #dfdbcf; clip-path: inset(0 -100vmax); padding-top: 90px; padding-bottom: 100px; }
.state-related .state-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.contact { background: var(--signal); color: var(--white); padding: 130px 0; }
.contact .section-number { color: rgba(255,255,255,.68); }
.contact__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.contact__copy h2 { font-size: clamp(58px, 7vw, 105px); line-height: .9; letter-spacing: -.075em; margin: 30px 0; }
.contact__copy h2 span { color: transparent; -webkit-text-stroke: 1.2px var(--white); }
.contact__copy > p:last-child { max-width: 560px; font-size: 19px; line-height: 1.8; color: rgba(255,255,255,.82); }
.contact .status-dot { background: var(--paper); box-shadow: 0 0 0 5px rgba(244,241,233,.18); }
.contact-form { background: var(--paper); border: 1px solid var(--ink); color: var(--ink); padding: clamp(24px, 4vw, 50px); display: grid; grid-template-columns: 1fr 1fr; gap: 25px; box-shadow: 14px 14px 0 var(--ink); }
.contact-form label { display: grid; gap: 9px; }
.contact-form label span { font-family: "DM Mono", monospace; font-size: 11px; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); padding: 13px 0 16px; outline: none; font-size: 17px; border-radius: 0; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ink); }
.full-field { grid-column: 1 / -1; }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin: 0; }
.form-note a { border-bottom: 1px solid; }

.footer { background: var(--ink); color: var(--paper); padding: 80px var(--pad) 35px; }
.footer__brand { font-size: clamp(75px, 15vw, 250px); line-height: .67; letter-spacing: -.09em; font-weight: 800; display: flex; flex-direction: column; overflow: hidden; padding-bottom: 50px; }
.footer__line { border-top: 1px solid #484b45; padding-top: 24px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; font-family: "DM Mono", monospace; font-size: 11px; text-transform: uppercase; }
.footer__line div { display: flex; gap: 22px; }
.footer__line p:last-child { justify-self: end; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }
  .nav { position: fixed; inset: 0; min-height: 100vh; min-height: 100dvh; background: var(--ink); color: var(--paper); z-index: 95; flex-direction: column; justify-content: center; align-items: center; font-size: 31px; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .nav-cta { display: inline-flex; margin-top: 8px; padding: 14px 22px; border: 1px solid rgba(244,241,233,.45); font-size: 18px; text-transform: uppercase; letter-spacing: .03em; }
  html[lang="ko"] .nav-cta { font-size: 18px; }
  .menu-open .nav { opacity: 1; pointer-events: auto; }
  .header-actions { justify-self: end; z-index: 110; }
  .header-actions > .button { display: none; }
  .menu-button { display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; justify-content: center; align-items: center; background: var(--ink); border: 0; justify-self: end; z-index: 110; }
  .menu-button span { width: 17px; height: 1px; background: var(--paper); transition: transform .3s ease; }
  .menu-open .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { margin-top: 30px; }
  .browser-card { max-width: 750px; }
  .price-band__inner { grid-template-columns: 1fr 1fr; }
  .price-intro { grid-column: 1 / -1; }
  .price-intro h2 { margin: 50px 0 25px; }
  .add-on-services { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .project, .project:nth-child(even) { grid-template-columns: 1fr; gap: 24px; }
  .project:nth-child(even) .project__visual { order: 0; }
  .project__meta { max-width: 600px; }
  .step > div:nth-child(2) { grid-template-columns: 80px 1fr; }
  .step > div:nth-child(2) p { grid-column: 2; }
  .care__inner, .contact__inner { grid-template-columns: 1fr; gap: 65px; }
  .trust__grid { grid-template-columns: repeat(2,1fr); }
  .state-grid, .state-related .state-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .state-hero__inner, .state-content__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; --radius: 15px; }
  .site-header { padding-top: 16px; padding-bottom: 16px; gap: 8px; }
  .header-actions { gap: 7px; }
  .language-switch { height: 34px; }
  .language-switch a { padding: 0 8px; font-size: 9px; }
  .header-actions > .button { display: inline-flex; min-height: 34px; padding: 0 9px; font-size: 8px; letter-spacing: .01em; white-space: nowrap; }
  html[lang="ko"] .header-actions > .button { font-size: 8px; padding-inline: 8px; }
  main { padding-top: 78px; }
  html { scroll-padding-top: 90px; }
  .hero { padding-top: 70px; padding-bottom: 85px; gap: 50px; }
  .hero h1 { font-size: clamp(57px, 17vw, 82px); }
  .hero__lead { font-size: 19px; margin-top: 28px; }
  html[lang="ko"] .hero__lead { font-size: 18px; line-height: 1.65; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 19px; }
  .hero__actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .trust-row { gap: 12px 18px; }
  .browser-card { transform: none; }
  .browser-card__screen { min-height: 410px; padding: 15px; }
  .demo-nav { align-items: center; }
  .demo-links { display: none; }
  .demo-hero { min-height: 350px; padding-top: 12px; display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .demo-hero > div:first-child { width: 100%; }
  .demo-hero h2 { font-size: 33px; }
  .demo-hero p { font-size: 8px; }
  .demo-hero button { display: none; }
  html[lang="ko"] .demo-hero h2 { font-size: 25px; line-height: 1.08; letter-spacing: -.045em; }
  html[lang="ko"] .demo-hero p { font-size: 8px; line-height: 1.65; }
  .demo-art { position: relative; inset: auto; width: 100%; height: 165px; overflow: hidden; }
  .demo-art::before { display: none; }
  .demo-art img { right: -6px; width: 100%; height: 100%; object-fit: contain; }
  .demo-footer { left: 15px; right: 15px; bottom: 15px; }
  .floating-note { display: none; }
  .price-band { padding-top: 70px; }
  .price-band__inner { grid-template-columns: 1fr; }
  .price-card { min-height: 460px; }
  .price-card h3 { font-size: 100px; }
  .price-note { text-align: left; line-height: 1.5; }
  .ownership-note { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .ownership-note h3 { font-size: 34px; }
  .ownership-note__copy p { font-size: 14px; line-height: 1.68; }
  .add-on-services dl { grid-template-columns: 1fr; }
  .add-on-services dl div { min-height: 68px; padding: 15px; }
  .included, .process, .trust { padding-top: 105px; padding-bottom: 105px; }
  .section-heading h2 { font-size: 49px; }
  .section-heading--row { grid-template-columns: 1fr; gap: 20px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .feature-card { min-height: auto; grid-template-rows: auto auto auto auto; row-gap: 28px; padding: 34px 28px 42px; }
  .feature-card h3 { align-self: start; margin: 0; }
  .feature-icon { height: auto; margin-top: 16px; margin-bottom: 4px; }
  .work { padding: 105px 0; }
  .projects { gap: 65px; margin-top: 60px; }
  .project__visual { min-height: auto; padding: 0; }
  .project-showcase { width: 100%; aspect-ratio: 1.5 / 1; }
  .food-title { font-size: 38px; bottom: 50px; }
  .food-circle { width: 33%; }
  .food-circle span { font-size: 7px; }
  .food-layout, .service-layout, .beauty-layout { aspect-ratio: 1.18/1; }
  .service-copy { width: 65%; }
  .service-copy h4 { font-size: 34px; }
  .service-grid { width: 34%; }
  .beauty-copy { width: 45%; }
  .beauty-copy h4 { font-size: 24px; }
  .beauty-arch span { font-size: 35px; }
  .project__meta h3 { font-size: 31px; }
  .step { grid-template-columns: 40px 1fr; gap: 18px; }
  .step__tag { display: none; }
  .step > div:nth-child(2) { grid-template-columns: 1fr; gap: 12px; }
  .step > div:nth-child(2) p { grid-column: 1; }
  .care__inner { min-height: auto; padding-top: 100px; padding-bottom: 100px; }
  .care__copy h2 { font-size: 52px; }
  .trust__statement blockquote { font-size: 42px; margin-bottom: 65px; }
  .trust__grid { grid-template-columns: 1fr; }
  .faq { padding-bottom: 105px; }
  summary { min-height: 86px; font-size: 20px; }
  .state-locations { padding-bottom: 105px; }
  .state-grid, .state-related .state-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .state-grid a { min-height: 112px; }
  .state-main { padding-top: 78px; }
  .state-hero { padding-top: 80px; padding-bottom: 85px; }
  .state-hero h1 { font-size: clamp(52px, 15vw, 76px); }
  .state-hero__lead { font-size: 18px; line-height: 1.7; }
  .state-hero__actions { align-items: stretch; flex-direction: column; }
  .state-hero__actions .button { width: 100%; }
  .state-card { box-shadow: 10px 10px 0 var(--ink); }
  .state-content, .state-faq { padding-top: 90px; padding-bottom: 95px; }
  .state-list { grid-template-columns: 1fr; }
  .state-related { padding-top: 80px; padding-bottom: 85px; }
  .contact { padding: 95px 0; }
  .contact__copy h2 { font-size: 55px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; box-shadow: 8px 8px 0 var(--ink); }
  .full-field { grid-column: 1; }
  .footer { padding-top: 70px; }
  .footer__brand { font-size: 22vw; padding-bottom: 40px; }
  .footer__line { grid-template-columns: 1fr; }
  .footer__line div { flex-wrap: wrap; }
  .footer__line p:last-child { justify-self: start; }
}

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