/* Digistailaus – väliaikainen staattinen sivu (L&F Wayback / alkuperäinen teema) */
:root {
  --color-accent: #0abedf;
  --color-accent-hover: #0899b8;
  --color-ink: #0c264c;
  --color-muted: #838998;
  --color-header-bg: #000000;
  --color-header-bg-end: #02001c;
  --color-card-shadow: rgba(0, 0, 0, 0.13);
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Martel Sans", Georgia, serif;
  --max-width: 1200px;
  --radius-card: 10px;
  --radius-pill: 99px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #222;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: #46445f;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  left: 0;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--color-header-bg) 0%, var(--color-header-bg-end) 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.35rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  display: block;
  max-height: 52px;
  width: auto;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.25rem;
}

.nav-desktop a {
  display: block;
  padding: 0.65rem 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 4px;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-item.has-sub {
  position: relative;
}

.nav-item.has-sub > a::after {
  content: " ▾";
  font-size: 0.65em;
  opacity: 0.85;
}

.nav-item.has-sub .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #111;
  padding: 0.35rem 0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.nav-item.has-sub:hover .submenu,
.nav-item.has-sub:focus-within .submenu {
  display: block;
}

.submenu a {
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: currentColor;
  margin: 0 auto;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #0a0a12;
  padding: 0.75rem 1.25rem 1.25rem;
  border-top: 1px solid #222;
  max-height: min(70vh, 480px);
  overflow-y: auto;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  border-bottom: 1px solid #222;
}

.nav-mobile .submenu a {
  padding-left: 1rem;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: #ccc;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #1a1a1a center / cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  width: 100%;
}

.hero-logo {
  max-width: min(380px, 78vw);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  font-family: "Roboto", var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.15rem, 3.5vw, 2.1rem);
  line-height: 1.35;
  margin: 0 0 0.35rem;
  color: #000;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.85), 0 0 4px #fff;
  max-width: 20ch;
}

.hero .tagline-2 {
  margin-top: 0;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1rem;
    max-width: 95%;
  }
}

/* ----- Section shell ----- */
.section {
  padding: 3.5rem 1.25rem;
}

.section--tight-top {
  padding-top: 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-ink);
  margin: 0 0 1rem;
}

.section-lead {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 52ch;
}

/* ----- Content slider (3 slides) ----- */
.info-slider {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.info-slides {
  position: relative;
  min-height: 320px;
}

@media (min-width: 768px) {
  .info-slides {
    min-height: 400px;
  }
}

.info-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s;
  background: #888 center / cover no-repeat;
  display: flex;
  align-items: stretch;
}

.info-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.info-slide-panel {
  margin: 1.5rem 1rem 2rem;
  max-width: 380px;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 4px;
  align-self: center;
}

@media (min-width: 640px) {
  .info-slide-panel {
    margin-left: 8%;
  }
}

.info-slide-panel img.icon {
  width: 64px;
  height: auto;
  margin-bottom: 0.75rem;
}

.info-slide-panel h2 {
  font-family: "Montserrat", var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.info-slide-panel p {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #000;
}

.slider-nav {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(11, 115, 168, 0.46);
  cursor: pointer;
}

.slider-dot[aria-selected="true"] {
  background: #0b73a8;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  width: 100%;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 0.5rem;
}

.slider-arrows button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #0b73a8;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-arrows button:hover {
  background: #fff;
  color: #064d71;
}

@media (max-width: 600px) {
  .slider-arrows {
    display: none;
  }
}

/* ----- Services band ----- */
.services-intro {
  text-align: center;
  padding: 2.5rem 1.25rem 1rem;
  background: #c5ccd0;
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  max-width: 1400px;
}

.services-intro h2 {
  font-family: "Rubik", var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  margin: 0 0 1rem;
  padding: 0 1rem;
}

.services-intro .btn-wrap {
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  font-family: "Rubik", var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.85rem 1.75rem;
  background: #000;
  color: #fff !important;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 0.75rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .service-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 0 1rem 2.5rem;
  }
}

.service-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.5rem 1rem 1.75rem;
  text-align: center;
  box-shadow: 0 1px 10px var(--color-card-shadow);
  color: inherit;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.18);
}

.service-card img {
  width: 90px;
  height: auto;
  margin: 0 auto 0.75rem;
}

.service-card h3 {
  font-family: "Rubik", var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 0.35rem;
}

.service-card p {
  font-family: "Rubik", sans-serif;
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.35;
}

