:root {
  --ink: #111735;
  --green: #25256f;
  --green-deep: #111735;
  --green-soft: #3657a6;
  --ivory: #e8eaf6;
  --paper: #f6f7fb;
  --white: #ffffff;
  --line: #d9deec;
  --gray: #626879;
  --gray-light: #e8eaf6;
  --brass: #45459a;
  --kakao: #f7e600;
  --max: 1360px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
}

main [id] {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(146px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(17, 23, 53, 0.12);
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  min-width: 0;
  min-height: 44px;
}

.brand img {
  width: 142px;
  height: auto;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
  height: var(--header-height);
}

.nav-links a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-mobile-meta {
  display: none;
}

.header-cta {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 126px);
  max-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(17, 23, 53, 0.45);
}

.hero-shade::after {
  position: absolute;
  inset: 0 48% 0 0;
  background: rgba(17, 23, 53, 0.56);
  content: "";
}

.hero-content {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 10vh 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.eyebrow.dark {
  color: var(--green-soft);
}

.hero h1 {
  margin: 0 0 18px;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 76px;
  font-weight: 500;
  line-height: 1.08;
}

.hero-slogan {
  margin: 0;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.35;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions,
.directory-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--green-deep);
  background: var(--ivory);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(17, 23, 53, 0.42);
}

.button.light {
  color: var(--green-deep);
  background: var(--ivory);
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button.kakao {
  color: #241f00;
  background: var(--kakao);
}

.hero-index {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  display: grid;
  grid-template-columns: auto 70px auto;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.hero-index i {
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-strip > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  min-height: 106px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.signal-strip > div:last-child {
  border-right: 0;
}

.signal-strip span {
  grid-row: 1 / 3;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 24px;
}

.signal-strip strong {
  align-self: end;
  font-size: 15px;
}

.signal-strip small {
  color: var(--gray);
  font-size: 12px;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 740px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading h2,
.process-copy h2,
.finish-copy h2,
.truth-title h2,
.directory-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.32;
}

.section-heading > p:last-child,
.finish-copy > p,
.directory-intro > p {
  margin: 25px 0 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.85;
}

.standard-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px 7%;
}

.standard-heading {
  align-self: end;
}

.standard-photo {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  min-height: 760px;
  overflow: hidden;
}

.standard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standard-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  min-width: 310px;
  padding: 22px 26px;
  color: var(--white);
  background: var(--green);
}

.standard-photo figcaption span {
  font-size: 11px;
  font-weight: 800;
}

.standard-photo figcaption strong {
  font-size: 16px;
}

.standard-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.standard-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.standard-list article > span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 18px;
}

.standard-list h3,
.standard-list p {
  margin: 0;
}

.standard-list h3 {
  font-size: 17px;
}

.standard-list p {
  margin-top: 4px;
  color: var(--gray);
  font-size: 14px;
}

.process-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 790px;
  color: var(--white);
  background: var(--green-deep);
}

.process-media {
  position: relative;
  min-height: 790px;
  overflow: hidden;
}

.process-media::after {
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 53, 0.16);
  content: "";
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 32px;
  color: var(--green-deep);
  background: var(--ivory);
}

.process-stamp strong {
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.process-stamp span {
  font-size: 10px;
  font-weight: 900;
  line-height: 1.3;
}

.process-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(42px, calc((100vw - var(--max)) / 2));
}

.process-copy h2 {
  font-size: 46px;
}

.timeline {
  display: grid;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 18px;
}

.timeline h3,
.timeline p {
  margin: 0;
}

.timeline h3 {
  font-size: 16px;
}

.timeline p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.comparison-section {
  padding-bottom: 86px;
}

.comparison {
  position: relative;
  margin: 54px 0 0;
  overflow: hidden;
}

.comparison figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison figcaption span {
  padding: 15px 24px;
  color: var(--white);
  background: rgba(17, 23, 53, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.comparison figcaption span:last-child {
  text-align: right;
  background: rgba(37, 37, 111, 0.9);
}

.field-journal {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.field-journal-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 10px 7%;
  align-items: start;
  margin-bottom: 54px;
}

.field-journal-heading .eyebrow {
  grid-row: 1 / 3;
  padding-top: 10px;
}

.field-journal-heading h2 {
  margin: 0;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.32;
}

.field-journal-heading > p:last-child {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 16px;
}

.field-journal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 326px);
  gap: 16px;
}

