:root {
  --page-max: 100%;
  --side-pad: 103px;
  --gap: 18px;
  --text: #111;
  --muted: #555;
  --hover: #777;
  --bg: rgb(246, 248, 249);
}

* { box-sizing: border-box; }

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  background: var(--bg);
  color: var(--text);
  font-family: "Karla", Arial, Helvetica, sans-serif;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
}

a, a:visited { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  width: 100%;
  padding: 75px var(--side-pad) 71px;
}

.header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
}

.logo span {
  color: #666;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.header-tagline {
  position: absolute;
  left: 0;
  top: 24px;
  margin: 0;
  color: #999;
  font-size: 13.5px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 400;
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(32px, 3vw, 52px);
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
  transition: color 160ms ease;
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

main { width: 100%; flex: 1 0 auto; }

.page-shell {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--side-pad) 34px;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}

.gallery figure { margin: 0; }

.gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--bg);
}

.places-masonry {
  display: block;
  position: relative;
}

.places-masonry figure {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 360ms ease;
}

.places-masonry img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
  backface-visibility: visible;
}

.places-masonry.is-laid-out figure.is-visible { opacity: 1; }

.about-layout {
  max-width: 720px;
  margin: 0 auto;
  display: block;
  padding: 0;
  text-align: center;
}

.about-copy h1,
.contact-copy h1 {
  margin: 0 0 28px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.about-copy p,
.contact-copy p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.8;
}


.about-tagline {
  margin-top: 34px;
  margin-bottom: 0;
  color: #aaa;
  font-size: 13.5px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.contact-copy {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.email-address {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  user-select: all;
}

@media (min-width: 761px) {
  .about-layout { transform: translateY(-62px); }
  .contact-copy { transform: translateY(-40px); }
}

.site-footer {
  flex-shrink: 0;
  padding: 26px var(--side-pad) 36px;
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: color 160ms ease;
}

.footer-icon:hover,
.footer-icon:focus-visible { color: var(--hover); }
.footer-icon svg { width: 18px; height: 18px; }

@media (min-width: 761px) and (min-height: 640px) {
  body.text-page { height: 100dvh; overflow: hidden; }
  body.text-page main { display: flex; align-items: center; }
  body.text-page .page-shell { width: 100%; padding-bottom: 0; }
  body.text-page .site-footer { padding-top: 20px; padding-bottom: 28px; }
}

@media (max-width: 1180px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --side-pad: 18px; }
  .site-header { padding-top: 34px; padding-bottom: 44px; }
  .header-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .site-nav { width: 100%; justify-content: flex-start; gap: 14px 28px; font-size: 16px; }
  .page-shell { padding-left: 12px; padding-right: 12px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .contact-copy { padding-top: 38px; padding-bottom: 78px; }
}

@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-end; }
}


/* Archive page */
.archive-page {
  background: var(--bg);
  color: var(--text);
}

.archive-main {
  min-height: 100vh;
  width: 100%;
  position: relative;
}

.archive-header {
  width: 100%;
  padding: 82px var(--side-pad) 52px;
  text-align: center;
}

.archive-mark {
  display: inline-block;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 46px;
}

.archive-logo-image {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 10px;
}

.archive-title {
  display: inline-block;
  color: var(--text);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.archive-title:hover,
.archive-title:focus-visible {
  color: var(--hover);
}

.archive-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 42px var(--side-pad) 130px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 430px));
  justify-content: start;
  gap: 84px 70px;
}

.archive-card {
  margin: 0;
  text-align: center;
}

.archive-card img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  background: var(--bg);
}

.archive-card h2 {
  margin: 22px 0 12px;
  color: var(--text);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.archive-card p {
  margin: 0;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .archive-header {
    padding-top: 54px;
    padding-bottom: 36px;
  }

  .archive-mark {
    margin-bottom: 34px;
  }

  .archive-shell {
    padding: 28px 24px 90px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    gap: 66px;
  }
}


.archive-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.archive-card a:hover h2,
.archive-card a:focus-visible h2 {
  color: var(--hover);
}

.archive-detail-header {
  padding-bottom: 38px;
}

.archive-detail-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 28px 0 130px;
  text-align: center;
}

