
  :root {
    --black: #0a0a0c;
    --navy: #0d1b2e;
    --navy-mid: #162848;
    --navy-light: #1e3a5f;
    --white: #f4f2ee;
    --white-dim: rgba(244,242,238,0.6);
    --white-faint: rgba(244,242,238,0.08);
    --accent: #c8d8e8;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  a { color: inherit; }
  html, body { overflow-x: hidden; max-width: 100%; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 4rem;
    background: linear-gradient(to bottom, rgba(10,10,12,0.95) 0%, transparent 100%);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
  }

  .nav-logo img {
    height: 36px;
    width: 36px;
    object-fit: contain;
  }

  .nav-logo span {
    color: var(--accent);
  }

  .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white-dim);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-dropdown { position: relative; }

  .nav-drop-arrow {
    font-size: 0.6rem;
    margin-left: 0.2rem;
    transition: transform 0.2s;
    display: inline-block;
  }
  .nav-dropdown:hover .nav-drop-arrow { transform: rotate(180deg); }

  .nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 1rem;
    background: transparent;
    list-style: none;
    min-width: 180px;
    z-index: 200;
  }

  .nav-submenu::before {
    content: '';
    position: absolute;
    top: 1rem; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,12,0.98);
    border: 1px solid rgba(244,242,238,0.1);
    z-index: -1;
  }

  .nav-dropdown:hover .nav-submenu { display: block; }

  .nav-submenu li a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-dim);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(244,242,238,0.05);
    white-space: nowrap;
  }
  .nav-submenu li:last-child a { border-bottom: none; }
  .nav-submenu li a:hover { color: var(--accent); background: var(--navy); }


  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 40%, var(--navy-mid) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, var(--navy) 0%, transparent 60%),
      var(--black);
  }

  /* Decorative horse silhouette via CSS */
  .horse-silhouette {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    max-width: 750px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
  }

  .horse-silhouette img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.85;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, transparent 100%);
  }

  .hero-lines {
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent calc(100%/12 - 1px),
        rgba(244,242,238,0.02) calc(100%/12 - 1px),
        rgba(244,242,238,0.02) calc(100%/12)
      );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 8rem;
    max-width: 680px;
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-tagline {
    margin-top: 2.5rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--white-dim);
    line-height: 1.7;
    max-width: 420px;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
  }

  .hero-cta {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.8rem;
    border: 1px solid rgba(244,242,238,0.25);
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
  }

  .hero-cta:hover {
    background: var(--white-faint);
    border-color: var(--accent);
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, var(--black) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-scroll {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollPulse 2s 1.5s infinite;
  }

  /* ── SECTION SHARED ── */
  section { position: relative; }

  .section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
  }

  /* ── VÅR GÅRD ── */
  #var-gard {
    background: var(--black);
    padding: 10rem 4rem;
  }

  .gard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .gard-text {}

  .gard-body {
    margin-top: 2.5rem;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--white-dim);
    letter-spacing: 0.03em;
  }

  .gard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .stat {
    border-top: 1px solid rgba(244,242,238,0.12);
    padding-top: 1.4rem;
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-top: 0.5rem;
  }

  .gard-visual {
    position: relative;
    height: 560px;
  }

  .gard-card {
    position: absolute;
    background: var(--navy-light);
    border: 1px solid rgba(244,242,238,0.06);
  }

  .gard-card-main {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .gard-card-main-inner {
    width: 100%;
    height: 100%;
    background:
      linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white-dim);
    letter-spacing: 0.06em;
  }

  /* Horse track illustration */
  .gard-illustration {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }

  .gard-card-accent {
    width: 180px;
    height: 120px;
    bottom: -2rem;
    left: -2rem;
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .gard-accent-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
  }

  .gard-accent-txt {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    text-align: center;
  }

  /* ── HÄSTAR ── */
  #hastar {
    background: var(--black);
    padding: 10rem 4rem;
  }

  .hastar-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .hastar-link {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
  }
  .hastar-link:hover { color: var(--accent); }
  .hastar-link-arrow {
    display: inline-block;
    font-size: 0.5em;
    vertical-align: middle;
    margin-left: 0.4em;
    transition: transform 0.3s;
  }
  .hastar-link:hover .hastar-link-arrow { transform: translateX(6px); }
  .hastar-cta {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(244,242,238,0.25);
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
  }
  .hastar-cta:hover { background: var(--white-faint); border-color: var(--accent); color: var(--accent); }
  .hastar-preview { max-width: 1200px; margin: 3rem auto 0; border-top: 1px solid rgba(244,242,238,0.1); }
  .hastar-preview-line {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.4rem 0; border-bottom: 1px solid rgba(244,242,238,0.06);
    transition: background 0.2s;
  }
  .hastar-preview-line:hover { background: rgba(244,242,238,0.02); }
  .hp-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--white); min-width: 200px; }
  .hp-sep { color: rgba(244,242,238,0.2); }
  .hp-meta { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-dim); flex: 1; }
  .hp-pp { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--accent); }
  .hastar-preview-more { padding: 1.2rem 0; border-bottom: none; }
  .hastar-preview-more a { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.3s; }
  .hastar-preview-more a:hover { color: var(--accent); }

  .hastar-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
  }

  .horse-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--navy);
    cursor: pointer;
  }

  .horse-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .horse-card:hover .horse-card-bg { transform: scale(1.04); }

  .horse-card-1 .horse-card-bg { background: linear-gradient(135deg, #0d1b2e 0%, #1e3a5f 100%); }
  .horse-card-2 .horse-card-bg { background: linear-gradient(135deg, #111827 0%, #162848 100%); }
  .horse-card-3 .horse-card-bg { background: linear-gradient(135deg, #0a0f1a 0%, #1a2f4a 100%); }

  .horse-card-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.12;
  }

  .horse-card-icon svg {
    width: 60%;
    height: 60%;
  }

  .horse-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(10,10,12,0.95) 0%, transparent 100%);
    transform: translateY(2rem);
    transition: transform 0.4s;
  }

  .horse-card:hover .horse-card-info { transform: translateY(0); }

  .horse-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
  }

  .horse-detail {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.5rem;
  }

  /* ── RESULTAT ── */
  #resultat {
    background: var(--black);
    padding: 10rem 4rem;
  }

  .resultat-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8rem;
    align-items: start;
  }

  .resultat-table {
    margin-top: 3rem;
  }

  .resultat-row {
    display: grid;
    grid-template-columns: 1fr 120px 80px;
    gap: 1rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(244,242,238,0.07);
    align-items: center;
    transition: background 0.2s;
  }

  .resultat-row:hover {
    background: rgba(244,242,238,0.03);
  }

  .resultat-row.header {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    border-bottom: 1px solid rgba(244,242,238,0.15);
  }

  .resultat-horse {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .resultat-event {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--white-dim);
    margin-top: 0.2rem;
  }

  .resultat-place {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    text-align: center;
  }

  .resultat-prize {
    font-size: 0.8rem;
    color: var(--white-dim);
    text-align: right;
  }

  .year-highlight {
    background: var(--black);
    padding: 3rem;
    border-left: 2px solid var(--accent);
  }

  .year-highlight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    opacity: 0.15;
  }

  .year-highlight-stat {
    margin-top: -1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
  }

  .year-highlight-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-top: 0.8rem;
  }

  .highlights-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .highlight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    min-width: 3rem;
    line-height: 1;
  }

  .highlight-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--white-dim);
    padding-top: 0.3rem;
    letter-spacing: 0.04em;
  }

  /* ── OM TRÄNAREN ── */
  #om-oss {
    background: var(--black);
    padding: 10rem 4rem;
  }

  .om-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
  }

  .om-portrait {
    position: relative;
    height: 600px;
  }

  .om-portrait-frame {
    position: absolute;
    inset: 0;
    background: var(--navy);
    border: 1px solid rgba(244,242,238,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .om-portrait-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-light) 60%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .om-portrait-placeholder svg {
    width: 45%;
    height: 45%;
    opacity: 0.15;
  }

  .om-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: var(--accent);
    border-style: solid;
  }

  .om-corner-tl { top: -12px; left: -12px; border-width: 1px 0 0 1px; }
  .om-corner-br { bottom: -12px; right: -12px; border-width: 0 1px 1px 0; }

  .om-text {}

  .om-body {
    margin-top: 2.5rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--white-dim);
    letter-spacing: 0.03em;
  }

  .om-quote {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    border-left: 2px solid var(--accent);
    background: var(--white-faint);
  }

  .om-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
  }

  /* ── KONTAKT ── */
  #kontakt {
    background: var(--black);
    padding: 10rem 4rem;
  }

  .kontakt-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
  }

  .kontakt-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .kontakt-item {
    border-top: 1px solid rgba(244,242,238,0.1);
    padding-top: 1.5rem;
  }

  .kontakt-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
  }

  .kontakt-item-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
  }
  .kontakt-item-value a {
    color: var(--white);
    text-decoration: none;
  }

  .kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .form-field label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
  }

  .form-field input,
  .form-field textarea {
    background: rgba(244,242,238,0.04);
    border: 1px solid rgba(244,242,238,0.12);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    padding: 1rem 1.2rem;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
    letter-spacing: 0.04em;
  }

  .form-field input:focus,
  .form-field textarea:focus {
    border-color: var(--accent);
  }

  .form-submit {
    margin-top: 0.5rem;
    padding: 1.1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    align-self: flex-start;
  }

  .form-submit:hover {
    background: var(--white-faint);
    border-color: var(--accent);
    color: var(--accent);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    padding: 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-top: 1px solid rgba(244,242,238,0.06);
  }
  footer .footer-copy {
    text-align: right;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
  }

  .footer-copy {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: rgba(244,242,238,0.3);
  }

  .footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(244,242,238,0.15);
    border-radius: 50%;
    color: var(--white-dim);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200,216,232,0.08);
  }

  .footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 1.4rem 2rem; }
    .horse-silhouette {
      right: 0;
      width: 70%;
      height: 70%;
      opacity: 0.5;
    }
    .nav-links { gap: 1.8rem; }
    .hero-content { padding: 0 2rem 6rem; }
    #var-gard, #hastar, #resultat, #om-oss, #kontakt { padding: 6rem 2rem; }
    .gard-grid, .resultat-inner, .om-inner, .kontakt-inner { grid-template-columns: 1fr; gap: 4rem; }
    .hastar-grid { grid-template-columns: 1fr 1fr; }
    .hastar-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .gard-visual { height: 360px; }
    .om-portrait { height: 420px; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .hastar-grid { grid-template-columns: 1fr; }
    .hero { align-items: flex-end; min-height: 100vh; }
    .hero-content {
      padding: 0 1.5rem 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      width: 100%;
      position: relative;
      z-index: 2;
    }
    .hero-content img {
      width: clamp(200px, 70vw, 340px) !important;
      height: auto !important;
    }
    .horse-silhouette {
      left: 0 !important;
      right: 0 !important;
      top: 0;
      width: 100% !important;
      max-width: 100% !important;
      height: 55%;
      opacity: 0.9;
    }
    .horse-silhouette img {
      object-fit: cover;
      object-position: 35% 60% !important;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 55%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 55%, transparent 100%);
    }
    .hero-content {
      align-items: center !important;
      text-align: center;
      width: 100% !important;
      padding: 0 !important;
    }
    .personal-grid {
      grid-template-columns: 1fr !important;
    }
    #personal {
      padding: 4rem 1.5rem !important;
    }
    #nyheterPreview {
      grid-template-columns: 1fr !important;
    }
    .nyheter-section-wrapper {
      padding: 4rem 1.5rem !important;
    }
  }

  /* HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0; right: 0;
    background: rgba(10,10,12,0.98);
    border-bottom: 1px solid rgba(244,242,238,0.08);
    z-index: 99;
    flex-direction: column;
    padding: 1rem 0;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white-dim);
    text-decoration: none;
    border-bottom: 1px solid rgba(244,242,238,0.05);
    transition: color 0.2s, background 0.2s;
  }
  .nav-mobile-menu a:last-child { border-bottom: none; }
  .nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: var(--accent); background: var(--white-faint); }

  @media (max-width: 800px) {
    .nav-links { display: none !important; }
    .nav-hamburger { display: flex !important; }
    nav { padding: 1.2rem 1.5rem; }
    .nav-logo { font-size: 1rem; }
    .nav-logo img { height: 28px; width: 28px; }
  }


/* ── HAMBURGER / MOBIL ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f4f2ee;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(10,10,12,0.98);
  border-bottom: 1px solid rgba(244,242,238,0.08);
  z-index: 99;
  flex-direction: column;
  padding: 0.5rem 0;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  display: block;
  padding: 1rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,242,238,0.05);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: #c8d8e8; background: rgba(244,242,238,0.04); }

@media (max-width: 800px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
  nav { padding: 1.2rem 1.5rem !important; }
}

/* Mobile expand submenu */
.mobile-expand {
  border-bottom: 1px solid rgba(244,242,238,0.05);
}
.mobile-expand-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.6);
  cursor: pointer;
  transition: color 0.2s;
  box-sizing: border-box;
}
.mobile-expand-main:hover { color: #c8d8e8; }
.mobile-expand-arrow {
  transition: transform 0.3s;
  font-size: 0.7rem;
}
.mobile-expand-arrow.open { transform: rotate(180deg); }
.mobile-sub {
  display: none;
  flex-direction: column;
  background: rgba(244,242,238,0.03);
}
.mobile-sub.open { display: flex; }
.mobile-sub a {
  padding: 0.9rem 2rem 0.9rem 3.5rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
}
