:root {
  --ink: #17231d;
  --green: #34775d;
  --green-deep: #1f5944;
  --mint: #b9dbc5;
  --mint-soft: #edf5eb;
  --paper: #f8f5eb;
  --white: #fffdf7;
  --lime: #d8eb5c;
  --line: rgba(23, 35, 29, 0.17);
  --display: "Iowan Old Style", "AppleMyungjo", "Nanum Myeongjo", serif;
  --sans: "Avenir Next", "Pretendard", "Apple SD Gothic Neo", sans-serif;
  --max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  word-break: keep-all;
  overflow-x: clip;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 12px 18px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  width: min(calc(100% - 48px), var(--max));
  height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
}
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark { position: relative; width: 35px; height: 35px; display: block; }
.brand-mark span {
  position: absolute;
  left: 16px;
  bottom: 5px;
  width: 2px;
  height: 27px;
  border-radius: 5px;
  background: currentColor;
  transform-origin: bottom;
}
.brand-mark span:nth-child(1) { transform: rotate(-43deg); height: 20px; }
.brand-mark span:nth-child(3) { transform: rotate(43deg); height: 20px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 21px; letter-spacing: -0.06em; }
.brand-copy small { margin-top: 5px; font-size: 8px; letter-spacing: 0.22em; }
.site-header nav { display: flex; gap: 32px; font-size: 13px; font-weight: 650; }
.site-header nav a { position: relative; }
.site-header nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-call { min-height: 44px; justify-self: end; display: grid; align-content: center; text-align: right; }
.header-call span { font-size: 10px; opacity: 0.7; letter-spacing: 0.08em; }
.header-call strong { margin-top: 3px; font-size: 15px; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 190px max(24px, calc((100vw - var(--max)) / 2)) 104px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 110px);
  color: white;
  background:
    radial-gradient(circle at 74% 37%, rgba(185, 219, 197, 0.22), transparent 23%),
    linear-gradient(125deg, #173c2e 0%, #245a44 50%, #3d8062 100%);
  isolation: isolate;
  overflow: hidden;
}
.hero::after {
  position: absolute;
  right: -10vw;
  bottom: -28vw;
  z-index: -1;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255,255,255,.02), 0 0 0 110px rgba(255,255,255,.02);
}
.air-lines { position: absolute; inset: 0; z-index: -1; overflow: hidden; opacity: .15; }
.air-lines i {
  position: absolute;
  left: -5%;
  top: 52%;
  width: 55%;
  height: 180px;
  border: 1px solid white;
  border-color: white transparent transparent;
  border-radius: 50%;
  transform: rotate(5deg);
}
.air-lines i:nth-child(2) { top: 57%; left: -10%; width: 65%; }
.air-lines i:nth-child(3) { top: 62%; left: -14%; width: 76%; }
.eyebrow, .section-index p, .kicker, .inspection-top, .review-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}
.eyebrow { display: flex; align-items: center; gap: 14px; color: var(--mint); }
.eyebrow span { padding: 7px 9px 6px; border: 1px solid rgba(255,255,255,.35); color: white; }
.hero h1, .section h2 {
  margin: 28px 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1.06;
}
.hero h1 { font-size: clamp(58px, 5.6vw, 84px); }
.hero h1 em, .section h2 em { font-style: normal; color: var(--lime); }
.hero-lead { max-width: 530px; font-size: 18px; line-height: 1.85; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; gap: 10px; margin-top: 38px; }
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--lime); color: var(--ink); }
.button-ghost { border-color: rgba(255,255,255,.45); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-icon { font-size: 18px; }
.hero-facts { margin: 54px 0 0; display: flex; gap: 0; }
.hero-facts div { min-width: 120px; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.22); }
.hero-facts div:first-child { padding-left: 0; border-left: 0; }
.hero-facts dt { margin-bottom: 6px; font-size: 10px; color: var(--mint); letter-spacing: .08em; }
.hero-facts dd { margin: 0; font-size: 13px; font-weight: 700; }

