/* ============================================================
   votresite.lu / ihreseite.eu — Shared Stylesheet
   Palette: Verre Affiné
   Fonts: Fraunces (display, H1 only) + Schibsted Grotesk (all text)
   ============================================================ */

/* --- Nav: language toggle (added for EN variant, 2026-08-31) --- */
.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__lang-toggle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-light);
  opacity: 0.75;
  text-decoration: none;
  border: 1px solid rgba(250, 248, 245, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.nav__lang-toggle:hover {
  opacity: 1;
  border-color: rgba(250, 248, 245, 0.6);
}

/* --- Font Faces (self-hosted) --- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('../fonts/SchibstedGrotesk-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('../fonts/SchibstedGrotesk-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('../fonts/SchibstedGrotesk-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties / Design Tokens --- */
:root {
  --graphite:   #17181B;
  --ardoise:    #2C2F36;
  --sapphire:   #17356B;
  --sapphire-deep: #0F2550;
  --cendre:     #E8E4DE;
  --parchemin:  #FAF8F5;
  --porcelain:  #FFFFFF;
  --text-primary:   #17181B;
  --text-secondary: #4A4D55;
  --text-light:     #FAF8F5;
  --border-subtle:  rgba(23, 24, 27, 0.12);
  --border-form:    rgba(23, 24, 27, 0.22);
  --font-display: 'Fraunces', Georgia, serif;
  --font-text:    'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --radius-sm:  4px;
  --radius-md:  8px;
  --max-w:      1160px;
  --col-gap:    2rem;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--parchemin);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-text); cursor: pointer; border: none; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

/* --- Typography Scale --- */
h1, h2, h3, h4 {
  font-family: var(--font-text);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* H1 is the ONE place Fraunces appears */
h1.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

p {
  line-height: 1.65;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.8);
  max-width: 42ch;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--graphite);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--porcelain);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--sapphire);
  color: var(--porcelain);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.nav__cta:hover {
  background: var(--sapphire-deep);
}

/* --- Hero Section --- */
.hero {
  background: var(--graphite);
  color: var(--text-light);
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

/* Real photography backdrop, per site. A dark gradient overlay keeps the
   headline, form, and animated grid/glow legible on top of a busy photo.
   The photo itself gets a slow, subtle Ken Burns drift (scale + pan) so
   the background feels alive without ever distracting from the text. */
.hero__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__photo::before {
  content: '';
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  animation: photo-drift 32s ease-in-out infinite alternate;
}

body.lang-fr .hero__photo::before {
  background-image: url('images/luxembourg-hero.jpg');
}

body.lang-de .hero__photo::before {
  background-image: url('images/germany-hero.jpg');
}

@keyframes photo-drift {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.5%, -1%); }
}

.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(23,24,27,0.94) 0%, rgba(23,24,27,0.82) 38%, rgba(23,24,27,0.55) 62%, rgba(23,24,27,0.35) 100%),
    linear-gradient(to top, rgba(23,24,27,0.55) 0%, rgba(23,24,27,0) 30%);
}

/* Neuschwanstein's focal point (the castle) sits left-of-center in the source
   photo, exactly where the default gradient is heaviest. Flip it for German
   so the castle stays visible on the right while the headline/form side
   (left) still gets full dark coverage for legibility. */
body.lang-de .hero__photo::after {
  background:
    linear-gradient(280deg, rgba(23,24,27,0.94) 0%, rgba(23,24,27,0.84) 40%, rgba(23,24,27,0.58) 64%, rgba(23,24,27,0.38) 100%),
    linear-gradient(to top, rgba(23,24,27,0.55) 0%, rgba(23,24,27,0) 30%);
}

/* Animated grid: draws in, then continuously drifts — a genuinely active
   background element instead of a one-shot fade. Slow, subtle drift only,
   no strobing, no color shift. This is intentionally the site's one loud
   motion moment; everything else on the page stays still. */
