@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --charcoal: #100f0d;
  --ink: #171411;
  --bronze: #a8794d;
  --dark-bronze: #4d3324;
  --concrete: #b8b0a5;
  --ivory: #f4efe5;
  --muted: #bdb0a1;
  --line: rgba(244, 239, 229, 0.12);
  --shadow: rgba(0, 0, 0, 0.55);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ivory);
  background: var(--charcoal);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--charcoal);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(168, 121, 77, 0.22), transparent 32rem),
    radial-gradient(circle at 82% 6%, rgba(244, 239, 229, 0.08), transparent 28rem),
    linear-gradient(180deg, #15120f 0%, #0d0c0b 42%, #15110e 100%);
  color: var(--ivory);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 58px);
  color: rgba(244, 239, 229, 0.82);
  mix-blend-mode: difference;
}

.nav-logo {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.nav div {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  transition: color 0.4s ease, opacity 0.4s ease;
}

.nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 7vw, 120px);
  overflow: hidden;
  padding: clamp(110px, 13vh, 150px) clamp(22px, 7vw, 120px) clamp(92px, 12vh, 128px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.48), rgba(12, 11, 10, 0.16) 42%, rgba(9, 9, 8, 0.76)),
    linear-gradient(180deg, rgba(16, 15, 13, 0.18), rgba(16, 15, 13, 0.78));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 15, 13, 0.02), transparent 66%, rgba(16, 15, 13, 0.76)),
    linear-gradient(90deg, rgba(244, 239, 229, 0.32) 0 1px, transparent 1px 7vw, transparent calc(100% - 1px), rgba(244, 239, 229, 0.12) 100%),
    linear-gradient(180deg, rgba(244, 239, 229, 0.24) 0 1px, transparent 1px 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("./assets/hero-abstract.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.86) contrast(1.04) brightness(0.88);
}

.atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.hero-light {
  position: absolute;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  top: 4%;
  left: 19%;
  z-index: -2;
  background: radial-gradient(circle, rgba(219, 173, 120, 0.16), rgba(93, 58, 34, 0.08) 42%, transparent 72%);
  filter: blur(28px);
}

.brand-lockup {
  position: relative;
  top: auto;
  z-index: 6;
  text-align: left;
}

.brand-lockup h1 {
  margin: 0;
  font-size: clamp(5.6rem, 14vw, 15.5rem);
  line-height: 0.78;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0;
  text-transform: uppercase;
}

.brand-lockup p {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.55rem);
  color: rgba(244, 239, 229, 0.74);
  letter-spacing: 0.2em;
}

.hero-index {
  display: block;
  margin-bottom: clamp(18px, 3vw, 34px);
  color: rgba(244, 239, 229, 0.72);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  letter-spacing: 0.04em;
}

.hero-about {
  position: relative;
  z-index: 6;
  max-width: 760px;
  padding-top: clamp(28px, 6vh, 70px);
}

.hero-about h2 {
  margin: 0 0 26px;
  font-size: clamp(1.75rem, 3vw, 3.45rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.hero-about div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 680px;
}

.hero-about p {
  margin: 0;
  color: rgba(244, 239, 229, 0.74);
  max-width: 680px;
  font-size: clamp(0.78rem, 0.92vw, 0.92rem);
  font-weight: 400;
  line-height: 1.72;
}

.hero-sculpture {
  position: relative;
  z-index: 3;
  width: min(78vw, 760px);
  margin-top: clamp(72px, 10vh, 130px);
  transform-origin: 50% 52%;
  will-change: transform;
}

.hero-sculpture::before {
  content: "";
  position: absolute;
  inset: 18% 20% -4%;
  background: radial-gradient(ellipse, rgba(215, 162, 96, 0.36), transparent 66%);
  filter: blur(34px);
}

.hero-sculpture img {
  position: relative;
  max-height: 68vh;
  object-fit: contain;
  filter: drop-shadow(0 42px 48px rgba(0, 0, 0, 0.52)) contrast(1.05) saturate(0.95);
  opacity: 0.92;
  mix-blend-mode: lighten;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 52%, rgba(0, 0, 0, 0.72) 69%, transparent 86%);
  mask-image: radial-gradient(ellipse at center, #000 52%, rgba(0, 0, 0, 0.72) 69%, transparent 86%);
}

.hero-actions {
  position: absolute;
  z-index: 8;
  left: clamp(22px, 7vw, 120px);
  bottom: clamp(28px, 7vh, 62px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: min(92vw, 760px);
  transform: none !important;
  flex-wrap: wrap;
}

.primary-button,
.social-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(244, 239, 229, 0.16);
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.07);
  color: rgba(244, 239, 229, 0.9);
  backdrop-filter: blur(18px);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}

