:root {
  --ink: #080707;
  --graphite: #14110f;
  --graphite-soft: #211c18;
  --ivory: #f4ead8;
  --ivory-soft: #cfc1aa;
  --gold: #a9884e;
  --gold-soft: #d5b978;
  --burgundy: #4a1018;
  --stone: #797066;
  --line: rgba(213, 185, 120, 0.28);
  --panel: rgba(244, 234, 216, 0.055);
  --panel-strong: rgba(244, 234, 216, 0.105);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(130deg, #090807 0%, #14100e 42%, #0b0908 100%);
  background-size: 84px 84px, 84px 84px, auto;
  color: var(--ivory);
  font-family: var(--sans);
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(169, 136, 78, 0.05) 24.2% 24.8%, transparent 25% 100%),
    linear-gradient(62deg, transparent 0 64%, rgba(74, 16, 24, 0.12) 64.2% 65.2%, transparent 65.4% 100%);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: repeating-radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
  opacity: 0.12;
  mix-blend-mode: soft-light;
  content: "";
  pointer-events: none;
}

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

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

button {
  cursor: pointer;
}

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

body.has-modal {
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: #080707;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.loader span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  position: relative;
}

.loader span::before,
.loader span::after {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(213, 185, 120, 0.18);
  content: "";
  transform: rotate(45deg);
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.cursor {
  position: fixed;
  z-index: 130;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(213, 185, 120, 0.72);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease, background 180ms ease;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 44px;
  height: 44px;
  background: rgba(213, 185, 120, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(8, 7, 7, 0.62);
  backdrop-filter: blur(20px);
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(213, 185, 120, 0.18);
  background: rgba(8, 7, 7, 0.88);
}

.nav-inner {
  display: grid;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.04rem;
  letter-spacing: 0.08em;
  position: relative;
}

.brand-mark::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(244, 234, 216, 0.14);
  content: "";
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-caption {
  display: block;
  margin-top: 3px;
  color: var(--stone);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  padding: 12px 10px;
  border: 1px solid transparent;
  color: var(--ivory-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  border-color: rgba(213, 185, 120, 0.28);
  background: rgba(244, 234, 216, 0.055);
  color: var(--ivory);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button {
  padding: 0 20px;
  background: linear-gradient(135deg, rgba(169, 136, 78, 0.22), rgba(74, 16, 24, 0.16));
  font-size: 0.75rem;
}

.button:hover,
.button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(213, 185, 120, 0.62);
  background: rgba(213, 185, 120, 0.12);
  outline: none;
}

.button.secondary {
  background: rgba(244, 234, 216, 0.055);
  color: var(--ivory-soft);
}

.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  width: min(100% - 32px, 1360px);
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 40px;
  align-items: center;
  padding-top: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.6;
}

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

.hero h1,
.page-title,
.manifesto-line {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 10vw, 10.4rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
}

.page-title {
  max-width: 980px;
}

.hero p,
.lead {
  max-width: 690px;
  color: var(--ivory-soft);
  font-size: clamp(1rem, 1.32vw, 1.22rem);
  line-height: 1.76;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-plate {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.hero-plate::before,
.hero-plate::after {
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(213, 185, 120, 0.34);
  content: "";
  pointer-events: none;
}

.hero-plate::after {
  inset: 28px;
  border-color: rgba(244, 234, 216, 0.12);
}

.hero-plate img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04) brightness(0.92);
  transform: scale(1.02);
}

.floating-note {
  position: absolute;
  right: 38px;
  bottom: 38px;
  z-index: 4;
  max-width: 260px;
  padding: 18px;
  border: 1px solid rgba(213, 185, 120, 0.34);
  background: rgba(8, 7, 7, 0.72);
  backdrop-filter: blur(16px);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
}

.floating-note span {
  color: var(--ivory-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.44fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2,
.panel-title {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
}

.section-head p,
.muted {
  color: var(--ivory-soft);
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
}

.panel,
.work-card,
.artist-card,
.style-card,
.faq-item,
.process-step,
.form-panel,
.detail-panel {
  border: 1px solid rgba(213, 185, 120, 0.22);
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.panel,
.style-card,
.faq-item,
.process-step,
.form-panel,
.detail-panel {
  border-radius: 8px;
}

.panel {
  padding: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(213, 185, 120, 0.22);
  background: rgba(213, 185, 120, 0.16);
}

.stat {
  min-height: 132px;
  padding: 22px;
  background: rgba(8, 7, 7, 0.86);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
}

.stat span {
  color: var(--ivory-soft);
  font-size: 0.84rem;
  line-height: 1.42;
}

.works-row {
  display: grid;
  grid-auto-columns: minmax(280px, 380px);
  grid-auto-flow: column;
  gap: 18px;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 14px;
  scroll-snap-type: x proximity;
}

.works-row::-webkit-scrollbar {
  height: 8px;
}

.works-row::-webkit-scrollbar-thumb {
  background: rgba(213, 185, 120, 0.34);
}

.work-grid,
.artist-grid,
.style-grid,
.faq-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  scroll-snap-align: start;
  transition: transform 240ms ease, border-color 240ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(213, 185, 120, 0.56);
  outline: none;
}

.work-photo {
  position: absolute;
  inset: 0;
  background: #14110f;
}

.work-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 7, 7, 0.1) 42%, rgba(8, 7, 7, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 7, 7, 0.18), transparent 36%, rgba(8, 7, 7, 0.24));
  content: "";
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04) brightness(0.9);
  transition: transform 420ms ease, filter 420ms ease;
}