.hero::before {
  content: '';
  position: absolute;
  inset: -10% -10%;
  background-image:
    linear-gradient(rgba(250,248,245,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,248,245,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 65% at 28% 38%, black 5%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 28% 38%, black 5%, transparent 68%);
  opacity: 0;
  animation:
    hero-grid-in 1100ms ease-out 100ms forwards,
    hero-grid-drift 22s linear 1200ms infinite;
  pointer-events: none;
}

/* Sapphire glow that sweeps slowly behind the headline — the second active element */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(23,53,107,0.55) 0%, rgba(23,53,107,0) 65%);
  opacity: 0;
  animation:
    glow-in 1400ms ease-out 300ms forwards,
    glow-sweep 16s ease-in-out 1700ms infinite;
  pointer-events: none;
  filter: blur(10px);
}

@keyframes hero-grid-in {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes hero-grid-drift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 84px, 56px 84px; }
}

@keyframes glow-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes glow-sweep {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(6%, 4%) scale(1.08); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 520px;
}

.hero__text h1 {
  color: var(--porcelain);
  margin-bottom: var(--space-md);
}

/* THE ONE MOTION MOMENT: the headline builds in on load, word by word, with
   a bigger, more physical entrance than a subtle fade — each word overshoots
   slightly then settles, so it reads as a deliberate, energetic reveal. */
.hero__text h1.display .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9em) scale(1.15);
  filter: blur(10px);
  animation: word-in 850ms cubic-bezier(0.22, 1.6, 0.36, 1) forwards;
}

@keyframes word-in {
  60%  { opacity: 1; filter: blur(0); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero__text .lead {
  opacity: 0;
  animation: lead-in 600ms ease-out 950ms forwards;
}

@keyframes lead-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-card {
  opacity: 0;
  animation: card-in 750ms cubic-bezier(0.22, 1.4, 0.36, 1) 550ms forwards;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(28px) scale(0.94) rotate(-1deg); }
  60%  { transform: translateY(-4px) scale(1.01) rotate(0.3deg); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

/* Nav CTA button gets a delayed pulse on load, once, to draw the eye —
   another active (not passive-fade) touch, but bounded to a single pulse. */
.nav__cta {
  animation: nav-cta-pulse 900ms ease-out 1900ms 1;
}

@keyframes nav-cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(23,53,107,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(23,53,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(23,53,107,0); }
}

/* --- Form Card --- */
.form-card {
  background: var(--porcelain);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ardoise);
  margin-bottom: 0.35rem;
}

.form-group input {
  font-family: var(--font-text);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--parchemin);
  border: 1.5px solid var(--border-form);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  outline: none;
  transition: border-color 150ms ease;
}

.form-group input:focus {
  border-color: var(--sapphire);
}

/* Honeypot — hidden from humans */
.form-group--honeypot {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--sapphire);
  color: var(--porcelain);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  /* THE ONE MOTION MOMENT */
  transition: background-color 200ms ease, transform 120ms ease;
}

.btn-submit:hover {
  background: var(--sapphire-deep);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit.loading .btn-submit__text {
  opacity: 0;
}

.btn-submit.loading .btn-submit__spinner {
  display: block;
}

.btn-submit__spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 600ms linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn-submit {
    transition: none;
  }
  .btn-submit:hover {
    transform: none;
  }
  .btn-submit__spinner {
    animation: none;
    border-top-color: white;
  }
  html {
    scroll-behavior: auto;
  }
  .hero::before,
  .hero::after,
  .hero__photo::before,
  .hero__text h1.display .word,
  .hero__text .lead,
  .form-card,
  .nav__cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.form-small {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.75rem;
}

.form-message {
  display: none;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.form-message.success {
  background: #EBF5EB;
  color: #1A5E1A;
  border-left: 3px solid #2D8A2D;
}

.form-message.error {
  background: #FDF0F0;
  color: #8A1A1A;
  border-left: 3px solid #C0392B;
}

/* --- How It Works --- */
.how {
  background: var(--cendre);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--col-gap);
  margin-top: var(--space-md);
}

.step {
  border-top: 2px solid var(--sapphire);
  padding-top: var(--space-sm);
}

.step__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sapphire);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: block;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- What's Included --- */
.includes {
  background: var(--parchemin);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}