/* ----- Instagram CTA ----- */
.section--some {
  background: linear-gradient(90deg, #ced3d5 0%, #fff 100%);
  padding: 3rem 1.25rem;
}

.some-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .some-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.some-grid h2 {
  font-family: "Roboto", var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  margin: 0 0 1rem;
  color: #000;
}

.some-grid p {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

/* ----- Broker block ----- */
.section--broker {
  background: #fff;
}

.broker-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .broker-grid {
    grid-template-columns: 45fr 55fr;
  }
}

.broker-grid h2 {
  font-family: "Roboto", var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin: 0 0 1rem;
}

.broker-grid p {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.broker-visual {
  text-align: center;
}

.broker-visual img {
  max-width: 340px;
}

/* ----- Testimonials ----- */
.section--reviews {
  background: #f4f4f4;
  border-radius: 25px;
  margin: 0 1rem;
  padding: 2.5rem 1.25rem 3rem;
}

@media (min-width: 768px) {
  .section--reviews {
    margin: 0 auto;
    max-width: calc(var(--max-width) + 4rem);
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.section--reviews > .section-inner > h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
  text-align: center;
}

.review-card {
  background: #f4f4f4;
  border-radius: 25px;
  padding: 1.75rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  min-height: 200px;
}

.review-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
}

.review-card cite {
  display: block;
  margin-top: 1rem;
  font-style: italic;
  font-weight: 700;
  font-size: 0.95rem;
}

.stars {
  color: #d4af37;
  font-size: 1.35rem;
  letter-spacing: 0.15em;
  margin-top: 0.75rem;
}

.review-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.review-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.review-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #bbb;
  cursor: pointer;
}

.review-dots button[aria-selected="true"] {
  background: #333;
}

/* ----- Contact + footer ----- */
.section--contact {
  padding-bottom: 0;
}

.contact-boxes {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

@media (min-width: 700px) {
  .contact-boxes {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-note {
  background: #fafafa;
  border-radius: var(--radius-card);
  padding: 1.5rem;
  border: 1px solid #eee;
}

.contact-note h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 2.5rem 1.25rem 0;
  margin-top: 2rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: auto 1fr 1fr;
    align-items: start;
  }
}

.footer-social a {
  display: inline-block;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-social svg {
  width: 44px;
  height: 44px;
  fill: #fff;
  opacity: 0.9;
}

.footer-social a:hover svg {
  opacity: 1;
  fill: var(--color-accent);
}

.footer-grid h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: #fff;
}

.footer-grid a {
  color: #fff !important;
  text-decoration: underline;
}

.footer-checks p {
  margin: 0.35rem 0;
  font-size: 1.05rem;
}

.copyright {
  border-top: 1px solid #222;
  padding: 1rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

.copyright a {
  color: #ccc !important;
}

/* ----- Anchor sections (stub content) ----- */
.anchor-block {
  padding: 2.5rem 0;
  border-top: 1px solid #eee;
}

.anchor-block h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.anchor-block p {
  margin: 0;
  max-width: 65ch;
}

#top-anchor {
  position: absolute;
  top: 0;
}

.scroll-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-accent-hover);
}

/* ----- Alasivut (Wayback-sisältö) ----- */
.page-banner {
  background: #111 center / cover no-repeat;
  background-image: url("../images/wp/themes/quark-progression/images/page-title.jpg");
  padding: clamp(3.5rem, 12vw, 6rem) 1.25rem 2rem;
  text-align: center;
}

.page-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-banner h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Alasivun otsikko ilman taustakuvaa */
.page-banner.page-banner--plain {
  background: none;
  background-color: transparent;
  background-image: none;
  padding: 2rem 1.25rem 1rem;
  text-align: left;
}

.page-banner.page-banner--plain h1 {
  color: var(--color-ink);
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

.page-main.wp-legacy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.page-main.wp-legacy .page-content-pro,
.page-main.wp-legacy .width-container-pro {
  max-width: 100%;
}

.page-main.wp-legacy img {
  max-width: 100%;
  height: auto;
}

.page-main.wp-legacy .wpb_wrapper > p,
.page-main.wp-legacy .summary-post-pro p,
.page-main.wp-legacy .summary-post-pro li {
  font-size: 1rem;
  line-height: 1.7;
}

.page-main.wp-legacy h1,
.page-main.wp-legacy h2,
.page-main.wp-legacy h3 {
  font-family: var(--font-heading);
  color: var(--color-ink);
}

.page-main.wp-legacy .blog-title-pro {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  margin: 1.5rem 0 0.5rem;
}

.page-main.wp-legacy .blog-title-pro a {
  color: var(--color-ink);
}

.page-main.wp-legacy .blog-title-pro a:hover {
  color: var(--color-accent);
}

.page-main.wp-legacy .post-meta-pro,
.page-main.wp-legacy .post-meta-pro a {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.page-main.wp-legacy .post-container-pro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8e8;
}

.page-main.wp-legacy .vc_btn3-container {
  margin: 1.5rem 0;
  text-align: center;
}

.page-main.wp-legacy a.vc_btn3 {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff !important;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.page-main.wp-legacy a.vc_btn3:hover {
  background: #333;
  color: #fff !important;
}

/* Smart Slider 3 jättää tyhjää ilman JS:ää – rajataan korkeutta */
.page-main.wp-legacy .n2-section-smartslider {
  max-height: 420px;
  overflow: hidden;
}

/* Etusivu: ankkurit vanhoille linkeille (sisältö omilla alasivuillaan) */
.legacy-anchors span {
  display: block;
  height: 0;
  overflow: hidden;
}

/* Staattinen hinnasto / tilaus (korvaa Rev Slider + Smart Slider ilman JS/CSS) */
.static-fill .intro-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.pricing-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: #f5f5f5;
  font-family: var(--font-heading);
  font-weight: 600;
}

.pricing-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.pricing-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.pricing-actions .btn-primary {
  text-decoration: none;
}

.order-flow .order-block {
  margin-bottom: 2.5rem;
}

.order-flow h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.order-steps {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 1rem 0;
  line-height: 1.7;
}

.order-steps li {
  margin-bottom: 0.75rem;
}

.order-flow .cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-flow .cta-row .btn-primary {
  text-decoration: none;
}

.order-note {
  background: #f8f6f3;
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}

.order-note h2 {
  margin-top: 0;
}

.static-fill .pricing-note {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.kalustelu-lead {
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.contact-static .intro-lead {
  margin-bottom: 2rem;
}

.contact-static-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-static-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-static-col h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.contact-static-col p {
  margin: 0 0 0.5rem;
  line-height: 1.65;
}
