:root {
  --pink: #e8006f;
  --pink-dark: #c50060;
  --pink-soft: #f5c4d8;
  --pink-pale: #fdf0f4;
  --cream: #fff7f9;
  --ink: #1a1018;
  --ink-soft: #2d1f28;
  --muted: #8b6b7e;
  --line: rgba(139, 107, 126, 0.28);
  --white: #fff;
  --max: 1280px;
  --pad: clamp(24px, 5vw, 80px);
  --section: clamp(88px, 10vw, 150px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
.home .wp-site-blocks > * { margin-block-start: 0; }
.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link:focus {
  z-index: 100;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(45, 31, 40, 0.05);
}
.wordmark {
  justify-self: start;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.desktop-nav { display: flex; gap: 36px; }
.desktop-nav a, .text-link {
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}
.desktop-nav a:hover, .text-link:hover { color: var(--ink); }
.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 38px; padding: 0 20px; font-size: 13px; }
.button-pink { color: var(--white); background: var(--pink); }
.button-pink:hover { background: var(--pink-dark); }
.button-white { color: var(--pink); background: var(--white); }
.button-white:hover { color: var(--pink-dark); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.72); background: transparent; }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(820px, calc(100dvh - 68px));
  padding: 100px var(--pad);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 2% 0%, rgba(253, 217, 18, .16), transparent 24%),
    linear-gradient(145deg, #e14f43 0%, #df4652 48%, #cc3162 100%);
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' 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='.16'/%3E%3C/svg%3E");
  content: "";
  opacity: .2;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-fluid {
  position: absolute;
  z-index: 0;
  inset: -5%;
  width: 110%;
  height: 110%;
  opacity: .84;
  filter: blur(18px) saturate(1.08);
  mix-blend-mode: soft-light;
  pointer-events: none;
  transform: scale(1.03);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(960px, 100%);
  text-align: center;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
}
.eyebrow-light { color: rgba(255,255,255,.68); }
.eyebrow-pink { color: var(--pink); }
.hero h1 {
  margin: 0;
  font-size: clamp(50px, 7.3vw, 104px);
  font-weight: 560;
  line-height: .98;
  letter-spacing: -.065em;
}
.hero h1 em { color: #ffc9df; font-weight: 450; }
.hero-copy {
  margin: 34px auto 36px;
  color: rgba(255,255,255,.82);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 350;
  line-height: 1.8;
}
.hero-index {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: -30px;
  margin: 0;
  color: rgba(255,255,255,.075);
  font-size: clamp(110px, 18vw, 270px);
  font-weight: 800;
  letter-spacing: -.13em;
  white-space: nowrap;
}

.section { padding: var(--section) var(--pad); }
.section-inner { width: min(var(--max), 100%); margin: 0 auto; }
.section-heading { margin-bottom: clamp(46px, 6vw, 78px); }
.section-heading h2, .newsletter h2 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-heading h2 span { color: var(--muted); font-weight: 400; }
.services { background: var(--pink-pale); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  overflow: hidden;
  border: 1px solid rgba(139,107,126,.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(45,31,40,.045);
  transition: transform 350ms var(--ease), box-shadow 350ms ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(68,25,51,.12);
}
.card-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  overflow: hidden;
}
.visual-search { background: linear-gradient(145deg, #fbe3ed, #efb2ca); }
.visual-growth { background: linear-gradient(145deg, #fa0a7e, #bd4f7c); }
.visual-time { background: linear-gradient(145deg, #f6d4e1, #bd7895); }
.visual-number {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(26,16,24,.48);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .16em;
}
.service-card-featured .visual-number { color: rgba(255,255,255,.75); }
.search-lines { display: grid; width: 56%; gap: 12px; transform: rotate(-8deg); }
.search-lines i {
  display: block;
  height: 16px;
  border-radius: 99px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 15px 40px rgba(94,18,54,.12);
}
.search-lines i:nth-child(2) { width: 72%; }
.search-lines i:nth-child(3) { width: 88%; }
.growth-mark { display: flex; align-items: end; gap: 10px; height: 120px; }
.growth-mark i {
  width: 24px;
  border-radius: 20px 20px 5px 5px;
  background: rgba(255,255,255,.85);
}
.growth-mark i:nth-child(1) { height: 35%; }
.growth-mark i:nth-child(2) { height: 55%; }
.growth-mark i:nth-child(3) { height: 78%; }
.growth-mark i:nth-child(4) { height: 100%; }
.time-ring {
  width: 145px;
  height: 145px;
  border: 18px solid rgba(255,255,255,.72);
  border-right-color: rgba(232,0,111,.55);
  border-radius: 50%;
  transform: rotate(-35deg);
  box-shadow: 0 20px 45px rgba(75,25,50,.12);
}
.card-body { min-height: 240px; padding: 26px; }
.card-kicker {
  margin: 0 0 17px;
  color: var(--pink);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.card-body h3 { margin: 0 0 12px; font-size: 24px; letter-spacing: -.035em; }
.card-body p { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.card-body a { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 650; }

.about {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 760px;
  color: var(--cream);
  background: var(--ink);
}
.about-symbol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 80%, rgba(232,0,111,.28), transparent 38%),
    linear-gradient(135deg, #2d1f28, #6e4c61 60%, #c4708a);
}
.about-symbol::after {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  content: "";
}
.about-symbol span {
  z-index: 1;
  color: rgba(255,247,249,.92);
  font-family: "Songti SC", "Noto Serif CJK KR", serif;
  font-size: clamp(70px, 9vw, 140px);
  font-weight: 300;
}
.about-symbol small {
  position: absolute;
  z-index: 1;
  bottom: 46px;
  color: rgba(255,255,255,.58);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
}
.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 9vw, 140px);
}
.about-copy h2 {
  margin: 0 0 32px;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -.05em;
}
.about-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 22px;
  color: #c9afbd;
  font-size: 16px;
  font-weight: 350;
  line-height: 1.85;
}
.about-copy .english-copy { color: #927487; font-style: italic; }
.about-copy .button { margin-top: 18px; }

.numbers { padding: clamp(75px, 8vw, 110px) var(--pad); background: var(--white); }
.numbers-inner {
  display: grid;
  grid-template-columns: repeat(3, auto) minmax(320px, 1fr);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: clamp(30px, 4vw, 64px);
}
.stat strong {
  display: block;
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 300;
  letter-spacing: -.06em;
}
.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .15em;
}
blockquote {
  position: relative;
  margin: 0;
  padding: 30px 34px 28px 58px;
  border-radius: 16px;
  background: var(--cream);
  font-size: 16px;
  font-style: italic;
  font-weight: 350;
  line-height: 1.6;
}
.quote-mark { position: absolute; top: 18px; left: 24px; color: var(--pink); font-size: 38px; font-style: normal; }
blockquote cite { display: block; margin-top: 16px; color: var(--muted); font-size: 11px; font-style: normal; }

.resources { background: var(--pink-pale); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.arrow-link { padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 650; white-space: nowrap; }
.resource-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, minmax(320px, auto));
  gap: 16px;
}
.resource-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  transition: transform 300ms var(--ease), box-shadow 300ms ease;
}
.resource-card:hover { transform: scale(1.012); box-shadow: 0 24px 70px rgba(68,25,51,.11); }
.resource-large { grid-row: 1 / 3; grid-template-columns: 1fr; grid-template-rows: 1.4fr auto; }
.resource-art { position: relative; display: grid; place-items: center; min-height: 270px; overflow: hidden; }
.resource-code { position: absolute; top: 22px; left: 22px; color: rgba(26,16,24,.55); font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .15em; }
.art-guide { background: linear-gradient(145deg, var(--pink-soft), var(--pink)); }
.art-blueprint { background: linear-gradient(145deg, #f8dce7, #c4708a); }
.art-playbook { color: var(--cream); background: linear-gradient(145deg, var(--pink), var(--ink)); }
.book-shape {
  width: min(260px, 55%);
  aspect-ratio: .72;
  padding: 24px;
  color: var(--pink);
  background: var(--cream);
  box-shadow: 24px 26px 0 rgba(45,31,40,.16);
  transform: rotate(-7deg);
}
.book-shape i { display: block; font-family: Georgia, serif; font-size: 70px; font-style: italic; line-height: 1; }
.book-shape small { position: absolute; bottom: 24px; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .12em; }
.node-map { position: relative; width: 170px; height: 140px; }
.node-map::before, .node-map::after {
  position: absolute;
  background: rgba(255,255,255,.55);
  content: "";
}
.node-map::before { top: 50%; width: 100%; height: 1px; }
.node-map::after { left: 50%; width: 1px; height: 100%; }
.node-map i { position: absolute; z-index: 1; width: 26px; height: 26px; border: 7px solid var(--white); border-radius: 50%; background: var(--pink); }
.node-map i:nth-child(1) { top: 0; left: calc(50% - 13px); }
.node-map i:nth-child(2) { top: calc(50% - 13px); left: 0; }
.node-map i:nth-child(3) { top: calc(50% - 13px); left: calc(50% - 13px); }
.node-map i:nth-child(4) { top: calc(50% - 13px); right: 0; }
.node-map i:nth-child(5) { bottom: 0; left: calc(50% - 13px); }
.art-playbook strong { font-size: clamp(48px, 6vw, 84px); font-weight: 300; letter-spacing: -.08em; }
.art-playbook .resource-code { color: rgba(255,255,255,.68); }
.resource-meta { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 3vw, 42px); }
.resource-meta span { margin-bottom: 14px; color: var(--pink); font-family: ui-monospace, monospace; font-size: 10px; font-weight: 650; letter-spacing: .12em; }
.resource-meta h3 { margin: 0 0 12px; font-size: clamp(21px, 2vw, 30px); letter-spacing: -.035em; }
.resource-meta p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.bookend {
  position: relative;
  min-height: 620px;
  margin: var(--pad);
  overflow: hidden;
  border-radius: 26px;
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 10%, rgba(232,0,111,.58), transparent 26%),
    linear-gradient(135deg, var(--ink), #5f4053 56%, #b66d88);
}
.bookend-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 620px;
  width: min(620px, 100%);
  padding: clamp(42px, 7vw, 100px);
}
.bookend-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  padding: 7px 12px;
  border-radius: 99px;
  color: var(--white);
  background: var(--pink);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .14em;
}
.bookend-badge i { width: 5px; height: 5px; border-radius: 50%; background: var(--white); }
.bookend h2 { margin: 0 0 24px; font-size: clamp(47px, 6vw, 82px); font-weight: 520; line-height: .98; letter-spacing: -.065em; }
.bookend-inner > p:not(.bookend-badge) { margin: 0 0 32px; color: rgba(255,247,249,.72); line-height: 1.75; }
.bookend-rings { position: absolute; inset: 0 0 0 50%; }
.bookend-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22vw;
  height: 22vw;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.bookend-rings i:nth-child(2) { width: 34vw; height: 34vw; }
.bookend-rings i:nth-child(3) { width: 46vw; height: 46vw; }
.bookend-rings i:nth-child(4) { width: 58vw; height: 58vw; }

.newsletter { padding: var(--section) var(--pad); text-align: center; background: var(--pink-pale); }
.newsletter-inner { width: min(720px, 100%); margin: 0 auto; }
.newsletter h2 em { color: var(--pink); font-weight: 450; }
.newsletter-inner > p:not(.eyebrow, .form-note) { margin: 28px auto 36px; color: var(--muted); line-height: 1.7; }
.subscribe-form { display: flex; gap: 8px; width: min(520px, 100%); margin: 0 auto; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.subscribe-form input { min-width: 0; flex: 1; padding: 0 18px; border: 0; outline: 0; color: var(--ink); background: transparent; }
.subscribe-form button { min-height: 48px; padding: 0 24px; border: 0; border-radius: 999px; color: var(--white); background: var(--pink); cursor: pointer; font-weight: 650; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 11px; }

.site-footer { padding: 72px var(--pad) 24px; color: var(--cream); background: var(--ink); }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 60px;
}
.footer-logo { font-size: 26px; font-weight: 350; letter-spacing: -.035em; }
.footer-brand p { max-width: 440px; margin: 22px 0 0; color: #b99eae; font-size: 14px; line-height: 1.75; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column strong { margin-bottom: 8px; color: var(--pink-soft); font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .17em; }
.footer-column a { color: rgba(255,247,249,.8); font-size: 13px; }
.footer-column a:hover { color: var(--pink-soft); }
.footer-statement {
  width: min(var(--max), 100%);
  margin: 78px auto 0;
  padding: 70px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-statement h2 { margin: 0; font-size: clamp(42px, 5.5vw, 78px); font-weight: 520; line-height: 1.02; letter-spacing: -.055em; }
.footer-bottom { display: flex; justify-content: space-between; width: min(var(--max), 100%); margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,247,249,.38); font-size: 10px; letter-spacing: .06em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 750ms var(--ease), transform 750ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .desktop-only { display: none; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { display: block; width: 18px; height: 1px; margin: 2px 0; background: var(--ink); transition: transform 180ms ease; }
  .mobile-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 22px var(--pad) 30px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a { padding: 14px 0; border-bottom: 1px solid rgba(139,107,126,.13); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: .8fr 1.2fr; }
  .card-visual { min-height: 300px; }
  .about { grid-template-columns: 1fr; }
  .about-symbol { min-height: 520px; }
  .numbers-inner { grid-template-columns: repeat(3, 1fr); }
  blockquote { grid-column: 1 / -1; }
  .resource-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .resource-large { grid-row: auto; grid-template-columns: .9fr 1.1fr; grid-template-rows: auto; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; --section: 82px; }
  .site-header { min-height: 62px; }
  .header-actions { gap: 7px; }
  .button-small { min-height: 34px; padding: 0 14px; font-size: 12px; }
  .mobile-nav { top: 62px; }
  .hero { min-height: 740px; padding-top: 78px; padding-bottom: 78px; }
  .hero-fluid { inset: -8%; width: 116%; height: 116%; opacity: .78; filter: blur(15px) saturate(1.04); }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); line-height: .99; }
  .hero-copy br { display: none; }
  .button-row { flex-direction: column; align-items: stretch; width: min(310px, 100%); margin: 0 auto; }
  .section-heading h2, .newsletter h2 { font-size: 42px; }
  .service-card { display: block; }
  .card-visual { min-height: 290px; }
  .about-symbol { min-height: 390px; }
  .about-symbol::after { inset: 24px; }
  .about-copy { padding: 76px 24px; }
  .about-copy h2 { font-size: 38px; }
  .numbers-inner { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat strong { font-size: 38px; }
  .stat span { font-size: 8px; letter-spacing: .08em; }
  .section-heading-row { display: block; }
  .arrow-link { display: inline-block; margin-top: 28px; }
  .resource-card, .resource-large { grid-template-columns: 1fr; }
  .resource-art { min-height: 300px; }
  .resource-large { grid-template-rows: auto; }
  .bookend { min-height: 650px; margin: 20px; }
  .bookend-inner { min-height: 650px; justify-content: flex-end; padding: 42px 26px; }
  .bookend h2 { font-size: 52px; }
  .bookend-rings { inset: -30% -70% 35% 0; }
  .bookend-rings i { width: 65vw; height: 65vw; }
  .bookend-rings i:nth-child(2) { width: 95vw; height: 95vw; }
  .bookend-rings i:nth-child(3) { width: 125vw; height: 125vw; }
  .bookend-rings i:nth-child(4) { width: 155vw; height: 155vw; }
  .subscribe-form { flex-direction: column; padding: 6px; border-radius: 18px; }
  .subscribe-form input { min-height: 50px; text-align: center; }
  .subscribe-form button { width: 100%; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
  .footer-statement h2 { font-size: 43px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

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