:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244, 239, 233, 0.14);
  --accent: #cfa456;
  --accent-2: #a8845f;
  --secondary: #2d2422;
  --on-accent: #181312;
  --deep: #0c0908;
  --radius: 10px;
  --radius-btn: 2px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Palatino Linotype', Palatino, serif;
  --max-w: 1160px;
  --section-pad: 112px;
  --header-h: 88px;
  --header-h-shrink: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.14;
}

h2 {
  font-size: clamp(24px, 4vw, 38px);
}

p {
  margin: 0 0 1.1em;
}

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.container {
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--bg {
  background: var(--bg);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.text-link {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.text-link::after {
  content: ' →';
}

.text-link:hover {
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 16, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: min-height 0.25s ease;
  min-height: var(--header-h);
}

.site-header.is-shrunk {
  min-height: var(--header-h-shrink);
}

.site-header.is-shrunk .brand__name {
  font-size: 15px;
}

.site-header.is-shrunk .brand__logo {
  width: 28px;
  height: 33px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: inherit;
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--accent);
}

.brand__logo {
  width: 36px;
  height: 43px;
  object-fit: contain;
  transition: width 0.25s, height 0.25s;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: font-size 0.25s;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
}

.hero {
  padding: calc(var(--section-pad) - 24px) 0 var(--section-pad);
  text-align: center;
  background: var(--bg);
}

.hero__independence {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero__intro {
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--text-muted);
}

.hero-frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.hero-frames figure {
  margin: 0;
  flex: 1;
  max-width: 280px;
}

.hero-frames img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-frames figure:nth-child(1) img {
  height: 180px;
}

.hero-frames figure:nth-child(2) img {
  height: 320px;
}

.hero-frames figure:nth-child(3) img {
  height: 240px;
}

.hero-frames figcaption {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.category-card {
  background: transparent;
}

.category-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 22px;
}

.category-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.category-card p {
  color: var(--text-muted);
  font-size: 16px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.region-tile {
  padding: 36px 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.region-tile:nth-child(3n) {
  border-right: none;
}

.region-tile h3 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 10px;
}

.region-tile p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.split p {
  color: var(--text-muted);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.timeline li {
  position: relative;
  padding: 0 0 48px 40px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline p {
  color: var(--text-muted);
  margin-bottom: 0.6em;
}

.page-head {
  padding: calc(var(--section-pad) - 32px) 0 48px;
  background: var(--bg);
}

.page-head p {
  max-width: 640px;
  color: var(--text-muted);
  margin: 0;
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.catalog-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.catalog-row:first-child {
  border-top: 1px solid var(--border);
}

.catalog-row__thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius);
}

.catalog-row__body {
  text-align: center;
}

.catalog-row__body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 8px;
}

.catalog-row__rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 14px;
}

.catalog-row__meta {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.catalog-row__body p {
  color: var(--text-muted);
  margin: 0;
  font-size: 16px;
}

.catalog-row__cta {
  white-space: nowrap;
}

.quiet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.quiet-card {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.quiet-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.quiet-card__body {
  padding: 36px 32px 40px;
}

.quiet-card h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 8px;
}

.quiet-card__meta {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.quiet-card p {
  color: var(--text-muted);
  font-size: 16px;
}

.downtown-stack {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.downtown-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 48px;
  align-items: stretch;
}

.downtown-row--flip {
  grid-template-columns: 1fr 40%;
}

.downtown-row--flip .downtown-row__media {
  order: 2;
}

.downtown-row--flip .downtown-row__content {
  order: 1;
}

.downtown-row__media {
  position: relative;
}

.downtown-row__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.downtown-row__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: 0.4px;
  background: rgba(12, 9, 8, 0.72);
  color: var(--text);
  border-radius: 0 0 var(--radius) var(--radius);
}

.downtown-row__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}

.downtown-row__meta {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.downtown-row__content p {
  color: var(--text-muted);
}

.catalog-close {
  padding: 64px 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 640px;
}

.editorial-lead {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 64px;
  max-width: none;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}

.editorial-grid section h2 {
  font-size: clamp(20px, 2.5vw, 28px);
}

.editorial-grid p {
  color: var(--text-muted);
}

.notes-stack section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.notes-stack section:first-of-type {
  border-top: 1px solid var(--border);
}

.notes-stack .kicker {
  color: var(--accent);
}

.notes-stack p {
  color: var(--text-muted);
  max-width: 720px;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: var(--section-pad);
}

.contact-wrap > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.agree-row input {
  margin-top: 6px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.agree-row label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

.form-error {
  color: #d9897a;
  font-size: 14px;
  margin: 8px 0 16px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.contact-email {
  margin-top: 28px;
  color: var(--text-muted);
  text-align: center;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 16px;
}

.confirm-panel p {
  color: var(--text-muted);
}

.legal-body {
  padding-bottom: var(--section-pad);
}

.legal-body h2 {
  margin-top: 2.2em;
  font-size: clamp(20px, 2.5vw, 28px);
}

.legal-body h3 {
  margin-top: 1.4em;
  font-size: 18px;
  color: var(--accent);
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body ul {
  padding-left: 1.2em;
  margin-bottom: 1.1em;
}

.sitemap-list {
  list-style: none;
  margin: 0 0 var(--section-pad);
  padding: 0;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list li:first-child {
  border-top: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.04em;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-group a,
.footer-group button {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.footer-group a:hover,
.footer-group button:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.footer-independence {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.footer-legal a,
.footer-legal button {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.consent {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  pointer-events: none;
}

.consent[hidden] {
  display: none;
}

.consent__panel {
  pointer-events: auto;
  background: rgba(30, 24, 23, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 28px 24px 24px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
}

.consent__headline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.4px;
  margin: 0 0 10px;
  color: var(--text);
}

.consent__copy {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.consent__cats {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.consent__cats.is-open {
  display: flex;
}

.consent__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.consent__cat-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.consent__cat-text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.consent__switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.consent__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent__switch-ui {
  position: absolute;
  inset: 0;
  background: var(--secondary);
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.consent__switch-ui::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-muted);
  top: 3px;
  left: 3px;
  transition: transform 0.2s, background 0.2s;
}

.consent__switch input:checked + .consent__switch-ui {
  background: var(--accent-2);
}

.consent__switch input:checked + .consent__switch-ui::after {
  transform: translateX(20px);
  background: var(--accent);
}

.consent__switch input:disabled + .consent__switch-ui {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.consent__btn {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.consent__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.consent__btn--accept:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.consent__policy {
  font-size: 13px;
  color: var(--text-muted);
}

.consent__policy a {
  color: var(--accent);
}

.inline-settings {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  color: var(--accent);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.inline-settings:hover {
  color: var(--text);
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 24px;
    bottom: 24px;
    padding: 0;
    width: 420px;
  }

  .consent__panel {
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split img {
    height: 400px;
  }

  .quiet-card img {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .site-header {
    position: sticky;
  }

  .nav-inner {
    position: relative;
  }

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

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

  .region-tile:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .region-tile:nth-child(2n) {
    border-right: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split img {
    height: 360px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  .container {
    width: min(100% - 32px, var(--max-w));
  }

  .hero-frames {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 16px;
  }

  .hero-frames figure {
    flex: 0 0 220px;
    max-width: none;
    scroll-snap-align: start;
  }

  .hero-frames figure:nth-child(1) img,
  .hero-frames figure:nth-child(2) img,
  .hero-frames figure:nth-child(3) img {
    height: 260px;
  }

  .catalog-row {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .catalog-row__thumb {
    width: 80px;
    height: 80px;
  }

  .catalog-row__cta {
    grid-column: 2;
    justify-self: center;
    margin-top: 4px;
  }

  .downtown-row,
  .downtown-row--flip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .downtown-row--flip .downtown-row__media,
  .downtown-row--flip .downtown-row__content {
    order: unset;
  }

  .downtown-row__media img {
    min-height: 240px;
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .region-tile {
    border-right: none !important;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .contact-panel {
    padding: 28px 20px;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__btn {
    width: 100%;
    text-align: center;
  }

  .brand__name {
    font-size: 13px;
    letter-spacing: 0.08em;
  }
}