.primary-button {
  padding: 0 20px;
  background: rgba(244, 239, 229, 0.88);
  color: #17110d;
}

.social-button {
  padding: 0 16px;
}

.ghost-button {
  padding: 0 18px;
  width: fit-content;
}

.primary-button:hover,
.social-button:hover,
.ghost-button:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 182, 138, 0.5);
  box-shadow: 0 18px 44px rgba(168, 121, 77, 0.18);
}

.hero-caption {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 4vw, 58px);
  right: clamp(22px, 4vw, 58px);
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 239, 229, 0.45);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.92rem, 1.2vw, 1.2rem);
  pointer-events: none;
}

.section {
  padding: clamp(92px, 13vw, 180px) clamp(20px, 5vw, 72px);
}

.section-kicker {
  margin-bottom: 22px;
  color: rgba(214, 182, 138, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(48px, 8vw, 100px);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.58fr);
  gap: clamp(28px, 7vw, 92px);
  max-width: 1160px;
  align-items: end;
}

.section-heading h2,
.process-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7.8vw, 8.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.section-heading p,
.process-copy p,
.category-text p,
.piece-info p,
.footer p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.category-card {
  position: relative;
  min-height: clamp(270px, 25vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(26px, 3.5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(244, 239, 229, 0.12);
  background:
    linear-gradient(135deg, rgba(244, 239, 229, 0.045), rgba(168, 121, 77, 0.035)),
    rgba(17, 16, 14, 0.68);
  backdrop-filter: blur(18px);
  transition: border-color 0.5s ease, transform 0.5s ease, background 0.5s ease;
}

.category-card:nth-child(2) {
  border-color: rgba(168, 121, 77, 0.62);
}

.category-card:nth-child(5) {
  grid-column: 2 / span 1;
}

.process-image img {
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.piece-image:hover img {
  filter: brightness(1.08) saturate(1.08);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 182, 138, 0.5);
  background:
    linear-gradient(135deg, rgba(244, 239, 229, 0.06), rgba(168, 121, 77, 0.06)),
    rgba(17, 16, 14, 0.76);
}

.category-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(168, 121, 77, 0.45);
  color: rgba(214, 182, 138, 0.82);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.category-text {
  display: block;
  padding: 0;
}

.piece-number {
  color: rgba(214, 182, 138, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.category-text h3,
.piece-info h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.category-text h3 {
  font-size: clamp(2.4rem, 3.2vw, 4.2rem);
}

.category-text p {
  max-width: 460px;
  margin: 20px 0 0;
}

.gallery {
  background:
    radial-gradient(circle at 78% 8%, rgba(168, 121, 77, 0.16), transparent 30rem),
    linear-gradient(180deg, rgba(244, 239, 229, 0.035), transparent 22%);
}

.pieces {
  display: grid;
  gap: clamp(80px, 12vw, 160px);
}

.piece {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  min-height: 76svh;
}

.piece.is-reversed {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
}

.piece.is-reversed .piece-image {
  order: 2;
}

.piece-image {
  display: grid;
  place-items: center;
  height: clamp(430px, 68vw, 760px);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(168, 121, 77, 0.18), transparent 55%),
    #17120e;
}

.piece-image img {
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 3vw, 42px);
  transform-origin: center;
  transition: filter 0.6s ease;
}

.piece-image img.piece-image-complete {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  padding: clamp(8px, 1.6vw, 22px);
}

.piece-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.piece-info h3 {
  margin-top: 20px;
  max-width: 560px;
}

.piece-info p {
  max-width: 440px;
  margin: 26px 0 28px;
}

.piece-info dl {
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  margin: 0 0 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.piece-info dt {
  color: rgba(244, 239, 229, 0.45);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.piece-info dd {
  margin: 0;
  color: rgba(244, 239, 229, 0.82);
  line-height: 1.5;
}

.piece-details {
  background: #050504;
  padding: clamp(36px, 6vw, 84px) clamp(20px, 5vw, 72px) clamp(92px, 12vw, 160px);
}

.piece-page .piece-details {
  min-height: 100svh;
  padding-top: clamp(92px, 12vw, 150px);
}

.piece-detail {
  scroll-margin-top: 84px;
  padding: clamp(44px, 7vw, 92px) 0;
  border-top: 1px solid rgba(244, 239, 229, 0.1);
}

.piece-detail:first-child {
  border-top: 0;
}

.detail-visual {
  position: relative;
  height: clamp(420px, 54vw, 660px);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(244, 239, 229, 0.08), transparent 42%),
    linear-gradient(135deg, rgba(168, 121, 77, 0.09), rgba(244, 239, 229, 0.035)),
    #0d0c0b;
  border: 1px solid rgba(244, 239, 229, 0.1);
}

.detail-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 3vw, 42px);
  filter: drop-shadow(0 36px 48px rgba(0, 0, 0, 0.55));
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
  padding-top: clamp(46px, 7vw, 86px);
}

.detail-copy,
.detail-specs {
  min-width: 0;
}

.detail-copy h1,
.detail-copy h2 {
  margin: 18px 0 24px;
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.6rem, 7vw, 8.2rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.detail-lead {
  margin: 0 0 42px;
  color: rgba(244, 239, 229, 0.92);
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.25;
}

.detail-copy p:not(.detail-lead) {
  max-width: 700px;
  margin: 0 0 18px;
  color: rgba(244, 239, 229, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 300;
  line-height: 1.75;
}

.detail-back {
  display: inline-flex;
  margin-top: 28px;
  color: rgba(214, 182, 138, 0.86);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-specs {
  padding-top: clamp(8px, 2vw, 28px);
}

.detail-specs > span {
  display: block;
  margin-bottom: 24px;
  color: rgba(214, 182, 138, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.detail-specs dl {
  margin: 0;
}

.detail-specs dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(244, 239, 229, 0.13);
}

.detail-specs dl div:last-child {
  border-bottom: 1px solid rgba(244, 239, 229, 0.13);
}

.detail-specs dt {
  color: rgba(244, 239, 229, 0.46);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-specs dd {
  min-width: 0;
  margin: 0;
  color: rgba(244, 239, 229, 0.9);
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 58px;
  margin-top: 32px;
  border-radius: 999px;
  background: var(--ivory);
  color: #100f0d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.detail-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(168, 121, 77, 0.18);
}

.process {
  position: relative;
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(90px, 12vw, 160px) clamp(20px, 5vw, 72px);
  background: #100f0d;
  overflow: hidden;
  isolation: isolate;
}

.process::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 28% 48%, rgba(168, 121, 77, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(16, 15, 13, 0.94), rgba(16, 15, 13, 0.58), rgba(16, 15, 13, 0.9)),
    linear-gradient(180deg, rgba(16, 15, 13, 0.34), rgba(16, 15, 13, 0.96));
}

.process-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
}

.process-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  opacity: 0.56;
}

.process-copy {
  max-width: 790px;
}

.process-copy h2 {
  max-width: 760px;
}

.process-copy p {
  max-width: 600px;
  margin-top: 26px;
}

.process-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 38px;
  padding: 0 28px;
  border: 1px solid rgba(244, 239, 229, 0.24);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(244, 239, 229, 0.06);
  box-shadow: 0 0 0 rgba(168, 121, 77, 0);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}

.process-button:hover {
  transform: translateY(-3px);
  border-color: rgba(211, 169, 118, 0.52);
  background: rgba(211, 169, 118, 0.1);
  box-shadow: 0 18px 54px rgba(168, 121, 77, 0.14);
}

.commission-page {
  min-height: 100svh;
  background: #100f0d;
}

.commission-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(116px, 13vw, 178px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 96px);
  overflow: hidden;
  isolation: isolate;
}

.commission-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 34%, rgba(168, 121, 77, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(16, 15, 13, 0.96), rgba(16, 15, 13, 0.76), rgba(16, 15, 13, 0.92)),
    linear-gradient(180deg, rgba(16, 15, 13, 0.42), rgba(16, 15, 13, 0.98));
}