.archive-detail-shell h1 {
  margin: 0 var(--side-pad) 12px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.archive-detail-shell p {
  margin: 0 var(--side-pad) 48px;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.archive-full-image {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto;
  background: var(--bg);
}

@media (max-width: 760px) {
  .archive-detail-shell {
    padding: 22px 0 90px;
  }

  .archive-detail-shell p {
    margin-bottom: 34px;
  }
}


.archive-back {
  position: absolute;
  top: 82px;
  left: var(--side-pad);
  z-index: 3;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-decoration: none;
  transition: color 160ms ease;
}

.archive-back:hover,
.archive-back:focus-visible {
  color: var(--hover);
}

@media (max-width: 760px) {
  .archive-back {
    top: 34px;
    left: 18px;
    font-size: 14px;
  }
}


/* Links page */
.links-page {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

.links-main {
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 56px 22px;
}

.links-card {
  width: min(100%, 430px);
  margin: 0 auto;
}

.links-header {
  margin-bottom: 30px;
}

.links-header h1 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.links-header h1 span {
  color: #666;
  font-weight: 400;
}

.links-header p {
  margin: 0;
  color: #999;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.09em;
}

.links-list {
  display: grid;
  gap: 12px;
}

.links-button {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 17px;
  background: #eef0f1;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  transition: background 160ms ease, color 160ms ease;
}

.links-button:hover,
.links-button:focus-visible {
  background: #e6e8e9;
  color: var(--hover);
}

.links-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  color: currentColor;
}

.links-icon svg {
  width: 20px;
  height: 20px;
}

.about-bottom-links {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  color: #777;
  font-size: 13.5px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transform: translateY(100px);
}

.about-bottom-links a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.about-bottom-links a:hover,
.about-bottom-links a:focus-visible {
  color: var(--text);
}

.simple-info-page main {
  display: flex;
  align-items: center;
}

.simple-info-copy {
  width: min(720px, calc(100% - 44px));
  margin: 0 auto;
  text-align: center;
  transform: translateY(-42px);
}

.simple-info-copy h1 {
  margin: 0 0 28px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.simple-info-copy p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.8;
}

.simple-email {
  user-select: all;
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .links-main {
    align-items: start;
    padding-top: 48px;
  }

  .about-bottom-links {
    flex-wrap: wrap;
    gap: 18px 32px;
  }

  .simple-info-page main {
    display: block;
  }

  .simple-info-copy {
    transform: none;
    padding: 38px 0 78px;
  }
}


.pages-list .links-button {
  min-height: 46px;
  font-family: inherit;
  letter-spacing: 0.04em;
}

.simple-info-page .archive-back {
  top: 162px;
}

@media (max-width: 760px) {
  .simple-info-page .archive-back {
    top: 96px;
  }
}


.smart-gallery img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

/* Mobile-only spacing refinements */
@media (max-width: 760px) {
  .header-tagline {
    position: static;
    margin-top: 16px;
    font-size: 13.5px;
    line-height: 1.6;
  }

  .simple-info-page .archive-back {
    top: 128px;
  }

  .links-page .archive-back {
    top: 68px;
  }

  .links-page .links-main {
    padding-top: 104px;
  }
}

/* Mobile-only fine tuning */
@media (max-width: 760px) {
  .header-tagline {
    margin-top: 0;
  }

  .about-bottom-links {
    transform: translateY(30px);
  }
}

/* User-facing dark mode toggle */
:root[data-theme="dark"] {
  --text: #e9e6de;
  --muted: #aaa59b;
  --hover: #ffffff;
  --bg: #10100f;
  color-scheme: dark;
}

:root[data-theme="dark"] .logo span,
:root[data-theme="dark"] .links-header h1 span {
  color: #aaa59b;
}

:root[data-theme="dark"] .header-tagline,
:root[data-theme="dark"] .about-tagline,
:root[data-theme="dark"] .links-header p {
  color: #8f8a82;
}

:root[data-theme="dark"] .footer-icon {
  color: var(--text);
}

:root[data-theme="dark"] .links-button {
  background: #1b1b19;
  color: var(--text);
}

:root[data-theme="dark"] .links-button:hover,
:root[data-theme="dark"] .links-button:focus-visible {
  background: #252520;
  color: var(--hover);
}

:root[data-theme="dark"] .about-bottom-links,
:root[data-theme="dark"] .archive-back {
  color: var(--muted);
}

.theme-toggle {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 80;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: rgba(246, 248, 249, 0.72);
  color: #111;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  opacity: 1;
  outline: none;
}

:root[data-theme="dark"] .theme-toggle {
  border-color: rgba(233, 230, 222, 0.22);
  background: rgba(16, 16, 15, 0.72);
  color: var(--text);
}

@media (max-width: 760px) {
  .theme-toggle {
    bottom: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
}

/* Hidden desktop utility menu and shortcuts */
.utility-menu {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 90;
  width: 42px;
  height: 42px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.utility-menu:hover,
.utility-menu:focus-within,
.utility-menu.is-open {
  opacity: 1;
}

.utility-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: rgba(246, 248, 249, 0.78);
  color: #111;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, opacity 180ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.utility-button:hover,
.utility-button:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  transform: translateY(-1px);
}

.utility-plus {
  position: relative;
  z-index: 2;
  font-size: 22px;
  padding-bottom: 2px;
}

.utility-menu.is-open .utility-plus {
  transform: rotate(45deg);
}

.utility-actions {
  position: absolute;
  left: 0;
  bottom: 52px;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.utility-actions .utility-button {
  opacity: 0;
  transform: translateY(12px) scale(0.92);
}

.utility-menu.is-open .utility-actions {
  pointer-events: auto;
}

.utility-menu.is-open .utility-actions .utility-button {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.utility-menu.is-open .utility-actions .utility-button:nth-child(1) { transition-delay: 20ms; }
.utility-menu.is-open .utility-actions .utility-button:nth-child(2) { transition-delay: 55ms; }
.utility-menu.is-open .utility-actions .utility-button:nth-child(3) { transition-delay: 90ms; }

.utility-archive svg {
  width: 18px;
  height: 18px;
}

:root[data-theme="dark"] .utility-button {
  border-color: rgba(233, 230, 222, 0.2);
  background: rgba(16, 16, 15, 0.78);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

:root[data-theme="dark"] .utility-button:hover,
:root[data-theme="dark"] .utility-button:focus-visible {
  background: rgba(37, 37, 32, 0.94);
}

.shortcut-help {
  position: fixed;
  left: 18px;
  bottom: 74px;
  z-index: 100;
  width: min(320px, calc(100vw - 36px));
  padding: 22px 22px 20px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(246, 248, 249, 0.92);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.shortcut-help.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.shortcut-help h2 {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.shortcut-help dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.shortcut-help dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: baseline;
}

.shortcut-help dt {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.shortcut-help dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.shortcut-help p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.shortcut-help-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.shortcut-help-close:hover,
.shortcut-help-close:focus-visible {
  color: var(--text);
  outline: none;
}

:root[data-theme="dark"] .shortcut-help {
  border-color: rgba(233, 230, 222, 0.14);
  background: rgba(16, 16, 15, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.mode-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  max-width: min(340px, calc(100vw - 48px));
  padding: 12px 15px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(246, 248, 249, 0.9);
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mode-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

:root[data-theme="dark"] .mode-toast {
  border-color: rgba(233, 230, 222, 0.14);
  background: rgba(16, 16, 15, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

:root[data-lights="1"] {
  --bg: #11110f;
}

:root[data-lights="2"] {
  --bg: #000000;
}

:root[data-lights="1"] .site-header,
:root[data-lights="1"] .site-footer,
:root[data-lights="1"] .about-layout,
:root[data-lights="1"] .contact-copy {
  opacity: 0.28;
}

:root[data-lights="2"] .site-header,
:root[data-lights="2"] .site-footer,
:root[data-lights="2"] .about-layout,
:root[data-lights="2"] .contact-copy {
  opacity: 0.06;
}

.site-header,
.site-footer,
.about-layout,
.contact-copy {
  transition: opacity 180ms ease;
}

@media (max-width: 760px) {
  .utility-menu {
    display: none;
  }

  .shortcut-help {
    left: 18px;
    right: 18px;
    bottom: 28px;
    width: auto;
  }

  .mode-toast {
    left: 18px;
    right: 18px;
    bottom: 24px;
    max-width: none;
    transform: translateY(14px);
  }

  .mode-toast.is-visible {
    transform: translateY(0);
  }
}

/* Utility menu visual refinement */
.utility-button {
  box-shadow: none;
}

.utility-plus {
  font-size: 0;
  padding: 0;
}

.utility-plus::before,
.utility-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.utility-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.utility-menu.is-open .utility-plus {
  transform: none;
}

.utility-menu.is-open .utility-plus::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.utility-menu.is-open .utility-plus::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

:root[data-theme="dark"] .utility-button {
  box-shadow: none;
}

/* Archive text refinement */
.archive-card h2 {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.35;
  letter-spacing: 0.055em;
  text-transform: none;
  font-weight: 500;
}

.archive-card p {
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: none;
}

.archive-detail-shell h1 {
  letter-spacing: 0.055em;
  text-transform: none;
}

.archive-detail-shell p {
  letter-spacing: 0.11em;
  text-transform: none;
}
