/* =============================================================
   Obiteljski smještaj Pero Šego – Main Stylesheet
   ============================================================= */

/* ── Custom Properties ── */
:root {
  --navy:      #0d1a33;
  --navy-dark: #08111f;
  --navy-mid:  #1d285c;
  --gold:      #c9a84c;
  --white:     #ffffff;
  --off-white: #f8f6f1;
  --text:      #333333;
  --text-light:#666666;
  --border:    #e0ddd6;

  --font-serif: 'Linden Hill', Georgia, "Times New Roman", serif;
  --font-sans:  'Plus Jakarta Sans', 'Open Sans', Helvetica, Arial, sans-serif;

  --max-w: 1240px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);

  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: .75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-nav {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  padding: .6rem 1.4rem;
  font-size: .72rem;
}
.btn-nav:hover { background: var(--navy-mid); color: var(--white); border-color: var(--navy-mid); }

/* Dark-bg button used inside forms */
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}

#header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
  padding: .8rem 0;
}

.header-inner {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-right: auto;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#main-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#main-nav ul {
  display: flex;
  gap: 1.8rem;
}
#main-nav ul a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
#main-nav ul a:hover { color: var(--white); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.lang-link {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  padding: .35rem .55rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
}

.lang-link:hover,
.lang-link:focus-visible {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.lang-link.active {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero/Untitled-design.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,17,31,.55) 0%, rgba(8,17,31,.35) 60%, rgba(8,17,31,.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 2.4rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-inline: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-size: 1.5rem;
  animation: bounce 1.8s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── FEATURES ── */
#features {
  background: var(--off-white);
  padding: 4.5rem 0;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  width: min(92vw, 1480px);
  margin-inline: auto;
  align-items: center;
}

/* Left: two stacked images */
.features-images {
  display: grid;
  grid-template-rows: repeat(2, 290px);
  gap: 1rem;
}

.features-img-top,
.features-img-bottom {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.features-img-top img,
.features-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.features-img-top:hover img,
.features-img-bottom:hover img { transform: scale(1.04); }

.img-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(8,17,31,.68);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .8rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Right: text panel */
.features-text {
  display: flex;
  justify-content: flex-start;
}

.features-copy {
  width: min(100%, 440px);
  padding: clamp(1.8rem, 2.6vw, 2.6rem);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(13,26,51,.08);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(8,17,31,.08);
  backdrop-filter: blur(8px);
}

.feature-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.features-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.6vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.features-text p {
  color: var(--text-light);
  font-size: .98rem;
  line-height: 1.78;
  margin-bottom: 1rem;
}

.features-cta {
  margin-top: .85rem;
  align-self: flex-start;
}

/* ── STATS ── */
#stats {
  padding: 5rem 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

#stats .stats-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

#stats h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.stats-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 480px;
}

.stat-item h4 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: .5rem;
}

.stat-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.stat-unit {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  margin-left: .1em;
}

.stats-sub {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── SERVICES ── */
#usluge {
  padding: 5.5rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.service-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.service-item p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── ABOUT ── */
#onama {
  padding: 5.5rem 0;
  background: var(--off-white);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-light);
  font-size: .97rem;
  margin-bottom: 1rem;
}

.room-types {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.room-types h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.room-type {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 500;
}
.room-icon { font-size: 1.1rem; }

.about-medjugorje {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.about-medjugorje p {
  font-size: .88rem;
  font-style: italic;
  color: var(--text-light);
}

/* ── GALLERY ── */
#galerija {
  padding: 5.5rem 0;
  background: var(--navy-dark);
}

#galerija .section-header h2,
#galerija .section-header p { color: var(--white); }
#galerija .section-header p { color: rgba(255,255,255,.6); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,26,51,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

/* ── RESERVATION / CONTACT ── */
#rezerviraj {
  padding: 5.5rem 0;
  background: var(--white);
}

.rezerviraj-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.rezerviraj-form-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: .75rem;
}
.rezerviraj-form-col > p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Form */
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .45rem;
}
.form-group label span { color: #c0392b; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,26,51,.08);
  background: var(--white);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e74c3c;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text);
  cursor: pointer;
}
.radio-label input { accent-color: var(--navy); }

.field-error {
  display: block;
  font-size: .78rem;
  color: #e74c3c;
  margin-top: .3rem;
  min-height: 1em;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-top: .5rem;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-submit:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-submit.loading .btn-text { visibility: hidden; }
.btn-submit.loading .btn-spinner { display: block; }

.btn-spinner {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#form-message {
  margin-top: 1rem;
  padding: .9rem 1.2rem;
  border-radius: var(--radius);
  font-size: .9rem;
  display: none;
}
#form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
#form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Contact details */
.contact-details { margin-bottom: 2rem; }
.contact-block {
  margin-bottom: 1.5rem;
}
.contact-block h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.contact-block p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.contact-block a { color: var(--navy); font-weight: 600; }
.contact-block a:hover { color: var(--navy-mid); text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; }

/* ── FOOTER ── */
#footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

#footer .logo-main { color: var(--white); font-size: 1.1rem; }
#footer .logo-sub { color: rgba(255,255,255,.45); font-size: .6rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
#lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
}
#lb-caption {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin-top: .75rem;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  transition: opacity var(--transition);
  opacity: .7;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }

.lb-close { top: 1.2rem; right: 1.5rem; font-size: 2.5rem; }
.lb-prev  { left: 1rem;  top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  #features        { padding: 4.5rem 0; }
  .features-layout { grid-template-columns: 1fr; gap: 2rem; width: min(92vw, 980px); }
  .features-images { grid-template-rows: repeat(2, 240px); }
  .features-copy   { width: min(100%, 680px); padding: 2.5rem 2rem; }
  .services-grid  { grid-template-columns: repeat(3, 1fr); }
  .about-wrap     { grid-template-columns: 1fr; }
  .about-images   { max-width: 520px; margin-bottom: 3rem; }
  .about-img-secondary { right: 0; bottom: -1.5rem; }
  .rezerviraj-wrap { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile large */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  #main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right .3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
  }
  #main-nav.open { right: 0; }
  #main-nav .nav-links { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  #main-nav ul   { flex-direction: column; gap: 1.2rem; }
  #main-nav ul a { font-size: .95rem; }
  .lang-switcher { margin-top: .5rem; }

  #hero { background-attachment: scroll; }

  #features      { padding: 4rem 0; }
  .features-layout { width: 90%; gap: 1.5rem; }
  .features-images { grid-template-rows: repeat(2, 210px); gap: .75rem; }
  .features-copy { padding: 2rem 1.5rem; }
  .features-text h3 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .stats-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }

  .footer-inner  { flex-direction: column; text-align: center; }
  .footer-links  { flex-wrap: wrap; justify-content: center; }
}

/* Mobile small */
@media (max-width: 480px) {
  #features      { padding: 3.25rem 0; }
  .features-images { grid-template-rows: repeat(2, 170px); }
  .features-copy { padding: 1.6rem 1.2rem; }
  .img-caption   { bottom: .75rem; left: .75rem; padding: .35rem .65rem; }
  .hero-buttons  { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .room-grid     { grid-template-columns: 1fr; }
  .stats-grid, .stats-grid--two { grid-template-columns: repeat(2,1fr); }
  .stat-number   { font-size: 2rem; }
}
