/* ════════════════════════════
   PAGE WRAPPER
════════════════════════════ */
.page-wrapper {
  position: relative;
  width: 100%;
  overflow: clip;
}

/* ════════════════════════════
   HERO — full-viewport cinematic
════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: max(540px, calc(100vw * 1455 / 2585));
  margin-top: 0;
  overflow: hidden;
  background: transparent;
}

.hero-picture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5%;
  right: 0;
  display: block;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-bg-img.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(var(--shadow-rgb),0.65) 0%,
    rgba(var(--shadow-rgb),0.45) 50%,
    rgba(var(--shadow-rgb),0.12) 100%
  );
}

/* Role strip — full row below nav, sharpness cycles */
.hero-role-cycle {
  position: absolute;
  z-index: 3;
  top: calc(96px + 1.4rem);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  pointer-events: none;
}

.hero-role-cycle .role-item {
  font-family: var(--font-body);
  font-size: clamp(0.52rem, 0.95vw, 0.7rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 0 0.7rem;
  opacity: 0;
  filter: blur(1.5px);
  transition: opacity 0.75s ease, filter 0.75s ease;
}

.hero-role-cycle.loaded .role-item {
  opacity: 0.5;
  filter: blur(0.3px);
}

.hero-role-cycle.loaded .role-item.sharp {
  opacity: 1;
  filter: blur(0);
}

.name-left,
.name-right {
  position: absolute;
  z-index: 2;
  top: 48%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1;
  color: #FFFFFF;
}
.name-left {
  left: 5%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.name-right { right: 5%; text-align: right; }

.name-dr {
  font-size: 0.38em;
  letter-spacing: 0.55em;
  opacity: 0.8;
}

/* Scroll indicator — bottom of hero */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
  text-decoration: none;
}
.scroll-cue:hover { opacity: 0.9; }
.scroll-cue span {
  font-size: 0.45rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-hero-accent);
}
.scroll-cue svg {
  width: 14px; height: 14px;
  stroke: var(--color-hero-accent);
  fill: none;
  animation: nudge 2s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ════════════════════════════
   KEYWORDS BAND
════════════════════════════ */
#keywords {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: var(--section-bg-b);
}

.keyword {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brown-mid);
}

.keyword-divider {
  width: 1px;
  height: 28px;
  background: var(--color-border);
}

/* ════════════════════════════
   VALUE PROPOSITIONS
════════════════════════════ */
#values {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem 5.5rem;
}

/* Tinted panel with serif numerals — one cohesive block, calmer than
   cards but with more substance than bare hairline rows. */
.values-panel {
  max-width: 1000px;
  margin: 0 auto;
  /* Light frosted panel (not sand) so the accent box reads as a real highlight */
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem 3rem;
}

.value-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.value-row:last-child {
  border-bottom: none;
}

.value-numeral {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 400;
  color: var(--color-sage);
  width: 2.4ch;
  text-align: center;
}

.value-row h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  color: var(--color-text-deep);
  margin-bottom: 0.35rem;
}

.value-row p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--color-text-card);
  max-width: 60ch;
}

/* "Rikkalik kogemus" — tinted box that sets it apart and holds the numbers */
.value-row--stats {
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 8px;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.28);
  padding: 1.9rem 2rem;
  margin: 0.4rem 0;
  align-items: start;
}

.value-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.vstat {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--shadow-rgb), 0.06);
  border-radius: 6px;
  padding: 1.2rem 0.7rem;
  text-align: center;
  box-shadow: 0 5px 16px rgba(var(--shadow-rgb), 0.10);
}

.vstat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1;
  color: var(--color-sage);
}

.vstat-label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-card);
}

@media (max-width: 620px) {
  .value-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; }
  .vstat { padding: 0.9rem 0.5rem; }
  .vstat-label { font-size: 0.56rem; letter-spacing: 0.06em; }
}

/* ════════════════════════════
   GALLERY — single full-bleed row, diagonal overlapping seams (no text)
════════════════════════════ */
#gallery {
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: hidden;
}

.gallery-stage {
  display: flex;
  width: 100%;
  height: clamp(300px, 33vw, 480px);
}

.gallery-photo {
  position: relative;
  flex: 1 1 0;
  height: 100%;
  margin-left: -3.5%;            /* overlap the previous photo */
  overflow: hidden;
  /* slanted left & right edges → diagonal seams */
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0% 100%);
  transition: flex-grow 0.5s ease;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.2,0.7,0.2,1);
}

