/* =============================================================================
   Free Spirit — global design system (reset → components → responsive)
   Dark premium / editorial / photo-led
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. Reset (sane defaults, no user-agent surprises)
   ----------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: #0a0a0a;
  color-scheme: dark;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* -----------------------------------------------------------------------------
   2. Design tokens
   ----------------------------------------------------------------------------- */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #101010;
  --fg: #f0ece4;
  --fg-muted: rgba(240, 236, 228, 0.68);
  --accent: #c9a96e;
  --accent-border: rgba(201, 169, 110, 0.25);
  --accent-border-strong: rgba(201, 169, 110, 0.45);
  --glass-fill: rgba(255, 255, 255, 0.04);
  --glass-blur: 12px;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  /* Horizontal insets: notches (asymmetric OK) */
  --pad-x: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
  --container: min(
    1220px,
    calc(100% - max(16px, env(safe-area-inset-left)) - max(16px, env(safe-area-inset-right)))
  );
  --hero-text-max: 720px;
  --font-serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Mobile-first vertical rhythm; grows on tablet/desktop */
  --section-y: clamp(52px, 11vw + 28px, 140px);
  --header-h: 80px;
  --bp-md: 640px;
  --bp-lg: 960px;
  --bp-xl: 1200px;
  --tap-min: 44px;
}

/* -----------------------------------------------------------------------------
   3. Base typography & page surface
   ----------------------------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  font-size: clamp(16px, 0.35vw + 15px, 18px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.62;
  background-color: var(--bg);
  color: var(--fg);
  overflow-x: clip;
}

@media (min-width: 768px) {
  body {
    font-size: clamp(16px, 0.25vw + 15px, 18px);
  }
}

/* -----------------------------------------------------------------------------
   4. Links (no default blue / underline)
   ----------------------------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* -----------------------------------------------------------------------------
   5. Container & section rhythm
   ----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--section-y);
  scroll-margin-top: max(88px, calc(env(safe-area-inset-top) + 64px));
}

@media (min-width: 768px) {
  .section {
    scroll-margin-top: calc(var(--header-h) + 16px);
  }
}

/* First content block slides over the hero while scrolling */
.section--audience {
  position: relative;
  z-index: 2;
  background-color: var(--bg);
  margin-top: calc(-1 * clamp(1.5rem, 4.5vw, 3.25rem));
  padding-top: calc(var(--section-y) + clamp(1.5rem, 4.5vw, 3.25rem));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.5);
}

.section__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.625rem, 0.5vw + 0.55rem, 0.6875rem);
  font-weight: 600;
  letter-spacing: clamp(0.18em, 1.2vw, 0.32em);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 5.5vw + 0.85rem, 3.75rem);
  line-height: 1.08;
  letter-spacing: clamp(0.025em, 0.8vw, 0.04em);
  text-transform: uppercase;
  max-width: min(20ch, 100%);
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
}

@media (max-width: 399.98px) {
  .section__title {
    max-width: none;
  }
}

.section__prose {
  max-width: 52ch;
  color: var(--fg-muted);
  font-size: 1.0625rem;
  line-height: 1.68;
}

