    :root {
      --font-heading: "Belleza", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      --font-body: "Barlow", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      --font-extra: "Kalam", "Comic Sans MS", "Segoe Print", cursive;

      --cream: #e6e6ed;
      --bege: #f4f1ed;
      /* bakgrund */
      --teal: #027d92;
      /* primär */
      --teal-900: #0b5a64;
      --sand: #f6cf97;
      /* sektion "Våra tjänster" */
      --text: #2b2b2b;
      --muted: #6f7a7a;
      --white: #fff;
      --shadow: 0 10px 30px rgba(0, 0, 0, .08);
      --radius: 14px;
      --max: 1200px;
    }

    * {
      box-sizing: border-box
    }

    html,
    body {
      height: 100%
    }

    body {
      margin: 0;
      background: var(--cream);
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      color: inherit;
      text-decoration: none
    }

    p {
      margin: 0 0 1rem
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading);
      font-weight: 400;
      line-height: 1.2;
      margin: 0 0 .6rem
    }

    .container {
      width: min(100%, var(--max));
      margin-inline: auto;
      padding-inline: 20px
    }

    .btn {
      display: inline-block;
      background: var(--teal);
      color: #fff;
      padding: .7rem 3.2rem;
      font-weight: 600;
      letter-spacing: .02em;
      box-shadow: var(--shadow);
    }

    .btn2 {
      display: inline-block;
      background: var(--sand);
      color: #000;
      padding: .7rem 3.2rem;
      font-weight: 600;
      letter-spacing: .02em;
      box-shadow: var(--shadow);
    }

    .btn.teal {
      background: var(--teal);
      color: #fff
    }

    .btn.ghost {
      background: transparent;
      border: 2px solid var(--teal);
      color: var(--teal)
    }

    /* === HEADER (logo över menyn, centrerat) === */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(244, 239, 233, .9);
      backdrop-filter: saturate(180%) blur(6px);
      border-bottom: 1px solid #e7dfd6
    }

    .nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding-block: 10px;
      position: relative
    }

    .brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center
    }

    .brand__logo {
      width: 448px;
    }

    .brand__name {
      font-family: "Cormorant Garamond", serif;
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--teal-900);
      text-align: center
    }

    /* Meny */
    .menu {
      display: flex;
      gap: 1.6rem;
      flex-wrap: wrap;
      justify-content: center
    }

    .menu a {
      font-weight: 500;
      color: #38575b;
      letter-spacing: 1px
    }

    /* Hamburger */
    .hamburger {
      position: relative;
      top: -30px;
      width: 44px;
      height: 44px;
      background: none;
      border: 0;
      display: none;
      cursor: pointer;
      z-index: 999
    }

    .hamburger span {
      display: block;
      height: 2px;
      margin: 7px 8px;
      background: #345;
      border-radius: 2px
    }

    @media (max-width:900px) {
      .hamburger {
        display: block
      }

      .menu {
        width: 100%;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        max-height: 0;
        padding-top: 0;
        transition: max-height .3s ease, padding-top .3s ease;
        background: var(--cream)
      }

      .menu.open {
        max-height: 360px;
        padding-top: 6px
      }
    }

    /* === HERO (med YouTube-video) === */
    .hero {
      position: relative;
    }

    .hero__media {
      position: relative;
      height: 46vw;
      max-height: 520px;
      min-height: 320px;
      overflow: hidden;
    }


    /* Videon täcker hela ytan */
    .hero__video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .hero__video iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* Fyll alltid hela ytan utan svarta kanter */
    @media (min-aspect-ratio: 16/9) {

      /* Skärmar bredare än 16:9: basera på bredd */
      .hero__video iframe {
        width: 100vw;
        height: 56.25vw;
      }
    }

    @media (max-aspect-ratio: 16/9) {

      /* Skärmar högre än 16:9: basera på höjd */
      .hero__video iframe {
        width: 177.78vh;
        height: 100vh;
      }
    }

    /* ovan: 16:9-cover trick. width = 100vh * 16/9 ≈ 177.78vh */


    /* Läsbarhet över video */
    .hero__scrim {
      position: absolute;
      inset: 0;
    }

    /* Overlays-textelement */
    .hero__text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #000;
      z-index: 2
    }


    /* Fallback-bild om JS/iframe blockeras */
    .hero__poster {
      position: absolute;
      inset: 0;
      background: url('/img/top.png') center/cover no-repeat;
      z-index: 0
    }


    @media (max-width: 600px) {
      .hero__text {
        left: 0;
        transform: translate(0, 0);
      }

      .hero__text .large {
        font-size: 1.6rem
      }
    }

    .hero__text .small {
      font-size: 1rem;
      letter-spacing: 0.05em;
      width: 100%;
      text-transform: uppercase;
      font-weight: 500;
      color: #111;
      background: rgba(255, 255, 255, 0.3);
      padding: 6px 12px;
      border-radius: 6px 6px 0px 0px;
      display: inline-block;
      letter-spacing: 2px;
    }

    .hero__text .large {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 4vw, 4rem);
      width: 100%;
      font-weight: 0;
      margin-top: 0px;
      color: #0f7a87;
      background: rgba(255, 255, 255, 0.3);
      padding: 8px 16px;
      border-radius: 0px 0px 6px 6px;
      display: inline-block;
      letter-spacing: 2px;
    }

    @media (max-width: 600px) {
      .hero__text .small {
        font-size: .85rem;
        border-radius: 0;
      }

      .hero__text .large {
        font-size: 1.6rem;
        border-radius: 0;
      }
    }

    .hero__overlay {
      position: relative;
      background: var(--teal);
      color: #e6f6f8;
      padding-block: 2.2rem
    }

    .hero__eyebrow {
      display: block;
      text-align: center;
      opacity: .9;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-size: .8rem;
    }

    .hero__title {
      font-size: clamp(1.6rem, 3.4vw + .6rem, 3rem);
      text-align: center;
      margin: .4rem 0 1rem;
      font-weight: 600
    }

    .hero__lead {
      max-width: 900px;
      margin: 0 auto 1.2rem;
      text-align: center;
      font-size: clamp(.95rem, .45vw + .8rem, 1.1rem);
      color: #e8fbff
    }

    .hero__cta {
      display: flex;
      justify-content: center;
      gap: 12px
    }

    /* === INTRO === */
    .intro {
      padding: 70px 0;
      background: var(--bege)
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1.4fr .7fr;
      gap: 40px;
      align-items: center
    }

    .intro .portrait {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow)
    }

    .section-title {
      font-size: 2rem;
      color: #000;
      margin-bottom: .6rem
    }

    .section-text {
      color: #7e5b3d
    }

    .section-name {
      font-family: var(--font-extra);
      font-weight: 400;
    }

    @media (max-width:900px) {
      .intro-grid {
        grid-template-columns: 1fr
      }

      .intro .portrait {
        order: -1
      }
    }

    /* === SERVICES === */
    .services {
      background: var(--sand);
      padding: 70px 0
    }

    .services h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      font-size: 3.6rem
    }

    .services p.lead {
      text-align: center;
      color: #4d4a43;
      max-width: 850px;
      margin: 0 auto 36px
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow)
    }

    .card__media {
      height: 240px;
      background: #d9e6ea center/cover no-repeat
    }

    .card__body {
      padding: 18px;
      text-align: center;
    }

    .card__meta {
      font-size: .74rem;
      color: #7e5b3d;
      letter-spacing: .08em;
      text-transform: uppercase;
      justify-content: center
    }

    .card__title {
      font-family: "Cormorant Garamond", serif;
      font-size: 3.15rem;
      margin: .2rem 0 .4rem;
      color: #7e5b3d
    }

    .card__text {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.15rem;
      margin: .2rem 0 .4rem;
      color: #7e5b3d
    }

    .card__action {
      display: flex;
      justify-content: center
    }

    @media (max-width:900px) {
      .cards {
        grid-template-columns: 1fr 1fr
      }
    }

    @media (max-width:600px) {
      .cards {
        grid-template-columns: 1fr
      }
    }

    /* === QUOTES BAND === */
    .quotes {
      background: var(--teal);
      color: #e7fbff;
      padding: 48px 0
    }

    .quotes .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px
    }

    .quote {
      font-style: italic;
      opacity: .95
    }

    .quote small {
      display: block;
      margin-top: .6rem;
      opacity: .7
    }

    @media (max-width:900px) {
      .quotes .grid {
        grid-template-columns: 1fr
      }
    }

    /* === TEAM === */
    .team {
      background: var(--bege);
      padding: 70px 0
    }

    .team h2 {
      text-align: center;
      margin-bottom: 6px;
      font-size: 3.6rem
    }

    .team p.lead {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 34px;
      color: #57686b
    }

    .people {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px
    }

    .person {
      background: var(--bege);
      border-radius: var(--radius)
    }

    .person__img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow)
    }

    .person__meta {
      text-align: center;
      padding: 10px 6px 0
    }

    .person__meta .name {
      font-weight: 900;
      color: #7e5b3d
    }

    .person__meta .role {
      font-size: .90rem;
      color: #7e5b3d
    }

    .person__actions {
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 10px 0 0
    }

    @media (max-width:900px) {
      .people {
        grid-template-columns: 1fr
      }
    }

    /* === PARTNERS === */
    .partners {
      padding: 46px 0;
      background: #e6e6ed;
    }

    .partner-row {
      display: flex;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
      justify-content: center
    }

    .logo-pill {
      padding: 14px 22px;
      background: #fff;
      border-radius: 999px;
      box-shadow: var(--shadow)
    }

    /* === CONTACT === */
    .contact {
      position: relative
    }

    .contact h2 {
      text-align: center;
      margin-bottom: 6px;
      font-size: 3.6rem
    }


    .contact .bg {
      height: 820px;
      background: url('/utv/img/contact_back.webp') center/cover no-repeat
    }

    .contact-card {
      position: relative;
      margin-top: -720px;
      background: #fff;
      width: min(720px, 92%);
      margin-inline: auto;
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 22px
    }

    form {
      display: grid;
      gap: 12px
    }

    label {
      font-size: .9rem;
      color: #49595d
    }

    input,
    textarea {
      width: 100%;
      padding: .8rem .9rem;
      border: 1px solid #d6dadc;
      border-radius: 8px;
      font: inherit
    }

    textarea {
      min-height: 110px;
      resize: vertical
    }

    /* === FOOTER === */
    footer {
      background: var(--teal);
      color: #e9fbff
    }

    .footer-top {
      padding: 34px 0
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      align-items: center
    }

    .socaltitle {
      font-family: var(--font-extra);
      font-weight: 400;
      font-size: 1.3rem;
      transform: rotate(-5deg);
    }

    .soc {
      display: flex;
      gap: 8px;
      float: right;
      font-size: 1.6rem;
    }

    .soc a {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #f6cf97;
      display: grid;
      place-items: center;
      color: var(--teal)
    }

    .copyright {
      border-top: 1px solid rgba(255, 255, 255, .2);
      padding: 12px 0;
      font-size: .9rem;
      opacity: .9
    }

    .gram {
      background: #f6f3ee;
      padding: 24px 0
    }

    .gram-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px
    }

    .gram-grid .ph {
      aspect-ratio: 1;
      background: #dfe7ea url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23c8d9dd"/><path d="M0 150 L70 90 L130 120 L200 70 L200 200 L0 200 Z" fill="%23b7c8cc"/></svg>') center/cover no-repeat;
      border-radius: 6px
    }

    @media (max-width:1100px) {
      .gram-grid {
        grid-template-columns: repeat(5, 1fr)
      }
    }

    @media (max-width:900px) {
      .footer-grid {
        grid-template-columns: 1fr
      }

      .gram-grid {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    @media (max-width:600px) {
      .gram-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }