/* ==========================================================================
   Tømrermester Nielsen — Stylesheet
   ========================================================================== */

:root {
    /* Palette */
    --cream: #F5F1E8;
    --cream-dark: #EAE3D2;
    --forest: #1F3A2E;
    --forest-deep: #152820;
    --terracotta: #C65D3D;
    --terracotta-hover: #B04E30;
    --ink: #1A1A1A;
    --ink-soft: #3D3D3D;
    --muted: #7A7268;
    --line: #E5DFD1;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container: 1240px;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(21, 40, 32, 0.05);
    --shadow: 0 4px 12px rgba(21, 40, 32, 0.08);
    --shadow-lg: 0 24px 48px -12px rgba(21, 40, 32, 0.18);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Utilities */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.eyebrow-light {
    color: var(--cream);
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--forest-deep);
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--ink-soft);
    max-width: 620px;
    line-height: 1.65;
}

.section-header {
    max-width: 760px;
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
    margin: 0 auto 64px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-large {
    padding: 16px 28px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 4px 14px -4px rgba(198, 93, 61, 0.45);
}

.btn-primary:hover {
    background: var(--terracotta-hover);
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 20px -6px rgba(198, 93, 61, 0.6);
}

.btn-ghost {
    background: transparent;
    color: var(--forest-deep);
    border: 1.5px solid var(--forest-deep);
}

.btn-ghost:hover {
    background: var(--forest-deep);
    color: var(--cream);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 241, 232, 0.92);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    line-height: 1;
    flex-shrink: 0;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.logo-text {
    font-size: 12px;
    color: var(--muted);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.2;
}

.logo-text strong {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--forest-deep);
    font-weight: 600;
    letter-spacing: -0.02em;
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover {
    color: var(--terracotta);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--forest-deep);
}

.phone-link svg {
    color: var(--terracotta);
}

/* Hero */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 93, 61, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(31, 58, 46, 0.06);
    border: 1px solid rgba(31, 58, 46, 0.12);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #2ECC71;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--forest-deep);
    margin-bottom: 24px;
}

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

.hero-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--forest-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(1deg);
    aspect-ratio: 4/5;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px -8px rgba(0,0,0,0.25);
    transform: rotate(-1deg);
}

.hero-image-badge svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.hero-image-badge strong {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--forest-deep);
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

.hero-image-badge span {
    font-size: 13px;
    color: var(--muted);
}

/* Trust strip */
.trust-strip {
    padding: 32px 0;
    background: var(--cream-dark);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
}

.trust-logos .dot {
    color: var(--terracotta);
    opacity: 0.5;
}

/* Services */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--terracotta);
    box-shadow: 0 20px 40px -16px rgba(21, 40, 32, 0.15);
}

.service-card-feature {
    background: var(--forest-deep);
    color: var(--cream);
    border-color: var(--forest-deep);
}

.service-card-feature:hover {
    border-color: var(--forest-deep);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--cream);
    color: var(--terracotta);
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-card-feature .service-icon {
    background: rgba(198, 93, 61, 0.15);
    color: var(--terracotta);
}

.service-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--terracotta);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.service-card-feature h3 {
    color: var(--cream);
}

.service-card p {
    color: var(--ink-soft);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card-feature p {
    color: rgba(245, 241, 232, 0.75);
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--terracotta);
    transition: transform 0.2s;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(4px);
}

/* About */
.about {
    padding: 120px 0;
    background: var(--cream-dark);
    position: relative;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 1;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--cream-dark);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 40%;
    right: 0;
    background: var(--terracotta);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 40px -12px rgba(198, 93, 61, 0.5);
    transform: translateY(-50%) rotate(-3deg);
    z-index: 2;
}

.about-experience-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.about-experience-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.about-content p {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--ink-soft);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 50%;
    margin-top: 2px;
}

.about-list strong {
    color: var(--forest-deep);
    font-weight: 600;
}

/* Process */
.process {
    padding: 120px 0;
    background: var(--forest-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 93, 61, 0.15) 0%, transparent 70%);
}

.process .section-title {
    color: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 32px;
    align-items: flex-start;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 16px;
}

.process-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cream);
}

.process-step p {
    color: rgba(245, 241, 232, 0.7);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.process-connector {
    color: rgba(198, 93, 61, 0.4);
    margin-top: 28px;
}

/* Cases Carousel */
.cases {
    padding: 120px 0;
    background: var(--cream);
}

.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 56px;
}

.cases-header > div:first-child {
    max-width: 600px;
}

.cases-header .section-title {
    margin-bottom: 20px;
}

.cases-header .section-lead {
    margin: 0;
}

.cases-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--line);
    color: var(--forest-deep);
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--forest-deep);
    color: var(--cream);
    border-color: var(--forest-deep);
    transform: translateY(-2px);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cases-carousel-wrap {
    max-width: calc(var(--container) - 56px);
    margin: 0 auto;
    /* Lodret padding giver plads til hover-løft uden at klippe */
    padding: 12px 0;
    overflow: hidden;
}