.commission-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.commission-bg img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  opacity: 0.42;
}

.commission-intro {
  max-width: 1040px;
  margin-bottom: clamp(42px, 7vw, 92px);
}

.commission-intro h1 {
  max-width: 1040px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 8.4vw, 9.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.commission-intro p {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(244, 239, 229, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 300;
  line-height: 1.7;
}

.commission-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1px;
  max-width: 1180px;
  border: 1px solid rgba(244, 239, 229, 0.14);
  background: rgba(244, 239, 229, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.commission-form,
.commission-contact {
  background: rgba(16, 15, 13, 0.7);
  backdrop-filter: blur(22px);
}

.commission-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
}

.form-row {
  display: grid;
  gap: 9px;
}

.form-row-wide,
.commission-submit {
  grid-column: 1 / -1;
}

.form-row label,
.commission-contact span {
  color: rgba(214, 182, 138, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 229, 0.16);
  border-radius: 0;
  outline: none;
  background: rgba(244, 239, 229, 0.06);
  color: var(--ivory);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.form-row input,
.form-row select {
  height: 54px;
  padding: 0 16px;
}

.form-row textarea {
  resize: vertical;
  min-height: 132px;
  padding: 16px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(244, 239, 229, 0.34);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(211, 169, 118, 0.56);
  background: rgba(244, 239, 229, 0.08);
  box-shadow: 0 0 0 4px rgba(168, 121, 77, 0.08);
}

.commission-submit {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--ivory);
  color: #100f0d;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.commission-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(168, 121, 77, 0.2);
}

.commission-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(24px, 4vw, 46px);
}

.commission-contact p {
  margin: 20px 0 0;
  color: rgba(244, 239, 229, 0.66);
  font-size: 0.98rem;
  line-height: 1.7;
}

.commission-links {
  display: grid;
  gap: 12px;
}

.commission-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(244, 239, 229, 0.14);
  color: rgba(244, 239, 229, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.commission-links a::after {
  content: "↗";
  color: rgba(214, 182, 138, 0.82);
}

.commission-links a:hover {
  transform: translateX(4px);
  border-color: rgba(211, 169, 118, 0.44);
  background: rgba(211, 169, 118, 0.08);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 121, 77, 0.16), transparent 34rem),
    #0d0c0b;
}