.work-card:hover .work-photo img,
.work-card:focus-visible .work-photo img {
  filter: saturate(0.94) contrast(1.08) brightness(0.98);
  transform: scale(1.045);
}

.art-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 7, 7, 0.16) 42%, rgba(8, 7, 7, 0.88) 100%),
    linear-gradient(135deg, #2a221e, #0d0b0a 58%, #251015);
}

.art-visual::before,
.art-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.art-visual::before {
  inset: 38px 44px 116px;
  border: 1px solid rgba(213, 185, 120, 0.42);
  background:
    linear-gradient(90deg, transparent 49%, rgba(244, 234, 216, 0.18) 49.4% 50.6%, transparent 51%),
    radial-gradient(ellipse at 50% 20%, rgba(244, 234, 216, 0.14), transparent 36%),
    radial-gradient(ellipse at 50% 72%, rgba(74, 16, 24, 0.38), transparent 44%);
}

.art-visual::after {
  width: 54%;
  height: 46%;
  left: 23%;
  top: 18%;
  border: 1px solid rgba(244, 234, 216, 0.22);
  border-radius: 50% 50% 44% 44%;
  background:
    repeating-linear-gradient(106deg, transparent 0 10px, rgba(244, 234, 216, 0.18) 11px 12px),
    radial-gradient(circle at 50% 18%, rgba(213, 185, 120, 0.26), transparent 18%);
  transform: rotate(var(--tilt, -4deg));
  mask-image: linear-gradient(180deg, #000 20%, transparent 92%);
}

.visual-ornamental { --tilt: 6deg; }
.visual-ornamental .art-visual,
.visual-ornamental { background-color: #160f11; }
.visual-blackwork .art-visual::after { border-radius: 0; width: 40%; left: 30%; background: repeating-linear-gradient(90deg, rgba(244, 234, 216, 0.22) 0 1px, transparent 1px 10px); }
.visual-realism .art-visual::after { border-radius: 48%; background: radial-gradient(circle at 42% 28%, rgba(244, 234, 216, 0.22), transparent 14%), repeating-linear-gradient(132deg, transparent 0 9px, rgba(244, 234, 216, 0.14) 10px 11px); }
.visual-engraving .art-visual::after { background: repeating-radial-gradient(circle at 50% 50%, rgba(244, 234, 216, 0.18) 0 1px, transparent 1px 9px); }
.visual-micro .art-visual::after { width: 34%; left: 33%; background: radial-gradient(circle at 50% 44%, rgba(244, 234, 216, 0.24), transparent 24%), repeating-linear-gradient(82deg, transparent 0 8px, rgba(244, 234, 216, 0.12) 9px 10px); }
.visual-romantic .art-visual::after { background: radial-gradient(ellipse at 50% 50%, rgba(74, 16, 24, 0.66), transparent 40%), repeating-linear-gradient(45deg, transparent 0 11px, rgba(244, 234, 216, 0.13) 12px 13px); }

.work-meta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(213, 185, 120, 0.22);
  background: rgba(8, 7, 7, 0.44);
  color: var(--ivory-soft);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-meta h3,
.artist-card h3,
.style-card h3,
.process-step h3,
.faq-item h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 500;
  line-height: 1;
}

.work-meta p,
.artist-card p,
.style-card p,
.process-step p,
.faq-item p,
.detail-panel p {
  color: var(--ivory-soft);
  font-size: 0.96rem;
  line-height: 1.64;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(213, 185, 120, 0.22);
  background: rgba(244, 234, 216, 0.045);
  color: var(--ivory-soft);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-bar button.is-active,
.filter-bar button:hover,
.filter-bar button:focus-visible {
  border-color: rgba(213, 185, 120, 0.58);
  color: var(--ivory);
  outline: none;
}

.artist-card,
.style-card,
.process-step,
.detail-panel {
  padding: 24px;
}

.artist-portrait {
  display: block;
  overflow: hidden;
  min-height: 260px;
  margin-bottom: 20px;
  border: 1px solid rgba(213, 185, 120, 0.22);
  background:
    linear-gradient(180deg, rgba(244, 234, 216, 0.08), transparent 52%),
    linear-gradient(135deg, #271d18, #090807 64%, #311018);
}

.artist-portrait img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04) brightness(0.92);
  transition: transform 420ms ease, filter 420ms ease;
}

.artist-card:hover .artist-portrait img {
  filter: saturate(0.94) contrast(1.08) brightness(1);
  transform: scale(1.035);
}

.artist-card .button {
  margin-top: 10px;
}

.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}

