:root {
  --ink: #100a0b;
  --ink-soft: #181011;
  --paper: #f4eee4;
  --paper-deep: #e6d8c4;
  --gold: #c79a48;
  --gold-bright: #e3c274;
  --wine: #5f1726;
  --teal: #0f4d50;
  --line: rgba(230, 216, 196, 0.22);
  --muted: #bdb1a4;
  --white: #fffaf2;
  --header-height: 86px;
  --radius: 2px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: .12;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(199, 154, 72, .75), transparent 64%);
  transition: opacity .25s ease;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(16, 10, 11, .88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: .9rem; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227, 194, 116, .7);
  transform: rotate(45deg);
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-bright);
}
.brand-mark::first-letter { transform: rotate(-45deg); }
.brand-mark { line-height: 1; }
.brand-mark::before { content: 'K'; transform: rotate(-45deg); font-size: 1.25rem; }
.brand-mark { font-size: 0; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; letter-spacing: .05em; }
.brand-copy strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.brand-copy small { margin-top: .35rem; color: var(--gold-bright); font-size: .65rem; text-transform: uppercase; letter-spacing: .28em; }
.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 3rem); }
.site-nav a {
  position: relative;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, .78);
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; }
.site-nav .nav-cta {
  padding: .72rem 1rem;
  border: 1px solid rgba(227, 194, 116, .5);
  color: var(--gold-bright);
}
.site-nav .nav-cta::after { display: none; }
.menu-toggle { display: none; background: none; border: 0; padding: .5rem; }
.menu-toggle span:not(.sr-only) { display: block; width: 27px; height: 1px; margin: 6px 0; background: var(--paper); transition: transform .25s ease, opacity .25s ease; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url('/assets/images/royal-court.webp') center 29% / cover no-repeat;
  transform: scale(1.025);
  animation: heroBreath 14s ease-in-out infinite alternate;
}
@keyframes heroBreath { to { transform: scale(1.085); } }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 7, 8, .92) 0%, rgba(12, 7, 8, .58) 42%, rgba(12, 7, 8, .08) 74%),
    linear-gradient(0deg, rgba(12, 7, 8, .92) 0%, transparent 45%),
    radial-gradient(circle at 60% 24%, transparent 0%, rgba(0, 0, 0, .26) 72%);
}
.hero-lines {
  position: absolute;
  inset: var(--header-height) 4.5rem 0;
  border-left: 1px solid rgba(255, 255, 255, .12);
  border-right: 1px solid rgba(255, 255, 255, .08);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(810px, calc(100% - 2.5rem));
  margin: 0 0 clamp(7rem, 13vh, 10rem) clamp(1.25rem, 8vw, 8.5rem);
}
.eyebrow {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-bright);
  font-size: .69rem;
  letter-spacing: .27em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 34px; height: 1px; background: currentColor; }
.eyebrow.left { justify-content: flex-start; }
.hero h1 {
  margin: 0;
  max-width: 790px;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9.4rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.055em;
  text-shadow: 0 10px 50px rgba(0, 0, 0, .35);
}
.hero h1 em { color: var(--gold-bright); font-weight: 400; }
.hero-lead {
  max-width: 610px;
  margin: 2.3rem 0 0;
  color: rgba(255, 250, 242, .76);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; }
