:root {
  --ivory: #f4efe6;
  --paper: #fffdf8;
  --ink: #15120e;
  --muted: #696158;
  --line: #ded2bf;
  --gold: #b9954b;
  --blue: #105f83;
  --green: #315f52;
  --wine: #6f263d;
  --smoke: #2d3033;
  --shadow: 0 24px 80px rgba(21, 18, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 76px);
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid rgba(222, 210, 191, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  line-height: 1.06;
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: 0.11em;
}

.brand-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 76px) clamp(48px, 6vw, 82px);
  background:
    linear-gradient(115deg, rgba(244, 239, 230, 0.96), rgba(255, 253, 248, 0.98) 48%, rgba(255, 255, 255, 0.9)),
    linear-gradient(150deg, rgba(16, 95, 131, 0.12), rgba(111, 38, 61, 0.08));
}

.hero-copy {
  max-width: 680px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Noto Serif SC", "SimSun", serif;
  font-weight: 400;
  line-height: 1.18;
}

h1 {
  max-width: 620px;
  font-size: clamp(38px, 5vw, 68px);
  overflow-wrap: anywhere;
}

h1 span,
.statement h2 span,
.hero-en span {
  display: block;
}

h2 {
  font-size: clamp(30px, 4vw, 56px);
}

h3 {
  font-size: 25px;
}

.hero-en {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: #403a32;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-signals span {
  padding: 7px 11px;
  border: 1px solid rgba(185, 149, 75, 0.38);
  color: #5d4a29;
  background: rgba(255, 255, 255, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.64);
}

.hero-image {
  margin: 0;
  padding: clamp(14px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(222, 210, 191, 0.72);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(21, 18, 14, 0.14));
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-bar span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: #443b32;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.proof-bar span:last-child {
  border-right: 0;
}

.statement {
  display: grid;
  grid-template-columns: 68px minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: #fff;
}

.statement h2 {
  color: #fff;
  font-size: clamp(27px, 3.2vw, 42px);
}

.statement p:last-child {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.statement-mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 26px;
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 76px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.section-head p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.craft {
  background: #fff;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.craft-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.craft-grid span,
.label {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.craft-grid h3 {
  margin-top: 26px;
}

.craft-grid p,
.collection-card p,
.object-grid p,
.project-list span,
.company-copy,
.catalog-copy p,
.contact p {
  color: var(--muted);
}

.collections {
  background:
    linear-gradient(180deg, var(--ivory), #fffdf8 62%, #fff);
}

.collection-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: 460px;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.feature-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.feature-images img {
  width: 100%;
  height: 330px;
  object-fit: contain;
}

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

.collection-card {
  display: grid;
  align-content: space-between;
  min-height: 510px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.collection-card.dark {
  background: var(--smoke);
  color: #fff;
}

.collection-card.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.collection-card.jewel {
  background: #eff5f2;
}

.collection-card img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  margin-bottom: 22px;
}

.objects {
  background: #fff;
}

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

.object-grid article {
  min-height: 410px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.object-grid img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin-bottom: 20px;
}

.atelier {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background:
    linear-gradient(rgba(21, 18, 14, 0.88), rgba(21, 18, 14, 0.82)),
    url("images/v2-gift-blue.webp") right 8% center / min(46vw, 680px) auto no-repeat,
    var(--ink);
  color: #fff;
}

.atelier h2 {
  color: #fff;
}

.atelier-copy p:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.project-list {
  display: grid;
  gap: 12px;
}

.project-list div {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.project-list strong {
  color: #fff;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 25px;
  font-weight: 400;
}

.project-list span {
  color: rgba(255, 255, 255, 0.72);
}

.scene-cases {
  background:
    linear-gradient(90deg, rgba(16, 95, 131, 0.08), transparent 38%),
    #fffdf8;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scene-grid article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.scene-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 16px;
}

.scene-grid h3 {
  margin-top: 28px;
}

.scene-grid p {
  margin: 18px 0 0;
  color: var(--muted);
}

.gallery {
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.gallery-strip img {
  width: 100%;
  height: clamp(220px, 26vw, 420px);
  object-fit: contain;
  padding: clamp(18px, 3vw, 34px);
  background: #fff;
}

.social {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 360px);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(111, 38, 61, 0.1), rgba(185, 149, 75, 0.1)),
    #15120e;
  color: #fff;
}

.social h2 {
  color: #fff;
}

.social-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.social .button.ghost {
  margin-top: 16px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
}

.social-card {
  min-height: 300px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

.social-card strong {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
}

.social-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.social-card em {
  margin-top: 30px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 84px;
  font-style: normal;
  line-height: 1;
}

.social-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.catalog {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(380px, 1.22fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: var(--ivory);
}

.catalog-copy p:not(.eyebrow) {
  font-size: 17px;
}

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

.catalog-images img {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(21, 18, 14, 0.08);
}

.company {
  background: #fff;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
}

.company-copy {
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  background:
    linear-gradient(rgba(16, 95, 131, 0.84), rgba(21, 18, 14, 0.84)),
    url("images/v2-mauritius-rainbow.webp") right 9% center / min(38vw, 520px) auto no-repeat,
    var(--blue);
  color: #fff;
}

.contact h2 {
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.contact-panel a {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.2;
  word-break: break-word;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 76px);
  background: #0f0d0a;
  color: #fff;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  color: rgba(255, 255, 255, 0.72);
}

.legal-page {
  background: var(--ivory);
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(36px, 8vw, 92px) 22px;
}

.legal h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.legal h2 {
  margin-top: 32px;
  font-size: 26px;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
}

@media (max-width: 1080px) {
  .hero,
  .statement,
  .collection-feature,
  .atelier,
  .catalog,
  .company-grid,
  .scene-grid,
  .social,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .craft-grid,
  .collection-grid,
  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-bar span:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 72px 0 auto 0;
    display: none;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  h1 {
    max-width: calc(100vw - 44px);
    font-size: 32px;
    line-height: 1.22;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  h2 {
    font-size: 32px;
  }

  .statement h2 {
    font-size: 27px;
    line-height: 1.25;
  }

  .hero {
    display: block;
    padding: 34px 22px 42px;
  }

  .statement,
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-copy,
  .hero-image,
  .statement,
  .section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero-copy > *,
  .statement > *,
  .section > * {
    max-width: 100%;
  }

  .hero-copy,
  .statement > div,
  .statement > p {
    max-width: min(304px, calc(100vw - 64px));
  }

  .hero-en {
    max-width: min(304px, calc(100vw - 64px));
    font-size: 20px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .hero-text,
  .statement p:last-child {
    max-width: min(304px, calc(100vw - 64px));
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-image {
    max-width: min(326px, calc(100vw - 44px));
    margin-top: 34px;
    padding: 16px;
  }

  .hero-image img {
    max-height: 300px;
  }

  .hero-actions,
  .section-head,
  .site-footer,
  .site-footer div {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .craft-grid,
  .collection-grid,
  .object-grid,
  .feature-images,
  .catalog-images,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .collection-card,
  .object-grid article {
    min-height: auto;
  }

  .collection-card img,
  .object-grid img,
  .feature-images img {
    height: 250px;
  }

  .gallery-strip img {
    height: 280px;
  }

  .hero-signals span {
    font-size: 12px;
  }

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

  .proof-bar span {
    min-height: 58px;
    font-size: 13px;
  }

  .proof-bar span:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .proof-bar span:nth-child(2n) {
    border-right: 0;
  }

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

  .social-card {
    min-height: 240px;
  }

  .social-card strong {
    font-size: 34px;
  }

  .social-card em {
    font-size: 64px;
  }
}
