:root {
  --ink: #182019;
  --green: #123f2a;
  --green-deep: #0c2e20;
  --cream: #f4f0e6;
  --paper: #fbfaf6;
  --red: #a44737;
  --line: rgba(18, 63, 42, 0.18);
  --muted: #69736b;
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans KR", "Apple SD Gothic Neo", sans-serif;
  line-height: 1.68;
  word-break: keep-all;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: 80px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(18, 63, 42, 0.1);
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--green);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 30px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding-block: 8px;
}

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

nav a:hover::after,
nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  min-height: auto;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 5vw;
  padding-block: 52px 70px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 28px;
  font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.7rem, 5.2vw, 5.1rem);
}

h2 {
  font-size: clamp(2.05rem, 3.4vw, 3.5rem);
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 38px;
  color: #4f5b52;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button-ghost:hover {
  color: var(--cream);
  background: var(--green);
}

.hero-photo {
  position: relative;
  margin: 0;
  min-height: 580px;
  overflow: hidden;
  border-radius: 240px 240px 26px 26px;
  color: var(--cream);
  background: var(--green-deep);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 23, 16, 0.72));
  content: "";
}

.hero-photo > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 18px;
}

.hero-photo figcaption span {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.hero-photo figcaption strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.photo-branch {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: 34px;
  width: 88px;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.photo-branch circle {
  fill: var(--red);
  stroke: var(--red);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
}

.section-heading .eyebrow {
  margin-top: 14px;
}

.service-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 220px;
  padding: 34px 34px 20px 0;
  border-right: 1px solid var(--line);
}

.service-card + .service-card {
  padding-left: 34px;
}

.service-card:last-child {
  border-right: 0;
}

.service-card-top > span,
.tech-item > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card-top {
  display: flex;
  min-height: 58px;
  align-items: flex-start;
  justify-content: space-between;
}

.service-icon {
  width: 54px;
  height: 54px;
  color: var(--red);
}

.service-card h3,
.tech-item h3 {
  margin: 28px 0 18px;
  font-family: "Nanum Myeongjo", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.craft-strip {
  display: grid;
  margin-top: 28px;
  padding: 24px 30px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-radius: 16px;
  color: var(--cream);
  background: var(--green);
}

.craft-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.craft-strip svg {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: #d8b79b;
}

.craft-strip p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.craft-strip p span {
  display: block;
  margin-bottom: 3px;
  color: #d8b79b;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p,
.tech-item p {
  color: var(--muted);
}

.brand-section {
  color: var(--cream);
  background: var(--green-deep);
}

.brand-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 5vw;
}

.aden-card {
  position: relative;
  margin: 0;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 230, 0.16);
  border-radius: 16px 180px 16px 16px;
  background: #163b2a;
}

.aden-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 20, 13, 0.88));
  content: "";
}

.aden-card > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.aden-card figcaption {
  position: absolute;
  z-index: 1;
  right: 36px;
  bottom: 34px;
  left: 36px;
  color: var(--cream);
  text-align: left;
}

.aden-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  line-height: 1;
}

.aden-wordmark svg {
  width: 62px;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.aden-wordmark circle {
  fill: var(--red);
  stroke: var(--red);
}

.aden-card figcaption > p {
  margin: 22px 0 0;
  color: rgba(244, 240, 230, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.secondary-link {
  margin-left: 24px;
}

.brand-copy .eyebrow,
.technology-copy .eyebrow,
.contact-section .eyebrow {
  color: #cc7b68;
}

.brand-intro {
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 650;
}

.brand-copy > p:not(.eyebrow):not(.brand-intro) {
  color: rgba(244, 240, 230, 0.68);
}

.store-info {
  margin: 42px 0 36px;
  border-top: 1px solid rgba(244, 240, 230, 0.18);
}

.store-info div {
  display: grid;
  padding: 17px 0;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid rgba(244, 240, 230, 0.18);
}

.store-info dt {
  color: rgba(244, 240, 230, 0.48);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-info dd {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.technology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5vw;
}

.technology-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.technology-copy > p:last-of-type {
  color: var(--muted);
}

.technology-mark {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.technology-mark img {
  display: block;
  width: 100%;
  height: auto;
}

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

.tech-item {
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--line);
}

.tech-item h3 {
  margin: 22px 0 12px;
}

.data-note {
  margin-top: 30px;
  padding: 26px 28px;
  border-left: 3px solid var(--red);
  background: var(--cream);
}

.data-note strong {
  font-family: "Nanum Myeongjo", Georgia, serif;
  font-size: 1.25rem;
}

.data-note p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.contact-section {
  padding-block: 84px;
  color: var(--cream);
  background: var(--green);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 4vw;
}

.contact-layout h2 {
  margin-bottom: 0;
}

.contact-copy a {
  display: inline-block;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(244, 240, 230, 0.72);
  font-family: "Nanum Myeongjo", Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
}

.contact-copy p {
  margin-bottom: 0;
  color: rgba(244, 240, 230, 0.64);
}

.site-footer {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 24px;
}

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

.policy-shell {
  width: min(860px, calc(100vw - 48px));
  margin-inline: auto;
  padding: 100px 0 140px;
}

.policy-hero {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.policy-hero > p:last-child {
  color: var(--muted);
}

.policy-intro {
  margin: 48px 0 70px;
  padding: 30px;
  border-left: 3px solid var(--red);
  background: var(--cream);
  font-size: 1.08rem;
}

.policy-intro p {
  margin: 0;
}

.policy-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.policy-content p,
.policy-content li {
  color: #505c53;
}

.policy-content a {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content li + li {
  margin-top: 8px;
}

.google-policy {
  padding-inline: 30px !important;
  background: var(--cream);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .section-pad {
    padding-block: 56px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .site-header nav {
    gap: 16px;
  }

  .site-header nav a:nth-child(-n+2) {
    display: none;
  }

  .hero,
  .section-heading,
  .brand-layout,
  .technology,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    padding-block: 40px 56px;
  }

  .hero-photo {
    min-height: 400px;
  }

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

  .service-card,
  .service-card + .service-card {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card h3 {
    margin-top: 18px;
  }

  .craft-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aden-card {
    min-height: 380px;
  }

  .technology-copy {
    position: static;
    margin-bottom: 50px;
  }

  .technology-mark {
    margin-top: 30px;
  }

  .contact-layout {
    gap: 32px;
  }
}

@media (max-width: 520px) {
  body {
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  .brand {
    font-size: 0.68rem;
  }

  .site-header nav a:not(:last-child) {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-photo {
    min-height: 320px;
    border-radius: 180px 180px 20px 20px;
  }

  .aden-card {
    min-height: 320px;
    border-radius: 12px 110px 12px 12px;
  }

  .aden-wordmark svg {
    width: 48px;
  }

  .store-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  .policy-shell {
    width: min(100% - 36px, 680px);
    padding-top: 70px;
  }

  .policy-intro,
  .google-policy {
    padding-inline: 20px !important;
  }
}