.button {
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.45rem;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button-primary { background: var(--gold-bright); color: var(--ink); box-shadow: 0 18px 50px rgba(199, 154, 72, .18); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 60px rgba(199, 154, 72, .3); }
.text-link { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 250, 242, .86); }
.text-link span { margin-left: .45rem; color: var(--gold-bright); }
.hero-index {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 4vw, 4.5rem);
  top: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, .58);
  font-size: .62rem;
  letter-spacing: .14em;
}
.hero-index div { width: 1px; height: 95px; background: linear-gradient(var(--gold-bright) 36%, rgba(255,255,255,.2) 36%); }
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255, 255, 255, .55);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-cue i { width: 54px; height: 1px; background: rgba(255,255,255,.42); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; width: 45%; height: 100%; background: var(--gold-bright); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { from { left: -50%; } to { left: 110%; } }

.section-pad { padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem); }
.section-kicker { color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; }
.section-kicker.light { color: var(--gold-bright); }
.intro { background: var(--paper); color: var(--ink); }
.intro-grid { margin-top: 2.5rem; display: grid; grid-template-columns: 1.35fr .85fr; gap: clamp(2rem, 8vw, 9rem); align-items: start; }
.intro-title h2, .collection-heading h2, .contact-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.3rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.intro-title h2 em, .collection-heading h2 em, .contact-intro h2 em { color: var(--wine); font-weight: 400; }
.intro-copy { padding-top: .8rem; font-size: clamp(1rem, 1.4vw, 1.18rem); color: #4a3f3c; }
.intro-copy p:first-child { margin-top: 0; }
.signature-strip { margin-top: clamp(4rem, 8vw, 8rem); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(16,10,11,.18); border-bottom: 1px solid rgba(16,10,11,.18); }
.signature-strip div { display: flex; align-items: baseline; gap: 1rem; padding: 1.8rem clamp(.6rem, 2vw, 2rem); border-right: 1px solid rgba(16,10,11,.18); }
.signature-strip div:last-child { border-right: 0; }
.signature-strip strong { font-family: var(--serif); color: var(--wine); font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 400; }
.signature-strip span { color: #655854; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

.feature-story { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 9vw, 9rem); background: var(--ink-soft); }
.feature-image { margin: 0; position: relative; }
.feature-image::before { content: ''; position: absolute; inset: -1.2rem 1.4rem 1.4rem -1.2rem; border: 1px solid rgba(199,154,72,.34); z-index: 0; }
.feature-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; position: relative; z-index: 1; }
.feature-image figcaption { margin-top: .9rem; color: var(--muted); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.feature-copy { position: relative; max-width: 660px; }
.feature-copy .roman { position: absolute; right: 0; top: -5rem; font-family: var(--serif); font-size: clamp(8rem, 15vw, 15rem); line-height: 1; color: rgba(199,154,72,.055); }
.feature-copy h2 { margin: .5rem 0 1.8rem; font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 6.7rem); line-height: .9; font-weight: 400; letter-spacing: -.05em; }
.feature-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 1.05rem; }
.feature-copy blockquote { margin: 2.5rem 0 0; padding: 1.4rem 0 1.4rem 1.8rem; border-left: 1px solid var(--gold); color: var(--gold-bright); font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 2rem); line-height: 1.35; }

