@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

:root {
  --white: #ffffff;
  --ash: #f4f4f4;
  --carbon: #171a20;
  --graphite: #393c41;
  --pewter: #5c5e62;
  --line: rgba(23, 26, 32, 0.12);
  --blue: #3e6ae1;
  --honey: #c8922d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--carbon);
  background: var(--white);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  transition:
          background-color .33s cubic-bezier(.5,0,0,.75),
          height .33s cubic-bezier(.5,0,0,.75);
}

.site-header.scrolled {
  height: 64px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 148px;
  height: 60px;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  max-height: 54px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: contrast(1.05);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 40px;
  margin-right: auto;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.header-actions a,
.menu-btn {
  min-height: 32px;
  padding: 7px 16px;
  border-radius: 4px;
  transition: background-color .33s cubic-bezier(.5,0,0,.75);
}

.desktop-nav a:hover,
.header-actions a:hover,
.menu-btn:hover {
  background: rgba(23,26,32,.06);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.menu-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 200;
  width: min(390px, 100%);
  padding: 34px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.5,0,0,.75);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  padding: 16px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
}

.close-btn {
  align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 34px;
  cursor: pointer;
}

.section-full {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
  background:
          radial-gradient(circle at 50% 42%, rgba(200,146,45,.18), transparent 28%),
          linear-gradient(180deg, #ffffff 0%, #f7f7f7 50%, #eeeeee 100%);
}

.mountain-line {
  position: absolute;
  top: 17%;
  left: 50%;
  width: min(760px, 86vw);
  height: 260px;
  transform: translateX(-50%);
  opacity: .14;
  /*background:*/
  /*        linear-gradient(135deg, transparent 44%, #171a20 45% 46%, transparent 47%) 0 80px / 180px 120px repeat-x,*/
  /*        linear-gradient(45deg, transparent 44%, #171a20 45% 46%, transparent 47%) 20px 60px / 210px 130px repeat-x;*/
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pewter);
}

.hero h1,
section h2 {
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
}

.hero-desc {
  max-width: 560px;
  margin: 24px auto 32px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--graphite);
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 42px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition:
          background-color .33s cubic-bezier(.5,0,0,.75),
          color .33s cubic-bezier(.5,0,0,.75);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #3457ba;
}

.btn-secondary {
  background: #fff;
  color: var(--graphite);
}

.btn-secondary:hover {
  background: #e8e8e8;
}

.scroll-text {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--pewter);
}

.brand-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 7vw;
  background: var(--carbon);
  color: #fff;
}

.section-copy {
  max-width: 620px;
}

.section-copy .eyebrow,
.contact-card .eyebrow {
  color: rgba(255,255,255,.62);
}

section h2 {
  font-size: clamp(38px, 5.2vw, 72px);
}

.section-copy p:not(.eyebrow),
.contact-card p:not(.eyebrow) {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,.74);
}

.brand-panel {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.16);
}

.brand-panel div {
  min-height: 150px;
  padding: 30px;
  background: var(--carbon);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-panel strong {
  color: var(--honey);
  font-size: 14px;
}

.brand-panel span {
  font-size: 24px;
  font-weight: 600;
}

.products-section {
  padding: 120px 7vw;
  background: #fff;
}

.section-head {
  margin-bottom: 42px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 520px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #ddd;
}

/*.category-card::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*}*/

.category-card.signature::before {
  background:
          radial-gradient(circle at 55% 36%, rgba(255,215,128,.86), transparent 18%),
          linear-gradient(150deg, #f5efe2 0%, #d19b3f 47%, #5a3718 100%);
}

.category-card.gift::before {
  background:
          linear-gradient(135deg, rgba(255,255,255,.36), transparent 35%),
          linear-gradient(160deg, #1e1f22 0%, #695039 48%, #d6b06a 100%);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
}

.category-content {
  position: relative;
  z-index: 2;
  padding: 38px;
  color: #fff;
}

.category-content p {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .78;
}

.category-content h3 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -.04em;
}

.category-content span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.category-content a {
  display: inline-flex;
  margin-top: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
}

.contact-section {
  padding: 120px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ash);
  text-align: center;
}

.contact-card {
  width: min(760px, 100%);
  padding: 72px 40px;
  border-radius: 12px;
  background: var(--carbon);
  color: #fff;
}

.contact-card img {
  width: 220px;
  margin-bottom: 34px;
  filter: invert(1);
  opacity: .92;
}

.contact-card .btn {
  margin-top: 34px;
}

.site-footer {
  background: #f1f2f3;
  padding: 72px 64px 60px;
  color: #263238;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.footer-links a {
  color: #263238;
  text-decoration: none;
}

.footer-social p,
.footer-newsletter p {
  margin: 0 0 28px;
}

.social-icons {
  display: flex;
  gap: 28px;
  font-size: 28px;
  color: #555;
}

.footer-newsletter input {
  width: 300px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid #555;
  background: transparent;
  display: block;
  margin-bottom: 16px;
}

.footer-newsletter button {
  width: 300px;
  height: 42px;
  border: 0;
  background: #555;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 10px;
  max-width: 820px;
}

.footer-bottom strong {
  display: block;
  margin-bottom: 28px;
  color: #000;
}

.footer-bottom p {
  font-size: 13px;
  line-height: 1.45;
  color: #34444c;
  margin: 0 0 20px;
}

.footer-bottom a {
  color: #263238;
  text-decoration: underline;
}

.payment {
  font-weight: 700;
  color: #555 !important;
}

.footer-logo {
  margin-top: 44px;
  font-size: 32px;
  line-height: .85;
  font-weight: 800;
  color: #111;
}

.footer-logo span {
  font-size: 14px;
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .brand-logo {
    width: 122px;
    height: 52px;
  }

  .brand-logo img {
    max-height: 44px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 72px);
  }

  .btn {
    width: min(100%, 280px);
  }

  .brand-section {
    grid-template-columns: 1fr;
    padding: 92px 24px;
    gap: 40px;
  }

  .products-section {
    padding: 92px 24px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 420px;
  }

  .contact-card {
    padding: 54px 24px;
  }

  .contact-card img {
    width: 180px;
  }

  .site-footer {
    padding: 48px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }

  .footer-bottom {
    margin-top: 64px;
  }
}
.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: opacity .3s ease;
}

.social-icons a:hover {
  opacity: .6;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}