@media (max-width: 1240px) {
    .cases-carousel-wrap {
        max-width: none;
        margin: 0 28px;
    }
}

.cases-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.cases-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

.cases-track.is-dragging .case-card {
    pointer-events: none;
}

.case-card {
    flex: 0 0 calc((100% - 48px) / 3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-4px);
}

.case-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    background: var(--cream-dark);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    -webkit-user-drag: none;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--forest-deep);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    pointer-events: none;
}

.case-info {
    padding: 0 4px;
}

.case-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.case-info p {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.cases-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.cases-dots {
    display: flex;
    gap: 8px;
}

.cases-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.cases-dot.is-active {
    background: var(--terracotta);
    width: 28px;
    border-radius: 999px;
}

/* Testimonial */
.testimonial {
    padding: 120px 0;
}

.testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    padding: 64px 56px;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 48px -16px rgba(21, 40, 32, 0.12);
    position: relative;
}

.quote-mark {
    color: var(--terracotta);
    opacity: 0.2;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--forest-deep);
    margin-bottom: 36px;
    letter-spacing: -0.01em;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--forest-deep);
    font-size: 15px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--muted);
}

.testimonial-rating {
    margin-left: auto;
    color: #F4B400;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--cream-dark);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-lead {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    margin-bottom: 40px;
    line-height: 1.65;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all 0.2s;
}

a.contact-method:hover {
    transform: translateX(4px);
    border-color: var(--terracotta);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--cream);
    color: var(--terracotta);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-method > div:last-child span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-method > div:last-child strong {
    font-size: 15px;
    color: var(--forest-deep);
    font-weight: 600;
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: 10px;
    transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: var(--white);
}

.form-field textarea {
    resize: vertical;
    font-family: inherit;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
}

/* Legal pages (Privatlivspolitik / Cookiepolitik) */
.legal-page {
    padding: 80px 0 120px;
    background: var(--cream);
    min-height: 60vh;
}

.legal-container {
    max-width: 820px;
}

.legal-header {
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 32px;
    transition: color 0.2s, transform 0.2s;
}

.legal-back:hover {
    color: var(--terracotta);
    transform: translateX(-4px);
}

.legal-header .section-title {
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

.legal-content {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--forest-deep);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
    padding-left: 6px;
}

.legal-content ul li::marker {
    color: var(--terracotta);
}

.legal-content a {
    color: var(--terracotta);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: var(--terracotta-hover);
}

.legal-content strong {
    color: var(--forest-deep);
    font-weight: 600;
}

.legal-contact-box {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin: 24px 0;
    line-height: 1.7;
}

.legal-contact-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.0625rem;
}

/* Highlight box til "kort fortalt" */
.legal-highlight {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--terracotta);
    border-left-width: 4px;
    border-radius: var(--radius);
    margin: 32px 0 48px;
}

.legal-highlight-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--cream);
    color: var(--terracotta);
    border-radius: 12px;
}

.legal-highlight strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--forest-deep);
    margin-bottom: 6px;
}

.legal-highlight p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--ink-soft);
}

.legal-highlight em {
    font-style: italic;
    color: var(--forest-deep);
    font-weight: 500;
}

/* Cookie tabel */
.cookie-table {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 24px 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr 1.5fr;
    gap: 20px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-header {
    background: var(--cream-dark);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--forest-deep);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-footer-note {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

/* Footer legal links */
.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(245, 241, 232, 0.65);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--terracotta);
}

/* Footer */
.site-footer {
    background: var(--forest-deep);
    color: rgba(245, 241, 232, 0.7);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.logo-light .logo-mark {
    background: var(--terracotta);
    color: white;
}

.logo-light .logo-text {
    color: rgba(245, 241, 232, 0.6);
}

.logo-light .logo-text strong {
    color: var(--cream);
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--cream);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(245, 241, 232, 0.65);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--terracotta);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(245, 241, 232, 0.1);
    font-size: 13px;
    color: rgba(245, 241, 232, 0.5);
    flex-wrap: wrap;
}

.footer-bottom strong {
    color: var(--cream);
    font-weight: 500;
}

/* Accessibility helper */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Why Us */
.why-us {
    padding: 120px 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-item {
    padding: 8px 0;
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--white);
    color: var(--terracotta);
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.why-item p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

/* Areas */
.areas {
    padding: 120px 0;
    background: var(--cream-dark);
}

.areas-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.areas-content p {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin: 32px 0;
    padding: 0;
}

.areas-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--forest-deep);
}

.areas-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--terracotta);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(198, 93, 61, 0.15);
}

.areas-note {
    font-size: 14px !important;
    color: var(--muted) !important;
    font-style: italic;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
}

.areas-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Radius card - pulserende radius-grafik */
.radius-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtil baggrund med radial gradient */
.radius-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(198, 93, 61, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.radius-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(198, 93, 61, 0.35);
    animation: ringPulse 4s ease-out infinite;
    opacity: 0;
}

.ring-1 {
    width: 22%;
    height: 22%;
    animation-delay: 0s;
}

