:root {
  --charcoal: #0b0b09;
  --charcoal-2: #11100d;
  --walnut: #5a3d27;
  --bronze: #c69b63;
  --moss: #59624e;
  --sand: #d7c7ad;
  --paper: #f1e6d2;
  --muted: rgba(215, 199, 173, 0.68);
  --quiet: rgba(215, 199, 173, 0.14);
  --line: rgba(198, 155, 99, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(89, 98, 78, 0.12), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(90, 61, 39, 0.16), transparent 32%),
    var(--charcoal);
  color: var(--sand);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(215, 199, 173, 0.08) 42%, transparent 49%),
    radial-gradient(circle at 50% 120%, rgba(198, 155, 99, 0.12), transparent 42%);
  mix-blend-mode: screen;
}

.ambient-fog {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  filter: blur(36px);
  opacity: 0.16;
  mix-blend-mode: screen;
}

.fog-a {
  left: -16vw;
  top: 22vh;
  width: 48vw;
  height: 34vw;
  background:
    radial-gradient(ellipse at 34% 48%, rgba(215, 199, 173, 0.22), transparent 58%),
    radial-gradient(ellipse at 72% 36%, rgba(89, 98, 78, 0.18), transparent 48%);
  animation: driftFogA 18s ease-in-out infinite alternate;
}

.fog-b {
  right: -18vw;
  bottom: 10vh;
  width: 52vw;
  height: 38vw;
  background:
    radial-gradient(ellipse at 52% 50%, rgba(198, 155, 99, 0.18), transparent 54%),
    radial-gradient(ellipse at 26% 68%, rgba(215, 199, 173, 0.16), transparent 52%);
  animation: driftFogB 22s ease-in-out infinite alternate;
}

.ember-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 72% 24%, rgba(198, 155, 99, 0.38) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 62%, rgba(151, 54, 36, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 76%, rgba(198, 155, 99, 0.22) 0 1px, transparent 2px);
  background-size: 260px 220px, 380px 340px, 310px 290px;
  animation: emberShift 16s linear infinite alternate;
}

#atmosphere {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: screen;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 68px);
  background: linear-gradient(180deg, rgba(11, 11, 9, 0.84), rgba(11, 11, 9, 0));
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze);
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(198, 155, 99, 0.22));
}

.brand-lockup span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(215, 199, 173, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--bronze);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 116px clamp(22px, 6vw, 94px) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 70%, rgba(117, 34, 24, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(11, 11, 9, 0.98) 0%, rgba(11, 11, 9, 0.76) 34%, rgba(11, 11, 9, 0.08) 76%),
    linear-gradient(0deg, rgba(11, 11, 9, 0.98), rgba(11, 11, 9, 0.05) 44%),
    url("assets/hero-amazing.png") 62% center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 11, 9, 0.5), transparent 32%),
    repeating-linear-gradient(90deg, rgba(215, 199, 173, 0.025) 0 1px, transparent 1px 92px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--charcoal), transparent);
}

.mist {
  position: absolute;
  width: 44vw;
  height: 44vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(48px);
  background:
    radial-gradient(circle, rgba(215, 199, 173, 0.22), transparent 58%),
    radial-gradient(circle at 70% 40%, rgba(89, 98, 78, 0.22), transparent 44%);
  pointer-events: none;
}

.mist-one {
  left: -18vw;
  bottom: 4vh;
  animation: breatheMist 14s ease-in-out infinite alternate;
}

