/* =========================================================
   MOOTH WINE STUDIO — style.css
   ========================================================= */

:root {
  --color-bg: #F6F1E9;          /* ivory / off-white */
  --color-text: #2B2A28;        /* near-black warm gray */
  --color-text-soft: #5B564D;
  --color-green: #2F4A3D;       /* deep green - main accent */
  --color-green-soft: #4C6B5B;
  --color-wine: #6B1E2C;        /* wine red - very limited use */
  --color-line: #DCD3C0;
  --color-card-bg: #FFFDF9;

  --font-display: 'Noto Sans KR', sans-serif;
  --font-body: 'Noto Sans KR', sans-serif;

  --container-max: 420px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-green);
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.page {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Reveal on scroll (fade only) ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------------- Hero / Intro ---------------- */

.hero {
  padding: 72px 0 40px;
  text-align: center;
}

.hero__brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 9.2vw;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--color-text);
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin: 0 0 28px;
  color: var(--color-green);
  white-space: nowrap;
}

.hero__desc {
  font-size: 14.5px;
  color: var(--color-text-soft);
  margin: 0 0 18px;
  line-height: 1.8;
}

/* ---------------- Link list (linktree style) ---------------- */

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 40px;
}

.links--contact {
  padding-top: 8px;
  padding-bottom: 64px;
}

.links__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  margin: 0 0 4px;
}

.link-card {
  display: block;
  background: var(--color-card-bg);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  padding: 20px 22px;
  transition: border-color 0.25s ease, transform 0.15s ease, background-color 0.25s ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: var(--color-green);
  transform: translateY(-2px);
}

.link-card__badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-green);
  background: rgba(47, 74, 61, 0.08);
  border-radius: 20px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.link-card__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.link-card__desc {
  display: block;
  font-size: 13.5px;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.link-card--contact {
  text-align: center;
  padding: 16px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--color-green);
  border-color: var(--color-green);
}

.link-card--contact:hover,
.link-card--contact:focus-visible {
  background: var(--color-green);
  color: var(--color-bg);
}

/* ---------------- About ---------------- */

.about-card {
  text-align: center;
  background: var(--color-card-bg);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  padding: 28px 22px;
}

.about__photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background-color: var(--color-line);
  background-size: cover;
  background-position: center top;
  border: 1px solid var(--color-line);
}

.about__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-text);
  margin: 0 0 6px;
}

.about__role {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--color-green);
  margin: 0 0 28px;
}

.about__section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
  margin: 0 0 14px;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  list-style: none;
  margin: 0;
  padding: 0;
}

.about__list li {
  padding: 0;
}

/* ---------------- Footer ---------------- */

.footer {
  text-align: center;
  padding: 40px 24px 36px;
  background: var(--color-green);
  color: #E9E2D4;
}

.footer__brand {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  font-size: 13px;
  margin: 0 0 8px;
}

.footer__copy {
  font-size: 11.5px;
  color: rgba(233, 226, 212, 0.7);
  margin: 0;
}

/* =========================================================
   Larger screens (tablet / desktop) — same content, wider canvas
   ========================================================= */

@media (min-width: 700px) {
  :root {
    --container-max: 520px;
  }

  .hero { padding: 100px 0 48px; }
  .hero__brand { font-size: 52px; }
  .hero__title { font-size: 16px; }

  .link-card {
    padding: 24px 28px;
  }
}