.collection { background: #0c0809; }
.collection-heading { display: flex; justify-content: space-between; gap: 3rem; align-items: end; margin-bottom: clamp(3rem, 7vw, 6rem); }
.collection-heading h2 em { color: var(--gold-bright); }
.collection-heading > p { max-width: 330px; margin: 0 0 .65rem; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 210px; gap: 1rem; }
.gallery-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #1a1112;
  cursor: zoom-in;
  text-align: left;
}
.gallery-card.gallery-tall { grid-row: span 3; }
.gallery-card.gallery-wide { grid-column: span 8; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; }
.gallery-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,4,5,.86), transparent 55%); transition: opacity .4s ease; }
.gallery-card:hover img { transform: scale(1.045); filter: saturate(1.1) contrast(1.03); }
.gallery-overlay { position: absolute; z-index: 2; left: 1.4rem; right: 1.4rem; bottom: 1.25rem; display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.gallery-overlay small { color: var(--gold-bright); font-size: .61rem; letter-spacing: .16em; text-transform: uppercase; }
.gallery-overlay strong { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 400; }

.manifesto { min-height: 92svh; position: relative; display: grid; place-items: center; isolation: isolate; }
.manifesto-image { position: absolute; inset: 0; background: url('/assets/images/winged-throne.webp') center 36% / cover fixed no-repeat; z-index: -2; }
.manifesto-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10,6,7,.92) 0%, rgba(10,6,7,.78) 50%, rgba(10,6,7,.35)); }
.manifesto-content { width: 100%; }
.manifesto-content h2 { max-width: 1050px; margin: 1.2rem 0 2rem; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7.4rem); line-height: .92; font-weight: 400; letter-spacing: -.05em; }
.manifesto-content h2 em { color: var(--gold-bright); font-weight: 400; }
.manifesto-content > p:last-child { max-width: 700px; color: rgba(255,250,242,.72); font-size: 1.08rem; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 0; background: var(--ink); }
.value-card { min-height: 330px; padding: 2.2rem; border: 1px solid var(--line); position: relative; overflow: hidden; }
.value-card::after { content: ''; position: absolute; inset: auto -20% -55% auto; width: 230px; height: 230px; border: 1px solid rgba(199,154,72,.18); transform: rotate(45deg); }
.value-card span { color: var(--gold); font-size: .7rem; letter-spacing: .16em; }
.value-card h3 { margin: 5rem 0 1rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; }
.value-card p { max-width: 360px; color: var(--muted); }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 10vw, 10rem); background: var(--paper); color: var(--ink); }
.contact-intro h2 { margin-top: 1.3rem; }
.contact-intro > p:not(.section-kicker) { max-width: 520px; margin-top: 1.8rem; color: #5d514d; }
.contact-note { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(16,10,11,.16); display: flex; justify-content: space-between; gap: 1rem; font-size: .78rem; }
.contact-note span { color: #756660; text-transform: uppercase; letter-spacing: .12em; }
.contact-form { align-self: start; padding: clamp(1.5rem, 4vw, 3rem); background: #eee4d5; border-top: 3px solid var(--wine); box-shadow: 0 32px 80px rgba(43,24,17,.12); }
.contact-form label { display: block; margin-bottom: 1.4rem; }
.contact-form label > span { display: block; margin-bottom: .45rem; color: #5f504b; font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16,10,11,.25);
  border-radius: 0;
  padding: .82rem .1rem;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--wine); box-shadow: 0 1px 0 var(--wine); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.form-footer p { margin: 0; max-width: 360px; font-size: .82rem; color: #5f504b; }
.form-footer p.success { color: #17603e; }
.form-footer p.error { color: #8f1f30; }
.contact-form .button-primary { background: var(--wine); color: var(--white); white-space: nowrap; }
.contact-form .button-primary:disabled { opacity: .6; cursor: wait; }

.site-footer { display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: 2rem; align-items: center; padding: 3rem clamp(1.25rem, 7vw, 8rem); border-top: 1px solid var(--line); background: #090506; color: var(--muted); }
.footer-brand { color: var(--paper); }
.site-footer > p { text-align: center; font-size: .75rem; }
.footer-links { display: flex; justify-content: flex-end; gap: 1.3rem; font-size: .72rem; }
.footer-links a:hover { color: var(--gold-bright); }
.site-footer > small { grid-column: 1 / -1; padding-top: 1.2rem; border-top: 1px solid var(--line); text-align: center; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }

.lightbox { width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(7,4,5,.95); color: var(--paper); }
.lightbox::backdrop { background: rgba(7,4,5,.9); }
.lightbox[open] { display: grid; place-items: center; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } }
.lightbox-close { position: fixed; z-index: 3; right: 1.5rem; top: 1rem; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.24); background: rgba(0,0,0,.15); border-radius: 50%; cursor: pointer; font-size: 2rem; font-weight: 200; }
.lightbox-frame { width: min(94vw, 1100px); height: min(88vh, 900px); display: grid; grid-template-rows: 1fr auto; }
.lightbox-frame img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox-frame > div { padding: .8rem .5rem 0; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.lightbox-frame span { color: var(--gold); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.lightbox-frame strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  :root { --header-height: 74px; }
  .menu-toggle { display: block; z-index: 2; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(10,6,7,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }
  .site-nav a { font-family: var(--serif); font-size: 2.4rem; letter-spacing: 0; text-transform: none; }
  .site-nav .nav-cta { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-lines { inset-inline: 1.25rem; }
  .intro-grid, .feature-story, .contact { grid-template-columns: 1fr; }
  .feature-copy { padding-top: 1rem; }
  .collection-heading { align-items: start; flex-direction: column; }
  .gallery-grid { grid-auto-rows: 180px; }
  .gallery-card { grid-column: span 6; }
  .gallery-card.gallery-wide { grid-column: span 12; }
  .values { grid-template-columns: 1fr; }
  .value-card { min-height: 260px; }
  .value-card h3 { margin-top: 3rem; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer > p { text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
  .cursor-glow { display: none; }
  .site-header { padding-inline: 1.05rem; }
  .brand-copy strong { font-size: 1rem; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { min-height: 880px; align-items: end; }
  .hero-media { background-position: 58% 25%; }
  .hero-shade { background: linear-gradient(0deg, rgba(12,7,8,.98) 0%, rgba(12,7,8,.65) 54%, rgba(12,7,8,.18) 100%); }
  .hero-content { margin: 0 1.25rem 5.5rem; width: auto; }
  .hero h1 { font-size: clamp(4.3rem, 20vw, 6.5rem); line-height: .8; }
  .eyebrow { gap: .65rem; letter-spacing: .18em; }
  .eyebrow span { width: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .hero-index { display: none; }
  .scroll-cue { left: 1.25rem; right: auto; }
  .section-pad { padding: 5rem 1.25rem; }
  .intro-grid { gap: 2rem; }
  .signature-strip { grid-template-columns: 1fr; }
  .signature-strip div { border-right: 0; border-bottom: 1px solid rgba(16,10,11,.18); }
  .signature-strip div:last-child { border-bottom: 0; }
  .feature-image::before { inset: -.65rem .7rem .7rem -.65rem; }
  .gallery-grid { display: block; }
  .gallery-card, .gallery-card.gallery-tall, .gallery-card.gallery-wide { width: 100%; height: 62vh; min-height: 430px; margin-bottom: 1rem; }
  .manifesto { min-height: 820px; }
  .manifesto-image { background-attachment: scroll; background-position: center top; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .site-footer { padding-inline: 1.25rem; }
  .footer-links { flex-wrap: wrap; }
  .lightbox-frame { width: 100vw; height: 90vh; }
  .lightbox-frame > div { padding-inline: 1rem; flex-direction: column; }
}

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