.mist-two {
  right: 8vw;
  top: 10vh;
  opacity: 0.11;
  animation: breatheMist 18s ease-in-out infinite alternate-reverse;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-sigil {
  width: clamp(54px, 6vw, 92px);
  margin: 26px 0 -4px;
  opacity: 0.82;
  filter:
    drop-shadow(0 0 20px rgba(198, 155, 99, 0.28))
    drop-shadow(0 18px 50px rgba(0, 0, 0, 0.8));
}

.eyebrow,
.section-kicker,
.object-index {
  margin: 0;
  color: var(--bronze);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-top: 24px;
  color: var(--bronze);
  font-size: clamp(4.5rem, 10vw, 10.8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-line {
  margin: 42px 0 0;
  max-width: 440px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.3;
}

.hero-text {
  max-width: 530px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

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

.hero-actions a {
  min-width: 186px;
  padding: 14px 18px;
  border: 1px solid rgba(198, 155, 99, 0.46);
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  background:
    linear-gradient(120deg, rgba(198, 155, 99, 0.14), rgba(11, 11, 9, 0.36)),
    rgba(11, 11, 9, 0.42);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  color: var(--bronze);
  border-color: rgba(198, 155, 99, 0.84);
  transform: translateY(-2px);
}

.scroll-note {
  position: absolute;
  right: clamp(22px, 4vw, 70px);
  bottom: 48px;
  z-index: 2;
  color: rgba(198, 155, 99, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.manifesto,
.objects,
.substrate,
.atelier,
.about,
.contact {
  padding: clamp(76px, 10vw, 150px) clamp(22px, 5vw, 86px);
}

.manifesto {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 22%, rgba(89, 98, 78, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(11, 11, 9, 0.9), rgba(17, 16, 13, 0.98)),
    var(--charcoal-2);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
  margin-top: 26px;
}

h2 {
  color: var(--paper);
  font-size: clamp(2.3rem, 5.4vw, 6.6rem);
  line-height: 0.96;
}

.manifesto p:not(.section-kicker),
.substrate p,
.atelier p,
.object-copy p,
.object-copy li,
address a,
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.landscape-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}

.landscape-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(24px, 4vw, 56px);
  border-right: 1px solid var(--line);
  isolation: isolate;
}

.landscape-panel:last-child {
  border-right: 0;
}

.landscape-panel::before,
.landscape-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.landscape-panel::before {
  background: var(--panel-bg);
  transform: scale(1.05);
  filter: saturate(0.78) contrast(1.1);
  transition: transform 900ms ease, filter 900ms ease;
}

.landscape-panel::after {
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0.1), rgba(11, 11, 9, 0.82)),
    radial-gradient(circle at 50% 48%, rgba(215, 199, 173, 0.12), transparent 42%);
}

.landscape-panel span {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 5rem);
  line-height: 0.95;
}

.landscape-panel p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(215, 199, 173, 0.7);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
}

.landscape-panel:hover::before {
  transform: scale(1.1);
  filter: saturate(0.88) contrast(1.18);
}

.landscape-panel.forest {
  --panel-bg:
    linear-gradient(120deg, rgba(11, 11, 9, 0.12), rgba(11, 11, 9, 0.62)),
    url("assets/collection-sotobosque.png") center / cover no-repeat;
}

.landscape-panel.lava {
  --panel-bg:
    radial-gradient(circle at 50% 56%, rgba(112, 24, 18, 0.28), transparent 34%),
    url("assets/collection-ashfall.png") center / cover no-repeat;
}

.landscape-panel.shadow {
  --panel-bg:
    linear-gradient(90deg, rgba(11, 11, 9, 0.12), rgba(11, 11, 9, 0.68)),
    url("assets/hero-living-design.png") center / cover no-repeat;
}

.cinematic-world {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(32px, 6vw, 94px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(76px, 10vw, 150px) clamp(22px, 5vw, 86px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 48%, rgba(198, 155, 99, 0.16), transparent 30%),
    radial-gradient(circle at 26% 72%, rgba(89, 98, 78, 0.14), transparent 28%),
    #080806;
}

.cinematic-world::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 11, 9, 0.96), transparent 48%),
    radial-gradient(ellipse at 56% 82%, rgba(215, 199, 173, 0.13), transparent 38%);
}

.world-copy,
.world-image {
  position: relative;
  z-index: 1;
}

.world-copy h2 {
  margin-top: 20px;
  color: var(--bronze);
}

.world-image {
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(198, 155, 99, 0.2);
  box-shadow:
    0 40px 160px rgba(0, 0, 0, 0.62),
    -22px 0 90px rgba(198, 155, 99, 0.08);
}

.world-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(11, 11, 9, 0.5)),
    radial-gradient(ellipse at 24% 76%, rgba(215, 199, 173, 0.16), transparent 36%);
  pointer-events: none;
}

.world-image img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.86) contrast(1.08);
}

.objects {
  background:
    linear-gradient(90deg, rgba(11, 11, 9, 0.92), transparent 50%, rgba(11, 11, 9, 0.94)),
    radial-gradient(circle at 22% 18%, rgba(89, 98, 78, 0.16), transparent 26%),
    radial-gradient(circle at 86% 46%, rgba(117, 34, 24, 0.16), transparent 28%),
    linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
}

