/* ---------- Typography System ---------- */

/* Import serif for editorial tone + Korean support */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;600&family=Noto+Serif+KR:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

html {
  font-size: 17px;
}

body {
  margin: 0;
  padding: 0;

  background: #fafafa;
  color: #111;

  font-family:
    "Source Serif 4",
    "Noto Serif KR",
    Georgia,
    serif;

  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* ---------- Layout ---------- */

.container {
  max-width: 720px;
  margin: 110px auto;
  padding: 0 28px;
}

/* ---------- Headings ---------- */

h1 {
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: -0.015em;
  margin-bottom: 3rem;
}

h2 {
  font-weight: 600;
  margin-top: 3rem;
}

/* ---------- Navigation ---------- */

nav {
  margin-bottom: 4rem;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans KR",
    sans-serif;

  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav a {
  margin-right: 22px;
  text-decoration: none;
  color: #444;
}

nav a:hover {
  color: #000;
}

/* ---------- Paragraphs ---------- */

p {
  margin: 1.6rem 0;
}

.intro {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #222;
}

/* ---------- Lists ---------- */

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 1.8rem;
}

li a {
  font-weight: 600;
  text-decoration: none;
  color: #111;
}

li a:hover {
  text-decoration: underline;
}

small {
  display: block;
  margin-top: 0.4rem;
  color: #666;
  font-size: 0.9rem;
}

/* ---------- Photography Grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.grid img {
  width: 100%;
  height: auto;
  display: block;
}

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

footer {
  margin-top: 6rem;
  font-size: 0.8rem;
  color: #888;
}
/* Video embed styling*/
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 2.5rem 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-label {
  margin-top: 4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}
