:root {
  --ink: #10100f;
  --black: #080807;
  --paper: #efeee8;
  --bone: #dedbd0;
  --muted: #8c8a82;
  --amber: #c68a48;
  --line: rgba(15, 15, 14, .17);
  --serif: Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; }

.site-body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: .8rem 1rem;
}
.skip-link:focus { top: 1rem; }

.announcement {
  position: relative;
  z-index: 20;
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  background: #d5c1a6;
  color: #262018;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.announcement i { width: 2px; height: 2px; background: currentColor; border-radius: 50%; }

.site-nav {
  position: absolute;
  z-index: 50;
  top: 29px;
  left: 0;
  width: 100%;
  height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 74px);
  color: #f4f1e8;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  transition: background .35s, height .35s, transform .35s;
}
.site-nav.is-fixed {
  position: fixed;
  top: 0;
  height: 70px;
  background: rgba(8, 8, 7, .92);
  backdrop-filter: blur(18px);
}
.wordmark { display: inline-flex; align-items: center; gap: .85rem; width: fit-content; }
.wordmark b {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
}
.wordmark span { font-size: 13px; font-weight: 700; letter-spacing: .27em; }
.site-nav nav { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 3.4rem); }
.site-nav nav a, .nav-enquire {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-nav nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-enquire { justify-self: end; display: flex; gap: .9rem; align-items: center; }
.nav-enquire span { font-size: 14px; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  min-height: min(930px, calc(100vh - 29px));
  background: var(--black);
  color: #f4f1e8;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 39%;
  background: url("/assets/vitrelume-hero-v3.webp") 69% 50% / cover no-repeat;
  transform: scale(1.02);
  animation: settle 1.6s cubic-bezier(.2,.7,.1,1) both;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080807 0%, #080807 31%, rgba(8,8,7,.84) 42%, rgba(8,8,7,.08) 67%, rgba(8,8,7,.18) 100%),
    linear-gradient(0deg, rgba(8,8,7,.65) 0%, transparent 28%);
}
.hero-copy {
  position: relative;
  z-index: 4;
  width: min(680px, 54vw);
  padding: clamp(180px, 24vh, 250px) 0 130px clamp(24px, 7.5vw, 144px);
}
.eyebrow {
  margin: 0 0 2.1rem;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.hero h1, .display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 9vw, 166px);
  font-weight: 400;
  line-height: .74;
  letter-spacing: -.06em;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em, .display em { color: var(--amber); font-weight: 400; }
.hero h1 em { margin-left: .45em; font-style: italic; }
.hero-description {
  width: min(500px, 92%);
  margin: 3.2rem 0 0;
  color: rgba(244, 241, 232, .7);
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 1.3rem; margin-top: 2.6rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 194px;
  padding: 17px 19px;
  border: 1px solid transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s, background .25s, border-color .25s, transform .25s;
}
.button span { font-size: 14px; }
.button:hover { transform: translateY(-2px); }
.button--light { background: #f1eee4; color: #0d0d0c; }
.button--light:hover { background: #d5c1a6; }
.button--line { border-color: rgba(255,255,255,.35); color: #fff; }
.button--line:hover { border-color: #fff; }
.button--dark { background: #11110f; color: #fff; }
.button--dark:hover { background: #5a3c26; }
.hero-caption {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 74px);
  bottom: 35px;
  display: flex;
  gap: 2rem;
  color: rgba(255,255,255,.5);
  font-size: 8px;
  letter-spacing: .18em;
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 4vw, 74px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255,255,255,.6);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-cue i { width: 38px; height: 1px; background: rgba(255,255,255,.45); }

.section { padding: clamp(90px, 11vw, 170px) clamp(24px, 7.5vw, 144px); }
.section-label { display: flex; gap: 1rem; align-items: center; font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.section-label span { color: var(--amber); }
.intro { background: #eeede7; }
.intro-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; margin-top: clamp(60px, 9vw, 130px); }
.display { font-size: clamp(66px, 8.3vw, 146px); line-height: .82; }
.display em { font-style: italic; }
.intro-copy { padding-bottom: .5rem; }
.intro-copy p {
  margin: 0 0 1.3rem;
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.55;
}
.intro-copy p:last-child { color: #69665e; }

.collection { background: #d9d6cd; }
.section-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 8vw; align-items: end; }
.section-heading .section-label { margin-bottom: 3.5rem; }
.section-heading > p {
  margin: 0 0 .7rem;
  color: #5e5b54;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 36px);
  margin-top: clamp(70px, 9vw, 130px);
}
.product-card { min-width: 0; }
.product-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #111;
  background-image: url("/assets/vitrelume-hero-v3.webp");
  background-size: auto 126%;
  transition: background-size .8s cubic-bezier(.2,.8,.2,1), filter .5s;
}
.product-card:hover .product-visual { background-size: auto 133%; filter: saturate(1.12); }
.visual-aster { background-position: 83% 54%; }
.visual-halo { background-position: 62% 73%; }
.visual-nocturne { background-position: 102% 58%; }
.visual-lumen { background-position: 73% 55%; filter: hue-rotate(-13deg) brightness(.86); }
.edition {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  background: rgba(239,238,232,.9);
  color: #191815;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.product-info { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.4rem; border-top: 1px solid transparent; }
.product-info h3 { margin: 0 0 .35rem; font-family: var(--serif); font-size: clamp(24px, 2.2vw, 37px); font-weight: 400; }
.product-info p, .product-info > span { margin: 0; color: #6f6b62; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.product-info > span { padding-top: .6rem; text-align: right; }
.collection-note { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 2rem; align-items: center; margin-top: 7rem; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.collection-note span, .collection-note a { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.collection-note p { margin: 0; color: #656159; font-family: var(--serif); font-size: 17px; }

.bespoke { min-height: 910px; display: grid; grid-template-columns: 1fr 1fr; background: #bfc0ba; }
.bespoke-image {
  min-height: 760px;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35)),
    url("/assets/vitrelume-hero-v3.webp") 70% 50% / auto 118% no-repeat,
    #090909;
}
.bespoke-content { padding: clamp(80px, 8vw, 145px) clamp(30px, 7vw, 130px); }
.bespoke-content .display { margin-top: 5rem; font-size: clamp(58px, 6.5vw, 114px); }
.bespoke-content > p { max-width: 620px; margin: 3rem 0 0; color: #4f4d47; font-family: var(--serif); font-size: 19px; line-height: 1.65; }
.process-list { margin: 4.5rem 0 3rem; border-top: 1px solid rgba(0,0,0,.2); }
.process-list > div { display: grid; grid-template-columns: 42px 1fr 1.5fr; gap: 1rem; align-items: center; padding: 1.3rem 0; border-bottom: 1px solid rgba(0,0,0,.2); }
.process-list span { color: #73502f; font-size: 9px; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.process-list p { margin: 0; color: #62605a; font-size: 11px; line-height: 1.5; }

.services { background: #eeede7; }
.service-list { margin-top: 7rem; border-top: 1px solid var(--line); }
.service-item {
  display: grid;
  grid-template-columns: 60px minmax(180px, .7fr) 1.4fr 30px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s, background .3s;
}
.service-item:hover { padding-left: 1rem; padding-right: 1rem; background: rgba(198,138,72,.08); }
.service-item > span { color: var(--amber); font-size: 9px; }
.service-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(24px, 2.6vw, 42px); font-weight: 400; }
.service-item p { margin: 0; color: #68655e; font-size: 13px; line-height: 1.65; }
.service-item i { font-style: normal; }

.atelier { background: #11110f; color: #eeeae0; }
.atelier-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 730px; border: 1px solid rgba(255,255,255,.16); }
.atelier-art { position: relative; min-height: 650px; overflow: hidden; background: radial-gradient(circle at 48% 46%, #6e4e34, #24211d 29%, #0d0d0c 67%); }
.glass-orb {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(29vw, 430px);
  aspect-ratio: 1;
  border-radius: 46% 54% 51% 49% / 43% 47% 53% 57%;
  transform: translate(-50%, -50%) rotate(18deg);
  border: 1px solid rgba(255,255,255,.48);
  background:
    radial-gradient(circle at 37% 31%, rgba(255,255,255,.58) 0 2%, transparent 10%),
    radial-gradient(circle at 68% 68%, rgba(196,111,53,.48), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(175,112,62,.06) 45%, rgba(0,0,0,.4));
  box-shadow: inset 25px 13px 65px rgba(255,255,255,.14), inset -35px -20px 70px rgba(0,0,0,.7), 0 34px 70px rgba(0,0,0,.6);
  filter: saturate(.8);
}
.glass-orb::before, .glass-orb::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.5); filter: blur(1px); }
.glass-orb::before { width: 5px; height: 5px; left: 37%; top: 31%; box-shadow: 43px 37px 0 -1px rgba(255,255,255,.4), 90px 105px 0 -1px rgba(255,255,255,.3); }
.glass-orb::after { width: 80%; height: 18%; left: 8%; bottom: -12%; background: rgba(0,0,0,.7); filter: blur(18px); }
.atelier-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 7vw, 120px); }
.atelier-copy .display { margin: 5rem 0 3rem; font-size: clamp(54px, 6vw, 105px); }
.atelier-copy > p { max-width: 520px; margin: 0 0 1.5rem; color: rgba(255,255,255,.64); font-family: var(--serif); font-size: 18px; line-height: 1.65; }
.atelier-copy .fineprint { color: rgba(255,255,255,.35); font-family: var(--sans); font-size: 10px; letter-spacing: .08em; }

.contact { position: relative; overflow: hidden; background: #a65d32; color: #f2e9dc; text-align: center; }
.contact::before { content: ""; position: absolute; width: 56vw; height: 56vw; max-width: 760px; max-height: 760px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.contact-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.contact .display { font-size: clamp(72px, 9.5vw, 162px); }
.contact .display em { color: #261b15; }
.contact-inner > p:not(.eyebrow) { max-width: 650px; margin: 3rem auto; font-family: var(--serif); font-size: 18px; line-height: 1.6; }
.contact-status { display: inline-flex; align-items: center; gap: 1rem; padding: 17px 22px; border: 1px solid rgba(255,255,255,.35); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-status i { width: 6px; height: 6px; border-radius: 50%; background: #d7e3b5; box-shadow: 0 0 12px #d7e3b5; }
.contact-status b { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.3); font-weight: 700; }

.footer { display: grid; grid-template-columns: 1fr auto auto; gap: 5vw; align-items: end; padding-top: 65px; padding-bottom: 55px; background: #080807; color: #eeebe1; }
.footer > div p { margin: 2.5rem 0 0; color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .17em; }
.footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem; }
.footer nav a, .back-top { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer nav a:hover, .back-top:hover { color: #d5c1a6; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.2,.7,.1,1), transform .85s cubic-bezier(.2,.7,.1,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes settle { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1.02); } }

/* Admin */
.admin-body { min-height: 100vh; margin: 0; background: #0b0b0a; color: #e9e5da; font-family: var(--sans); }
.admin-shell { width: min(1120px, calc(100% - 36px)); margin: 0 auto; padding: 35px 0 80px; }
.admin-shell--login { min-height: 100vh; display: grid; place-items: center; padding: 30px 0; }
.admin-panel { border: 1px solid rgba(255,255,255,.13); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: 0 35px 100px rgba(0,0,0,.4); }
.login-panel { width: min(510px, 100%); padding: clamp(32px, 5vw, 66px); }
.admin-brand { display: inline-flex; align-items: center; gap: .8rem; font-size: 11px; font-weight: 700; letter-spacing: .25em; }
.admin-brand span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid #bd8a59; border-radius: 50%; color: #bd8a59; font-family: var(--serif); font-style: italic; }
.admin-kicker { margin-top: 4rem; color: #bd8a59; font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.admin-panel h1 { margin: 1.4rem 0 .8rem; font-family: var(--serif); font-size: clamp(46px, 6vw, 72px); font-weight: 400; }
.admin-panel h1 span { color: #bd8a59; }
.admin-lead { max-width: 720px; color: rgba(255,255,255,.51); line-height: 1.7; }
.admin-field { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.3rem; }
.admin-field label { color: rgba(255,255,255,.56); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.admin-field input, .admin-field textarea { width: 100%; border: 1px solid rgba(255,255,255,.15); border-radius: 0; outline: none; background: rgba(0,0,0,.24); color: #fff; padding: 14px 15px; transition: border-color .2s; }
.admin-field input:focus, .admin-field textarea:focus { border-color: #bd8a59; }
.admin-field textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.admin-field .admin-textarea--large { min-height: 170px; }
.admin-hint { color: rgba(255,255,255,.34); font-size: 10px; }
.admin-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.admin-button { border: 0; background: #d3b18f; color: #17120e; padding: 15px 20px; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.admin-button:hover { background: #ecd1b3; }
.admin-actions a, .admin-actions > span { color: rgba(255,255,255,.45); font-size: 11px; }
.admin-secure { display: flex; align-items: center; gap: .7rem; margin: 2.5rem 0 0; color: rgba(255,255,255,.32); font-size: 9px; letter-spacing: .12em; }
.admin-secure i, .admin-status i { width: 6px; height: 6px; border-radius: 50%; background: #91b66f; box-shadow: 0 0 9px #91b66f; }
.admin-error, .admin-success { padding: 12px 14px; border: 1px solid rgba(255,255,255,.16); font-size: 12px; }
.admin-error { background: rgba(177,55,44,.16); color: #e1a69f; }
.admin-success { background: rgba(83,146,74,.16); color: #b3d4a9; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.admin-status { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .12em; }
.editor-panel { padding: clamp(28px, 5vw, 68px); }
.editor-heading { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.editor-heading .admin-kicker { margin-top: 0; }
.admin-preview { color: #d3b18f; font-size: 10px; letter-spacing: .12em; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.6rem; margin-top: 2.5rem; }
.admin-field--full { grid-column: 1 / -1; }
.admin-actions--editor { justify-content: flex-start; }
.logout-form { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.logout-form button { border: 0; background: transparent; color: rgba(255,255,255,.4); cursor: pointer; font-size: 10px; }

@media (max-width: 980px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .site-nav nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; padding: 2rem; background: rgba(8,8,7,.97); }
  .site-nav.is-open nav { display: flex; }
  .nav-enquire { display: none; }
  .menu-toggle { display: block; color: #fff; }
  .hero-image { left: 18%; background-position: 73% 50%; }
  .hero-veil { background: linear-gradient(90deg, #080807 0%, rgba(8,8,7,.87) 41%, rgba(8,8,7,.2) 78%), linear-gradient(0deg, rgba(8,8,7,.7), transparent 45%); }
  .hero-copy { width: 72vw; }
  .intro-grid, .section-heading { grid-template-columns: 1fr; }
  .intro-copy, .section-heading > p { max-width: 560px; margin-top: 3rem; }
  .bespoke { grid-template-columns: 1fr; }
  .bespoke-image { min-height: 70vw; }
  .atelier-card { grid-template-columns: 1fr; }
  .atelier-art { min-height: 620px; }
  .glass-orb { width: min(55vw, 430px); }
}

@media (max-width: 680px) {
  .announcement { justify-content: flex-start; overflow: hidden; padding: 0 18px; white-space: nowrap; }
  .announcement span:nth-of-type(3), .announcement i:nth-of-type(2) { display: none; }
  .site-nav { height: 72px; padding: 0 20px; }
  .wordmark span { font-size: 11px; }
  .hero { min-height: 830px; }
  .hero-image { inset: 0 0 0 0; background-position: 74% center; opacity: .72; }
  .hero-veil { background: linear-gradient(90deg, rgba(8,8,7,.97) 0%, rgba(8,8,7,.74) 58%, rgba(8,8,7,.24) 100%), linear-gradient(0deg, #080807 0%, transparent 48%); }
  .hero-copy { width: 100%; padding: 165px 22px 120px; }
  .hero h1 { font-size: clamp(62px, 20vw, 95px); }
  .hero h1 em { margin-left: .2em; }
  .hero-description { margin-top: 2rem; font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(300px, 100%); }
  .button { min-width: 0; }
  .hero-caption { display: none; }
  .scroll-cue { left: 22px; }
  .section { padding: 85px 22px; }
  .display { font-size: clamp(54px, 17vw, 82px); }
  .intro-grid { margin-top: 60px; }
  .product-grid { grid-template-columns: 1fr; margin-top: 65px; }
  .product-visual { aspect-ratio: 5 / 6; }
  .collection-note { grid-template-columns: 1fr; margin-top: 5rem; }
  .bespoke-image { min-height: 570px; background-position: 73% 50%; }
  .bespoke-content { padding: 80px 22px; }
  .bespoke-content .display { margin-top: 3.5rem; }
  .process-list > div { grid-template-columns: 35px 1fr; }
  .process-list p { grid-column: 2; }
  .service-list { margin-top: 4rem; }
  .service-item { grid-template-columns: 30px 1fr 20px; gap: 1rem; }
  .service-item p { grid-column: 2 / 4; }
  .atelier { padding-left: 0; padding-right: 0; }
  .atelier-card { border-left: 0; border-right: 0; }
  .atelier-art { min-height: 480px; }
  .atelier-copy { padding: 70px 22px; }
  .atelier-copy .display { margin: 3.5rem 0 2.2rem; }
  .contact-status { flex-wrap: wrap; justify-content: center; }
  .footer { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer nav { width: min(300px, 100%); }
  .admin-shell { width: min(100% - 22px, 1120px); }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-field--full { grid-column: auto; }
  .editor-heading { align-items: flex-start; flex-direction: column; }
  .admin-topbar { gap: 1rem; }
  .admin-status { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