.section-heading {
  display: grid;
  grid-template-columns: 0.56fr 1.44fr;
  gap: 40px;
  align-items: end;
  max-width: 1360px;
  margin: 0 auto clamp(42px, 7vw, 92px);
}

.object-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(34px, 5.4vw, 86px) 0;
  border-top: 1px solid var(--line);
}

.object-card.reverse {
  grid-template-columns: minmax(280px, 0.7fr) minmax(280px, 0.9fr);
}

.object-card.reverse .object-media {
  order: 2;
}

.object-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(198, 155, 99, 0.18);
  background: #050504;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.48),
    inset 0 0 80px rgba(0, 0, 0, 0.32);
}

.object-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0), rgba(11, 11, 9, 0.22)),
    linear-gradient(90deg, rgba(215, 199, 173, 0.1), transparent 24%, transparent 78%, rgba(198, 155, 99, 0.08)),
    radial-gradient(circle at 50% 90%, rgba(198, 155, 99, 0.1), transparent 45%);
  pointer-events: none;
}

.object-media::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 1;
  opacity: 0.24;
  pointer-events: none;
  filter: blur(28px);
  background:
    radial-gradient(ellipse at 26% 74%, rgba(215, 199, 173, 0.22), transparent 52%),
    radial-gradient(ellipse at 82% 18%, rgba(198, 155, 99, 0.16), transparent 50%);
}

.object-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 1100ms ease, filter 1100ms ease;
}

.object-card:hover .object-media img {
  transform: scale(1.035);
  filter: saturate(0.82) contrast(1.1) brightness(0.95);
}

.object-copy {
  max-width: 500px;
}

.object-copy h3 {
  margin-top: 18px;
  color: var(--bronze);
  font-size: clamp(2.7rem, 5vw, 5.9rem);
  line-height: 0.9;
}

.object-copy p {
  margin: 26px 0 0;
}

.object-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.object-copy li {
  position: relative;
  padding-left: 26px;
}

.object-copy li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--bronze);
}

.substrate {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  min-height: 720px;
  background:
    radial-gradient(circle at 82% 58%, rgba(112, 24, 18, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(11, 11, 9, 0.95), rgba(11, 11, 9, 0.68)),
    url("assets/hero-living-design.png") center / cover fixed no-repeat;
}

.substrate::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 74% 70%, rgba(117, 34, 24, 0.42), transparent 34%),
    radial-gradient(ellipse at 22% 70%, rgba(215, 199, 173, 0.16), transparent 38%);
  filter: blur(18px);
}

.substrate-panel {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: clamp(28px, 5vw, 64px) 0;
}

.substrate h2 {
  margin-top: 20px;
}

.substrate p:not(.section-kicker) {
  max-width: 610px;
  margin-top: 28px;
}

.substrate-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.substrate-list article {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(198, 155, 99, 0.22);
  background:
    linear-gradient(120deg, rgba(215, 199, 173, 0.07), rgba(11, 11, 9, 0.34)),
    rgba(11, 11, 9, 0.64);
  backdrop-filter: blur(18px);
}

.substrate-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 24%, rgba(198, 155, 99, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(198, 155, 99, 0.12), transparent 26%);
}

.substrate-list span,
.contact-form span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--bronze);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.substrate-list h3 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 0.96;
}

.substrate-list p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(215, 199, 173, 0.66);
}

.atelier {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0.36), rgba(11, 11, 9, 0.92)),
    linear-gradient(90deg, rgba(11, 11, 9, 0.95), rgba(11, 11, 9, 0.16)),
    url("assets/collection-sotobosque.png") center 44% / cover no-repeat;
}

.atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 26% 70%, rgba(215, 199, 173, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(11, 11, 9, 0.82), transparent 52%);
}

.atelier > div {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.atelier h2 {
  margin-top: 20px;
}

.atelier p:not(.section-kicker) {
  max-width: 620px;
  margin: 26px 0 0;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 0.82fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(11, 11, 9, 0.96), rgba(11, 11, 9, 0.74)),
    radial-gradient(circle at 20% 20%, rgba(89, 98, 78, 0.18), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(198, 155, 99, 0.12), transparent 34%),
    var(--charcoal);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent, rgba(215, 199, 173, 0.08), transparent),
    url("assets/icon.PNG") 8% 78% / 180px auto no-repeat;
  filter: drop-shadow(0 0 28px rgba(198, 155, 99, 0.22));
}