/* -----------------------------------------------------------------------------
   6. Buttons
   ----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: clamp(0.625rem, 0.4vw + 0.55rem, 0.6875rem);
  font-weight: 600;
  letter-spacing: clamp(0.12em, 0.8vw, 0.2em);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-border-strong);
  background: var(--glass-fill);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  color: var(--fg);
  cursor: pointer;
  touch-action: manipulation;
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 399.98px) {
  .hero__cta .btn,
  .cta-glass__inner .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 169, 110, 0.08);
}

.btn--primary {
  border-color: rgba(201, 169, 110, 0.55);
}

.btn--nav {
  padding-inline: clamp(0.85rem, 3vw, 1.35rem);
  padding-block: 0.65rem;
  min-height: 40px;
  letter-spacing: 0.14em;
}

@media (min-width: 768px) {
  .btn--nav {
    min-height: var(--tap-min);
    letter-spacing: clamp(0.12em, 0.8vw, 0.2em);
  }
}

/* -----------------------------------------------------------------------------
   7. Header — over hero, dark / transparent
   ----------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 64px;
  height: auto;
  display: flex;
  align-items: stretch;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.72) 50%,
    rgba(10, 10, 10, 0.35) 100%
  );
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top);
}

@media (min-width: 768px) {
  .site-header {
    height: var(--header-h);
    min-height: var(--header-h);
    align-items: center;
    padding-top: env(safe-area-inset-top);
  }
}

.site-header__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.75rem;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-block: 0.625rem;
  min-height: calc(3.5rem + env(safe-area-inset-top));
}

@media (min-width: 768px) {
  .site-header__inner {
    column-gap: 1.5rem;
    padding-block: 0;
    min-height: calc(var(--header-h) - env(safe-area-inset-top));
    align-items: center;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--fg);
  flex-shrink: 0;
  line-height: 0;
}

.brand-mark__img {
  display: block;
  height: clamp(30px, 8vw, 52px);
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
}

.brand-mark--footer .brand-mark__img {
  height: clamp(32px, 4vw, 42px);
}

.brand-mark:hover .brand-mark__img {
  opacity: 0.92;
}

.brand-mark:hover {
  color: var(--accent);
}

.site-nav {
  display: none;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 3vw, 1.25rem);
    margin: 0;
    min-width: 0;
    max-width: none;
    padding: 0;
    border: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent, #000 10px, #000 calc(100% - 10px), transparent);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (min-width: 900px) {
  .site-nav {
    gap: clamp(1rem, 2.5vw, 2rem);
    mask-image: none;
  }
}

.site-nav a {
  flex: 0 0 auto;
  font-size: clamp(0.5625rem, 1.2vw + 0.45rem, 0.625rem);
  font-weight: 600;
  letter-spacing: clamp(0.14em, 0.9vw, 0.22em);
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--fg);
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

@media (min-width: 768px) {
  .site-header__end {
    margin-left: 0;
  }
}

.site-lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: clamp(0.5625rem, 1vw + 0.45rem, 0.625rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-lang a {
  color: var(--fg-muted);
  text-decoration: none;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.site-lang a:hover,
.site-lang a:focus-visible {
  color: var(--fg);
}

.site-lang a.is-active {
  color: var(--accent);
  pointer-events: none;
}

.site-lang__sep {
  color: var(--accent-border);
  user-select: none;
  font-weight: 400;
  letter-spacing: 0;
}

.site-header__cta {
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   8. Hero — fullscreen, cinematic, left column
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: var(--bg);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.88) 0%,
      rgba(10, 10, 10, 0.55) 38%,
      rgba(10, 10, 10, 0.25) 72%,
      rgba(10, 10, 10, 0.45) 100%
    ),
    rgba(10, 10, 10, 0.35);
}

@media (max-width: 639.98px) {
  .hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.35) 35%,
        rgba(10, 10, 10, 0.82) 100%
      ),
      rgba(10, 10, 10, 0.42);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-top: max(5.5rem, calc(env(safe-area-inset-top) + 4.5rem));
  padding-bottom: max(2.5rem, calc(env(safe-area-inset-bottom) + 2rem));
}

@media (min-width: 768px) {
  .hero__content {
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: clamp(40px, 6vh, 72px);
  }
}

.hero__text {
  max-width: var(--hero-text-max);
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 4.5vw + 0.75rem, 4.5rem);
  line-height: 1.03;
  letter-spacing: clamp(0.02em, 0.6vw, 0.035em);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--accent);
}

.hero__lead {
  font-size: clamp(0.9375rem, 0.38vw + 0.78rem, 1.125rem);
  line-height: 1.58;
  color: var(--fg-muted);
  max-width: var(--hero-text-max);
  margin-bottom: 0.6rem;
}

.hero__lead:last-of-type {
  margin-bottom: 1.35rem;
}

.hero__cta {
  margin-top: 0.15rem;
}

@media (max-height: 820px) and (min-width: 640px) {
  .hero__content {
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: clamp(28px, 4vh, 48px);
  }

  .hero__eyebrow {
    margin-bottom: 0.55rem;
  }

  .hero__title {
    font-size: clamp(1.5rem, 2.8vw + 0.65rem, 3rem);
    margin-bottom: 0.65rem;
  }

  .hero__lead {
    font-size: clamp(0.8125rem, 0.2vw + 0.72rem, 0.9375rem);
    line-height: 1.52;
    margin-bottom: 0.45rem;
  }

  .hero__lead:last-of-type {
    margin-bottom: 1rem;
  }
}

/* RU (`ru/index.html`): тот же `site.css`, но заголовок длиннее — чуть плотнее, чтобы на ноуте совпадало с EN */
html[lang="ru"] .hero__title {
  font-size: clamp(1.6rem, 3.5vw + 0.55rem, 3.65rem);
}

html[lang="ru"] .hero__lead {
  font-size: clamp(0.875rem, 0.32vw + 0.72rem, 1.0625rem);
}

@media (max-height: 820px) and (min-width: 640px) {
  html[lang="ru"] .hero__title {
    font-size: clamp(1.32rem, 2vw + 0.45rem, 2.4rem);
  }

  html[lang="ru"] .hero__lead {
    font-size: clamp(0.75rem, 0.12vw + 0.68rem, 0.875rem);
    line-height: 1.48;
  }
}

