:root {
  --ink: #1f2421;
  --muted: #62645f;
  --paper: #f7f5ef;
  --line: #ddd8ca;
  --forest: #123a33;
  --green: #2b665a;
  --coral: #bd5f4f;
  --gold: #b99a58;
  --night: #081f25;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(18, 58, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #faf9f5 0, var(--paper) 720px, #ffffff 721px, #ffffff 100%);
  color: var(--ink);
  font-family: Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(31, 36, 33, 0.08);
  background: rgba(250, 249, 245, 0.86);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--forest);
  color: var(--white);
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(18, 58, 51, 0.18);
}

.brand-name {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 32px);
  color: #4e5550;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--forest);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid rgba(18, 58, 51, 0.22);
  border-radius: 4px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.56);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: min(820px, calc(100svh - 76px));
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 92px);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  left: clamp(20px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(18, 58, 51, 0.28), rgba(185, 154, 88, 0.52), transparent);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: keep-all;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 6.2vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(18, 58, 51, 0.2);
}

.button.secondary {
  background: transparent;
  color: var(--forest);
}

.hero-visual {
  margin: 0;
  justify-self: stretch;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  border: 1px solid rgba(18, 58, 51, 0.08);
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(18, 58, 51, 0.18);
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(18, 58, 51, 0.035), transparent 38%),
    var(--white);
}

.intro-media {
  margin: 0;
}

.intro-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.intro h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.13;
  letter-spacing: 0;
}

.intro > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.brand-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(31, 36, 33, 0.1);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.92)),
    var(--white);
  box-shadow: 0 18px 42px rgba(18, 58, 51, 0.06);
}

.brand-card::after {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 112px;
  height: 112px;
  content: "";
  border: 1px solid rgba(18, 58, 51, 0.12);
  opacity: 0.7;
}

.brand-card.song::after {
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 12px, rgba(43, 102, 90, 0.16) 13px 15px);
}

.brand-card.cafe::after {
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(185, 154, 88, 0.18), transparent);
}

.card-label {
  margin: 0 0 40px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.brand-card h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-card p:not(.card-label) {
  max-width: 540px;
  margin: 22px 0 36px;
  color: var(--muted);
  font-size: 17px;
}

.brand-card a {
  color: var(--forest);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.care-section {
  background:
    linear-gradient(180deg, #eef2ed, #f8f8f3 54%, #ffffff);
}

.care-section .section-heading {
  max-width: none;
}

.care-section .section-heading h2 {
  font-size: clamp(30px, 2.7vw, 38px);
  line-height: 1.18;
  white-space: nowrap;
}

.care-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(18, 58, 51, 0.24);
  border-bottom: 1px solid rgba(18, 58, 51, 0.14);
  background: rgba(255, 255, 255, 0.32);
}

.care-list article {
  position: relative;
  min-height: 230px;
  padding: clamp(28px, 3.6vw, 42px) clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(18, 58, 51, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
}

.care-list article::after {
  position: absolute;
  right: clamp(20px, 2.8vw, 34px);
  bottom: clamp(20px, 2.8vw, 34px);
  color: rgba(18, 58, 51, 0.08);
  content: attr(data-step);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 800;
  line-height: 1;
}

.care-list article:last-child {
  border-right: 0;
}

.care-list span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.care-list h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
}

.care-list p {
  margin: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(68px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 18%, rgba(189, 95, 79, 0.18), transparent 28%),
    linear-gradient(135deg, var(--forest), var(--night));
  color: var(--white);
}

.contact .section-kicker {
  color: #f0b4a6;
}

.contact h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 42px);
}

.contact-media {
  max-width: 560px;
  margin: 28px 0 0;
}

.contact-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

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

.contact-form {
  display: grid;
  gap: 16px;
  width: min(640px, 100%);
  justify-self: end;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(240, 180, 166, 0.72);
  outline-offset: 2px;
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #f0b4a6;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 38px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--night);
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 154px;
  height: auto;
}

.company-info {
  max-width: 980px;
  margin: 8px 0 0;
  color: rgba(216, 229, 231, 0.82);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer a {
  color: #d8e5e7;
  font-weight: 700;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 229, 231, 0.16);
  color: #9fb4b8;
  font-size: 13px;
  font-weight: 800;
}

.footer-policy-links a:hover {
  color: var(--gold);
}

.footer-policy-links button {
  padding: 0;
  color: #d8e5e7;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.footer-policy-links button:hover {
  color: var(--gold);
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #102024 !important;
  font-size: 12px;
  font-weight: 900;
}

.policy-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 25, 29, 0.58);
  backdrop-filter: blur(8px);
}

.policy-panel[hidden] {
  display: none;
}

.policy-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(23, 59, 52, 0.18);
}

.policy-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.policy-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 30px;
}

.policy-body {
  color: var(--muted);
  line-height: 1.75;
}

.policy-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.policy-template {
  display: none;
}

@keyframes care-image-drift {
  from {
    transform: scale(1.08) translate3d(-18px, 0, 0);
  }

  to {
    transform: scale(1.16) translate3d(22px, -12px, 0);
  }
}

@keyframes brand-signal {
  0%,
  30% {
    opacity: 0;
    transform: translateX(-40px);
  }

  52% {
    opacity: 1;
  }

  82%,
  100% {
    opacity: 0;
    transform: translateX(-360px);
  }
}

@keyframes care-light-sweep {
  0%,
  24% {
    opacity: 0;
    transform: rotate(13deg) translateX(-140%);
  }

  42% {
    opacity: 1;
  }

  72%,
  100% {
    opacity: 0;
    transform: rotate(13deg) translateX(520%);
  }
}

@keyframes care-sheen {
  0%,
  42% {
    background-position: 0 0, 120% 0;
  }

  72%,
  100% {
    background-position: 0 0, -80% 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .hero,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-visual {
    order: -1;
  }

  .brand-grid,
  .care-list {
    grid-template-columns: 1fr;
  }

  .contact {
    justify-items: start;
  }

  .contact-form {
    justify-self: stretch;
  }

  .site-footer {
    padding: 32px 18px;
  }

  .contact h2 {
    font-size: 30px;
  }

  .care-section .section-heading h2 {
    font-size: 30px;
    white-space: normal;
  }

  .care-list article {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 58, 51, 0.12);
  }

  .care-list article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-name {
    max-width: 190px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.08;
  }

  .brand-card {
    min-height: auto;
  }

  .care-section .section-heading h2 {
    font-size: 24px;
  }

  .contact h2 {
    font-size: 24px;
  }
}
