:root {
  --bg: #fbf5f8;
  --surface: #ffffff;
  --surface-alt: #f5e8ef;
  --text: #2d1826;
  --muted: #684f5f;
  --primary: #c85a8a;
  --primary-dark: #9f3f6b;
  --accent: #ef9ab8;
  --shadow: 0 20px 60px rgba(45, 24, 38, 0.1);
  --radius: 18px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-family: "Syne", sans-serif;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
}

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

picture {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.background-glow {
  position: fixed;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.42;
  filter: blur(70px);
}

.background-glow-left {
  top: -10vw;
  left: -10vw;
  background: radial-gradient(circle at center, #e7b0c8, transparent 70%);
}

.background-glow-right {
  right: -12vw;
  bottom: -14vw;
  background: radial-gradient(circle at center, #f2c2d6, transparent 68%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(251, 245, 248, 0.86);
  border-bottom: 1px solid rgba(45, 24, 38, 0.08);
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  font-weight: 800;
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(45, 24, 38, 0.12);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  font-weight: 700;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(45, 24, 38, 0.18);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
}

.hero {
  padding: 5.5rem 0 1rem;
}

.hero-grid {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 4.15rem);
  max-width: 14ch;
}

.hero-text {
  max-width: 62ch;
  margin: 0 0 1rem;
  color: var(--muted);
}

.hero-content {
  width: 100%;
  max-width: 900px;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(45, 24, 38, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(3px);
  text-align: left;
}

.hero-content-section {
  padding-top: 0.1rem;
}

.hero-content-section .hero-content {
  margin-top: 0;
  max-width: none;
  width: 100%;
}

.hero-content-section .hero-text {
  max-width: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
  margin-bottom: 0;
  justify-content: flex-start;
}

.button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #dd7fa6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(200, 90, 138, 0.35);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(45, 24, 38, 0.16);
}

.button-small {
  padding: 0.6rem 1rem;
}

.hero-visual {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  max-height: min(68vh, 720px);
  width: 100%;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45, 24, 38, 0.44) 0%, rgba(45, 24, 38, 0.12) 38%, rgba(45, 24, 38, 0.3) 100%);
}

.hero-overlay {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0.2rem 0.2rem 0.3rem;
  display: flex;
  justify-content: center;
}

.hero-overlay h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 5.2vw, 4.35rem);
  line-height: 0.98;
  color: #ffd6e7;
  background: linear-gradient(135deg, #ffd9ea 0%, #f8b5d1 45%, #ef8db8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  max-width: 20ch;
}

.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(159, 63, 107, 0.08) 100%);
}

.insight-zone {
  background: rgba(241, 228, 236, 0.58);
  margin: 0.8rem 0;
}

.insight-stack {
  display: grid;
  gap: 1.25rem;
}

