* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background: #f4f2ed;
  color: #2f2d2a;
}

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

/* =========================
   Header
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.site-logo,
.site-nav a {
  font-size: 12px;
  letter-spacing: .22em;
  color: #b4aea6;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 36px;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10vw;
}

.hero__content {
    max-width: 720px;
    margin-top: 3vh;
}

.hero__sub {
  font-size: 14px;
  letter-spacing: .08em;
  color: #9d968f;
  margin-bottom: 32px;
}

.hero__title {
    font-size: clamp(38px, 3.8vw, 60px);
    line-height: 1.22;
    font-weight: 300;
    letter-spacing: -0.045em;
    max-width: 720px;
}

.hero__scroll {
  position: absolute;
  left: 10vw;
  bottom: 48px;
  font-size: 18px;
  color: #b0a8a0;
}

/* =========================
   Philosophy
========================= */

.philosophy {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10vw;
}

.philosophy__text {
    font-size: clamp(30px, 3.2vw, 50px);
    line-height: 1.45;
}

/* =========================
   Reveal
========================= */

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

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

/* =========================
   Header Scroll
========================= */

.site-header.is-scrolled {
  backdrop-filter: blur(10px);
  background: rgba(244,242,237,.82);
}

/* =========================
   Mobile
========================= */

@media (max-width:768px){

.site-header{
    height:80px;
    padding:0 24px;
}

.site-nav{
    gap:20px;
}

.hero{
    padding:0 24px;
}

.hero__title{
    font-size:42px;
}

.hero__scroll{
    left:24px;
}

.philosophy{
    padding:0 24px;
}

.philosophy__text{
    font-size:38px;
}

}
