:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #F8F5EA;
  color: #3B2A20;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 234, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(165, 75, 45, 0.08);
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-word {
  font-weight: 800;
  font-size: 18px;
  color: #A54B2D;
  letter-spacing: -0.3px;
}

.nav-ig {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  color: #A54B2D;
  border: 1.5px solid #A54B2D;
  padding: 7px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-ig:hover {
  background: #A54B2D;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(60, 30, 15, 0.35) 0%, rgba(40, 20, 10, 0.25) 35%, rgba(20, 10, 5, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 64px;
  width: 100%;
  color: #fff;
}

.badge {
  display: inline-block;
  background: #F0A569;
  color: #3B2205;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.28;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
}

.cta-button {
  display: inline-block;
  background: #F0A569;
  color: #3B2205;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(240, 165, 105, 0.35);
  transition: transform 0.15s ease;
}

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

.cta-button.dark {
  background: #A54B2D;
  color: #fff;
  box-shadow: 0 8px 24px rgba(165, 75, 45, 0.3);
}

.ig-notice {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  padding: 10px 14px;
  max-width: 340px;
}

/* WAITLIST */
.waitlist {
  padding: 56px 24px;
  background: #fff;
}

.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-inner h2 {
  font-size: 26px;
  font-weight: 800;
  color: #A54B2D;
  margin: 0 0 10px;
}

.waitlist-inner > p {
  font-size: 15px;
  color: #6b5847;
  margin: 0 0 24px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input[type="email"] {
  flex: 1 1 260px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(165, 75, 45, 0.25);
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.waitlist-form input[type="email"]:focus {
  border-color: #F0A569;
}

.waitlist-form button {
  background: #A54B2D;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.waitlist-form button:hover {
  transform: translateY(-2px);
}

.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.waitlist-checkbox {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13.5px;
  color: #6b5847;
  cursor: pointer;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.waitlist-checkbox input {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #A54B2D;
}

.waitlist-checkbox span {
  flex: 1;
}

.waitlist-checkbox a {
  color: #A54B2D;
}

.waitlist-message {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  min-height: 20px;
}

.waitlist-message.success {
  color: #2f7d3c;
}

.waitlist-message.error {
  color: #c1462f;
}

/* FEATURES */
.features {
  padding: 72px 24px;
}

.features-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 760px) {
  .features-inner {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 6px 24px rgba(165, 75, 45, 0.08);
  text-align: center;
}

.feature-emoji {
  font-size: 40px;
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 800;
  color: #A54B2D;
  margin: 0 0 10px;
}

.feature p {
  font-size: 14.5px;
  color: #6b5847;
  margin: 0;
}

/* FOLLOW CTA */
.follow {
  text-align: center;
  padding: 80px 24px 96px;
  background: linear-gradient(180deg, #F8F5EA 0%, #F3E7D2 100%);
}

.follow h2 {
  font-size: 30px;
  font-weight: 800;
  color: #A54B2D;
  margin: 0 0 12px;
}

.follow p {
  font-size: 15.5px;
  color: #6b5847;
  margin: 0 0 28px;
}

/* FOOTER */
.site-footer {
  background: #2A1B12;
  color: rgba(255,255,255,0.6);
  padding: 28px 24px;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
}

.footer-inner nav a {
  color: rgba(255,255,255,0.6);
  margin-left: 20px;
}

.footer-inner nav a:hover {
  color: #fff;
}