/* -----------------------------------------------------------------------------
   9. Grids
   ----------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(1.25rem, 2vw, 2rem);
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -----------------------------------------------------------------------------
   10. Glass cards (audience, why)
   ----------------------------------------------------------------------------- */
.card {
  background: var(--glass-fill);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 5vw, 36px);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1vw + 1.1rem, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--fg);
}

.card__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

.card__link {
  margin-top: auto;
  padding: 0.75rem 0 0.25rem;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.5625rem, 0.4vw + 0.5rem, 0.625rem);
  font-weight: 600;
  letter-spacing: clamp(0.12em, 0.8vw, 0.2em);
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-border);
  align-self: flex-start;
  touch-action: manipulation;
}

.card__link:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

/* Region feature cards — image + glass body */
.card--feature {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.card--feature .card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 200px;
  border-radius: 0;
  overflow: hidden;
}

@media (max-width: 639.98px) {
  .card--feature .card__media {
    aspect-ratio: 4 / 3;
    min-height: 180px;
  }
}

.card--feature .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.55) saturate(0.92);
}

@media (hover: hover) and (pointer: fine) {
  .card--feature:hover .card__media img {
    transform: scale(1.05);
    filter: brightness(0.62) saturate(0.98);
  }
}

.card--feature .card__body {
  padding: clamp(20px, 5vw, 36px);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.65) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--accent-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

/* -----------------------------------------------------------------------------
   11. Gallery — composed mosaic, all cover + radius
   ----------------------------------------------------------------------------- */
.section--gallery .section__title {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.section--gallery .section__eyebrow {
  text-align: center;
}

.section--gallery .section__prose--gallery {
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.section--gallery .section__prose--gallery > p + p {
  margin-top: 1.15em;
}

.gallery {
  display: grid;
  gap: clamp(10px, 2.5vw, 20px);
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(200px, 42vmin);
}

@media (max-width: 639.98px) {
  .gallery__cell--tall,
  .gallery__cell--wide,
  .gallery__cell--r2a,
  .gallery__cell--r2b,
  .gallery__cell--span {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (min-width: 480px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(150px, 32vw);
  }
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: 0.95fr 1fr 1fr;
    grid-template-rows: minmax(200px, 26vw) minmax(200px, 26vw) auto;
  }

  .gallery__cell--tall {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .gallery__cell--wide {
    grid-column: 2 / span 2;
    grid-row: 1;
  }

  .gallery__cell--r2a {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery__cell--r2b {
    grid-column: 3;
    grid-row: 2;
  }

  .gallery__cell--span {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: min(320px, 28vw);
  }
}

.gallery__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-border);
  background: var(--bg-elevated);
}

.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.52) saturate(0.95);
  transition: filter 0.4s ease, transform 0.65s ease;
}

@media (hover: hover) and (pointer: fine) {
  .gallery__cell:hover img {
    filter: brightness(0.6);
    transform: scale(1.03);
  }
}

/* -----------------------------------------------------------------------------
   12. Footer CTA strip
   ----------------------------------------------------------------------------- */
.cta-glass {
  margin-block: var(--section-y);
  width: min(var(--container), 100%);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-border);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: max(clamp(36px, 10vw, 88px), env(safe-area-inset-top));
  padding-bottom: max(clamp(36px, 10vw, 88px), env(safe-area-inset-bottom));
  padding-left: max(clamp(18px, 5vw, 48px), env(safe-area-inset-left));
  padding-right: max(clamp(18px, 5vw, 48px), env(safe-area-inset-right));
}

.cta-glass__inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-glass__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 5vw + 0.65rem, 2.75rem);
  letter-spacing: clamp(0.04em, 0.8vw, 0.06em);
  text-transform: uppercase;
  line-height: 1.12;
}

.cta-glass__text {
  color: var(--fg-muted);
  font-size: 1.0625rem;
  line-height: 1.68;
}

/* -----------------------------------------------------------------------------
   13. Site footer
   ----------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--accent-border);
  padding-block: clamp(28px, 6vw, 48px);
  padding-bottom: max(clamp(28px, 6vw, 48px), env(safe-area-inset-bottom));
  background: var(--bg);
}

.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

@media (max-width: 639.98px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__meta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-footer__copy {
    text-align: center;
  }
}

.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__meta a {
  color: var(--fg-muted);
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.site-footer__meta a:hover {
  color: var(--accent);
}

.site-footer__sep {
  color: var(--accent-border);
  user-select: none;
}

.site-footer__copy {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  width: 100%;
}

@media (min-width: 768px) {
  .site-footer__copy {
    width: auto;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card--feature .card__media img,
  .gallery__cell img {
    transition: none;
  }
}

/* -----------------------------------------------------------------------------
   14. Utilities
   ----------------------------------------------------------------------------- */
.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;
}
