@charset "UTF-8";
/* Spacing-skala */
/* Layout */
/* Breakpoints */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-color: #f6f8fc;
  font-family: "Alata", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #2b2440;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Alata", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: 2.2rem;
}

p {
  font-size: 1.05rem;
  font-weight: 400;
}

.heading {
  font-weight: bold;
}

section {
  padding: 40px 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #9f38ff;
  outline-offset: 2px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 4rem 1rem;
}

.section-light {
  background: #f6f8fc;
}

.section-dark {
  background: #1a181b;
  color: #f4eefc;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading-on-dark {
  color: #f4eefc;
}

.site-header {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  color: #ffffff;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(5, 26, 46, 0.15);
}

.header-bg {
  position: absolute;
  inset: 0;
  background: white;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  align-items: flex-start;
  text-align: left;
  color: #2b2440;
}

.logo-name {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.15rem;
  font-family: "Alata", Georgia, serif;
  font-weight: 500;
  text-align: left;
}

.logo-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
  margin: 0;
  text-align: left;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  text-decoration: none;
  color: inherit;
}

.logo-image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.logo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: #2b2440;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 1rem;
}
.nav-list a:hover, .nav-list a:focus-visible {
  opacity: 0.6;
}
.nav-list a[aria-current=page] {
  border-bottom: 1px solid currentColor;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.burger span {
  width: 28px;
  height: 3px;
  background-color: #2b2440;
  transition: 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1 {
  text-align: center;
  margin-bottom: 50px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f4eefc;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: none;
}

.hero-bg-design {
  background-image: url(../img/ii-bg.webp);
}

.hero-bg-branding {
  background-image: url(../img/br-bg.webp);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-name {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  color: #f4eefc;
}

.hero-tagline {
  font-size: clamp(2rem, 6vw, 4rem);
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* Knapper */
.btn-dark, .btn {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 1.5rem auto 0;
  font-family: "Alata", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.65em 1.8em;
  border-radius: 999px;
  border: 2px solid #9f38ff;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-dark:active, .btn:active {
  transform: scale(0.97);
}

.btn {
  background: #ffffff;
  color: #2b2440;
}
.btn:hover, .btn:focus-visible {
  background: #cdb2ea;
}

.btn-dark {
  background: transparent;
  color: #f4eefc;
}
.btn-dark:hover, .btn-dark:focus-visible {
  background: #9f38ff;
  color: #ffffff;
}

/* Om mig */
.about {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  text-align: start;
  color: white;
  background-color: #1a181b;
  border-radius: 10px;
  padding-bottom: 3rem;
}
@media (min-width: 700px) {
  .about {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    align-items: center;
    gap: 2.5rem;
  }
}

.about-text {
  padding: 2rem;
}

.about-image img {
  border-radius: 10px;
  margin: 0 auto;
}

/* Kernekompetencer */
.section-dark {
  padding: 4rem 1rem;
  background-color: #1a181b;
  color: #f4eefc;
}

.section-heading-on-dark {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #f4eefc;
}

.case-page-text-on-dark {
  max-width: 65ch;
  margin: 0 auto;
  padding: 0 1rem;
  color: #f4eefc;
}

.competence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
@media (min-width: 700px) {
  .competence-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.competence-col {
  position: relative;
  min-height: 340px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.competence-col-overlay {
  position: absolute;
  inset: 0;
  background-color: #e7d9f4;
}

.competence-col-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem 1rem;
}

.competence-col-title {
  display: inline-block;
  background: transparent;
  color: #2b2440;
  padding: 0.3em 1em;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}

.competence-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.competence-col-list li {
  color: #2b2440;
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.7);
}
.tool-badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.tool-badge-plain {
  background: #ffffff;
  padding: 0.6rem;
  box-shadow: 0 4px 12px rgba(26, 24, 27, 0.15);
}

.tools-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  text-align: center;
  background-color: #1a181b;
}

.tools-heading {
  color: #f4eefc;
  font-size: 2rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/*Cases*/
.cases-nav {
  padding: 3rem 0 1rem;
  background-color: #ffffff;
  margin-bottom: 50px;
  padding-bottom: 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cases-nav .container {
  max-width: 100%;
  padding: 0 3rem;
}

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

.cases-nav-item {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 30px rgba(26, 24, 27, 0.5);
}

.cases-nav-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.cases-nav-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.4));
}

.cases-nav-title {
  position: absolute;
  left: 0;
  right: 0;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-bottom: 20px;
  text-align: center;
  bottom: 1rem;
  z-index: 1;
  color: #ffffff;
  font-family: "Alata", Georgia, serif, serif;
  font-size: clamp(1.3rem, 3.2vw, 2.6rem);
  letter-spacing: 0.02rem;
  overflow-wrap: break-word;
  hyphens: auto;
}

.cases-nav-item:hover img,
.cases-nav-item:focus-visible img {
  transform: scale(1.06);
}

/* Kontaktformular */
.contact-section {
  background-image: url(../img/bg4.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-heading {
  text-align: center;
  color: #2b2440;
}

.contact-heading {
  color: #e7d9f4;
}

.section-intro {
  max-width: 42ch;
  margin: 0 auto 1.5rem;
  text-align: center;
  opacity: 0.85;
  color: #ffffff;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(26, 24, 27, 0.5);
}

.contact-form-field {
  font-family: "Alata", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  padding: 0.75em 1em;
  border: 1px solid rgba(43, 36, 64, 0.5);
  border-radius: 10px;
  background: #ffffff;
}
.contact-form-field::-moz-placeholder {
  color: rgba(43, 36, 64, 0.55);
}
.contact-form-field::placeholder {
  color: rgba(43, 36, 64, 0.55);
}

.contact-form-field-textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form-status {
  margin: 0;
  font-size: 0.85rem;
  min-height: 1.2em;
}
.contact-form-status[data-state=success] {
  color: #1a7a3d;
}
.contact-form-status[data-state=error] {
  color: #b3261e;
}

.site-footer {
  background: #1a181b;
  color: #f4eefc;
  padding-top: 2.5rem;
}

.scroll-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(244, 238, 252, 0.4);
  border-radius: 50%;
  color: #f4eefc;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-col h3 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: #f4eefc;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(244, 238, 252, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-col a:hover {
  opacity: 0.7;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 238, 252, 0.15);
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Case study (portfolio.html) */
.case-card {
  display: grid;
  max-width: 1100px;
  margin: 0 auto 4rem;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 700px) {
  .case-card {
    grid-template-columns: 1fr 1fr;
  }
}

.case-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.case-card-text {
  background: #e7d9f4;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.case-meta-inline {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.75;
}

.case-tools-inline {
  font-size: 0.85rem;
  opacity: 0.7;
}

.case-process {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}
@media (min-width: 700px) {
  .case-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-process[hidden] {
  display: none;
}

.case-process-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.case-process-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

/*Det kan jeg (portfolio.html*/
.skills-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 700px) {
  .skills-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .skills-detail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.skill-card {
  background: #e7d9f4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(26, 24, 27, 0.12);
  display: flex;
  flex-direction: column;
}

.skill-card img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.skill-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skill-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.skill-intro {
  font-size: 0.9rem;
  opacity: 0.8;
}

.skill-detail {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ARBEJDSPROCESS (om.html) */
.process-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.process-step {
  flex: 1 1 160px;
  max-width: 200px;
  text-align: center;
  color: #2b2440;
}
.process-step h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #9f38ff;
  color: #9f38ff;
  font-weight: 700;
}

.process-arrow {
  display: none;
  align-self: center;
  color: rgba(244, 238, 252, 0.4);
  font-size: 1.3rem;
}
@media (min-width: 700px) {
  .process-arrow {
    display: block;
  }
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  padding: 0.4em 1em;
  border-radius: 999px;
  border: 3px solid #9f38ff;
  color: #f4eefc;
  font-size: 0.85rem;
  font-weight: 600;
}

.availability-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  flex-shrink: 0;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/bg4.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*Case-design, -branding html */
.case-role {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  list-style: none;
}

.role-pill {
  padding: 0.4em 1em;
  border-radius: 999px;
  border: 1px solid #9f38ff;
  color: #2b2440;
  font-size: 0.85rem;
  font-weight: 600;
}

.case-page-image img {
  width: auto;
  max-height: 100vh;
  margin: 0 auto 1.5rem;
  border-radius: 10px;
  display: block;
}

.case-page-text {
  max-width: 65ch;
  margin: 0 auto;
  padding: 0 1rem;
}

.case-page-text--on-dark {
  color: #f4eefc;
}
.case-page-text--on-dark .case-tools-inline {
  color: #f4eefc;
  opacity: 0.7;
}

.case-meta-inline {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.75;
}

.case-tools-inline {
  font-size: 0.85rem;
  opacity: 0.7;
}

.case-back {
  display: block;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
  color: #9f38ff;
  text-decoration: none;
  font-weight: 600;
}
.case-back:hover {
  text-decoration: underline;
}

/* Min rolle */
.case-role {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  list-style: none;
}

.role-pill {
  padding: 0.4em 1em;
  border-radius: 999px;
  border: 3px solid #9f38ff;
  color: #2b2440;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Designproces (5 trin) */
.process-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.process-step {
  flex: 1 1 160px;
  max-width: 200px;
  text-align: center;
}
.process-step h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #9f38ff;
  color: #9f38ff;
  font-weight: 700;
}

.process-arrow {
  display: none;
  align-self: center;
  font-size: 1.3rem;
}
@media (min-width: 700px) {
  .process-arrow {
    display: block;
  }
}

/* Fra idé til løsning */
.case-process {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}
@media (min-width: 700px) {
  .case-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-process[hidden] {
  display: none;
}

.case-process-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.case-process-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.section-heading-on-dark {
  background-color: #1a181b;
  padding: 4rem;
  justify-content: center;
}

.case-page-video {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}
.case-page-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* 1200px */
@media (max-width: 1200px) {
  .cases-nav-grid {
    grid-template-columns: 1fr;
  }
  .cases-nav-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  }
  .cases-nav-item {
    width: 70%;
    max-width: 650px;
    margin: 0 auto;
  }
}
/* 900px */
@media (max-width: 900px) {
  .burger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 20;
  }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #ffffff;
    padding: 2rem 0;
    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transition: 0.3s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list a {
    font-size: 1.1rem;
    color: #2b2440;
  }
  p {
    font-size: 16px;
  }
  .competence-col-title {
    font-size: 1.5rem;
  }
  .cases-nav-grid {
    grid-template-columns: 1fr;
  }
  .cases-nav-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }
  .cases-nav-item {
    width: 80%;
    max-width: 650px;
    margin: 0 auto;
  }
  .section__heading {
    font-size: 1.6rem;
  }
  .competence-col {
    min-height: 220px;
  }
  .tools-row {
    gap: 0.6rem;
  }
  .tool-badge {
    width: 2.6rem;
    height: 2.6rem;
  }
}
/*  600px */
@media (max-width: 600px) {
  .btn-primary,
  .btn-ghost {
    max-width: 80%;
  }
  .site-header {
    height: auto;
    min-height: 100px;
    padding: 1rem 0;
  }
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .container .header-inner {
    width: 100% !important;
    max-width: 100% !important;
  }
  .logo-name {
    font-size: 1.2rem;
  }
  .about-text {
    padding: 1rem;
  }
  .cases-nav-grid {
    grid-template-columns: 1fr;
  }
  .cases-nav-item {
    width: 100%;
  }
  .cases-nav-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }
  .competence-col {
    min-height: 180px;
    padding-left: 10px;
    padding-right: 1rem;
  }
  .contact-form {
    margin: 1rem;
  }
}/*# sourceMappingURL=style.css.map */