.journal-item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--green-deep);
}

.journal-item-wide {
  grid-column: 1 / 9;
}

.journal-item-tall {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.journal-item:nth-child(3) {
  grid-column: 1 / 5;
}

.journal-item:nth-child(4) {
  grid-column: 5 / 9;
}

.journal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.journal-item-wide img {
  object-position: center 46%;
}

.journal-item-tall img {
  object-position: 58% center;
}

.journal-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(17, 23, 53, 0.9) 100%);
  content: "";
  pointer-events: none;
}

.journal-item:hover img,
.journal-item:focus-within img {
  transform: scale(1.025);
}

.journal-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 24px 26px;
  color: var(--white);
}

.journal-item figcaption span {
  color: #e8eaf6;
  font-size: 10px;
  font-weight: 900;
}

.journal-item figcaption strong {
  font-size: 18px;
}

.journal-item figcaption p {
  max-width: 520px;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.65;
}

.field-journal-note {
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 11px;
  text-align: right;
}

.result-gallery {
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ivory);
}

.result-gallery-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 10px 7%;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto 56px;
}

.result-gallery-heading .eyebrow {
  grid-row: 1 / 3;
  padding-top: 10px;
}

.result-gallery-heading h2 {
  margin: 0;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.32;
}

.result-gallery-heading > p:last-child {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 16px;
}

.result-gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.result-gallery-item {
  margin: 0;
  background: var(--white);
}

.result-gallery-item img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.result-gallery-secondary {
  margin-top: 86px;
}

.result-gallery-secondary img {
  height: 500px;
}

.result-gallery-item figcaption {
  display: grid;
  gap: 4px;
  padding: 25px 26px 28px;
  border-bottom: 3px solid var(--green);
}

.result-gallery-item figcaption span {
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 900;
}

.result-gallery-item figcaption strong {
  font-size: 18px;
}

.result-gallery-item figcaption p {
  margin: 2px 0 0;
  color: var(--gray);
  font-size: 13px;
}

.result-gallery-note {
  max-width: var(--max);
  margin: 18px auto 0;
  color: var(--gray);
  font-size: 11px;
  text-align: right;
}

.truth-section {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--green-deep);
}

.truth-title {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 40px;
  align-items: start;
}

.truth-title h2 {
  font-size: 46px;
}

.truth-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.truth-column {
  padding: 46px 52px 50px 0;
}

.truth-column + .truth-column {
  padding-right: 0;
  padding-left: 52px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.truth-column > span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
}

.truth-column h3 {
  margin: 12px 0 25px;
  font-size: 25px;
}

.truth-column ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.truth-column li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.truth-column li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--brass);
  content: "";
}

.truth-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.finish-section {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 7%;
  align-items: center;
}

.finish-photo {
  margin: 0;
}

.finish-copy h2 {
  font-size: 48px;
}

.tone-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 32px;
}

.tone-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gray);
  font-size: 13px;
}

.tone-list i {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17, 23, 53, 0.15);
  border-radius: 50%;
  background: var(--tone);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: var(--brass);
  font-size: 22px;
}

.estimate-section {
  border-top: 1px solid var(--line);
}

.estimate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.estimate-grid article {
  min-height: 240px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.estimate-grid article:last-child {
  border-right: 0;
}

.estimate-grid span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 20px;
}

.estimate-grid h3 {
  margin: 42px 0 12px;
  font-size: 19px;
}

.estimate-grid p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.photo-quote {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
  padding: 38px 42px;
  color: var(--white);
  background: var(--green);
}

.photo-quote h3 {
  margin: 0;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.45;
}

.photo-quote ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: quote;
}

.photo-quote li {
  display: grid;
  gap: 4px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  counter-increment: quote;
}

.photo-quote li::before {
  color: var(--brass);
  content: "0" counter(quote);
  font-family: Georgia, serif;
  font-size: 17px;
}

.directory-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  color: var(--white);
  background: var(--green-deep);
}