.hero-visual { position: relative; max-width: 620px; justify-self: end; }
.inspection-card {
  margin: 0;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  transform: rotate(1.2deg);
  box-shadow: 0 35px 90px rgba(5, 25, 17, .38);
}
.inspection-top { display: flex; align-items: center; justify-content: space-between; padding: 3px 2px 15px; }
.inspection-status { display: flex; align-items: center; gap: 7px; color: var(--green); }
.inspection-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(216,235,92,.25); }
.inspection-photo { overflow: hidden; aspect-ratio: 4 / 4.18; background: #e7eee7; }
.inspection-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.inspection-card figcaption { padding: 15px 2px 2px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.inspection-card figcaption span { font-size: 10px; color: #637068; }
.inspection-card figcaption strong { font-family: var(--display); font-size: 18px; }
.hero-stamp {
  position: absolute;
  left: -75px;
  bottom: 55px;
  width: 154px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 7px;
  text-align: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(-9deg);
  box-shadow: 0 12px 40px rgba(5, 25, 17, .2);
}
.hero-stamp span { font-size: 10px; letter-spacing: .18em; }
.hero-stamp strong { max-width: 95px; font-size: 14px; line-height: 1.4; }
.scroll-note { position: absolute; bottom: 30px; left: 50%; display: flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: .15em; opacity: .65; transform: translateX(-50%); }
.scroll-note span { display: block; width: 36px; height: 1px; background: white; }

.section { position: relative; padding: 150px max(24px, calc((100vw - var(--max)) / 2)); }
.section-index { display: flex; align-items: center; gap: 12px; align-self: start; }
.section-index span { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; }
.section-index p { margin: 0; font-size: 9px; }
.manifesto { display: grid; grid-template-columns: .42fr .85fr 1.1fr; gap: clamp(45px, 7vw, 110px); background: var(--paper); }
.manifesto-copy .kicker, .price-intro .kicker { color: var(--green); }
.manifesto-copy h2, .price-intro h2 { font-size: clamp(48px, 5vw, 72px); }
.manifesto-copy h2 em, .price-intro h2 em { color: var(--green); }
.manifesto-copy > p:last-child { max-width: 520px; margin: 0; font-size: 16px; line-height: 1.9; color: #5a665e; }
.standard-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.standard-list li { padding: 25px 0; display: grid; grid-template-columns: 54px 1fr; gap: 8px; border-bottom: 1px solid var(--line); }
.standard-list li > span { font-family: var(--display); font-size: 13px; color: var(--green); }
.standard-list strong { display: block; margin-bottom: 7px; font-family: var(--display); font-size: 21px; }
.standard-list p { margin: 0; color: #677169; font-size: 13px; line-height: 1.6; }

.works { color: white; background: var(--ink); }
.works-heading { display: grid; grid-template-columns: .42fr .9fr .62fr; gap: clamp(45px, 7vw, 110px); align-items: end; }
.works .light { color: var(--mint); }
.works h2 { margin-bottom: 0; font-size: clamp(48px, 5vw, 72px); }
.works .kicker { color: var(--mint); }
.works-note { margin: 0; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2); font-size: 12px; line-height: 1.8; color: rgba(255,255,255,.55); }
.works-grid { margin-top: 75px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: start; }
.works figure { margin: 0; }
.works figure img { width: 100%; background: #e8eee9; object-fit: cover; }
.work-main img { aspect-ratio: 4 / 4.48; object-position: 50% 50%; }
.work-side { margin-top: 125px !important; }
.work-side img { aspect-ratio: 4 / 5.32; object-position: 50% 50%; }
.works figcaption { padding: 18px 2px 0; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.works figcaption span { color: var(--mint); font-size: 10px; letter-spacing: .1em; }
.works figcaption strong { font-family: var(--display); font-size: 20px; }

.price { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(70px, 12vw, 180px); align-items: center; overflow: hidden; }
.price::before {
  position: absolute;
  left: -180px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 65px rgba(52,119,93,.035), 0 0 0 130px rgba(52,119,93,.025);
}
.price-intro .section-index { margin-bottom: 55px; }
.price-caption { color: #657067; font-size: 13px; line-height: 1.8; }
.price-ticket { position: relative; padding: 50px 54px; background: var(--green); color: white; box-shadow: 22px 24px 0 var(--mint); }
.price-ticket::before, .price-ticket::after { position: absolute; left: -18px; width: 36px; height: 36px; border-radius: 50%; background: var(--paper); content: ""; }
.price-ticket::before { top: 29%; }
.price-ticket::after { top: 70%; }
.price-ticket > p { margin: 0 0 35px; font-size: 10px; color: var(--mint); letter-spacing: .15em; }
.ticket-line { padding: 24px 0; display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(255,255,255,.25); }
.ticket-line span { font-family: var(--display); font-size: 20px; }
.ticket-line span b { display: inline-grid; place-items: center; margin-right: 7px; padding: 4px 7px; border-radius: 20px; background: var(--lime); color: var(--ink); font: 700 9px var(--sans); }
.ticket-line strong { font: 600 clamp(36px,4vw,54px) var(--display); letter-spacing: -.05em; }
.ticket-line strong small { margin-left: 4px; font: 500 16px var(--sans); }
.ticket-line.featured { color: var(--lime); border-bottom: 1px solid rgba(255,255,255,.25); }
.price-ticket ul { margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; }
.price-ticket li { position: relative; padding-left: 14px; font-size: 11px; }
.price-ticket li::before { position: absolute; left: 0; top: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); content: ""; }
.price-source { display: block; margin-top: 34px; color: rgba(255,255,255,.58); font-size: 9px; }

.review { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 10vw, 160px); align-items: center; background: #dceade; }
.review-photo { position: relative; }
.review-photo img { width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover; box-shadow: -20px 20px 0 rgba(255,255,255,.65); }
.review-photo > span { position: absolute; left: 18px; bottom: 18px; padding: 8px 10px; background: rgba(255,253,247,.9); font-size: 9px; letter-spacing: .08em; }
.review blockquote { margin: 0; }
.review-label { color: var(--green); }
.review blockquote h2 { font-size: clamp(42px, 4.8vw, 68px); }
.review blockquote h2 em { color: var(--green); }
.review blockquote > p:not(.review-label) { max-width: 520px; color: #526058; line-height: 1.8; }
.review blockquote footer { margin-top: 35px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(23,35,29,.2); font-size: 11px; }

.process { background: var(--white); }
.process-head { display: grid; grid-template-columns: .42fr 1.58fr; gap: clamp(45px,7vw,110px); align-items: end; }
.process-head h2 { margin: 0; font-size: clamp(42px, 5vw, 66px); }
.process-list { margin: 80px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--ink); }
.process-list li { min-height: 260px; padding: 24px 25px 30px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.process-list li:first-child { border-left: 1px solid var(--line); }
.process-list li > span { font: 500 34px var(--display); color: var(--green); }
.process-list strong { display: block; margin-bottom: 12px; font-family: var(--display); font-size: 22px; }
.process-list p { margin: 0; font-size: 12px; line-height: 1.7; color: #69736d; }

.contact { min-height: 620px; display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: center; color: white; background: var(--green-deep); overflow: hidden; isolation: isolate; }
.contact h2 { font-size: clamp(50px, 6vw, 82px); }
.contact .kicker { color: var(--mint); }
.contact-copy > p:last-of-type { color: rgba(255,255,255,.62); }
.contact-actions { display: flex; gap: 10px; margin-top: 34px; }
.button-dark { background: var(--lime); color: var(--ink); }
.button-line { border-color: rgba(255,255,255,.35); color: white; }
.contact-card { position: relative; z-index: 1; margin: 0; padding: 40px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2); font-style: normal; backdrop-filter: blur(8px); }
.contact-card p { margin: 0; padding: 17px 0; display: grid; grid-template-columns: 85px 1fr; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-card p span { font-size: 10px; color: var(--mint); }
.contact-card p strong, .contact-card p a { font-size: 13px; }
.contact-card p a { min-height: 44px; display: flex; align-items: center; font-weight: 800; color: var(--lime); }
.contact-card small { display: block; margin-top: 22px; color: rgba(255,255,255,.45); font-size: 9px; }
.contact-orbit { position: absolute; right: 0; top: 50%; z-index: -1; width: 610px; height: 610px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: translateY(-50%); }
.contact-orbit i { position: absolute; inset: 65px; border: 1px solid rgba(255,255,255,.08); border-radius: inherit; }
.contact-orbit i:nth-child(2) { inset: 135px; }
.contact-orbit i:nth-child(3) { inset: 205px; background: rgba(216,235,92,.05); }

.site-footer { padding: 38px max(24px, calc((100vw - var(--max)) / 2)) 42px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; background: #0f1c16; color: white; }
.brand-footer { color: var(--mint); }
.site-footer > p { margin: 0; font-size: 10px; color: rgba(255,255,255,.45); }
.site-footer > p:last-child { justify-self: end; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible, body.capture-mode .reveal { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 120ms; }
[data-delay="2"] { transition-delay: 220ms; }
[data-delay="3"] { transition-delay: 320ms; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr 1fr; gap: 45px; padding-top: 170px; }
  .hero h1 { font-size: 58px; }
  .hero-stamp { left: -45px; width: 120px; }
  .manifesto, .works-heading { grid-template-columns: .35fr 1fr; }
  .manifesto .standard-list, .works-note { grid-column: 2; }
  .price { gap: 60px; }
  .review { gap: 55px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .site-header { width: calc(100% - 36px); height: 78px; }
  .brand-copy strong { font-size: 18px; }
  .header-call span { display: none; }
  .header-call strong { font-size: 12px; }
  .hero { min-height: auto; padding: 132px 20px 82px; display: block; }
  .hero-copy { position: relative; z-index: 2; }
  .eyebrow { font-size: 9px; }
  .hero h1 { margin: 22px 0; font-size: clamp(47px, 14vw, 60px); }
  .hero-lead { max-width: 95%; font-size: 15px; line-height: 1.75; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; }
  .button { min-height: 50px; padding: 0 14px; font-size: 12px; }
  .hero-facts { margin-top: 38px; justify-content: space-between; }
  .hero-facts div { min-width: 0; padding: 0 12px; }
  .hero-facts dt { font-size: 8px; }
  .hero-facts dd { font-size: 11px; }
  .hero-visual { margin: 64px 8px 0 24px; }
  .inspection-card { padding: 12px; }
  .inspection-top { font-size: 8px; }
  .inspection-photo { aspect-ratio: 4 / 4.35; }
  .inspection-card figcaption strong { font-size: 14px; }
  .hero-stamp { left: -28px; bottom: 48px; width: 104px; }
  .hero-stamp strong { font-size: 11px; }
  .scroll-note { display: none; }
  .section { padding: 92px 20px; }
  .section-index { margin-bottom: 34px; }
  .manifesto, .works-heading, .price, .review, .process-head, .contact { display: block; }
  .manifesto-copy h2, .price-intro h2, .works h2 { font-size: 46px; }
  .standard-list { margin-top: 52px; }
  .standard-list li { grid-template-columns: 45px 1fr; }
  .works-note { margin-top: 28px; }
  .works-grid { margin-top: 46px; grid-template-columns: 1fr; }
  .work-side { margin-top: 40px !important; }
  .works figure img { aspect-ratio: auto; }
  .works figcaption { display: grid; gap: 7px; }
  .price::before { display: none; }
  .price-intro .section-index { margin-bottom: 34px; }
  .price-ticket { margin: 60px 10px 20px 0; padding: 34px 25px; box-shadow: 10px 12px 0 var(--mint); }
  .ticket-line span { max-width: 100px; font-size: 16px; }
  .ticket-line strong { font-size: 39px; }
  .price-ticket ul { display: grid; }
  .review-photo { margin: 0 12px 70px 0; }
  .review blockquote h2 { font-size: 41px; }
  .review blockquote footer { gap: 20px; }
  .process-head h2 { font-size: 43px; }
  .process-list { margin-top: 50px; grid-template-columns: 1fr 1fr; }
  .process-list li { min-height: 210px; border-bottom: 1px solid var(--line); }
  .contact { padding-bottom: 100px; }
  .contact h2 { font-size: 48px; }
  .contact-actions { display: grid; grid-template-columns: 1fr; }
  .contact-card { margin-top: 55px; padding: 28px 22px; }
  .contact-card p { grid-template-columns: 70px 1fr; }
  .site-footer { padding: 32px 20px; display: block; text-align: center; }
  .brand-footer { margin: 0 auto 20px; }
  .site-footer > p { margin-top: 8px; }
  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    min-height: 72px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 8px;
    background: rgba(15,28,22,.96);
    border-top: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a { min-height: 50px; display: grid; place-items: center; font-size: 12px; font-weight: 750; }
  .mobile-daangn { color: white; border: 1px solid rgba(255,255,255,.25); }
  .mobile-call { background: var(--lime); color: var(--ink); }
}

@media (max-width: 374px) {
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: 46px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-facts div { padding: 0 8px; }
  .hero-facts dd { font-size: 10px; }
  .section { padding-left: 16px; padding-right: 16px; }
  .process-list { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .mobile-cta { display: none; }
  .reveal { opacity: 1; transform: none; }
}