.footer h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.16em;
}

.footer p {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.18em;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(10px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 920px) {
  .nav div {
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 34px;
  }

  .hero-about {
    max-width: 620px;
    padding-top: 0;
  }

  .section-heading.split,
  .piece,
  .piece.is-reversed,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

  .piece.is-reversed .piece-image {
    order: 0;
  }

  .category-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .category-card {
    min-height: auto;
  }

  .detail-content {
    gap: 36px;
  }

  .commission-panel,
  .commission-form {
    grid-template-columns: 1fr;
  }

  .commission-contact {
    gap: 28px;
  }

  .detail-specs {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    padding-top: 18px;
  }

  .nav div {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 0.68rem;
  }

  .brand-lockup {
    top: auto;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 14px 150px;
    align-content: start;
    gap: 28px;
  }

  .brand-lockup h1 {
    font-size: clamp(4.6rem, 24vw, 7.6rem);
  }

  .brand-lockup p {
    margin-top: 12px;
  }

  .hero-index {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-about h2 {
    margin-bottom: 22px;
    font-size: clamp(1.8rem, 9vw, 3.1rem);
  }

  .hero-about div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-about p {
    font-size: 0.82rem;
    line-height: 1.58;
  }

  .hero-actions {
    left: 14px;
    bottom: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: calc(100vw - 28px);
  }

  .hero-actions .primary-button {
    grid-column: 1 / -1;
  }

  .primary-button,
  .social-button,
  .ghost-button {
    min-height: 42px;
    font-size: 0.68rem;
  }

  .social-button {
    padding-inline: 10px;
  }

  .hero-caption {
    display: none;
  }

  .category-image,
  .piece-image {
    height: clamp(340px, 110vw, 520px);
  }

  .category-text {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .piece {
    min-height: auto;
  }

  .piece-info dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .piece-details {
    padding-inline: 14px;
  }

  .piece-detail {
    scroll-margin-top: 112px;
    padding-block: 56px;
  }

  .detail-visual {
    height: clamp(360px, 112vw, 560px);
  }

  .detail-visual img {
    padding: 14px;
  }

  .detail-copy h1,
  .detail-copy h2 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .detail-lead {
    margin-bottom: 30px;
  }

  .commission-hero {
    padding: 104px 14px 44px;
  }

  .commission-intro {
    margin-bottom: 34px;
  }

  .commission-intro h1 {
    font-size: clamp(3.3rem, 17vw, 5.8rem);
  }

  .commission-intro p {
    margin-top: 22px;
    font-size: 0.95rem;
  }

  .commission-form,
  .commission-contact {
    padding: 20px;
  }

  .form-row input,
  .form-row select {
    height: 50px;
  }

  .commission-submit {
    min-height: 52px;
    font-size: 0.68rem;
  }

  .detail-specs dl div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