.manifesto-line {
  max-width: 1120px;
  margin: 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.image-panel {
  min-height: 520px;
  border: 1px solid rgba(213, 185, 120, 0.24);
  background:
    linear-gradient(180deg, rgba(8, 7, 7, 0.04), rgba(8, 7, 7, 0.72)),
    url("/projects/atelier-aureline/assets/atelier-aureline-hero.png") center / cover;
  filter: saturate(0.85);
}

.marble-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(213, 185, 120, 0.22);
  background:
    linear-gradient(120deg, rgba(244, 234, 216, 0.86), rgba(137, 126, 111, 0.28) 42%, rgba(244, 234, 216, 0.62)),
    repeating-linear-gradient(132deg, transparent 0 24px, rgba(8, 7, 7, 0.08) 25px 26px);
  color: #100d0b;
}

.marble-panel::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(74, 16, 24, 0.28);
  content: "";
}

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

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: end;
  padding-top: 112px;
}

.page-hero .panel {
  align-self: stretch;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.span-2 { grid-column: span 2; }
.field.span-3 { grid-column: span 3; }
.field.span-6 { grid-column: span 6; }

label {
  color: var(--ivory-soft);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(213, 185, 120, 0.24);
  border-radius: 0;
  background: rgba(244, 234, 216, 0.055);
  color: var(--ivory);
  min-height: 48px;
  padding: 12px 13px;
}

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

select option {
  background: #14110f;
  color: var(--ivory);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(213, 185, 120, 0.72);
  outline: none;
}

.field.checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
}

.field.checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.error-text {
  min-height: 16px;
  color: #e7a0a8;
  font-size: 0.78rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--ivory);
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--serif);
  font-size: 1.4rem;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 7, 7, 0.78);
  backdrop-filter: blur(14px);
}

.modal-card {
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid rgba(213, 185, 120, 0.36);
  background: #11100e;
  box-shadow: var(--shadow);
}

.modal-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
}

.modal-card .work-card {
  min-height: 540px;
  border: 0;
  border-right: 1px solid rgba(213, 185, 120, 0.22);
}

.modal-content {
  padding: 30px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(213, 185, 120, 0.32);
  background: rgba(8, 7, 7, 0.58);
  color: var(--ivory);
  font-size: 1.2rem;
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  display: grid;
  gap: 10px;
}

.toast {
  max-width: 320px;
  padding: 14px 16px;
  border: 1px solid rgba(213, 185, 120, 0.34);
  background: rgba(8, 7, 7, 0.9);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 34px;
  border-top: 1px solid rgba(213, 185, 120, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(160px, 0.55fr));
  gap: 28px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--ivory-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  color: var(--stone);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero-plate img {
    animation: slow-frame 18s ease-in-out infinite alternate;
  }

  @keyframes slow-frame {
    from { transform: scale(1.02) translateY(0); }
    to { transform: scale(1.07) translateY(-10px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

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

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.is-open {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    justify-content: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(8, 7, 7, 0.94);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 16px;
  }

  .hero,
  .split,
  .section-head,
  .experience-grid,
  .page-hero,
  .modal-body {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-plate,
  .hero-plate img {
    min-height: 520px;
  }

  .work-grid,
  .artist-grid,
  .style-grid,
  .faq-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-inner,
  .page,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .nav-actions .button,
  .brand-caption {
    display: none;
  }

  .hero {
    width: min(100% - 22px, 1360px);
    padding-top: 34px;
  }

  .hero h1,
  .page-title,
  .manifesto-line {
    font-size: clamp(3.15rem, 17vw, 5.8rem);
  }

  .section-head h2,
  .panel-title {
    font-size: clamp(2.55rem, 14vw, 4.9rem);
  }

  .hero-plate,
  .hero-plate img {
    min-height: 390px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 12px;
  }

  .stat-grid,
  .work-grid,
  .artist-grid,
  .style-grid,
  .faq-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .field.span-2,
  .field.span-3,
  .field.span-6 {
    grid-column: 1 / -1;
  }

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

  .page {
    padding: 64px 0;
  }

  .page-hero {
    padding-top: 74px;
  }

  .modal-card .work-card {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 185, 120, 0.22);
  }

  .toast-region {
    right: 12px;
    left: 12px;
  }

  .toast {
    max-width: none;
  }
}
