   @font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

   :root {
  --gold: #B08D57;
  --dark: #2E3438;
  --dark2: #2E3438;
  --mid: #7B8288;
  --light: #F4F5F6;
  --white: #FFFFFF; 
  --line: #D8DBDE;
      --max: 1180px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.6;
      font-size: 16px;
      position: relative;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    p, li, input, textarea, select, button, .form-note {
      font-size: 16px;
      line-height: 1.6;
    }
    .page-watermark {
      position: fixed;
      left: 28px;
      top: 120px;
      width: min(28vw, 260px);
      height: min(28vw, 260px);
      background-image: url("../images/logo-wasserzeichen-neu.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      opacity: 0.58;
      filter: saturate(1.15) contrast(1.08);
      pointer-events: none;
      z-index: 0;
    }
    header, main, footer, section, dialog {
      position: relative;
      z-index: 1;
    }

   .topbar {
     position: sticky;
     top: 0;
     z-index: 50;
     background: rgba(255,255,255,.94);
     backdrop-filter: blur(14px);
     border-bottom: 1px solid rgba(0,0,0,.12);
   }
   .nav {
     max-width: 1280px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: flex-start;
     padding: 12px 16px 10px 16px;
     gap: 12px;
   }
   .brand {
     display: flex;
     align-items: center;
     gap: 12px;
     min-width: 0;
     margin-right: 8px;
     flex-shrink: 0;
     font-family: 'Inter', sans-serif;
     text-transform: uppercase;
     line-height: 1.08;
   }

   .brand-logo {
     display: block;
     width: 52px;
     height: 52px;
     object-fit: contain;
     border: 2px solid var(--dark);
     background: #fff;
     box-sizing: border-box;
     flex-shrink: 0;
   }

   .brand-text {
     display: flex;
     flex-direction: column;
     justify-content: center;
     line-height: 1.08;
     gap: 2px;
     color: var(--dark);
     font-weight: 700;
     letter-spacing: .08em;
     font-family: 'Inter', sans-serif;
     text-transform: uppercase;
   }

   .brand-name {
     font-size: 16px;
     letter-spacing: .12em;
     font-weight: 700;
     line-height: 1.1;
   }

   .brand small {
     display: block;
     color: var(--mid);
     letter-spacing: .18em;
     font-size: 9px;
     margin-top: 1px;
     font-weight: 700;
     line-height: 1.1;
   }
   .navlinks {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     gap: 18px;
     margin-left: 4px;
     font-size: 17px;
     font-weight: 700;
     color: var(--gold);
     line-height: 1.2;
     letter-spacing: 0;
     flex-wrap: nowrap;
   }
   .navlinks a {
     padding: 8px 10px;
     border-radius: 8px;
     transition: .2s ease;
     font-size: 17px !important;
     font-weight: 600 !important;
     color: var(--gold) !important;
     background: transparent !important;
     line-height: 1.2 !important;
     letter-spacing: 0 !important;
     font-family: 'Inter', sans-serif !important;
     text-transform: none !important;
     display: inline-block;
   }
   .navlinks a:hover,
   .navlinks a:focus,
   .navlinks a:active {
     background: transparent !important;
     color: var(--gold) !important;
     outline: none;
   }
    .menu-btn { display: none; border: 0; background: var(--dark); color: white; padding: 9px 12px; }

.hero {
 position: relative;
 overflow: hidden;
 isolation: isolate;
 background: var(--dark);
 color: var(--white);
}

    .hero-inner {      position: relative;
      z-index: 1;
      max-width: var(--max);
      margin: 0 auto;
      padding: 95px 22px 105px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 54px;
      align-items: center;
      text-align: center;
    }
    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .24em;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    h1 {
      font-size: clamp(38px, 6vw, 72px);
      line-height: 1.02;
      letter-spacing: -.04em;
      margin-bottom: 24px;
      max-width: 850px;
        margin-left: auto;
  margin-right: auto;
}

    /* Homepage single-line hero rule */
    .hero h1.single-line {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: clamp(30px, 3.2vw, 56px);
      max-width: 100%;
    }
    @media (max-width: 880px) {
      .hero h1.single-line {
        white-space: normal;
        font-size: clamp(20px, 5vw, 36px);
      }
    }
    
    .hero p {
      color: #e8ecef;
      font-size: 20px;
      max-width: 690px;
      margin-bottom: 32px;
        margin-left: auto;
  margin-right: auto;
}

h1, h2, h3, strong, b {
  font-weight: 600;
}
    
    .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.actions.single-action {
  justify-content: center;
}
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      font-weight: 600;
      border: 1px solid transparent;
      transition: .2s ease;
    }
    .btn-primary {
          background: var(--gold);
          color: #1b2126;
          border: 1px solid var(--gold);
          border-radius: 0;
          min-height: 54px;
          padding: 0 28px;
          font-size: 18px;
          font-weight: 600;
          letter-spacing: 0;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
        .btn-ghost { border-color: rgba(255,255,255,.45); color: white; }
        .btn-ghost:hover { border-color: white; background: rgba(255,255,255,.08); }

        .btn-dark {
          background: var(--gold);
          color: #1b2126;
          cursor: pointer;
          border: 1px solid var(--gold);
          border-radius: 0;
          min-height: 54px;
          padding: 0 28px;
          font-size: 18px;
          font-weight: 700;
          letter-spacing: 0;
        }

    .hero-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      padding: 28px;
      box-shadow: 0 30px 70px rgba(0,0,0,.25);
    }
    .logo-placeholder {
      background: white;
      padding: 24px;
      margin-bottom: 20px;
    }
    .logo-placeholder img { margin: auto; max-height: 230px; object-fit: contain; }
    .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat { border-left: 3px solid var(--gold); padding-left: 12px; color: #edf1f3; }
    .stat strong { display: block; font-size: 26px; color: white; }

    section { padding: 86px 22px; }
    .wrap { max-width: var(--max); margin: 0 auto; }
    .section-head { margin-bottom: 42px; max-width: 780px; }
    .section-head span { color: var(--gold); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; font-size: 12px; }
    h2 { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.12; margin-top: 12px; letter-spacing: -.03em; font-weight: 600; }
    .muted { color: var(--mid); }

    .section-head h1,
    .section-head h2,
    .page-hero h1,
    .page-hero h2 {
      font-size: clamp(28px, 2.8vw, 54px);
      line-height: 1.08;
      letter-spacing: -.05em;
      margin: 10px 0 16px;
      font-weight: 600;
    }


    .contact-info .section-head h2 {
      font-size: clamp(34px, 2.8vw, 54px);
      line-height: 0.96;
      letter-spacing: -.04em;
      white-space: nowrap;
      margin-bottom: 12px;
    }

    .section-head p,
    .page-hero p,
    .muted,
    .project-tag,
    .card p,
    .card h3,
    .contact-card p,
    .contact-card li {
      font-size: 17px;
      line-height: 1.55;
    }

    .section-head p,
    .page-hero p,
    .muted {
      color: var(--mid);
    }
.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head-center .muted {
  margin-left: auto;
  margin-right: auto;
}

.home-values-head {
  max-width: 980px;
}

.home-values-head h2 {
  margin-left: auto;
  margin-right: auto;
}

.page-hero .section-head,
#leistungen .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.page-hero h1,
.page-hero p,
#leistungen h2,
#leistungen .muted {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#leistungen .card {
  text-align: center;
}

#leistungen .service-icon {
  margin-left: auto;
  margin-right: auto;
}
    #leistungen .wrap {
  position: relative;
}

    .services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    #vorteile .services {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 48px auto 0;
  gap: 28px;
}
    .card {
      border: 1px solid var(--line);
      background: white;
      padding: 28px;
      min-height: 220px;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
    }.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: .3s;
}

