:root {
  --bg: #F7F4EC;
  --bg-soft: #EEE9DF;
  --paper: #FFFFFF;
  --paper-soft: #FBF8F1;
  --text: #1F1F1A;
  --muted: #6F6A5F;
  --dark: #1E1D19;
  --dark-soft: #26251F;
  --green: #586052;
  --copper: #A9824A;
  --line: rgba(31, 31, 26, 0.13);
  --radius: 18px;
  --max: 1180px;
  --visual-max: 1280px;
  --hero-max: 1520px;
  --hero-gutter: clamp(48px, 5vw, 80px);
  --white: #F9F7F2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 34%, #f2eee6 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.75;
}

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

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

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.material .container,
.spaces .container,
.cases .container {
  width: min(var(--visual-max), calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 max(var(--hero-gutter), calc((100vw - var(--hero-max)) / 2));
  background: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(31, 31, 26, 0.045);
}

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

.brand img {
  width: auto;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.brand strong {
  display: block;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  line-height: 1;
  color: rgba(31, 31, 26, 0.88);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: grid;
  gap: 5px;
  padding-left: clamp(14px, 1.6vw, 20px);
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 0.74rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 2px;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.header-contact span {
  color: rgba(111, 106, 95, 0.78);
}

.header-contact a:hover {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-self: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(44px, 5vw, 82px);
  width: min(calc(100% - 48px), var(--hero-max));
  max-width: var(--hero-max);
  min-height: 780px;
  margin: 36px auto 0;
  padding: clamp(54px, 6vw, 88px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(169, 130, 74, 0.24), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(88, 96, 82, 0.35), transparent 32%),
    linear-gradient(135deg, #171914 0%, #22241f 54%, #141711 100%);
  border: 1px solid rgba(255, 250, 240, 0.08);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(31, 31, 26, 0.18);
}

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

.kicker {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  display: inline-block;
  width: 36px;
  height: 1px;
  content: "";
  background: currentColor;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.5rem, 5.8vw, 5.5rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  font-weight: 560;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.28;
}

.hero-lede,
.section-heading p,
.brand-statement p,
.about p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero .hero-lede {
  color: rgba(249, 247, 242, 0.74);
}

.hero .kicker {
  color: #d6aa75;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 28px;
}

.tags span {
  padding: 7px 12px;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(31, 31, 26, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.hero .tags span {
  color: rgba(249, 247, 242, 0.9);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(249, 247, 242, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-dark {
  color: var(--white);
  background: var(--dark);
  border: 1px solid var(--dark);
}

.hero .button-dark {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
}

.hero .button-dark:hover {
  color: var(--white);
  background: var(--copper);
  border-color: var(--copper);
}

.button-dark:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.button-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(31, 31, 26, 0.26);
}

.hero .button-ghost {
  color: var(--white);
  border-color: rgba(249, 247, 242, 0.34);
}

.hero .button-ghost:hover {
  border-color: rgba(249, 247, 242, 0.82);
}

.button-ghost:hover {
  border-color: var(--text);
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  width: fit-content;
  margin-top: clamp(34px, 5vw, 66px);
  color: rgba(249, 247, 242, 0.64);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-specs span {
  padding: 0 18px;
  border-left: 1px solid rgba(249, 247, 242, 0.18);
}

.hero-specs span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-media {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: var(--white);
  font-size: 1.05rem;
}

.brand-statement,
.material,
.knowledge,
.cases,
.faq,
.audience,
.about,
.contact {
  padding: clamp(110px, 11vw, 150px) 0;
}

.brand-statement {
  padding-top: clamp(120px, 12vw, 170px);
}

.statement-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.statement-grid h2 {
  max-width: 920px;
}

.statement-grid p:last-child {
  max-width: 900px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.wide-heading {
  max-width: 880px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .kicker {
  justify-content: center;
}

.material {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 248, 241, 0.92)),
    var(--paper-soft);
}

.material-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.material-image {
  min-height: 720px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(31, 31, 26, 0.1);
}

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

.material-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid rgba(31, 31, 26, 0.1);
  border-left: 1px solid rgba(31, 31, 26, 0.1);
}

.material-point {
  min-height: 360px;
  padding: clamp(28px, 3vw, 42px);
  background: transparent;
  border-right: 1px solid rgba(31, 31, 26, 0.1);
  border-bottom: 1px solid rgba(31, 31, 26, 0.1);
  transition: background 200ms ease;
}

.material-point:hover {
  background: rgba(255, 255, 255, 0.42);
}

.material-point span {
  display: block;
  margin-bottom: 74px;
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.material-point p {
  color: var(--muted);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.proof-strip figure {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-soft);
  box-shadow: 0 18px 44px rgba(31, 31, 26, 0.08);
}

.proof-strip img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.proof-strip figure:hover img {
  transform: scale(1.035);
}

.proof-strip figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-weight: 700;
}

.proof-strip figure::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.proof-strip figcaption {
  z-index: 2;
}

.proof-strip figcaption span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  place-items: center;
  color: var(--text);
  background: rgba(255, 250, 240, 0.86);
  border-radius: 50%;
}

.spaces {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 8%, rgba(169, 130, 74, 0.16), transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(88, 96, 82, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--dark);
}

.knowledge {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent),
    var(--bg);
}

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

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

.knowledge-grid article,
.faq-grid article {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 31, 26, 0.09);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(31, 31, 26, 0.045);
}

.knowledge-grid h3,
.faq-grid h3 {
  font-size: 1.12rem;
}

.knowledge-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq {
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.35), rgba(255, 255, 255, 0.9)),
    var(--paper);
}

.spaces .section-heading p,
.spaces .kicker {
  color: rgba(255, 250, 240, 0.72);
}

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

.space-grid article {
  min-height: 440px;
  padding: clamp(30px, 3vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    var(--dark-soft);
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.space-grid article:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    var(--dark-soft);
  border-color: rgba(169, 130, 74, 0.72);
  transform: translateY(-4px);
}

.space-grid small {
  display: block;
  margin-bottom: 118px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.space-grid p {
  color: rgba(255, 250, 240, 0.7);
}

.space-grid span {
  display: block;
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 0.9rem;
}

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

.lookbook-card {
  position: relative;
  height: 560px;
  min-height: 560px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-soft);
  box-shadow: 0 24px 70px rgba(31, 31, 26, 0.12);
}

.lookbook-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 500ms ease;
}

.lookbook-card:first-child {
  grid-column: 1 / -1;
  height: 680px;
  min-height: 680px;
}

.lookbook-card:first-child img {
  min-height: 0;
}

.lookbook-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.78) 100%);
}

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

