:root {
  --bg: #ffffff;
  --ink: #080808;
  --muted: #6d6d6d;
  --line: #e7e7e7;
  --soft: #f6f3f1;
  --cream: #fbf7f3;
  --rose: #d77b83;
  --taupe: #b38f7d;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  display: grid;
  min-height: 36px;
  place-items: center;
  background: #050505;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  text-align: center;
}

.topbar p {
  margin: 0;
  padding: 6px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.brand-word,
.footer-logo {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  padding: 10px 13px;
  color: #303030;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.nav-links .nav-cta {
  margin-left: 8px;
  background: #000;
  color: #fff;
  text-decoration: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  min-height: 38px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  min-height: calc(100vh - 108px);
  background: var(--cream);
}

.hero-media {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: clamp(30px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.2)),
    var(--soft);
}

.hero-media img {
  width: min(520px, 86%);
  max-height: 76vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.16));
}

.poster-hero {
  background: #090909;
}

.poster-hero .hero-copy {
  background: #fff;
}

.poster-frame {
  padding: clamp(18px, 3vw, 40px);
  background: #090909;
}

.poster-frame img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: none;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.brand-story h1,
.contact-copy h1,
.detail-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.page-hero p,
.brand-story p,
.contact-copy p,
.campaign-copy p,
.detail-summary {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid #000;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.button.primary {
  background: #000;
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: #000;
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
}

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

.image-hero {
  position: relative;
  background: #050505;
}

.image-hero img {
  width: 100%;
  min-height: 560px;
  max-height: calc(100vh - 108px);
  object-fit: cover;
  object-position: center;
}

.image-hero-actions {
  position: absolute;
  left: clamp(18px, 4vw, 72px);
  bottom: clamp(18px, 4vw, 54px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: min(560px, calc(100% - 36px));
}

.category-strip,
.filter-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px clamp(18px, 4vw, 56px);
  border-block: 1px solid var(--line);
}

.category-strip a,
.filter-tabs a {
  flex: 0 0 auto;
  min-width: 96px;
  padding: 10px 18px;
  border: 1px solid #000;
  font-weight: 900;
  text-align: center;
}

.filter-tabs a.active,
.category-strip a:hover,
.filter-tabs a:hover {
  background: #000;
  color: #fff;
}

.section-block,
.page-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.section-block {
  padding: clamp(46px, 7vw, 92px) 0;
}

.wide-poster {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto clamp(46px, 7vw, 90px);
  background: #050505;
  box-shadow: var(--shadow);
}

.wide-poster img {
  width: 100%;
  aspect-ratio: 1897 / 829;
  object-fit: cover;
}

.wide-poster.narrow {
  margin-top: clamp(22px, 4vw, 48px);
}

.campaign-edit {
  padding-top: 0;
}

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

.campaign-tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.campaign-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.campaign-tile span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  font-weight: 900;
}

.campaign-tile:hover img {
  transform: scale(1.035);
}

.poster-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto clamp(46px, 7vw, 90px);
}

.poster-showcase article {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: #fff;
}

.poster-showcase img {
  width: 100%;
  aspect-ratio: 1897 / 829;
  object-fit: cover;
}

.poster-showcase div {
  padding: 24px;
}

.poster-showcase h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.14;
}

.poster-showcase p:not(.eyebrow) {
  color: var(--muted);
}

.poster-showcase a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.beauty-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.beauty-notes article {
  min-height: 150px;
  padding: 24px;
  background: #050505;
  color: #fff;
}

.beauty-notes strong,
.beauty-notes span {
  display: block;
}

.beauty-notes strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.beauty-notes span {
  color: #d7d7d7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading h2,
.campaign h2,
.values-grid h2,
.detail-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.section-heading a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
}

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

.product-grid.listing {
  padding: 28px 0 80px;
}

.product-card {
  border: 1px solid var(--line);
  background: #fff;
}

.product-image {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: 0;
  background: #fafafa;
  overflow: hidden;
}

.product-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 9px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 180ms ease;
}

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

.product-info {
  min-height: 170px;
  padding: 18px;
}

.product-info p {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.product-info h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.25;
}

.product-info small {
  display: block;
  min-height: 38px;
  color: var(--muted);
}

.product-info strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.campaign {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(22px, 5vw, 70px);
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto clamp(46px, 7vw, 90px);
  padding: clamp(24px, 5vw, 64px);
  background: var(--soft);
}

.campaign-dark {
  background: #050505;
  color: #fff;
}

.campaign-dark .campaign-copy p {
  color: #d7d7d7;
}

.campaign img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.campaign-poster {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 4vw, 48px) 0;
}