.card:hover::before {
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  border-color: var(--gold);
}.service-icon {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  transition: .3s;
}

.card:hover .service-icon {
  transform: scale(1.15);
}
    .card h3 { font-size: 21px; margin-bottom: 12px; font-weight: 600; }
    .card p { color: var(--mid); }

    .split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; }
    .panel {
      background: var(--light);
      border: 1px solid var(--line);
      padding: 32px;
    }

    /* About page adjustments: tighter spacing, justified left text, center right panel */
    .about-story .section-head { margin-bottom: 12px; }
    .about-story .split { align-items: center; gap: 40px; }
    .about-story .split > div:first-child p { text-align: justify; text-justify: inter-word; }
    .about-story .panel { display: block; text-align: left; padding: 24px; }
    /* ensure the panel list aligns nicely */
    .about-story .panel .list { margin-top: 12px; }
    .about-story .panel h3 { margin-bottom: 10px; }
    .list { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
    .list li { display: flex; gap: 12px; align-items: flex-start; }
    .list li:before { content: "→"; color: var(--green); font-weight: 900; }
.page-hero {
    padding: 52px 0 44px;
    background: linear-gradient(
        90deg,
        rgba(50,56,61,.96),
        rgba(50,56,61,.9)
    );
    color: var(--white);
}

.page-hero .wrap {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 22px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(28px, 2.7vw, 58px);
    line-height: 0.96;
    letter-spacing: -.05em;
    margin: 0 auto 18px;
    max-width: 1280px;
    display: block;
    background: none;
    box-shadow: none;
    padding: 0;
}
 
.page-hero p {
    max-width: 920px;
    color: rgba(255,255,255,.82);
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.45;
}

#leistungen {
    padding-top: 72px;
}