/* First photo: flush straight left edge to the viewport edge */
.gallery-photo:first-child {
  margin-left: 0;
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
}
/* Last photo: flush straight right edge */
.gallery-photo:last-child {
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Stack so each photo's slant sits over the next — clean diagonal cascade */
.gallery-photo:nth-child(1) { z-index: 5; }
.gallery-photo:nth-child(2) { z-index: 4; }
.gallery-photo:nth-child(3) { z-index: 3; }
.gallery-photo:nth-child(4) { z-index: 2; }
.gallery-photo:nth-child(5) { z-index: 1; }

/* Hover: gently zoom the photo within its frame */
.gallery-photo:hover img { transform: scale(1.05); }

/* Mobile — keep the single row, shorter band so the slices stay well-proportioned */
@media (max-width: 620px) {
  .gallery-stage { height: clamp(150px, 38vw, 220px); }
  .gallery-photo {
    margin-left: -5%;
    clip-path: polygon(14% 0, 100% 0, 86% 100%, 0% 100%);
  }
  .gallery-photo:first-child { clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%); }
  .gallery-photo:last-child  { clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%); }
}

/* ════════════════════════════
   CONTACT CTA
════════════════════════════ */
#contact-cta {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem;
  background: var(--section-bg-a);
}

.contact-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-cta-image {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 4px 14px rgba(var(--shadow-rgb),0.08),
    0 18px 42px rgba(var(--shadow-rgb),0.11);
}

.contact-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.contact-cta-image:hover img {
  transform: scale(1.04);
}

.contact-cta-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

.contact-cta-body .section-heading {
  margin-top: 0.2rem;
}

.contact-cta-body p {
  font-size: 0.87rem;
  line-height: 1.9;
  color: var(--color-brown-mid);
  font-weight: 300;
  max-width: 42ch;
}

.contact-cta-body .nav-cta {
  margin-left: 0; /* reset the nav-specific indent */
}

/* Responsive — stack vertically on tablet/mobile */
@media (max-width: 900px) {
  .contact-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-cta-image {
    max-width: 480px;
  }
}

/* ════════════════════════════
   STATS
════════════════════════════ */
#stats {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  background: var(--section-bg-a);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 2.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(var(--shadow-rgb),0.08);
  box-shadow:
    0 2px 6px  rgba(var(--shadow-rgb),0.05),
    0 8px 20px rgba(var(--shadow-rgb),0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.stats-grid > .stat-item:nth-child(1),
.stats-grid > .stat-item:nth-child(4) {
  background: var(--color-stat-warm);
  border-color: rgba(var(--shadow-rgb),0.06);
}

.stats-grid > .stat-item:nth-child(2),
.stats-grid > .stat-item:nth-child(3) {
  background: rgba(var(--accent-rgb),0.14);
  border-color: rgba(var(--accent-rgb),0.28);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--color-brown-dark);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-item .stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brown-mid);
  font-weight: 500;
}

/* ════════════════════════════
   SERVICES PREVIEW
════════════════════════════ */
#services-preview {
  position: relative;
  z-index: 2;
  padding: 6rem 3rem;
  background: var(--section-bg-b);
}

.services-box {
  max-width: 1220px;
  margin: 0 auto;
  padding: 4rem 3.5rem 3.5rem;
  border-radius: 14px;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  border-radius: 14px;
  padding: 1.5rem 1rem;
}

@keyframes icon-roll {
  0%   { transform: rotate(0deg); }
  80%  { transform: rotate(385deg); }
  100% { transform: rotate(360deg); }
}

.service-icon {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  background: rgba(var(--accent-rgb), 0.26);
  animation: icon-roll 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.service-icon svg {
  width: 34px; height: 34px;
  stroke: var(--color-sage);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-text-deep);
}

.service-card p {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--color-text-card);
}

@keyframes arrow-bounce {
  0%   { transform: translateX(0); }
  45%  { transform: translateX(7px); }
  70%  { transform: translateX(2px); }
  100% { transform: translateX(5px); }
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--color-cta-hover);
  gap: 0.75rem;
}

.service-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.service-link:hover svg,
.service-link:focus-visible svg {
  animation: arrow-bounce 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ════════════════════════════
   NEWS / BLOG PREVIEW
════════════════════════════ */
#news {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem 6rem;
  background: var(--section-bg-a);
}

.news-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.news-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.news-card {
  overflow: hidden;
}

.news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-date {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.6rem;
}

.news-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-brown-dark);
  margin-bottom: 0.6rem;
}

.news-card p {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-brown-dark);
  margin-bottom: 1rem;
}

.news-card .service-link { font-size: 0.55rem; }

/* ── News card type badges ── */
.news-card[data-type] .news-card-body::before {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25em 0.8em;
  border-radius: 20px;
  margin-bottom: 0.4rem;
}
.news-card[data-type="article"] .news-card-body::before {
  content: "Artikkel";
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--color-sage);
}
.news-card[data-type="video"] .news-card-body::before {
  content: "Video";
  background: rgba(80, 110, 160, 0.13);
  color: #5a7a9a;
}
.news-card[data-type="audio"] .news-card-body::before {
  content: "Audio";
  background: rgba(110, 80, 150, 0.12);
  color: #8060a8;
}
.news-card[data-type="social"] .news-card-body::before {
  content: "Sotsiaalmeedia";
  background: rgba(var(--shadow-rgb), 0.07);
  color: var(--color-brown-mid);
}

