:root {
  --canvas: #f7f4ee;
  --paper: #fffdf8;
  --ink: #171717;
  --ink-soft: #4e504a;
  --line: #d8d1c3;
  --graphite: #232426;
  --graphite-2: #303235;
  --green: #1f5d4a;
  --blue: #155a8a;
  --amber: #b98232;
  --white: #ffffff;
  --shadow-photo: 0 28px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family:
    "Apple SD Gothic Neo", "Pretendard Variable", "Noto Sans KR", system-ui,
    sans-serif;
  line-height: 1.6;
  word-break: keep-all;
  text-rendering: geometricprecision;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 56px;
  color: var(--white);
}

.site-header.solid {
  position: sticky;
  color: var(--ink);
  background: rgba(247, 244, 238, 0.88);
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.site-header.solid .brand img {
  filter: none;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  opacity: 0.84;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #101113;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 12, 12, 0.86) 0%, rgba(11, 12, 12, 0.56) 46%, rgba(11, 12, 12, 0.08) 100%),
    linear-gradient(0deg, rgba(11, 12, 12, 0.78) 0%, rgba(11, 12, 12, 0) 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: 148px 56px 64px;
  animation: lift 520ms ease-out both;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 112px;
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.45;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button.secondary {
  color: var(--white);
}

.section,
.statement,
.proof-band,
.service-band,
.support-hero,
.support-content {
  padding-right: 56px;
  padding-left: 56px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.statement {
  padding-top: 96px;
  padding-bottom: 104px;
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: 56px;
  align-items: start;
}

.statement h2 {
  max-width: 760px;
}

.statement p:last-child {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.proof-band {
  padding-top: 96px;
  padding-bottom: 108px;
  color: var(--white);
  background: var(--graphite);
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.24);
}

.proof-grid article {
  min-height: 230px;
  padding: 30px;
  background: var(--graphite);
}

.proof-grid span {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 900;
}

.proof-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-band {
  padding-top: 96px;
  padding-bottom: 104px;
  background: #e9dfcf;
}

.service-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.service-list {
  display: grid;
  border-top: 1px solid rgba(23, 23, 23, 0.2);
}

.service-list a {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.2);
  text-decoration: none;
}

.service-list strong {
  color: var(--green);
  font-size: 15px;
}

.service-list span {
  color: var(--ink-soft);
}

.support-hero {
  padding-top: 100px;
  padding-bottom: 54px;
  background: var(--paper);
}

.support-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 68px;
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.support-hero h1 {
  color: var(--ink);
  font-size: 84px;
}

.support-hero .hero-copy {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.support-content {
  padding-top: 76px;
  padding-bottom: 106px;
}

.support-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 106px;
  padding: 28px;
  background: var(--graphite);
  color: var(--white);
}

.contact-panel .kicker {
  color: rgba(255, 255, 255, 0.58);
}

.contact-panel a {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.contact-panel p:last-child {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.support-list article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.support-list h2 {
  font-size: 30px;
}

.support-list p {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.text-links a {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 32px 56px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.footer-brand img {
  width: 24px;
  height: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
}

.business-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  max-width: 920px;
  margin: 0;
  padding: 0;
}

.business-info div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
}

.business-info dt,
.business-info dd {
  margin: 0;
}

.business-info dt {
  color: rgba(23, 23, 23, 0.58);
  font-weight: 800;
}

.business-info a {
  color: inherit;
}

.site-footer p {
  margin: 0;
}

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header,
  .section,
  .statement,
  .proof-band,
  .service-band,
  .support-hero,
  .support-content,
  .site-footer {
    padding-right: 32px;
    padding-left: 32px;
  }

  h1 {
    font-size: 86px;
  }

  h2 {
    font-size: 42px;
  }

  .statement-grid,
  .service-grid,
  .support-hero-grid,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .proof-grid article {
    min-height: 0;
  }

  .proof-grid span {
    margin-bottom: 30px;
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 26px;
    height: 26px;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 86svh;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 12, 12, 0.9), rgba(11, 12, 12, 0.54)),
      linear-gradient(0deg, rgba(11, 12, 12, 0.78) 0%, rgba(11, 12, 12, 0) 58%);
  }

  .hero-inner {
    padding: 120px 20px 40px;
  }

  h1 {
    font-size: 58px;
  }

  .support-hero h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 21px;
  }

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

  .section,
  .statement,
  .proof-band,
  .service-band,
  .support-hero,
  .support-content,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .statement,
  .proof-band,
  .service-band {
    padding-top: 68px;
    padding-bottom: 74px;
  }

  .service-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .support-hero {
    padding-top: 74px;
  }

  .support-content {
    padding-top: 54px;
    padding-bottom: 78px;
  }

  .contact-panel {
    padding: 22px;
  }

  .support-list h2 {
    font-size: 25px;
  }

  .business-info {
    grid-template-columns: 1fr;
  }

  .business-info div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
  }
}