.campaign-poster img {
  max-height: none;
  box-shadow: var(--shadow);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto clamp(46px, 7vw, 90px);
}

.poster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto clamp(46px, 7vw, 90px);
}

.poster-grid article {
  border: 1px solid var(--line);
  background: #fff;
}

.poster-grid img {
  width: 100%;
  aspect-ratio: 7 / 5;
  object-fit: cover;
}

.poster-grid div {
  padding: 24px;
}

.poster-grid h2 {
  margin: 0;
  font-size: 34px;
}

.poster-grid p:not(.eyebrow) {
  color: var(--muted);
}

.poster-grid a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.editorial-grid article {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  border: 1px solid var(--line);
  background: #fff;
}

.editorial-grid img {
  width: 100%;
  height: 420px;
  padding: 28px;
  background: #fafafa;
  object-fit: contain;
}

.editorial-grid div {
  padding: 24px;
}

.editorial-grid h2 {
  margin: 0;
  font-size: 34px;
}

.editorial-grid p:not(.eyebrow) {
  color: var(--muted);
}

.editorial-grid a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-band div {
  min-height: 128px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.service-band div:last-child {
  border-right: 0;
}

.service-band strong,
.service-band span {
  display: block;
}

.service-band strong {
  margin-bottom: 6px;
  font-size: 20px;
}

.service-band span {
  color: var(--muted);
}

.page-hero {
  padding: clamp(52px, 8vw, 104px) 0 24px;
}

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

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 5vw, 74px);
  padding: clamp(40px, 6vw, 86px) 0;
}

.detail-campaign {
  padding: clamp(28px, 5vw, 62px) 0 0;
}

.detail-campaign img {
  width: 100%;
  object-fit: cover;
  background: #050505;
  box-shadow: var(--shadow);
}

.detail-campaign.wide img {
  aspect-ratio: 1897 / 829;
}

.detail-campaign.square {
  display: grid;
  place-items: center;
}

.detail-campaign.square img {
  width: min(760px, 100%);
  aspect-ratio: 1 / 1;
}

.gallery-main {
  width: 100%;
  height: min(680px, 72vh);
  padding: 34px;
  background: #fafafa;
  border: 1px solid var(--line);
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumbs button {
  min-height: 96px;
  padding: 8px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.gallery-thumbs img {
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.english-name {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.price {
  display: block;
  margin-top: 22px;
  font-size: 26px;
}

.detail-panel {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.detail-panel h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.detail-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  padding: 12px;
  background: var(--soft);
  font-weight: 800;
}

.detail-panel p {
  color: var(--muted);
}

.campaign-gallery-section {
  padding-top: 0;
}

.campaign-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.campaign-shot {
  overflow: hidden;
  background: #050505;
  box-shadow: var(--shadow);
}

.campaign-shot.wide {
  grid-column: span 2;
}

.campaign-shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.campaign-shot.wide img {
  aspect-ratio: 1897 / 829;
}

.brand-story,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(52px, 8vw, 104px) 0;
}

.brand-story img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: var(--soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: clamp(46px, 7vw, 86px);
}

.values-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
}

.values-grid span {
  color: var(--rose);
  font-weight: 900;
}

.values-grid h2 {
  margin-top: 36px;
  font-size: 28px;
}

.values-grid p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--soft);
}

.contact-form label {
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid #d8d8d8;
  background: #fff;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #000;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-list span {
  padding: 10px 14px;
  background: #000;
  color: #fff;
  font-weight: 900;
}

.form-message {
  margin: 0;
  color: #11623f;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 56px);
  background: #050505;
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: #cfcfcf;
}

@media (max-width: 980px) {
  .hero,
  .campaign,
  .product-detail,
  .brand-story,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

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

  .service-band,
  .values-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .campaign-shot.wide {
    grid-column: span 2;
  }

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

  .poster-showcase,
  .beauty-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .menu-toggle {
    position: absolute;
    top: 17px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .hero-copy {
    padding: 34px 18px 46px;
  }

  .image-hero img {
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .image-hero-actions {
    position: static;
    padding: 16px 18px 20px;
    background: #050505;
  }

  .image-hero-actions .button {
    width: 100%;
  }

  .hero h1,
  .page-hero h1,
  .brand-story h1,
  .contact-copy h1,
  .detail-copy h1 {
    font-size: 40px;
  }

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

  .campaign-tile-grid,
  .campaign-gallery {
    grid-template-columns: 1fr;
  }

  .campaign-shot.wide {
    grid-column: span 1;
  }

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

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-panel ul {
    grid-template-columns: 1fr;
  }
}