.split-pink {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.25rem;
  align-items: start;
  background: #ffffff;
  border: 1px solid rgba(45, 24, 38, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(45, 24, 38, 0.08);
  padding: 1.3rem 1.35rem;
}

.split-title {
  padding-right: 1rem;
}

.split-title h2 {
  margin: 0;
  max-width: 12ch;
}

.split-body p {
  margin: 0 0 0.8rem;
}

.split-body {
  padding-left: 1rem;
  border-left: 1px solid rgba(45, 24, 38, 0.2);
}

.split-list {
  margin: 0 0 0.8rem;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.split-list li {
  flex: 0 1 auto;
  margin: 0;
  border: 1px solid rgba(45, 24, 38, 0.14);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  max-width: 100%;
}

.award-section {
  padding-top: 1.2rem;
}

.award-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.award-card {
  background: var(--surface);
  border: 1px solid rgba(45, 24, 38, 0.08);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: 0 8px 26px rgba(45, 24, 38, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.award-card h2 {
  max-width: none;
  margin-bottom: 0.65rem;
}

.award-card-poster {
  background: linear-gradient(180deg, #ffffff 0%, #fbf2f6 100%);
}

.award-image {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(45, 24, 38, 0.1);
  margin: 0 0 0.8rem;
}

.award-poster-stage {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0.55rem 0 0.3rem;
}

.award-image-poster {
  width: min(100%, 520px);
  height: auto;
  margin-bottom: 0;
  box-shadow: 0 18px 40px rgba(45, 24, 38, 0.12);
}

.award-copy {
  margin-top: 1rem;
}

.award-image-ulla {
  height: clamp(260px, 32vw, 420px);
  margin: 0.35rem 0 1.1rem;
  object-fit: cover;
  object-position: center 46%;
}

.quote-card blockquote {
  margin: 0.8rem 0 0.35rem;
  padding-left: 0.8rem;
  border-left: 3px solid rgba(159, 63, 107, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.quote-attribution {
  margin: 0;
  font-weight: 800;
  color: var(--primary-dark);
}

.cards {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  padding-top: 1rem;
}

.service-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, rgba(200, 90, 138, 0.12), rgba(239, 154, 184, 0.28));
  border: 1px solid rgba(45, 24, 38, 0.08);
  color: var(--primary-dark);
}

.service-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.hvad2-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.hvad2-left {
  min-width: 0;
}

.hvad2-cards {
  grid-template-columns: 1fr;
}

.hvad2-visual {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(45, 24, 38, 0.1);
  box-shadow: 0 10px 30px rgba(45, 24, 38, 0.12);
  position: static;
}

.hvad2-visual img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid rgba(45, 24, 38, 0.08);
  box-shadow: 0 8px 30px rgba(45, 24, 38, 0.06);
}

.card p {
  color: var(--muted);
}

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

.step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid rgba(45, 24, 38, 0.08);
}

.step span {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-weight: 800;
  color: var(--primary-dark);
}

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

.stat {
  background: var(--surface);
  border: 1px solid rgba(45, 24, 38, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.stat-number {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--primary-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-overview {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 24, 38, 0.08);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
}

.contact-overview h3 {
  margin-bottom: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  align-content: start;
  grid-auto-rows: max-content;
}

.contact-person {
  background: var(--surface);
  border: 1px solid rgba(45, 24, 38, 0.08);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
}

.contact-person h4 {
  margin: 0 0 0.45rem;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
}

.contact-person p {
  margin: 0 0 0.25rem;
}

.contact-person a {
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 24, 38, 0.08);
  padding: 1.15rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.contact-cta-card h3 {
  margin-bottom: 0.8rem;
}

.contact-team-image {
  display: block;
  width: 100%;
  height: clamp(240px, 28vw, 430px);
  object-fit: cover;
  object-position: center 18%;
  border-radius: 14px;
  border: 1px solid rgba(45, 24, 38, 0.08);
  margin-bottom: 0.95rem;
}

.contact-mail-button {
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 24, 38, 0.2);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(200, 90, 138, 0.26);
  border-color: var(--primary);
}

.site-footer {
  border-top: 1px solid rgba(45, 24, 38, 0.1);
  padding: 1.1rem 0 2.2rem;
}

.simple-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.simple-list li {
  margin-bottom: 0.45rem;
}

.profile-cards .card {
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.profile-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 14px;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(45, 24, 38, 0.1);
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.profile-link::after {
  content: "\2197";
  font-size: 0.92em;
}

.profile-long-wrap {
  position: relative;
}

.profile-toggle {
  display: none;
  width: 100%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), #dd7fa6);
  color: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-weight: 800;
  justify-content: center;
  align-items: center;
  justify-self: stretch;
}

.contact-punch {
  margin-top: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .cards,
  .steps,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .split-pink {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .split-title {
    padding-right: 0;
    padding-bottom: 0.6rem;
    border-right: 0;
  }

  .split-body {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(45, 24, 38, 0.2);
    padding-top: 0.7rem;
  }

  .insight-zone {
    margin: 0.6rem 0;
  }

  .hvad2-layout {
    grid-template-columns: 1fr;
  }

  .award-grid {
    grid-template-columns: 1fr;
  }

  .hvad2-visual {
    position: static;
    top: auto;
    order: 2;
  }

  .profile-toggle {
    display: inline-flex;
    margin: 0.2rem 0 0.55rem;
  }

  .profile-long-wrap {
    max-height: 170px;
    overflow: hidden;
  }

  .profile-long-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--surface));
  }

  .profile-person.is-expanded .profile-long-wrap {
    max-height: none;
    overflow: visible;
  }

  .profile-person.is-expanded .profile-long-wrap::after {
    display: none;
  }

  .hero-visual {
    aspect-ratio: 5 / 4;
    border-radius: 22px;
  }

  .hero-visual img {
    object-position: center 42%;
  }

  .hero-overlay {
    top: 0.75rem;
    left: 0;
    right: 0;
    padding: 0.45rem 0.6rem 0.55rem;
    justify-content: center;
  }

  .hero-overlay h1 {
    font-size: clamp(1.55rem, 8vw, 2.6rem);
  }

  .hero-content {
    margin-top: 0.85rem;
    padding: 1.05rem;
  }

  .main-nav {
    position: fixed;
    inset: 76px 1rem auto;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid rgba(45, 24, 38, 0.1);
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 980px) and (orientation: landscape) {
  .hero-visual {
    aspect-ratio: auto;
    min-height: 360px;
    max-height: 460px;
  }

  .hero-visual img {
    object-position: center 38%;
  }
}