.directory-intro {
  padding: 96px max(42px, calc((100vw - var(--max)) / 2));
}

.directory-intro h2 {
  font-size: 46px;
}

.directory-intro > p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 15px;
}

.directory-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.directory-links a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  transition: background-color 180ms ease;
}

.directory-links a:hover,
.directory-links a:focus-visible {
  background: var(--green-soft);
}

.directory-links span {
  color: var(--brass);
  font-size: 10px;
  font-weight: 900;
}

.directory-links strong {
  font-size: 21px;
}

.reference-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8%;
}

.reference-links {
  display: grid;
  align-self: start;
  border-top: 1px solid var(--line);
}

.reference-links a {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 108px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.reference-links span {
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
}

.reference-links strong {
  font-size: 16px;
}

.reference-links i {
  color: var(--brass);
  font-size: 20px;
  font-style: normal;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8%;
  border-top: 1px solid var(--line);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 14px;
  align-items: center;
  min-height: 80px;
  padding: 12px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 17px;
}

.faq-list details p {
  margin: 0;
  padding: 0 38px 28px 56px;
  color: var(--gray);
  font-size: 14px;
}

.campaign-section {
  padding-top: 40px;
}

.campaign {
  position: relative;
  display: block;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
  isolation: isolate;
}

.campaign img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.campaign::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 23, 53, 0.54);
  content: "";
}

.campaign-copy {
  position: absolute;
  right: 6%;
  bottom: 9%;
  left: 6%;
  max-width: 760px;
  padding-left: 28px;
  border-left: 3px solid var(--brass);
}

.campaign-copy p {
  margin: 0 0 14px;
  color: #e8eaf6;
  font-size: 11px;
  font-weight: 900;
}

.campaign-copy h2 {
  margin: 0;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.35;
}

.campaign-copy span {
  display: inline-block;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 800;
}

.campaign:hover img,
.campaign:focus-visible img {
  transform: scale(1.015);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding: 88px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--green);
}

.final-cta h2 {
  font-size: 46px;
}

.final-cta p:last-child {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.final-actions {
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.65fr 1fr 0.9fr;
  gap: 40px;
  padding: 54px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  color: #626879;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand img {
  width: 145px;
}

.footer-brand strong {
  color: var(--green);
  font-size: 14px;
}

.footer-info,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
  text-decoration: underline;
}

.copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #626879;
  font-size: 10px;
}

.mobile-contact {
  display: none;
}

.elastic-company-page {
  background: var(--paper);
}

.elastic-company-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 54px;
  align-items: stretch;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 72px;
}

.elastic-company-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.elastic-company-hero h1 {
  margin: 0;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.elastic-company-hero p {
  margin: 24px 0 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.85;
}

.elastic-company-actions,
.elastic-company-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.elastic-company-actions .button,
.elastic-company-card-actions .button {
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.elastic-company-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--green-deep);
}

.elastic-company-visual img {
  height: 100%;
  object-fit: cover;
}

.elastic-company-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(17, 23, 53, 0.82);
  font-size: 12px;
  line-height: 1.55;
}

.elastic-company-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.elastic-company-facts div {
  min-width: 0;
  padding: 26px max(20px, calc((100vw - var(--max)) / 8));
  border-right: 1px solid var(--line);
}

.elastic-company-facts div:last-child {
  border-right: 0;
}

.elastic-company-facts span {
  display: block;
  color: var(--brass);
  font-size: 10px;
  font-weight: 900;
}

.elastic-company-facts strong {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: var(--green-deep);
  font-size: 18px;
  line-height: 1.4;
}

.elastic-company-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.elastic-company-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.elastic-company-heading h2 {
  margin: 0;
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.32;
}

.elastic-company-heading p {
  margin: 22px 0 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.85;
}

.elastic-company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.elastic-company-grid article {
  min-width: 0;
  min-height: 210px;
  padding: 28px;
  background: var(--white);
}

.elastic-company-grid span {
  color: var(--brass);
  font-size: 10px;
  font-weight: 900;
}

.elastic-company-grid h3 {
  margin: 34px 0 0;
  font-size: 19px;
  line-height: 1.4;
}

