:root {
  color-scheme: light;
  --ink: #3f2f2c;
  --muted: #806e68;
  --soft: #a58f85;
  --line: #eaded5;
  --paper: #fffaf5;
  --shell: #f8eee8;
  --card: #fffdf9;
  --rose: #df8c9b;
  --rose-soft: #f7dbe1;
  --gold: #f1c96e;
  --sage: #90b9a8;
  --shadow: 0 24px 70px rgba(92, 64, 55, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(247, 219, 225, 0.72), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(241, 201, 110, 0.28), transparent 24rem),
    linear-gradient(180deg, var(--shell), var(--paper) 46%, #fff);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(20px, 6vw, 86px);
  width: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: block;
  height: 42px;
  object-fit: contain;
  width: auto;
}

.brand-mark-ko {
  display: none;
}

:lang(ko) .brand-mark-en {
  display: none;
}

:lang(ko) .brand-mark-ko {
  display: block;
}

.language-menu {
  position: relative;
  z-index: 10;
}

.language-trigger {
  align-items: center;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(92, 64, 55, 0.10);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 14px;
  min-height: 42px;
  min-width: 172px;
  padding: 8px 14px;
  text-align: left;
}

.language-trigger strong {
  color: var(--muted);
  flex: 1;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.language-trigger:focus-visible,
.language-options button:focus-visible {
  outline: 3px solid rgba(223, 140, 155, 0.48);
  outline-offset: 2px;
}

.language-chevron {
  border-bottom: 1.8px solid var(--rose);
  border-right: 1.8px solid var(--rose);
  height: 7px;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  width: 7px;
}

.language-trigger[aria-expanded="true"] .language-chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.language-options {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  min-width: 188px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
}

.language-options[hidden] {
  display: none;
}

.language-options button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(234, 222, 213, 0.7);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  min-height: 48px;
  padding: 12px 42px 12px 16px;
  position: relative;
  text-align: left;
}

.language-options button:last-child {
  border-bottom: 0;
}

.language-options button:hover,
.language-options button.is-active {
  background: #fff4f2;
}

.language-options button.is-active::after {
  color: var(--rose);
  content: "✓";
  font-size: 1.1rem;
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  min-height: min(720px, calc(100vh - 76px));
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 86px) clamp(56px, 8vw, 96px);
}

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

.eyebrow {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.2rem, 9vw, 8.2rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.36rem);
  max-width: 650px;
}

.actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.actions {
  margin-top: 30px;
}

.hero-badges {
  margin-top: 24px;
}

.hero-badges span {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  min-height: 40px;
  padding: 8px 13px;
}

.hero-badges span:first-child {
  background: var(--rose-soft);
  border-color: rgba(223, 140, 155, 0.35);
}

.primary-action,
.secondary-action,
.email-link {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.primary-action {
  background: var(--ink);
  color: #fff;
}

.secondary-action,
.email-link {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
}

.app-visual {
  align-items: center;
  aspect-ratio: 0.92;
  background:
    radial-gradient(circle at 50% 40%, #fff 0 24%, transparent 25%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.95), rgba(248, 238, 232, 0.82));
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  display: grid;
  justify-items: center;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.hero-rabbit {
  filter: drop-shadow(0 20px 28px rgba(92, 64, 55, 0.17));
  max-width: min(280px, 70%);
  position: relative;
  z-index: 2;
}

.orbit {
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(92, 64, 55, 0.13);
  height: 58px;
  object-fit: contain;
  padding: 10px;
  position: absolute;
  width: 58px;
}

.orbit-one {
  left: 12%;
  top: 18%;
}

.orbit-two {
  right: 13%;
  top: 24%;
}

.orbit-three {
  bottom: 25%;
  left: 18%;
}

.visual-panel {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  bottom: 24px;
  box-shadow: 0 18px 38px rgba(92, 64, 55, 0.12);
  display: grid;
  gap: 4px;
  left: 24px;
  padding: 16px 18px;
  position: absolute;
  right: 24px;
  z-index: 3;
}

.visual-panel span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
}

.visual-panel strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.28;
}

.content-band,
.gallery-band,
.contact-band,
.document {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 36px);
}

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

.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-grid article,
.rabbit-gallery figure {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(92, 64, 55, 0.08);
  margin: 0;
  padding: 22px;
}

.feature-grid img {
  height: 54px;
  margin-bottom: 18px;
  object-fit: contain;
  width: 54px;
}

.feature-grid p,
.document p,
.contact-band p {
  color: var(--muted);
}

.rabbit-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.rabbit-gallery figure {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 210px;
  text-align: center;
}

.rabbit-gallery img {
  height: 128px;
  object-fit: contain;
  width: 128px;
}

.rabbit-gallery figcaption {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  margin-top: 10px;
}

.contact-band {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.document {
  max-width: 860px;
  padding-top: 72px;
}

.document h1 {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 0.98;
}

.updated {
  color: var(--soft);
  font-weight: 850;
  margin-bottom: 42px;
}

.document section {
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(234, 222, 213, 0.78);
  border-radius: 18px;
  margin-bottom: 12px;
  padding: 20px 22px;
}

.document h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.document p:last-child {
  margin-bottom: 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(234, 222, 213, 0.8);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 86px);
}

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

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

.footer-links a[aria-current="page"] {
  color: var(--rose);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .app-visual {
    min-height: 340px;
  }

  .feature-grid,
  .rabbit-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .language-menu,
  .language-trigger,
  .language-options {
    width: 100%;
  }

  .feature-grid,
  .rabbit-gallery {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    height: 34px;
    max-width: 220px;
  }
}
