  :root {
    --bg: #fafaf6;
    --bg-card: #ffffff;
    --bg-soft: #f2eee5;
    --text: #2a2a28;
    --text-muted: #6b675f;
    --text-faint: #9a958a;
    --primary: #2f5141;
    --primary-dark: #1f3a2d;
    --accent: #c98a3a;
    --border: #e8e2d3;
    --placeholder-bg: #fff4d6;
    --placeholder-text: #8a6a16;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 14px;
    --radius-sm: 8px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--text);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;
  }
  h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
  h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
  h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
  p { margin: 0 0 1rem 0; }
  a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 0.2s; }
  a:hover { color: var(--primary-dark); }

  .ph {
    background: var(--placeholder-bg);
    color: var(--placeholder-text);
    padding: 0 0.4em;
    border-radius: 3px;
    font-weight: 500;
  }
  .ph::before { content: '['; }
  .ph::after { content: ']'; }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
  .container-narrow { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }
  section { padding: 4.5rem 0; }
  @media (max-width: 768px) { section { padding: 3rem 0; } }

  /* Sprog-toggle */
  [lang="da"] .en-only { display: none !important; }
  [lang="en"] .da-only { display: none !important; }

  /* Nav */
  nav {
    position: sticky;
    top: 0;
    background: rgba(250, 250, 246, 0.94);
    backdrop-filter: blur(12px);
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  nav .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .brand { display: flex; align-items: baseline; gap: 0.6rem; }
  .brand .name {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .brand .city {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
  }
  .nav-right { display: flex; align-items: center; gap: 1.5rem; }
  .nav-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
  .nav-links a {
    font-size: 0.92rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
  }
  .nav-links a:hover { color: var(--primary); }
  @media (max-width: 800px) { .nav-links { display: none; } }
  .lang-toggle {
    display: inline-flex;
    background: var(--bg-soft);
    border-radius: 100px;
    padding: 3px;
    border: 1px solid var(--border);
  }
  .lang-toggle button {
    border: none;
    background: transparent;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.2s;
    font-family: var(--sans);
  }
  .lang-toggle button.active {
    background: var(--primary);
    color: white;
  }

  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.95rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: var(--sans);
  }
  .btn-primary { background: var(--primary); color: white; }
  .btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(47, 81, 65, 0.5); }
  .btn-secondary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
  .btn-secondary:hover { background: var(--primary); color: white; }
  .btn-white {
    background: white;
    color: var(--text);
    border: 1px solid var(--text);
  }
  .btn-white:hover { background: var(--text); color: white; }

  /* Hero med AirBnB-style billed-grid */
  .hero { padding-top: 2rem; padding-bottom: 2rem; }
  .hero-title { margin-bottom: 1.5rem; }
  .hero-title h1 { margin-bottom: 0.5rem; }
  .hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
  }
  .hero-meta .star { color: var(--accent); font-weight: 600; }
  .hero-meta .dot { color: var(--text-faint); }

  .photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 8px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 1.5rem;
    position: relative;
  }
  @media (min-width: 700px) {
    .photo-grid { grid-template-rows: 240px 240px; }
  }
  .photo-grid > div {
    background-size: cover;
    background-position: center;
    transition: filter 0.2s;
    cursor: pointer;
  }
  .photo-grid > div:hover { filter: brightness(0.92); }
  .photo-grid .pg-main { grid-row: 1 / 3; }
  @media (max-width: 700px) {
    .photo-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 100px 100px;
    }
    .photo-grid .pg-main { grid-row: 1 / 2; grid-column: 1 / 3; }
    .photo-grid .pg-4, .photo-grid .pg-5 { display: none; }
  }
  .show-all-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: white;
    color: var(--text);
    border: 1px solid var(--text);
    padding: 0.55rem 0.95rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
  }
  .show-all-btn:hover { background: var(--bg-soft); color: var(--text); }

  /* Højdepunkter / quick facts */
  .highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
  }
  @media (max-width: 800px) { .highlights { grid-template-columns: repeat(2, 1fr); } }
  .highlight {
    background: var(--bg-card);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
  }
  .highlight svg { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
  .highlight .h-title { font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
  .highlight .h-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; }

  /* Layout to-kolonner: indhold + booking sidebar */
  .main-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
    padding-top: 3rem;
  }
  @media (max-width: 900px) { .main-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

  /* Sektioner i venstre kolonne */
  .left-col > section { padding: 2.5rem 0; border-top: 1px solid var(--border); }
  .left-col > section:first-child { padding-top: 0; border-top: none; }
  .left-col h2 { font-size: 1.6rem; }

  .host-block { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.5rem; }
  .host-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .host-info .host-name { font-weight: 600; }
  .host-info .host-meta { color: var(--text-muted); font-size: 0.9rem; }

  /* Faciliteter grid */
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
    margin-top: 1.25rem;
  }
  @media (max-width: 600px) { .facilities-grid { grid-template-columns: 1fr; } }
  .facility { display: flex; gap: 0.85rem; align-items: center; padding: 0.5rem 0; }
  .facility svg { width: 22px; height: 22px; color: var(--text-muted); flex-shrink: 0; }
  .facility span { font-size: 0.95rem; }

  /* Værelses-cards */
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
  }
  @media (max-width: 600px) { .rooms-grid { grid-template-columns: 1fr; } }
  .room-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
  }
  .room-card h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
  .room-card h4 .floor { font-weight: 400; color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
  .room-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

  /* Rabat-banner under værelser */
  .rabat-note {
    margin-top: 1.5rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .rabat-note svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
  .rabat-note p { margin: 0; font-size: 0.95rem; color: var(--text); }
  .rabat-note p strong { color: var(--primary); font-weight: 600; }

  /* Lille rabat-linje i booking-card */
  .booking-card .deal-line {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border);
  }

  /* Natur-grid i området */
  .nature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
  }
  @media (max-width: 800px) { .nature-grid { grid-template-columns: 1fr; } }
  .nature-grid figure {
    margin: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--border);
  }
  .nature-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .nature-grid figcaption {
    padding: 0.85rem 1.1rem;
    font-size: 0.88rem;
    color: var(--text);
  }
  .nature-grid figcaption strong { display: block; font-weight: 600; margin-bottom: 2px; }
  .nature-grid figcaption span { color: var(--text-muted); font-size: 0.82rem; }

  /* Galleri */
  .galleri { background: var(--bg-soft); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  @media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
  .gallery-grid > div {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.25s;
  }
  .gallery-grid > div:hover { transform: scale(1.02); }

  /* Området */
  .omraade { background: var(--bg-card); }
  .omraade-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1.5rem;
  }
  @media (max-width: 800px) { .omraade-grid { grid-template-columns: 1fr; gap: 2rem; } }
  .omraade-img {
    aspect-ratio: 4/3;
    background: url('images/luftfoto-silkeborg.jpg') center/cover;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px -20px rgba(42, 42, 40, 0.25);
  }
  .attraktioner { list-style: none; padding: 0; margin: 1.25rem 0 0; }
  .attraktioner li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
  }
  .attraktioner li:last-child { border-bottom: none; }
  .attr-name { font-weight: 500; }
  .attr-dist { color: var(--text-muted); font-size: 0.9rem; white-space: nowrap; }

  /* Anmeldelser */
  .anmeldelser .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  @media (max-width: 800px) { .anmeldelser .reviews-grid { grid-template-columns: 1fr; } }
  .review {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
  }
  .review .stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
  .review p { font-size: 0.95rem; color: var(--text); margin-bottom: 1rem; font-style: italic; }
  .review .reviewer {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
  }
  .review .reviewer strong { color: var(--text); font-weight: 500; font-style: normal; }

  /* Booking-sidebar */
  .booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 12px 40px -16px rgba(42, 42, 40, 0.18);
    position: sticky;
    top: 90px;
  }
  .booking-card .price-line {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
  }
  .booking-card .price-line .from { color: var(--text-muted); font-size: 0.9rem; }
  .booking-card .price-line .amount {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text);
  }
  .booking-card .price-line .unit { color: var(--text-muted); font-size: 0.95rem; }
  .booking-form { display: grid; gap: 0.75rem; }
  .date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
  .date-cell { padding: 0.7rem 0.85rem; }
  .date-cell:first-child { border-right: 1px solid var(--border); }
  .date-cell label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
  .date-cell input { width: 100%; border: none; padding: 0; font-family: inherit; font-size: 0.95rem; color: var(--text); background: transparent; }
  .date-cell input:focus { outline: none; }
  .booking-form .guests-row { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.7rem 0.85rem; }
  .booking-form .guests-row label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
  .booking-form .guests-row select { width: 100%; border: none; padding: 0; font-family: inherit; font-size: 0.95rem; color: var(--text); background: transparent; }
  .booking-form .guests-row select:focus { outline: none; }
  .booking-form .text-row { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.7rem 0.85rem; }
  .booking-form .text-row label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
  .booking-form .text-row input,
  .booking-form .text-row textarea {
    width: 100%; border: none; padding: 0; font-family: inherit; font-size: 0.95rem; color: var(--text); background: transparent; resize: vertical;
  }
  .booking-form .text-row textarea { min-height: 60px; }
  .booking-form .text-row input:focus,
  .booking-form .text-row textarea:focus { outline: none; }
  .booking-form button { width: 100%; padding: 1rem; font-size: 1rem; margin-top: 0.4rem; }
  .booking-form .text-row select {
    width: 100%; border: none; padding: 0; font-family: inherit; font-size: 0.95rem; color: var(--text); background: transparent;
  }
  .booking-form .text-row select:focus { outline: none; }
  .form-feedback {
    display: none;
    font-size: 0.9rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    line-height: 1.4;
  }
  .form-feedback.show { display: block; }
  .form-feedback.error { background: #fbe9e7; color: #8a2b18; border: 1px solid #f4c7bf; }
  .form-feedback.success { background: #e6f1ec; color: #1f3a2d; border: 1px solid #b9d6c5; }
  .form-feedback ul { margin: 0.3rem 0 0 1.2rem; padding: 0; }
  .booking-foot {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.75rem;
  }

  /* Kontakt / footer-sektion */
  .kontakt { background: var(--primary); color: white; }
  .kontakt h2 { color: white; }
  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1.5rem;
  }
  @media (max-width: 800px) { .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; } }
  .kontakt-info p, .kontakt-info a { color: rgba(255, 255, 255, 0.92); }
  .kontakt-info a { border-bottom: 1px solid rgba(255, 255, 255, 0.4); text-decoration: none; }
  .kontakt-info a:hover { color: white; border-color: white; }
  .kontakt-row { display: flex; gap: 1rem; margin-bottom: 0.6rem; align-items: baseline; }
  .kontakt-row strong { min-width: 100px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.7); font-weight: 600; }
  .kontakt .ph { background: rgba(255, 244, 214, 0.2); color: #fff4d6; }
  .map-wrap {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 280px;
  }
  .map-wrap iframe { width: 100%; height: 100%; min-height: 280px; border: 0; filter: saturate(0.9); }

  footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 2rem 0;
    font-size: 0.85rem;
    text-align: center;
  }
  footer p { margin: 0.2rem 0; }

  .demo-banner {
    background: var(--placeholder-bg);
    color: var(--placeholder-text);
    padding: 0.7rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
  }
  .demo-banner strong { font-weight: 700; }

  /* Booking-side: værelseskort */
  .rooms-hero {
    padding: 3.5rem 0 1.5rem 0;
    text-align: center;
  }
  .rooms-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 0.6rem;
  }
  .rooms-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
  }
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .room-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
  }
  .room-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 58, 45, 0.08);
  }
  .room-tile.whole-house {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
  }
  @media (max-width: 700px) {
    .room-tile.whole-house { grid-template-columns: 1fr; }
  }
  .room-tile .photo {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft);
  }
  .room-tile.whole-house .photo { aspect-ratio: auto; min-height: 260px; }
  .room-tile .body {
    padding: 1.2rem 1.3rem 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }
  .room-tile h3 { margin: 0; font-size: 1.25rem; }
  .room-tile .description { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
  .room-tile .meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border);
  }
  .room-tile .price {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--primary);
  }
  .room-tile .price .unit { color: var(--text-muted); font-size: 0.85rem; font-weight: 400; font-family: var(--sans); }
  .room-tile .capacity { color: var(--text-muted); font-size: 0.9rem; }
  .room-tile .pick-btn {
    margin-top: 0.6rem;
    padding: 0.7rem 1rem;
    text-align: center;
    font-weight: 500;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
  }
  .room-tile .pick-btn:hover { background: var(--primary-dark); }

  /* Booking-section nederst på booking-siden */
  .booking-section {
    background: var(--bg-soft);
    padding: 3.5rem 0;
    margin-top: 3rem;
  }
  .booking-section .container { max-width: 720px; }
  .booking-section h2 { text-align: center; margin-bottom: 0.4rem; }
  .booking-section .lead { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }
  .booking-section .booking-card { box-shadow: 0 6px 24px rgba(31, 58, 45, 0.08); }