.about-heading,
.about-story {
  position: relative;
  z-index: 1;
}

.about-heading h2 {
  margin-top: 20px;
}

.about-story {
  display: grid;
  gap: 24px;
  padding-top: 8px;
}

.about-story p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  min-height: 680px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(11, 11, 9, 0.98), rgba(11, 11, 9, 0.72)),
    radial-gradient(circle at 72% 58%, rgba(198, 155, 99, 0.12), transparent 34%),
    var(--charcoal);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    radial-gradient(ellipse at 82% 60%, rgba(215, 199, 173, 0.18), transparent 34%),
    radial-gradient(ellipse at 18% 30%, rgba(89, 98, 78, 0.18), transparent 30%);
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact h2 {
  max-width: 860px;
  margin-top: 20px;
  color: var(--bronze);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.contact-sigil {
  width: clamp(54px, 5vw, 86px);
  margin: 0 0 26px;
  opacity: 0.76;
  filter: drop-shadow(0 0 20px rgba(198, 155, 99, 0.2));
}

.contact-form {
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(198, 155, 99, 0.26);
  background:
    linear-gradient(145deg, rgba(215, 199, 173, 0.07), rgba(11, 11, 9, 0.34)),
    rgba(11, 11, 9, 0.72);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(20px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(198, 155, 99, 0.24);
  border-radius: 0;
  outline: 0;
  background: rgba(5, 5, 4, 0.54);
  color: var(--sand);
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(198, 155, 99, 0.72);
  background: rgba(5, 5, 4, 0.74);
  box-shadow: 0 0 0 3px rgba(198, 155, 99, 0.08);
}

.contact-form button {
  min-height: 52px;
  margin-top: 4px;
  border: 1px solid rgba(198, 155, 99, 0.62);
  color: var(--charcoal);
  background: linear-gradient(135deg, #d7c7ad, #c69b63);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

address {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-style: normal;
  text-align: left;
}

address a {
  transition: color 180ms ease;
}

address a:hover,
address a:focus-visible {
  color: var(--bronze);
}

@keyframes driftFogA {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(8vw, -5vh, 0) scale(1.16);
  }
}

@keyframes driftFogB {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-7vw, 4vh, 0) scale(1.12);
  }
}

@keyframes breatheMist {
  from {
    opacity: 0.12;
    transform: scale(0.96);
  }

  to {
    opacity: 0.26;
    transform: scale(1.12) translateY(-10px);
  }
}

@keyframes emberShift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 34px -28px, -46px 38px, 22px 30px;
  }
}

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

@media (max-width: 980px) {
  .hero {
    align-items: end;
    min-height: 94svh;
    background:
      radial-gradient(circle at 66% 56%, rgba(117, 34, 24, 0.14), transparent 34%),
      linear-gradient(180deg, rgba(11, 11, 9, 0.2), rgba(11, 11, 9, 0.95) 70%),
      url("assets/hero-amazing.png") 62% center / cover no-repeat;
  }

  .manifesto-grid,
  .section-heading,
  .landscape-strip,
  .cinematic-world,
  .object-card,
  .object-card.reverse,
  .substrate,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .object-card.reverse .object-media {
    order: 0;
  }

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

  .contact-form {
    width: 100%;
  }

  .substrate {
    background-attachment: scroll;
  }

  .landscape-panel,
  .landscape-strip {
    min-height: 340px;
  }

  .world-image,
  .world-image img {
    min-height: 420px;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    padding: 20px;
  }

  .brand-lockup img {
    width: 36px;
    height: 36px;
  }

  .brand-lockup span {
    display: none;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .nav-links a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 96px 20px 46px;
  }

  .hero-actions a {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.45rem, 18.5vw, 5.6rem);
  }

  .scroll-note {
    display: none;
  }

  .manifesto,
  .landscape-panel,
  .cinematic-world,
  .objects,
  .substrate,
  .atelier,
  .about,
  .contact {
    padding: 68px 20px;
  }

  h2 {
    font-size: clamp(2.15rem, 11.2vw, 4rem);
  }

  .object-media,
  .object-media img {
    min-height: 430px;
  }

  .object-copy h3 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .substrate-list article {
    padding: 20px;
  }

  .atelier {
    min-height: 480px;
  }
}
