:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #6c6255;
  --panel: rgba(255, 250, 241, 0.86);
  --line: rgba(89, 70, 45, 0.16);
  --gold: #d9a441;
  --teal: #2f7f73;
  --deep: #f7f2e8;
  --bronze: #7a5632;
  --smoke: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(89, 70, 45, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #f7f2e8 0%, #fffaf2 42%, #efe3d1 100%);
  color: var(--ink);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(217, 164, 65, 0.14), transparent 34%, rgba(47, 127, 115, 0.08) 66%, transparent 100%),
    repeating-linear-gradient(100deg, rgba(89, 70, 45, 0.035) 0 1px, transparent 1px 13px);
  opacity: 0.72;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(89, 70, 45, 0.12);
  background: linear-gradient(rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.68));
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px rgba(74, 55, 25, 0.08);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(217, 164, 65, 0.28), rgba(255, 250, 241, 0.78));
  color: #9a6d23;
  font-weight: 800;
  box-shadow: inset 0 0 22px rgba(215, 170, 94, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: #9a6d23;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(89, 70, 45, 0.06) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(255, 250, 241, 0.72), transparent 28%),
    linear-gradient(110deg, #fffaf2 0%, #f7f2e8 48%, #ead8bd 100%);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-product {
  object-fit: contain;
  object-position: 98% 60%;
  padding: clamp(54px, 7vw, 96px) clamp(0px, 1vw, 12px) clamp(22px, 4vw, 52px) clamp(360px, 50vw, 720px);
  transform: scale(1.07);
  transform-origin: 74% 56%;
  mix-blend-mode: normal;
  opacity: 1;
  filter: drop-shadow(0 42px 72px rgba(74, 55, 25, 0.28)) brightness(1.02) saturate(1.08) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98), rgba(255, 250, 241, 0.8) 34%, rgba(255, 250, 241, 0.22) 54%, rgba(255, 250, 241, 0.02) 100%),
    linear-gradient(0deg, rgba(247, 242, 232, 0.9), transparent 44%),
    linear-gradient(180deg, rgba(217, 164, 65, 0.14), transparent 24%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 5vw, 72px);
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy p:not(.eyebrow),
.section-head p,
.section-note,
.product-band p,
.contact p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

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

.button,
button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button.primary,
button {
  background: linear-gradient(135deg, #f2ca7a, #c89040);
  color: #1b1308;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(215, 170, 94, 0.18);
}

.button.secondary {
  background: rgba(255, 250, 241, 0.72);
  backdrop-filter: blur(10px);
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(217, 164, 65, 0.12), transparent 35%, rgba(47, 127, 115, 0.08)),
    #fffaf2;
}