.lookbook-text {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--white);
}

.lookbook-text span {
  display: inline-flex;
  margin-bottom: 86px;
  color: #e0b07f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lookbook-text p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.75);
}

.audience {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent),
    var(--bg-soft);
}

.audience-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  gap: 28px;
  background: transparent;
  border-radius: 0;
}

.audience-panel article {
  background: var(--paper);
  border-radius: 18px;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(31, 31, 26, 0.08);
  box-shadow: 0 18px 50px rgba(31, 31, 26, 0.055);
}

.audience-panel article + article {
  border-left: 0;
}

.audience-panel h3 {
  margin-bottom: 24px;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
}

.audience-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.about {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(169, 130, 74, 0.18), transparent 30%),
    linear-gradient(135deg, #171914, var(--dark));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.about p {
  color: rgba(255, 250, 240, 0.72);
}

blockquote {
  margin: 0;
  padding: clamp(30px, 5vw, 58px);
  color: var(--text);
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.45;
}

.contact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 48%),
    var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1.15fr);
  gap: clamp(40px, 4vw, 56px);
  align-items: stretch;
}

.contact-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.contact-note {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 31, 26, 0.1);
  border-radius: 16px;
  font-style: normal;
  box-shadow: 0 16px 44px rgba(31, 31, 26, 0.055);
}

.contact-info strong {
  color: var(--text);
  font-size: 1.02rem;
}

.contact-info span {
  display: block;
}

