:root {
  --ink: #20231d;
  --deep: #0f2719;
  --green: #183d25;
  --moss: #496746;
  --gold: #c5a35b;
  --paper: #eee7d7;
  --paper-soft: #f8f2e6;
  --line: rgba(32, 35, 29, 0.16);
  --muted: #6b685d;
  --white: #fffaf0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
}

[v-cloak] {
  display: none;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled,
.site-header.open {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(239, 232, 215, 0.9);
  color: var(--ink);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(32, 35, 29, 0.1);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.brand-mark strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0;
}

.brand-mark small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 13px;
  letter-spacing: 0.06em;
}

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

.main-nav a:hover {
  border-color: currentColor;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
}

.language-switch button {
  width: 38px;
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.language-switch button.active {
  background: currentColor;
  color: var(--deep);
}

.site-header.scrolled .language-switch button.active,
.site-header.open .language-switch button.active {
  color: var(--paper);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  background: var(--deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 35, 20, 0.1), rgba(12, 35, 20, 0.24)),
    radial-gradient(circle at 50% 65%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(48px, 9vh, 96px);
  transform: translateX(-50%);
  width: min(760px, calc(100% - 40px));
  color: var(--white);
  text-align: center;
}

.hero-overlay p {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.hero-overlay h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(8px);
}

.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-tiles {
  background: var(--paper-soft);
}

.intro-tile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.intro-tile.productidea {
  direction: rtl;
}

.intro-tile.productidea > * {
  direction: ltr;
}

.tile-image {
  min-height: 520px;
  overflow: hidden;
}

.tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-copy {
  align-self: center;
  max-width: 660px;
  padding: clamp(56px, 8vw, 118px);
}

.tile-copy h2,
.section-head h2,
.series-copy h2,
.series-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(30px, 4.3vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.tile-copy p:not(.section-label),
.section-head p:not(.section-label),
.series-copy p:not(.section-label),
.product-row span,
.cold-products span,
.footer-links,
.site-footer small {
  color: var(--muted);
  line-height: 1.85;
}

.tile-copy p:not(.section-label) {
  margin: 22px 0 0;
  font-size: 17px;
}

.craft-section,
.portfolio-section,
.cold-section,
.retail-section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 6vw, 90px);
}

.craft-section {
  background:
    linear-gradient(180deg, rgba(238, 231, 215, 0.96), rgba(248, 242, 230, 0.96)),
    var(--paper);
}

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

.section-head.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head p:not(.section-label) {
  margin: 20px 0 0;
  font-size: 17px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 48px auto 58px;
  max-width: 1180px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 150px;
  padding: 28px 18px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 1;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.feature-panels,
.retail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}

.feature-panels figure {
  margin: 0;
  background: #e9dfcc;
  box-shadow: 0 24px 70px rgba(28, 32, 24, 0.12);
}

.feature-panels img,
.retail-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.portfolio-section {
  background: var(--paper-soft);
}

.series-block {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 0.54fr);
  align-items: stretch;
  margin: 58px 0 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.series-block.reverse {
  grid-template-columns: minmax(0, 0.54fr) minmax(300px, 0.46fr);
}

.series-block.reverse .series-copy {
  order: 2;
}

.series-copy {
  align-self: center;
  padding: clamp(32px, 5vw, 72px);
}

.series-copy p:not(.section-label) {
  margin: 20px 0 0;
}

.series-block > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.product-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-index.compact {
  grid-template-columns: repeat(3, 1fr);
}

.product-row {
  min-width: 0;
  background: var(--paper-soft);
}

.product-row a {
  display: block;
  overflow: hidden;
  background: #ded2bd;
}

.product-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-row:hover img {
  transform: scale(1.03);
}

.product-row div {
  padding: 22px 24px 26px;
}

.product-row p,
.cold-products p {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-row h3,
.cold-products h3 {
  min-height: 58px;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.cold-section {
  background:
    linear-gradient(180deg, rgba(234, 242, 230, 0.96), rgba(238, 231, 215, 0.96));
}

.cold-section .series-block {
  margin-top: 0;
}

.cold-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cold-products article {
  display: grid;
  grid-template-columns: 48% 1fr;
  min-height: 330px;
  background: var(--paper-soft);
}

.cold-products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cold-products div {
  align-self: center;
  padding: clamp(24px, 4vw, 44px);
}

.retail-section {
  background: var(--paper);
}

.retail-grid {
  margin-top: 42px;
}

.retail-grid img {
  background: #ded2bd;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 48px clamp(20px, 6vw, 90px);
  background: var(--deep);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand strong {
  display: block;
  font-size: 20px;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 250, 240, 0.62);
  font-family: Georgia, "Times New Roman", serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.footer-links p {
  margin: 0;
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 250, 240, 0.4);
}

.site-footer small {
  grid-column: 1 / -1;
  max-width: 1100px;
  color: rgba(255, 250, 240, 0.56);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: inline-grid;
    gap: 6px;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: transparent;
    color: currentColor;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .main-nav,
  .language-switch {
    display: none;
  }

  .site-header.open .main-nav,
  .site-header.open .language-switch {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.open .main-nav {
    flex-wrap: wrap;
    gap: 18px 28px;
    padding-top: 8px;
  }

  .intro-tile,
  .series-block,
  .series-block.reverse,
  .feature-panels,
  .retail-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .series-block.reverse .series-copy {
    order: 0;
  }

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

  .cold-products article {
    grid-template-columns: 1fr;
  }

  .cold-products img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-bg {
    object-position: center;
  }

  .hero-overlay {
    bottom: 42px;
  }

  .hero-overlay p {
    font-size: 13px;
  }

  .hero-overlay h1 {
    font-size: 34px;
  }

  .tile-image {
    min-height: 300px;
  }

  .tile-copy,
  .series-copy {
    padding: 34px 20px;
  }

  .craft-section,
  .portfolio-section,
  .cold-section,
  .retail-section {
    padding: 58px 18px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    margin: 32px 0 42px;
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-index,
  .product-index.compact,
  .cold-products {
    grid-template-columns: 1fr;
  }

  .product-row h3 {
    min-height: 0;
  }

  .series-block > img {
    min-height: 240px;
  }
}