/* ════════════════════════════
   CLIENT LOGOS
════════════════════════════ */
#clients {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--section-bg-b);
}

.clients-header {
  text-align: center;
  padding: 0 3rem;
  margin-bottom: 3rem;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: max-content;
  animation: scroll-logos 40s linear infinite;
  padding: 0.5rem 0;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

/* Logo cards — white box with shadow */
.logo-card {
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 1.1rem 1.6rem;
  box-shadow:
    0 2px 8px rgba(var(--shadow-rgb),0.07),
    0 6px 18px rgba(var(--shadow-rgb),0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow:
    0 8px 24px rgba(var(--shadow-rgb),0.16),
    0 24px 48px rgba(var(--shadow-rgb),0.14);
}

/* Dim non-hovered cards when one is focused */
.logo-carousel:hover .logo-card:not(:hover) {
  opacity: 0.45;
}

.logo-card img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clients-text-toggle {
  text-align: center;
  margin-top: 2rem;
  padding: 0 3rem;
}

.clients-text-toggle button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brown-mid);
  cursor: pointer;
  transition: color 0.2s;
}
.clients-text-toggle button:hover { color: var(--color-brown-dark); }

.clients-text-list {
  display: none;
  max-width: 900px;
  margin: 1.5rem auto 0;
  padding: 0 3rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 2;
  color: var(--color-brown-mid);
}
.clients-text-list.expanded { display: block; }

/* ════════════════════════════
   SISUPUU (SITE MAP)
════════════════════════════ */
#sisupuu {
  position: relative;
  z-index: 2;
  padding: 6rem 3rem;
  background: var(--section-bg-c);
}

.sisupuu-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sisupuu-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.sisupuu-group {
  padding: 2rem 1.5rem;
}

.sisupuu-group h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--color-brown-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}

.sisupuu-group h3 a {
  color: inherit;
  transition: color 0.2s;
}
.sisupuu-group h3 a:hover { color: var(--color-brown-mid); }

.sisupuu-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sisupuu-group li a {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.sisupuu-group li a:hover { color: var(--color-brown-dark); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 960px) {
  #hero { margin-top: 64px; height: calc(100vh - 64px); }
  .hero-role-cycle { top: 1.4rem; }
  .name-left, .name-right { font-size: clamp(2rem, 7vw, 4rem); }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .services-box { padding: 3rem 2rem 2.5rem; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .sisupuu-grid { grid-template-columns: repeat(2, 1fr); }
  #services-preview, #news, #sisupuu { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 960px) and (min-width: 721px) {

  .hero-role-cycle .role-item {
    font-size: clamp(0.42rem, 0.72vw, 0.54rem);
    padding: 0 0.45rem;
  }
}

@media (max-width: 720px) {
  #hero {
    height: calc(100vh - 64px);
  }

  /* Single-word mode: stacked, positioned as stair step below PEHK */
  .hero-role-cycle {
    display: grid;
    justify-items: start;
    top: calc(28% + 7rem);
    left: 26%;
    right: auto;
  }
  .hero-role-cycle .role-item {
    grid-area: 1 / 1;
    font-size: clamp(0.48rem, 2.6vw, 0.62rem);
    padding: 0;
    letter-spacing: 0.15em;
    text-align: left;
  }
  .hero-role-cycle.loaded .role-item {
    opacity: 0;
    filter: blur(0);
  }
  .hero-role-cycle.loaded .role-item.sharp {
    opacity: 1;
    filter: blur(0);
  }

  .name-left, .name-right {
    font-size: clamp(1.8rem, 9vw, 3rem);
    letter-spacing: 0.2em;
    white-space: nowrap;
    text-align: left;
    right: auto;
  }

  .name-left {
    top: 28%;
    left: 8%;
    transform: none;
  }

  .name-right {
    top: calc(28% + 4rem);
    left: 20%;
    bottom: auto;
    transform: none;
  }

  .scroll-cue { bottom: 1.5rem; }

  #keywords { flex-wrap: wrap; gap: 1rem 2rem; padding: 3rem 1.5rem; }
  .keyword { font-size: 1.1rem; }
  .keyword-divider { display: none; }

  .values-panel { padding: 0.4rem 1rem; }
  .value-row {
    gap: 0.9rem;
    padding: 1.5rem 0;
    align-items: start;          /* numerals sit at the top next to the heading */
  }
  .value-numeral {
    font-size: 1.9rem;
    width: 1.5ch;
    padding-top: 0.15rem;
  }
  .value-row--stats { padding: 1.3rem 1rem; }

  #stats { padding: 3rem 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .stat-item { padding: 1.5rem 1rem; }

  .services-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  #services-preview { padding: 4rem 1.2rem 5rem; }
  .services-box { padding: 2.5rem 1.2rem 2rem; }

  .news-grid { grid-template-columns: 1fr; }
  #news { padding: 4rem 1.2rem 5rem; }

  .sisupuu-grid { grid-template-columns: 1fr; }
  #sisupuu { padding: 4rem 1.2rem 5rem; }
}