.stats div {
  min-height: 124px;
  padding: 26px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

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

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

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

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  position: relative;
  border-top: 1px solid rgba(89, 70, 45, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(32px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent),
    var(--deep);
}

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

.feature-grid article,
.scale-list article {
  background: var(--panel);
  padding: 28px;
}

.feature-grid article {
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.feature-grid span {
  color: var(--gold);
  font-weight: 800;
}

.feature-grid p,
.scale-list p {
  color: var(--muted);
}

.atelier-gallery {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(89, 70, 45, 0.1);
  background:
    linear-gradient(90deg, rgba(89, 70, 45, 0.05) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(150deg, rgba(47, 127, 115, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf2, #f2e8d8 100%);
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.gallery-intro p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 110px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f8f2e7;
  box-shadow: 0 22px 60px rgba(74, 55, 25, 0.16);
}

.gallery-card.hero-shot {
  grid-column: 1 / span 7;
  grid-row: 1 / span 5;
}

.gallery-card.detail-shot:nth-of-type(2) {
  grid-column: 8 / span 5;
  grid-row: 1 / span 3;
}

.gallery-card.detail-shot:nth-of-type(3) {
  grid-column: 8 / span 5;
  grid-row: 4 / span 2;
}

.gallery-card.process-shot {
  grid-column: 1 / span 5;
  grid-row: 6 / span 4;
}

.gallery-card.capacity-shot {
  grid-column: 6 / span 7;
  grid-row: 6 / span 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.92) contrast(1.05);
}

.gallery-card.hero-shot img {
  object-position: 50% 50%;
}

.gallery-card.detail-shot:nth-of-type(2) img {
  object-position: 52% 44%;
}

.gallery-card.detail-shot:nth-of-type(3) img {
  object-position: 50% 52%;
}

.gallery-card.process-shot img {
  object-position: 58% 50%;
}

.gallery-card.capacity-shot img {
  object-position: 50% 46%;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 10, 10, 0.76), transparent 42%),
    linear-gradient(120deg, rgba(8, 10, 10, 0.18), transparent 45%);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  display: grid;
  gap: 2px;
}

.gallery-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.gallery-card strong {
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.15;
}

.gallery-card.hero-shot strong,
.gallery-card.capacity-shot strong {
  font-size: clamp(30px, 3vw, 48px);
}

.gallery-card em {
  color: rgba(244, 239, 228, 0.78);
  font-style: normal;
  font-size: 15px;
}

.tonal {
  background:
    linear-gradient(90deg, rgba(18, 21, 20, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, #f5efe3, #dfd2bd 58%, #c7b28f);
  color: #121514;
}

.tonal .eyebrow,
.tonal .scale-list span {
  color: #217b71;
}

.tonal .section-head p,
.tonal .scale-list p {
  color: #58615c;
}

.scale-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.scale-list article {
  min-height: 260px;
  border: 1px solid rgba(18, 21, 20, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2)),
    #f8f2e7;
  color: #121514;
  box-shadow: 0 18px 42px rgba(74, 55, 25, 0.12);
}

.scale-list span {
  display: block;
  margin-top: 22px;
  font-weight: 800;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(31, 27, 22, 0.82), rgba(31, 27, 22, 0.58)),
    linear-gradient(0deg, rgba(31, 27, 22, 0.68), rgba(31, 27, 22, 0.2)),
    url("./assets/craft-workshop-wide.jpg") center / cover;
  color: #fffaf2;
}

.product-band p,
.product-band .section-note {
  color: rgba(255, 250, 242, 0.82);
}

.product-band .check-list li {
  border-color: rgba(255, 250, 242, 0.18);
  background:
    linear-gradient(120deg, rgba(255, 250, 242, 0.14), rgba(255, 250, 242, 0.05));
}

.location-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(217, 164, 65, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(89, 70, 45, 0.05) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(180deg, #fffaf2, #f2e8d8);
}

.location-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.location-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.location-meta div {
  padding: 18px;
  background: rgba(255, 250, 241, 0.82);
}

.location-meta span,
.map-label span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.location-meta strong,
.map-label strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.map-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 48%, rgba(217, 164, 65, 0.22), transparent 9%),
    linear-gradient(135deg, rgba(47, 127, 115, 0.13), transparent 38%),
    #f8f2e7;
  box-shadow: 0 34px 80px rgba(74, 55, 25, 0.16);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(89, 70, 45, 0.14);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(89, 70, 45, 0.1) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(89, 70, 45, 0.1) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(120deg, transparent 0 46%, rgba(217, 164, 65, 0.24) 46% 47%, transparent 47% 100%);
  opacity: 0.72;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(215, 170, 94, 0.42);
  border-radius: 50%;
  background: rgba(215, 170, 94, 0.08);
  box-shadow: 0 0 0 18px rgba(215, 170, 94, 0.05);
}

.map-pin span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 34px rgba(215, 170, 94, 0.72);
}

.map-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.84);
  backdrop-filter: blur(14px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 20px;
  background:
    linear-gradient(120deg, rgba(255, 250, 241, 0.78), rgba(255, 250, 241, 0.42));
  backdrop-filter: blur(8px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(30px, 6vw, 90px);
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.13), transparent 36%),
    linear-gradient(180deg, #f7f2e8, #ead8bd);
}

form {
  display: grid;
  gap: 16px;
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--teal);
  font-size: 15px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    max-width: 190px;
  }

  .hero {
    min-height: 860px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(89, 70, 45, 0.06) 1px, transparent 1px) 0 0 / 64px 64px,
      linear-gradient(180deg, #fffaf2 0%, #f2e8d8 42%, #f7f2e8 76%);
  }

  .hero-product {
    object-position: center center;
    padding: clamp(210px, 28svh, 250px) 24px clamp(380px, 48svh, 430px);
    transform: scale(1.12);
    transform-origin: 50% 43%;
    opacity: 0.95;
    filter: drop-shadow(0 34px 54px rgba(74, 55, 25, 0.28)) brightness(1.01) saturate(1.08) contrast(1.02);
  }

  .hero-copy {
    align-self: end;
    margin: 0 auto;
    padding-bottom: 70px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 250, 241, 0.98), rgba(255, 250, 241, 0.72) 42%, rgba(255, 250, 241, 0.1) 72%),
      linear-gradient(0deg, rgba(247, 242, 232, 0.96), transparent 35%);
  }

  .stats,
  .split,
  .gallery-intro,
  .scale-list,
  .product-band,
  .location-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .location-meta {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 340px;
  }

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

  .stats div:last-child {
    border-bottom: 0;
  }

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

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .gallery-card.large,
  .gallery-card.tall,
  .gallery-card.wide,
  .gallery-card.hero-shot,
  .gallery-card.detail-shot,
  .gallery-card.process-shot,
  .gallery-card.capacity-shot,
  .gallery-card:not(.hero-shot):not(.detail-shot):not(.process-shot):not(.capacity-shot) {
    width: 100%;
    min-height: 320px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card.hero-shot strong,
  .gallery-card.capacity-shot strong {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
  }

  .nav {
    justify-content: flex-start;
    max-width: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy p:not(.eyebrow),
  .section-head p,
  .product-band p,
  .contact p {
    font-size: 16px;
  }

  .hero-product {
    padding: 168px 22px 438px;
    transform: scale(1.08);
  }
}
