/* ============================================================
   Nexus-XR — nexusxrlabs.com
   Design system: runwayml (cinematic dark editorial)
   One typeface (Inter, 400–600 only). Zero shadows. 4–8px radii.
   Colour lives inside the imagery; the chrome is colourless.
   ============================================================ */

:root {
  /* darks */
  --black: #000000;
  --deep: #030303;
  --surface: #1a1a1a;
  --border-dark: #27272a;

  /* lights */
  --white: #ffffff;
  --near-white: #fefefe;
  --cloud: #e9ecf2;

  /* text */
  --charcoal: #404040;
  --slate: #767d88;
  --mid-slate: #7d848e;
  --muted: #a7a7a7;
  --silver: #c9ccd1;
  --light-silver: #d0d4d4;
  --footer-gray: #999999;

  /* functional only — form validation, not decoration */
  --error: #e8998c;

  --font: "Inter", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1600px;
  --pad: clamp(20px, 4vw, 48px);

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 16px;
}

/* ---------- reset ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--white);
  background: var(--black);
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

ul, ol { list-style: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--white);
  color: var(--black);
}

/* ---------- utilities ---------- */

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top 0.15s ease;
}

.skip-link:focus { top: 0; }

/* Uppercase tracked section label — the system's navigational signpost. */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--slate);
}

.label .mark { width: 18px; height: 18px; flex: none; }

.label--ondark { color: var(--slate); }

/* ---------- type scale (film-title density) ---------- */

h1, h2, h3 {
  font-weight: 400;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.375rem, 5.4vw, 4.25rem);
  line-height: 1.0;
  letter-spacing: -0.026em;
}

h2 {
  font-size: clamp(1.875rem, 3.4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p { max-width: 62ch; }

.fine {
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--slate);
}

.fine a { color: inherit; }

/* ---------- buttons (restrained, radius 4) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--sm { padding: 9px 18px; }

.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--primary:hover { background: var(--silver); border-color: var(--silver); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-dark);
}

.btn--ghost:hover { border-color: var(--slate); }

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.band--cloud a:focus-visible,
.band--white a:focus-visible {
  outline-color: var(--charcoal);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  border-radius: var(--r-md);
}

.text-link .arrow { transition: transform 0.15s ease; }
.text-link:hover .arrow { transform: translateX(3px); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--border-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 68px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: var(--r-md);
}

.wordmark .mark { width: 26px; height: 26px; }

.nav-menu {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.nav-menu a {
  font-size: 0.9375rem;
  color: var(--silver);
  text-decoration: none;
  border-radius: var(--r-md);
  transition: color 0.15s ease;
}

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

.nav-menu__contact { display: none; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 10px;
  border-radius: var(--r-sm);
  color: var(--white);
}

@media (max-width: 860px) {
  .nav { gap: 16px; }
  .nav-toggle { display: inline-flex; }
  .nav-actions { display: none; }
  .nav-menu__contact { display: block; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--pad) 20px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--border-dark);
  }

  .site-header.is-open .nav-menu { display: flex; }

  .nav-menu li { border-top: 1px solid var(--border-dark); }
  .nav-menu li:first-child { border-top: 0; }
  .nav-menu a { display: block; padding: 14px 0; font-size: 1.0625rem; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}

.hero__scene {
  position: absolute;
  inset: 0;
}

.hero__scene svg {
  width: 100%;
  height: 100%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 140px;
  padding-bottom: clamp(48px, 8vh, 96px);
}

.hero h1 {
  max-width: 21ch;
  margin-top: 20px;
}

.hero__lede {
  max-width: 58ch;
  margin-top: 24px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--silver);
}

.hero .btn-row { margin-top: 32px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.hero__meta li {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--slate);
}

/* ---------- sector strip ---------- */

.strip {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 48px;
  padding-block: 22px;
}

.strip__lead {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--slate);
}

.strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 44px;
}

.strip__list li {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- bands ---------- */

.band { padding-block: clamp(56px, 8vw, 96px); }

.band--black { background: var(--black); color: var(--white); }
.band--deep  { background: var(--deep);  color: var(--white); }

.band--cloud {
  background: var(--cloud);
  color: var(--charcoal);
}

.band--white {
  background: var(--white);
  color: var(--charcoal);
}

.band--cloud .label,
.band--white .label { color: var(--mid-slate); }

.band--cloud h2, .band--cloud h3,
.band--white h2, .band--white h3 { color: #1c1e22; }

.band--flush { padding-top: 0; }

.section-head { max-width: 880px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { margin-top: 18px; }

.section-head__note {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--slate);
  max-width: 68ch;
}

/* ---------- work grid (editorial mixed sizes) ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.work-card--feature,
.work-card--wide { grid-column: 1 / -1; }

.work-card__scene {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}

.work-card__scene svg {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.work-card--feature .work-card__scene svg { aspect-ratio: 1200 / 620; }
.work-card--wide .work-card__scene svg { aspect-ratio: 1400 / 460; }

.work-card__body { padding: 24px 4px 8px; }

.work-card__tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate);
}

.work-card__body h3 { margin-top: 10px; }

.work-card__body > p {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--slate);
  max-width: 66ch;
}

.work-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 18px;
}

.work-card__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

.work-card__list svg {
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--slate);
}

/* ---------- capabilities (light) ---------- */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.cap {
  padding-top: 20px;
  border-top: 1px solid var(--light-silver);
}

.cap__num {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mid-slate);
}

.cap h3 {
  margin-top: 14px;
  font-size: 1.25rem;
}

.cap p {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--charcoal);
}