#leistungen .section-head {
    max-width: 1120px;
    margin-bottom: 46px;
}

#leistungen h2 {
    font-size: clamp(26px, 2.8vw, 50px);
    line-height: 1.08;
    letter-spacing: -.05em;
    max-width: 1100px;
    margin: 0 auto 18px;
    font-weight: 600;
}

#leistungen .muted {
    max-width: 780px;
    margin: 0 auto;
    font-size: 18px;
}

#leistungen .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

#leistungen .card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    background: rgba(255,255,255,.96);
}

#leistungen .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#leistungen .services {
    width: 100%;
}

#leistungen .btn.btn-dark {
    display: inline-block;
    margin: 0 auto;
}

#leistungen .card h3 {
    font-size: clamp(20px, 1.8vw, 30px);
    line-height: 1.12;
    margin-bottom: 10px;
    font-weight: 600;
}

#leistungen .card p {
    font-size: 17px;
    line-height: 1.5;
}

#leistungen .service-icon {
    width: 62px;
    height: 62px;
    font-size: 32px;
    margin-bottom: 18px;
}

.about-values .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-values .card {
    padding: 28px;
}
    .darkband { background: var(--dark); color: white; }
    .darkband .muted { color: #cbd2d8; }
    .about-values .card {
      background: transparent;
      border: 1px solid rgba(255,255,255,.14);
      color: white;
    }
    .about-values .card p,
    .about-values .card h3,
    .about-values .card .service-icon {
      color: white;
    }
    .about-values .card .service-icon {
      border-color: rgba(176,141,87,0.95);
      background: transparent;
    }

    .about-values .card .service-icon {
      width: 76px;
      height: 76px;
      margin-bottom: 24px;
      display: grid;
      place-items: center;
      background: transparent;
      border: 2px solid rgba(176,141,87,0.95);
      border-radius: 50%;
      color: var(--gold);
    }
    .offer-box {
      border: 1px solid rgba(255,255,255,.18);
      padding: 34px;
      background: linear-gradient(135deg, rgba(227,6,19,.18), rgba(255,255,255,.04));
    }

    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .news time { color: var(--gold
      ); font-size: 13px; font-weight: 700; }

    .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
    .contact-card { background: var(--light); border: 1px solid var(--line); padding: 30px; }
    .contact-card p { margin: 8px 0; }
    form { display: grid; gap: 14px; }
    input, textarea {
      width: 100%;
      padding: 14px 15px;
      border: 1px solid var(--line);
      font: inherit;
      background: white;
    }
    textarea { min-height: 150px; resize: vertical; }
    .form-note { font-size: 13px; color: var(--mid); }
    .btn-dark {
      background: var(--gold);
      color: #1f2327;
      cursor: pointer;
      border: 1px solid var(--gold);
      box-shadow: none;
      min-height: 54px;
      padding: 0 28px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0;
      border-radius: 0;
    }

    #leistungen .btn.btn-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 260px;
      margin: 0 auto;
    }

    footer { background: #151a1f; color: #dbe0e4; padding: 42px 22px; }

    #loader {
      position: fixed;
      inset: 0;
      background: #20262c;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: opacity .5s ease, visibility .5s ease;
    }
    #loader.hide { opacity: 0; visibility: hidden; }
    .loader-grid {
      position: absolute;
      inset: 0;
      background:
      repeating-linear-gradient(90deg, transparent 0, transparent 38px, rgba(255,255,255,.05) 39px, transparent 40px),
      repeating-linear-gradient(0deg, transparent 0, transparent 38px, rgba(255,255,255,.05) 39px, transparent 40px);
    }
    .loader-logo {
      width: 280px;
      height: 280px;
      border: 4px solid rgba(255,255,255,.3);
      color: transparent;
      display: grid;
      place-items: center;
      font-size: 0;
      line-height: 0;
      font-weight: 900;
      animation: pulse 1.8s infinite ease-in-out;
      background: url("../images/logo-neu.png") center/contain no-repeat, rgba(255,255,255,.06);
      z-index: 2;
    }
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.08); }
      100% { transform: scale(1); }
    }
    .footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
    .legal { display: flex; gap: 18px; flex-wrap: wrap; }
    .legal a { color: #dbe0e4; text-decoration: underline; text-underline-offset: 4px; }

    dialog {
      max-width: 850px;
      width: calc(100% - 28px);
      border: 0;
      padding: 0;
      margin: auto;
      box-shadow: 0 30px 80px rgba(0,0,0,.35);
    }
    dialog::backdrop { background: rgba(0,0,0,.55); }
    .modal { padding: 34px; max-height: 80vh; overflow: auto; }
    .modal h2 { font-size: 32px; }
    .modal h3 { margin-top: 24px; }
    .close { float: right; border: 0; background: var(--dark); color: white; padding: 8px 12px; cursor: pointer; }

    @media (max-width: 880px) {
      .menu-btn { display: block; }
      .navlinks { display: none; position: absolute; top: 75px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line); padding: 18px 22px; flex-direction: column; align-items: flex-start; }
      .navlinks.open { display: flex; }
      .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; }
      .services, .news-grid { grid-template-columns: 1fr; }
      section { padding: 62px 20px; }
      .hero-inner { padding: 66px 22px 72px; }
      .contact-info .section-head h2 {
        white-space: normal;
      }
    }
    .plan-preview {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

.plan-sheet {
  background: #f7f7f4;
  color: #20262c;
  padding: 18px;
  min-height: 360px;
  border: 1px solid rgba(0,0,0,.12);
  transform: rotate(-1.2deg);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid #383E42;
  padding-bottom: 10px;
  margin-bottom: 18px;
  font-size: 13px;
}

.plan-header span {
  color: #7B8288;
}

.plan-grid {
  position: relative;
  height: 230px;
  border: 2px solid #383E42;
  background:
    linear-gradient(90deg, rgba(56,62,66,.08) 1px, transparent 1px),
    linear-gradient(rgba(56,62,66,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.room {
  position: absolute;
  border: 2px solid #383E42;
  background: rgba(255,255,255,.72);
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
}

.room-a { left: 12px; top: 12px; width: 120px; height: 80px; }
.room-b { left: 145px; top: 12px; width: 70px; height: 200px; }
.room-c { right: 12px; top: 12px; width: 120px; height: 85px; }
.room-d { right: 12px; bottom: 18px; width: 120px; height: 80px; }

.escape-line {
  position: absolute;
  left: 65px;
  top: 118px;
  width: 220px;
  height: 5px;
  background: #166B2E;
}

.escape-line::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -6px;
  border-left: 16px solid #166B2E;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.exit-sign {
  position: absolute;
  right: 18px;
  top: 108px;
  background: #166B2E;
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.you-are-here {
  position: absolute;
  left: 72px;
  top: 142px;
  color: #B08D57;
  font-weight: 800;
  font-size: 12px;
}

.plan-legend {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  color: #5f6972;
}.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(56,62,66,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(56,62,66,.06) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 45%, rgba(176,141,87,.10) 46%, transparent 47%);
  background-size: 26px 26px, 26px 26px, 100% 100%;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}

.card:hover::after {
  opacity: 1;
}

.card h3,
.card p,
.service-icon {
  position: relative;
  z-index: 1;
}.projektarten {
  background: linear-gradient(
    180deg,
    rgba(56,62,66,.03),
    rgba(56,62,66,.08)
  );
}.projektarten .card {
  background: white;
  border: 1px solid rgba(56,62,66,.10);
}

.projektarten .service-icon {
  font-size: 34px;
  width: auto;
  height: auto;
  border: none;
  background: transparent;
}.project-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--gold);
  font-weight: 700;
}select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  font: inherit;
  background: white;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.contact-highlights div {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.contact-highlights strong {
  display: block;
  font-size: 24px;
  color: var(--dark);
}

.contact-highlights span {
  font-size: 12px;
  color: var(--mid);
}#vorteile {
  background:
    linear-gradient(
      180deg,
      rgba(32,38,44,.98),
      rgba(45,52,59,.98)
    );
}

#vorteile h2,
#vorteile h3,
#vorteile p {
  color: white;
}

#vorteile .card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

#vorteile .card:hover {
  background: rgba(255,255,255,.08);
}

#vorteile .service-icon {
  color: var(--gold);
  font-size: 28px;
}.service-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  stroke-width: 2;
}.projektarten .service-icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.projektarten .service-icon {
  margin-bottom: 22px;

}.about-values .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-values .card {
    padding: 28px;
}
#vorteile .home-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 48px auto 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    background: var(--light);
    border: 1px solid var(--line);
    padding: 32px;
}

.contact-card p {
    margin-bottom: 18px;
}

.contact-card a {
    color: var(--dark);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card form {
    display: grid;
    gap: 18px;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: #fff;
    font: inherit;
    color: var(--dark);
}

.contact-card textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-note {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}