.contact-note a,
.contact-info a,
.footer-contact a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(169, 130, 74, 0.58);
  text-underline-offset: 4px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-actions .button {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid rgba(31, 31, 26, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(31, 31, 26, 0.09);
}

.embedded-inquiry {
  display: grid;
  gap: 28px;
  min-width: 0;
  height: 100%;
  min-height: 1000px;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid rgba(31, 31, 26, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(23, 25, 20, 0.10);
  overflow: visible;
}

.embedded-inquiry iframe {
  width: 100% !important;
  max-width: 100%;
  height: 1100px;
  min-height: 1100px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  overflow: visible;
}

.embedded-heading {
  max-width: 520px;
  margin: 0;
  justify-self: center;
  text-align: center;
}

.embedded-heading h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 560;
  line-height: 1.18;
}

.embedded-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2d302a;
  font-size: 0.92rem;
}

.full,
.form-submit,
.form-message {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--text);
  background: rgba(246, 243, 237, 0.76);
  border: 1px solid rgba(31, 31, 26, 0.13);
  border-radius: 3px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 32, 24, 0.12);
}

.sample-field {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 0;
  padding: 0;
  border: 0;
}

.sample-field legend {
  width: 100%;
  margin-bottom: 4px;
}

.sample-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sample-field input {
  width: auto;
  min-height: 0;
}