.include-item {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-sm);
}

.include-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.include-item p {
  font-size: 0.825rem;
  color: var(--text-secondary);
}

/* --- Ownership --- */
.ownership {
  background: var(--parchemin);
}

.ownership__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: start;
}

.ownership__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--space-md);
}

.ownership__point {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.ownership__point::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--sapphire);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M8.5 14.5L4 10l1.41-1.41L8.5 11.67l6.09-6.09L16 7l-7.5 7.5z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Pricing --- */
.pricing {
  background: var(--cendre);
}

.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  margin-top: var(--space-md);
}

.pricing-tier {
  background: var(--porcelain);
  border-top: 3px solid var(--sapphire);
  padding: var(--space-md);
}

.pricing-tier__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pricing-tier__setup {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.1;
}

.pricing-tier__monthly {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.pricing-tier__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pricing-tier__feature {
  font-size: 0.875rem;
  color: var(--ardoise);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-tier__feature::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sapphire);
  font-weight: 700;
}

.pricing__vat {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --- FAQ --- */
.faq {
  background: var(--graphite);
  color: var(--text-light);
}

.faq h2 {
  color: var(--porcelain);
  margin-bottom: var(--space-md);
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  color: var(--porcelain);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 1.125rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 200ms ease, opacity 200ms ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .faq-chevron { transition: none; }
}

.faq-answer {
  display: none;
  padding: 0 0 1.125rem 0;
  font-size: 0.9rem;
  color: rgba(250,248,245,0.75);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Closing CTA --- */
.cta-footer {
  background: var(--sapphire);
  color: var(--porcelain);
  padding: var(--space-xl) 0;
}

.cta-footer h2 {
  color: var(--porcelain);
  margin-bottom: 0.5rem;
}

.cta-footer .lead {
  color: rgba(250,248,245,0.8);
  margin-bottom: var(--space-md);
}

.cta-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: center;
}

.cta-footer .form-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.2);
}

.cta-footer .form-group label {
  color: rgba(250,248,245,0.85);
}

.cta-footer .form-group input {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: var(--porcelain);
}

.cta-footer .form-group input::placeholder {
  color: rgba(255,255,255,0.45);
}

.cta-footer .form-group input:focus {
  border-color: rgba(255,255,255,0.7);
}

.cta-footer .btn-submit {
  background: var(--graphite);
}

.cta-footer .btn-submit:hover {
  background: var(--ardoise);
}

.cta-footer .form-small {
  color: rgba(250,248,245,0.6);
}

/* --- Footer --- */
.site-footer {
  background: var(--graphite);
  color: rgba(250,248,245,0.55);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__logo {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--porcelain);
  text-decoration: none;
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8125rem;
}

.site-footer__links a {
  color: rgba(250,248,245,0.55);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--porcelain);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__credit a {
  color: rgba(250,248,245,0.7);
  text-decoration: underline;
  text-decoration-color: rgba(250,248,245,0.2);
}

/* --- Legal Pages --- */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.legal-page h1 {
  font-family: var(--font-text);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.legal-page h2 {
  font-size: 1.125rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.legal-page p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-page .placeholder {
  background: #FFF3CD;
  border: 1.5px solid #F0A500;
  border-radius: 3px;
  padding: 2px 6px;
  font-family: monospace;
  font-size: 0.85em;
  color: #7B4D00;
}

.legal-nav {
  background: var(--graphite);
  padding: 1rem var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-nav a {
  color: rgba(250,248,245,0.7);
  text-decoration: none;
  font-size: 0.875rem;
}

.legal-nav a:hover { color: var(--porcelain); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero__text {
    max-width: 100%;
  }

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

  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-table {
    grid-template-columns: 1fr;
  }

  .cta-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
  }

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

  h1.display {
    font-size: 2.25rem;
  }
}
