@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Noto+Serif+TC:wght@300;400;500;600&display=swap');

:root {
  --black: #000;
  --white: #fff;
  --gray: #a8a8a8;
  --line: rgba(255,255,255,0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Noto Serif TC', serif;
  letter-spacing: 0.04em;
}
a { color: inherit; text-decoration: none; }
.hero {
  min-height: 100vh;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  background: #000;
  background-size: cover;
  background-position: center;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 0;
}
.logo-img {
  width: min(320px, 68vw);
  height: auto;
  margin-bottom: 26px;
  object-fit: contain;
}
.eyebrow, .label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: .95;
  margin: 0 0 26px;
}
h1 { font-size: clamp(60px, 10vw, 138px); }
h2 { font-size: clamp(38px, 6vw, 78px); }
.intro {
  max-width: 620px;
  color: #eee;
  line-height: 2.15;
  margin-bottom: 34px;
  font-size: 18px;
}
.button-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.button-group.left { justify-content: flex-start; margin-top: 26px; }
.button {
  display: inline-block;
  border: 1px solid var(--white);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s;
}
.button:hover { background: var(--white); color: var(--black); }
.button.secondary { border-color: rgba(255,255,255,0.45); color: #ddd; }
.section {
  padding: 92px 9vw;
  border-bottom: 1px solid var(--line);
}
.label { margin-bottom: 24px; }
.section p {
  max-width: 780px;
  color: #d8d8d8;
  line-height: 2.15;
  font-size: 17px;
}
.grid {
  display: grid;
  grid-template-columns: .75fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.role {
  color: #fff !important;
  letter-spacing: 0.14em;
  font-size: 15px !important;
  text-transform: uppercase;
}
.quote {
  color: #fff !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px !important;
  line-height: 1.45 !important;
}
.brand-board-wrap {
  margin-top: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 14px;
  background: #050505;
}
.brand-board-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.category-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 36px;
}
.category-row span {
  border: 1px solid rgba(255,255,255,0.22);
  color: #eee;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: .08em;
}
.gallery {
  columns: 3 260px;
  column-gap: 18px;
}
.photo-card {
  break-inside: avoid;
  display: block;
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
}
.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .35s ease, opacity .35s ease;
}
.photo-card:hover img {
  transform: scale(1.025);
  opacity: .86;
}

.shop {
  background: linear-gradient(180deg, #000 0%, #070707 100%);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.product-card {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 34px;
  background: rgba(255,255,255,0.035);
}
.product-card h3 {
  font-family: 'Cormorant Garamond', 'Noto Serif TC', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  margin: 8px 0 14px;
}
.product-kicker {
  color: var(--gray) !important;
  font-size: 12px !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}
.price {
  color: #fff !important;
  font-family: 'Cormorant Garamond', 'Noto Serif TC', serif;
  font-size: 30px !important;
  line-height: 1.2 !important;
  margin: 0 0 12px;
}
.product-card .button {
  margin-top: 16px;
}

.support {
  background: radial-gradient(circle at top right, rgba(255,255,255,0.07), transparent 34%);
}
.support-button { margin-top: 16px; }
.contact-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-links a {
  border-bottom: 1px solid var(--white);
  padding-bottom: 4px;
}
footer {
  padding: 32px;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
}
@media (max-width: 760px) {
  .hero { padding: 24px; }
  nav {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .nav-links {
    gap: 14px;
    font-size: 11px;
    flex-wrap: wrap;
  }
  .grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { padding: 26px; }
  .section { padding: 72px 24px; }
  .logo-img { width: min(260px, 70vw); }
  .brand-board-wrap {
    margin-left: -8px;
    margin-right: -8px;
    padding: 8px;
    border-radius: 20px;
  }
}


/* V9 refined editorial typography */
.section p,
.intro {
  font-weight: 300;
}

.role,
.nav-links,
.button,
.category-row span,
.contact-links a {
  font-family: 'Cormorant Garamond', 'Noto Serif TC', serif;
}

.quote {
  letter-spacing: 0.03em;
}