.ring-2 {
    width: 44%;
    height: 44%;
    animation-delay: 1s;
}

.ring-3 {
    width: 66%;
    height: 66%;
    animation-delay: 2s;
}

.ring-4 {
    width: 88%;
    height: 88%;
    animation-delay: 3s;
}

@keyframes ringPulse {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.radius-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    box-shadow: 0 8px 24px -4px rgba(198, 93, 61, 0.5), 0 0 0 8px rgba(198, 93, 61, 0.15), 0 0 0 16px rgba(198, 93, 61, 0.08);
}

.radius-center svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* City label under centrum */
.radius-city {
    position: absolute;
    top: calc(50% + 52px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.radius-city-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.radius-city strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-deep);
    letter-spacing: -0.02em;
}

/* Statistik badges */
.radius-badge {
    position: absolute;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 12px 24px -8px rgba(21, 40, 32, 0.15);
    z-index: 3;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.radius-badge-top {
    top: 18%;
    right: 8%;
    transform: rotate(3deg);
}

.radius-badge-bottom {
    bottom: 14%;
    left: 6%;
    transform: rotate(-3deg);
}

.radius-badge-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--forest-deep);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.radius-badge-number small {
    font-size: 0.65em;
    color: var(--muted);
    font-weight: 500;
    margin-left: 2px;
}

.radius-badge-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: var(--cream);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item.is-open {
    border-color: var(--terracotta);
    box-shadow: 0 8px 24px -10px rgba(198, 93, 61, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--forest-deep);
    letter-spacing: -0.01em;
    text-align: left;
    background: transparent;
    border: none;
    user-select: none;
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-question > span:first-child {
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--cream);
    border-radius: 50%;
    color: var(--forest-deep);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    background: var(--terracotta);
    color: white;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 28px 24px;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 15px;
}

/* Burger button */
.burger-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    transition: background 0.2s;
}

.burger-btn:hover {
    background: rgba(31, 58, 46, 0.06);
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--forest-deep);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    background: var(--cream);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 100px 28px 40px;
    flex: 1;
    min-height: 100%;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-deep);
    border-bottom: 1px solid var(--line);
    letter-spacing: -0.01em;
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: var(--terracotta);
    padding-left: 8px;
}

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--line);
}

.mobile-phone svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.mobile-phone span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.mobile-phone strong {
    display: block;
    font-size: 16px;
    color: var(--forest-deep);
    font-weight: 700;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-inner,
    .about-inner,
    .contact-inner,
    .areas-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .header-cta .btn-primary {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-connector {
        display: none;
    }

    .radius-card {
        max-width: 420px;
    }

    .case-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .cases-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 12px 20px;
        gap: 12px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .phone-link span {
        display: none;
    }

    .phone-link {
        width: 40px;
        height: 40px;
        justify-content: center;
        background: var(--cream-dark);
        border-radius: 10px;
    }

    .hero {
        padding: 48px 0 72px;
    }

    .services,
    .about,
    .process,
    .testimonial,
    .contact,
    .why-us,
    .areas,
    .faq {
        padding: 72px 0;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: 1fr 1fr;
    }

    .faq-question {
        padding: 20px 22px;
        font-size: 1rem;
    }

    .faq-answer-inner p {
        padding: 0 22px 22px;
    }

    .case-card {
        flex: 0 0 100%;
    }

    .cases-carousel-wrap {
        padding: 0 20px;
    }

    .radius-card {
        max-width: 340px;
    }

    .radius-city {
        top: calc(50% + 58px);
    }

    .radius-badge {
        padding: 10px 14px;
    }

    .radius-badge-number {
        font-size: 1.35rem;
    }

    .radius-badge-label {
        font-size: 10px;
    }

    .radius-city strong {
        font-size: 1.25rem;
    }

    /* Legal pages responsive */
    .legal-page {
        padding: 56px 0 80px;
    }

    .legal-header {
        margin-bottom: 40px;
        padding-bottom: 32px;
    }

    .legal-content h2 {
        font-size: 1.25rem;
        margin-top: 40px;
    }

    .legal-highlight {
        flex-direction: column;
        gap: 14px;
        padding: 22px;
    }

    .legal-contact-box {
        padding: 20px;
    }

    /* Cookie tabel på mobil - stack */
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 20px;
    }

    .cookie-header {
        display: none;
    }

    .cookie-row:not(.cookie-header) > div::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 4px;
    }

    .cookie-row:not(.cookie-header) {
        border-bottom: 1px solid var(--line);
    }

    /* Footer legal responsive */
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 40px 28px;
    }

    .testimonial-text {
        font-size: 1.25rem;
    }

    .testimonial-author {
        flex-wrap: wrap;
    }

    .testimonial-rating {
        margin-left: 0;
        width: 100%;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-experience {
        position: static;
        transform: rotate(-2deg);
        align-self: flex-start;
        margin-top: -40px;
        margin-left: 20px;
    }

    .about-visual {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-image-main,
    .about-image-secondary {
        position: static;
        width: 100%;
        height: 300px;
    }

    .header-cta .phone-link span {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}
