* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #1b1b1b;
  background: #f8f7f3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", Arial, sans-serif;
}

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

img {
  display: block;
  width: 100%;
}

button,
input {
  font: inherit;
}

.top-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  background: #171717;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 243, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1440px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
}

.logo {
  grid-column: 2;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a,
.header-actions a {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: #111;
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 690px;
  padding: 80px max(6vw, 24px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(20,20,20,.16), rgba(20,20,20,0)),
    url("../images/brand/hero.webp") center/cover no-repeat,
    #d8d2c8;
}

.hero-copy {
  width: min(620px, 100%);
  padding: 54px;
  background: rgba(248, 247, 243, 0.9);
}

.eyebrow,
.section-kicker,
.brand-banner p {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.hero h1,
.intro h2,
.section-heading h2,
.brand-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-description {
  margin: 28px 0 32px;
  color: #555;
  line-height: 1.8;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #1d1d1d;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.intro {
  max-width: 850px;
  padding: 120px 24px;
  margin: 0 auto;
  text-align: center;
}

.intro > p {
  margin: 0 0 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.intro h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.15;
}

.intro span {
  display: block;
  margin-top: 24px;
  color: #6a6a6a;
  line-height: 1.8;
}

.shop-section {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 120px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
  border-bottom: 1px solid #ccc6ba;
  padding-bottom: 24px;
}

.section-heading h2 {
  font-size: 48px;
}

.section-heading > p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 18px;
}

.product-card {
  min-width: 0;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ebe7df;
}

.product-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(255,255,255,.92);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.product-info {
  padding-top: 16px;
}

.category {
  display: block;
  margin-bottom: 8px;
  color: #8a857a;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.product-info h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.price {
  margin: 8px 0 14px;
  font-size: 13px;
}

.soldout-button {
  width: 100%;
  min-height: 40px;
  border: 1px solid #bdb8ae;
  background: transparent;
  color: #8f8a81;
  cursor: not-allowed;
}

.brand-banner {
  min-height: 560px;
  margin: 20px 0 0;
  padding: 70px max(6vw, 24px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(22,22,22,.45), rgba(22,22,22,.08)),
    url("../images/brand/about.webp") center/cover no-repeat,
    #b8b1a5;
  color: #fff;
}

.brand-banner > div {
  max-width: 650px;
}

.brand-banner h2 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
}

.brand-banner span {
  display: block;
  margin-top: 24px;
  line-height: 1.9;
}

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
  gap: 24px;
}

.info-card {
  padding: 44px;
  border: 1px solid #d3cec3;
}

.info-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.info-card p:not(.section-kicker) {
  margin: 0;
  color: #696969;
  line-height: 1.8;
}

.info-card a {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid #222;
  padding-bottom: 4px;
}

.site-footer {
  padding: 64px max(5vw, 24px) 24px;
  background: #181818;
  color: #f6f4ef;
}

.footer-logo {
  margin-bottom: 52px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

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

.footer-grid strong {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.footer-grid a,
.business-info p {
  display: block;
  margin: 8px 0;
  color: #aaa;
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #777;
  font-size: 10px;
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    width: calc(100% - 28px);
    min-height: 64px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .mobile-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    padding: 18px 22px 28px;
    background: #f8f7f3;
    border-top: 1px solid #ddd8ce;
    border-bottom: 1px solid #ddd8ce;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 12px 0;
    font-size: 13px;
    letter-spacing: .08em;
  }

  .hero {
    min-height: 620px;
    padding: 24px;
  }

  .hero-copy {
    padding: 34px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-notice {
    font-size: 9px;
  }

  .logo {
    font-size: 19px;
  }

  .hero {
    min-height: 560px;
    align-items: flex-end;
    padding: 14px;
  }

  .hero-copy {
    padding: 28px 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-description {
    font-size: 13px;
  }

  .intro {
    padding: 80px 20px;
  }

  .intro h2 {
    font-size: 38px;
  }

  .shop-section {
    width: calc(100% - 28px);
    padding-bottom: 80px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .product-grid {
    gap: 32px 10px;
  }

  .product-info h3 {
    font-size: 13px;
  }

  .brand-banner {
    min-height: 480px;
    padding: 40px 24px;
  }

  .brand-banner h2 {
    font-size: 43px;
  }

  .info-section {
    width: calc(100% - 28px);
    padding: 70px 0;
  }

  .info-card {
    padding: 30px 24px;
  }

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

  .business-info {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