.elastic-company-grid p {
  margin: 10px 0 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

.elastic-company-split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.elastic-company-note {
  padding: 24px 26px;
  border-left: 3px solid var(--brass);
  background: var(--ivory);
}

.elastic-company-note strong {
  display: block;
  color: var(--green-deep);
  font-size: 14px;
}

.elastic-company-note p {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.elastic-company-steps {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.elastic-company-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-width: 0;
  padding: 23px 26px;
  background: var(--white);
  list-style: none;
}

.elastic-company-steps span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 20px;
}

.elastic-company-steps strong,
.elastic-company-steps p {
  margin: 0;
}

.elastic-company-steps p {
  margin-top: 5px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.elastic-company-final {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 84px;
  padding: 52px;
  color: var(--white);
  background: var(--green-deep);
}

.elastic-company-final h2,
.elastic-company-final p {
  margin: 0;
}

.elastic-company-final h2 {
  font-family: "Noto Serif KR", Batang, Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.35;
}

.elastic-company-final p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    gap: 18px;
  }

  .header-cta {
    margin-left: 18px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .standard-section {
    gap: 48px;
  }

  .standard-photo {
    min-height: 690px;
  }

  .photo-quote {
    grid-template-columns: 1fr;
  }

  .photo-quote ol {
    max-width: 620px;
  }

  .photo-quote .button {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .brand img {
    width: 126px;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    grid-template-columns: 24px auto;
    grid-template-rows: repeat(3, 4px);
    column-gap: 8px;
    align-items: center;
    min-width: 68px;
    min-height: 44px;
    padding: 8px;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    grid-column: 1;
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle b {
    grid-column: 2;
    grid-row: 1 / 4;
    font-size: 12px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 101;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
    padding: 18px 24px 110px;
    background: var(--white);
    overflow-y: auto;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    height: auto;
    min-height: 62px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-mobile-meta {
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding: 26px 0 10px;
    border-top: 1px solid var(--ink);
  }

  .nav-mobile-meta span {
    color: var(--green-soft);
    font-size: 11px;
    font-weight: 800;
  }

  .nav-mobile-meta a {
    justify-content: flex-start;
    min-height: 0;
    border: 0;
    color: var(--green-deep);
    font-family: Georgia, serif;
    font-size: 24px;
    line-height: 1.35;
  }

  .nav-mobile-meta small {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.6;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-shade::after {
    right: 20%;
  }

  .hero-content {
    padding-top: 9vh;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-slogan {
    font-size: 31px;
  }

  .hero-index {
    display: none;
  }

  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }

  .signal-strip > div:nth-child(2) {
    border-right: 0;
  }

  .signal-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 90px 0;
  }

  .section-heading h2,
  .process-copy h2,
  .finish-copy h2,
  .truth-title h2,
  .directory-intro h2,
  .final-cta h2,
  .field-journal-heading h2,
  .result-gallery-heading h2 {
    font-size: 42px;
  }

  .field-journal-heading {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
  }

  .field-journal-heading .eyebrow {
    grid-row: auto;
    padding-top: 0;
  }

  .result-gallery-heading {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
  }

  .result-gallery-heading .eyebrow {
    grid-row: auto;
    padding-top: 0;
  }

  .result-gallery-grid {
    grid-template-columns: 1fr;
  }

  .result-gallery-secondary {
    margin-top: 0;
  }

  .result-gallery-item img,
  .result-gallery-secondary img {
    height: 520px;
  }

  .field-journal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 300px);
  }

  .journal-item-wide {
    grid-column: 1 / 3;
  }

  .journal-item-tall {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .journal-item:nth-child(3),
  .journal-item:nth-child(4) {
    grid-column: 1;
  }

  .campaign {
    min-height: 560px;
  }

  .standard-section,
  .finish-section,
  .reference-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .standard-photo {
    grid-column: auto;
    grid-row: auto;
    min-height: 560px;
  }

  .standard-list {
    grid-template-columns: 1fr 1fr;
  }

  .standard-list article:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid var(--line);
  }

  .standard-list article:nth-child(even) {
    padding-left: 24px;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

  .process-media {
    min-height: 600px;
  }

  .process-copy {
    padding: 70px 24px;
  }

  .truth-title {
    grid-template-columns: 1fr;
  }

  .estimate-grid {
    grid-template-columns: 1fr 1fr;
  }

  .estimate-grid article:nth-child(2) {
    border-right: 0;
  }

  .estimate-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .directory-section {
    grid-template-columns: 1fr;
  }

  .directory-intro {
    padding: 80px 24px;
  }

  .directory-links {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .reference-links a {
    grid-template-columns: 120px 1fr auto;
  }

  .faq-section {
    gap: 48px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .elastic-company-hero,
  .elastic-company-split {
    grid-template-columns: 1fr;
  }

  .elastic-company-hero h1 {
    font-size: 46px;
  }

  .elastic-company-facts,
  .elastic-company-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(52px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  .hero {
    min-height: 650px;
    max-height: none;
  }

  .hero-image {
    object-position: 42% center;
  }

  .hero-shade {
    background: rgba(17, 23, 53, 0.52);
  }

  .hero-shade::after {
    right: 0;
    background: rgba(17, 23, 53, 0.24);
  }

  .hero-content {
    width: calc(100% - 40px);
    padding: 74px 0 64px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-slogan {
    font-size: 27px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .signal-strip > div {
    grid-template-columns: 34px 1fr;
    min-height: 92px;
    padding: 18px 14px;
  }

  .signal-strip span {
    font-size: 19px;
  }

  .signal-strip strong {
    font-size: 13px;
  }

  .signal-strip small {
    font-size: 10px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 64px 0;
  }

  .section-heading h2,
  .process-copy h2,
  .finish-copy h2,
  .truth-title h2,
  .directory-intro h2,
  .final-cta h2,
  .field-journal-heading h2,
  .result-gallery-heading h2 {
    font-size: 32px;
  }

  .section-heading > p:last-child,
  .finish-copy > p,
  .directory-intro > p {
    color: #56625e;
    font-size: 14px;
  }

  .estimate-section .section-heading h2,
  .reference-section .section-heading h2,
  .faq-section .section-heading h2 {
    font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 30px;
    font-weight: 750;
    line-height: 1.42;
  }

  .standard-section {
    gap: 36px;
  }

  .standard-photo {
    min-height: 460px;
  }

  .standard-photo figcaption {
    min-width: 0;
    padding: 16px 18px;
  }

  .standard-list {
    grid-template-columns: 1fr;
  }

  .standard-list article:nth-child(odd),
  .standard-list article:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .process-media {
    min-height: 470px;
  }

  .process-media img {
    object-position: 63% center;
  }

  .process-stamp {
    padding: 18px 22px;
  }

  .process-copy {
    padding: 60px 20px 70px;
  }

  .comparison-section {
    width: 100%;
  }

  .comparison-section .section-heading {
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .comparison {
    margin-top: 38px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .comparison::-webkit-scrollbar,
  .campaign::-webkit-scrollbar {
    height: 4px;
  }

  .comparison::-webkit-scrollbar-track,
  .campaign::-webkit-scrollbar-track {
    background: var(--gray-light);
  }

  .comparison::-webkit-scrollbar-thumb,
  .campaign::-webkit-scrollbar-thumb {
    background: var(--brass);
  }

  .comparison img {
    width: 100%;
    max-width: 100%;
  }

  .comparison figcaption {
    width: 100%;
  }

  .field-journal {
    width: calc(100% - 40px);
    padding-top: 18px;
  }

  .field-journal-heading {
    margin-bottom: 30px;
  }

  .field-journal-heading > p:last-child {
    font-size: 14px;
  }

  .field-journal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .journal-item,
  .journal-item-wide,
  .journal-item-tall,
  .journal-item:nth-child(3),
  .journal-item:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    min-height: 360px;
  }

  .journal-item-tall {
    min-height: 470px;
  }

  .journal-item figcaption {
    padding: 22px 20px;
  }

  .field-journal-note {
    text-align: left;
  }

  .result-gallery {
    padding: 58px 20px;
  }

  .result-gallery-heading {
    margin-bottom: 30px;
  }

  .result-gallery-heading > p:last-child {
    font-size: 14px;
  }

  .result-gallery-grid {
    gap: 14px;
  }

  .result-gallery-item img,
  .result-gallery-secondary img {
    height: 390px;
  }

  .result-gallery-item figcaption {
    padding: 22px 20px 24px;
  }

  .result-gallery-item figcaption strong {
    font-size: 17px;
  }

  .result-gallery-note {
    text-align: left;
  }

  .timeline p,
  .truth-column li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
  }

  .directory-intro > p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
  }

  .truth-section {
    padding: 58px 20px;
  }

  .truth-columns {
    grid-template-columns: 1fr;
  }

  .truth-column,
  .truth-column + .truth-column {
    padding: 34px 0;
    border-left: 0;
  }

  .truth-column + .truth-column {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .finish-section {
    gap: 36px;
  }

  .tone-list {
    grid-template-columns: 1fr;
  }

  .estimate-grid {
    grid-template-columns: 1fr;
  }

  .estimate-grid article,
  .estimate-grid article:nth-child(2) {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .estimate-grid article:last-child {
    border-bottom: 0;
  }

  .estimate-grid h3 {
    margin-top: 24px;
  }

  .photo-quote {
    padding: 30px 24px;
  }

  .photo-quote ol {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .photo-quote .button {
    width: 100%;
  }

  .directory-links a {
    min-height: 130px;
    padding: 24px 18px;
  }

  .directory-links strong {
    font-size: 16px;
  }

  .reference-links a {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    padding: 22px 0;
  }

  .reference-links span {
    grid-column: 1;
  }

  .reference-links strong {
    grid-column: 1;
  }

  .reference-links i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr 22px;
    font-size: 14px;
  }

  .faq-list details p {
    padding-left: 44px;
  }

  .campaign-section {
    width: 100%;
    padding-top: 10px;
  }

  .campaign {
    min-height: 560px;
    overflow: hidden;
  }

  .campaign img {
    width: 100%;
    max-width: 100%;
    object-position: 58% center;
  }

  .campaign-copy {
    right: 20px;
    bottom: 42px;
    left: 20px;
    padding-left: 18px;
  }

  .campaign-copy h2 {
    font-size: 29px;
  }

  .campaign-copy span {
    font-size: 13px;
  }

  .final-cta {
    padding: 58px 20px;
  }

  .final-actions .button {
    flex: 1 1 100%;
  }

  .final-actions .button.light {
    min-height: 44px;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 46px 20px 28px;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
  }

  .elastic-company-hero,
  .elastic-company-section,
  .elastic-company-final {
    width: calc(100% - 40px);
  }

  .elastic-company-hero {
    gap: 30px;
    padding: 62px 0 52px;
  }

  .elastic-company-hero h1 {
    font-size: 34px;
  }

  .elastic-company-hero p,
  .elastic-company-heading p {
    font-size: 14px;
  }

  .elastic-company-visual {
    min-height: 380px;
  }

  .elastic-company-facts,
  .elastic-company-grid {
    grid-template-columns: 1fr;
  }

  .elastic-company-facts div {
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .elastic-company-facts div:last-child {
    border-bottom: 0;
  }

  .elastic-company-section {
    padding: 64px 0;
  }

  .elastic-company-heading h2,
  .elastic-company-final h2 {
    font-size: 30px;
  }

  .elastic-company-grid article {
    min-height: 170px;
    padding: 24px 22px;
  }

  .elastic-company-steps {
    padding: 0;
  }

  .elastic-company-steps li {
    grid-template-columns: 42px 1fr;
    padding: 22px 20px;
  }

  .elastic-company-final {
    margin-bottom: 70px;
    padding: 34px 22px;
  }

  .elastic-company-actions .button,
  .elastic-company-card-actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(52px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--green-deep);
    box-shadow: 0 -10px 26px rgba(17, 23, 53, 0.18);
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .mobile-contact.is-hidden,
  .mobile-contact.is-suppressed,
  body.menu-open .mobile-contact {
    visibility: hidden;
    transform: translateY(105%);
  }

  .mobile-contact:focus-within {
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-contact a {
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-contact a + a {
    color: #211e00;
    background: var(--kakao);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