.form-message {
  min-height: 26px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.form-submit {
  width: 100%;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 250, 240, 0.68);
  background: var(--dark);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.footer-contact {
  margin-top: 8px !important;
  color: rgba(249, 247, 242, 0.52);
  font-size: 0.82rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .statement-grid,
  .material-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    margin-top: 24px;
  }

  .hero-media,
  .material-image {
    min-height: 520px;
  }

  .space-grid,
  .proof-strip,
  .lookbook-grid,
  .knowledge-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-copy {
    min-height: 0;
  }

  .contact-info {
    margin-top: 28px;
  }

  .embedded-inquiry {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 32px;
  }

  .header-actions {
    gap: 18px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .header-contact {
    padding-left: 16px;
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .container,
  .hero {
    width: min(100% - 40px, var(--max));
  }

  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .brand img {
    width: auto;
    height: 40px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 0.98rem;
    letter-spacing: 0.03em;
  }

  .brand small {
    margin-top: 3px;
    font-size: 0.68rem;
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .header-actions {
    display: block;
    margin-left: 0;
  }

  .header-contact {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(244, 239, 229, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(17, 20, 16, 0.16);
  }

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

  .site-nav a {
    padding: 12px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero {
    margin-top: 18px;
    padding: 38px 20px 24px;
    border-radius: 22px;
  }

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

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

  .tags {
    gap: 8px;
    margin: 24px 0 22px;
  }

  .hero-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 30px;
    row-gap: 14px;
    font-size: 0.72rem;
  }

  .hero-specs span {
    padding: 0 12px;
  }

  .hero-specs span:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .material-points,
  .space-grid,
  .proof-strip,
  .lookbook-grid,
  .audience-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .material-point {
    min-height: 240px;
  }

  .proof-strip figure,
  .proof-strip img {
    min-height: 260px;
  }

  .lookbook-card,
  .lookbook-card img {
    height: 420px;
    min-height: 420px;
  }

  .audience-panel article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .brand-statement,
  .material,
  .knowledge,
  .cases,
  .faq,
  .audience,
  .about,
  .contact {
    padding: 78px 0;
  }

  .knowledge-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 20px;
  }

  .embedded-inquiry {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .embedded-inquiry iframe {
    height: 1200px;
    min-height: 1200px;
  }

  .embedded-heading h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-contact {
    margin-top: 10px !important;
  }
}

/* Premium visual pass: high-end material brand tone */
:root {
  --bg: #F8F6F0;
  --bg-soft: #ECE7DC;
  --paper: #FFFDF8;
  --paper-soft: #F5F1E8;
  --text: #191A15;
  --muted: #676258;
  --dark: #11140F;
  --dark-soft: #1B1F18;
  --green: #4F5B4E;
  --copper: #9C7445;
  --line: rgba(25, 26, 21, 0.12);
  --font-body: "Inter", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
}

body {
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 34%, #f1ede4 100%);
  font-family: var(--font-body);
  letter-spacing: 0.005em;
}

.site-header {
  min-height: 88px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 36px rgba(25, 26, 21, 0.05);
}

.brand strong,
.site-nav,
.header-contact,
.button,
.tags span,
.hero-specs {
  font-family: var(--font-body);
}

.site-nav {
  color: rgba(25, 26, 21, 0.84);
  letter-spacing: 0.03em;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--font-display);
  font-weight: 500;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(5rem, 7.6vw, 8.2rem);
  letter-spacing: -0.06em;
  line-height: 0.86;
}

h1 span + span {
  margin-top: 14px;
  font-size: clamp(3.1rem, 4.85vw, 5.3rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.25rem, 4.55vw, 4.65rem);
  letter-spacing: -0.035em;
}

h3 {
  letter-spacing: -0.012em;
}

.kicker {
  color: var(--copper);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.hero {
  grid-template-columns: minmax(390px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(48px, 5vw, 92px);
  min-height: 820px;
  padding: clamp(64px, 6.5vw, 108px);
  background:
    linear-gradient(135deg, rgba(156, 116, 69, 0.16), transparent 34%),
    linear-gradient(135deg, #11140f 0%, #20231d 56%, #0f130d 100%);
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: 34px;
  box-shadow: 0 40px 110px rgba(25, 26, 21, 0.22);
}

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

.hero-media {
  min-height: 690px;
  border-radius: 28px;
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.34);
}

.hero-lede,
.section-heading p,
.brand-statement p,
.about p,
.contact p {
  font-size: 1.06rem;
}

.button {
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 0;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
}

.statement-grid {
  padding-top: clamp(34px, 4vw, 56px);
  border-top: 1px solid rgba(25, 26, 21, 0.16);
}

.section-heading {
  margin-bottom: clamp(44px, 5vw, 68px);
}

.material-layout {
  gap: clamp(36px, 4vw, 64px);
}

.material-image {
  min-height: 760px;
  border-radius: 26px;
  box-shadow: 0 34px 86px rgba(25, 26, 21, 0.12);
}

.material-points {
  gap: 18px;
  border: 0;
}

.material-point {
  min-height: 330px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(25, 26, 21, 0.09);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(25, 26, 21, 0.055);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.material-point:hover {
  background: var(--paper);
  border-color: rgba(156, 116, 69, 0.34);
  transform: translateY(-3px);
}

.material-point span {
  font-family: Georgia, serif;
}

.proof-strip {
  gap: 24px;
  margin-top: 38px;
}

.proof-strip figure,
.lookbook-card {
  border-radius: 26px;
}

.knowledge-grid article,
.faq-grid article,
.audience-panel article {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(25, 26, 21, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(25, 26, 21, 0.045);
}

.space-grid {
  gap: 22px;
}

.space-grid article {
  min-height: 470px;
  border-radius: 22px;
}

.lookbook-grid {
  gap: 34px;
}

.lookbook-card {
  height: 590px;
  min-height: 590px;
}

.lookbook-card:first-child {
  height: 720px;
  min-height: 720px;
}

.about {
  background:
    linear-gradient(135deg, rgba(156, 116, 69, 0.14), transparent 34%),
    linear-gradient(135deg, #10140f, var(--dark));
}

blockquote {
  border-radius: 26px;
}

.contact-info {
  background: rgba(255, 253, 248, 0.84);
  border-radius: 20px;
}

.embedded-inquiry {
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(23, 25, 20, 0.12);
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .container,
  .hero {
    width: min(100% - 40px, var(--max));
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
    letter-spacing: -0.055em;
  }

  h1 span + span {
    margin-top: 10px;
    font-size: clamp(2.05rem, 10.8vw, 3.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .hero {
    padding: 42px 20px 28px;
    border-radius: 24px;
  }

  .hero-media,
  .material-image {
    min-height: 420px;
    border-radius: 20px;
  }

  .material-point,
  .knowledge-grid article,
  .faq-grid article {
    border-radius: 18px;
  }

  .lookbook-card,
  .lookbook-card:first-child,
  .lookbook-card img {
    height: 440px;
    min-height: 440px;
  }
}