.cap-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 48px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--light-silver);
}

.cap-foot p {
  font-size: 0.9375rem;
  color: var(--mid-slate);
  max-width: 72ch;
}

.cap-foot .text-link { color: #1c1e22; }

/* ---------- process ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(24px, 2.5vw, 40px);
  counter-reset: step;
}

.process li {
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.process__num {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--slate);
}

.process h3 {
  margin-top: 14px;
  font-size: 1.1875rem;
}

.process p {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--slate);
}

/* ---------- why (light) ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.why-block__art {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--light-silver);
}

.why-block__art svg { width: 100%; height: auto; }

.why-block h3 { margin-top: 24px; }

.why-block p {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--charcoal);
  max-width: 60ch;
}

.why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(40px, 5vw, 72px);
}

.why-row li {
  padding-top: 18px;
  border-top: 1px solid var(--light-silver);
}

.why-row h4 { color: #1c1e22; }

.why-row p {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--mid-slate);
}

/* ---------- studio / score ---------- */

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}

.studio-text h2 { margin-top: 18px; }

.studio-text p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--silver);
  max-width: 56ch;
}

.studio-text p + p { color: var(--slate); }

.score {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}

.score > div {
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
}

.score dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
}

.score dd {
  margin-top: 14px;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.score p {
  margin-top: 14px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--slate);
}

/* ---------- mission band ---------- */

.mission {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding-block: clamp(72px, 11vw, 140px);
}

.mission__text {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(1.5rem, 2.9vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.022em;
  text-align: center;
  color: var(--white);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding-block: clamp(56px, 7vw, 88px);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px 64px;
}

.cta-band h2 { margin-top: 16px; max-width: 24ch; }

.cta-band__note {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--slate);
  max-width: 54ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding-block: clamp(48px, 6vw, 72px) 32px;
  color: var(--footer-gray);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2fr));
  gap: clamp(32px, 4vw, 64px);
}

.footer-brand .wordmark { color: var(--white); }

.footer-brand > p {
  margin-top: 18px;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 40ch;
}

.footer-brand__mail { margin-top: 14px !important; }

.footer-brand__mail a {
  color: var(--silver);
  text-decoration: none;
}

.footer-brand__mail a:hover { color: var(--white); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
}

.footer-col ul { margin-top: 16px; display: grid; gap: 10px; }

.footer-col a {
  font-size: 0.875rem;
  color: var(--footer-gray);
  text-decoration: none;
  border-radius: var(--r-md);
  transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--white); }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 32px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.footer-base p {
  font-size: 0.8125rem;
  color: var(--slate);
}

/* ============================================================
   Contact page
   ============================================================ */

.page-head {
  padding-top: clamp(130px, 18vh, 190px);
  padding-bottom: clamp(40px, 6vw, 72px);
  background: var(--black);
}

.page-head h1 {
  margin-top: 20px;
  max-width: 20ch;
}

.page-head__lede {
  margin-top: 22px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--silver);
  max-width: 58ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.form-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 48px);
}

.form-card h2 { font-size: 1.625rem; }

.form-card__note {
  margin-top: 10px;
  margin-bottom: 32px;
  font-size: 0.9375rem;
  color: var(--slate);
}

.field { margin-bottom: 22px; }

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.field .opt {
  font-weight: 400;
  color: var(--slate);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-sm);
  transition: border-color 0.15s ease;
}

.field select { appearance: none; }

.field {
  position: relative;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23767d88' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--mid-slate); opacity: 0.8; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--silver);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.hint {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--slate);
}

.error {
  display: none;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--error);
}

.error.is-shown { display: block; }

.form-card__privacy { margin-top: 16px; }

.form-status {
  display: none;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px 20px;
  background: var(--black);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
}

.form-status.is-shown { display: flex; }

.form-status > svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  color: var(--white);
}

.form-status p { font-size: 0.9375rem; }
.form-status .fine { margin-top: 6px; }

.contact-aside { display: grid; gap: clamp(24px, 3vw, 32px); }

.aside-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
}

.aside-card--outline {
  background: transparent;
  border: 1px solid var(--border-dark);
}

.aside-card h2 { font-size: 1.25rem; }

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 4px 14px;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  grid-row: 1 / 3;
  margin-top: 2px;
  color: var(--slate);
}

.contact-list dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
}

.contact-list dd {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--silver);
}

.contact-list dd a {
  color: var(--white);
  text-decoration: none;
}

.contact-list dd a:hover { text-decoration: underline; }

.steps {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.steps li {
  display: flex;
  gap: 14px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  flex: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--slate);
  padding-top: 2px;
}

.steps span {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--silver);
}

.aside-card__fine { margin-top: 24px; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .studio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card--feature .work-card__scene svg,
  .work-card--wide .work-card__scene svg { aspect-ratio: 4 / 3; }
  .why-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; }
  .score { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cap-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip__inner { flex-direction: column; align-items: flex-start; }
  .hero__inner { padding-top: 120px; }
  .work-card__scene svg { aspect-ratio: 4 / 3; }
}
