/* style.css */
:root {
    --bg: #f8f6f3;
    --white: #ffffff;
    --text: #1f1f1f;
    --muted: #6f6a66;
    --line: #e7e1db;
    --accent: #c7b8a3;
    --accent-dark: #a89276;
    --soft: #f3efea;
    --shadow: 0 10px 30px rgba(31, 31, 31, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.narrow {
    width: min(760px, 92%);
}

.center {
    text-align: center;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 246, 243, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(231, 225, 219, 0.7);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--text);
}

.hero {
    padding: 120px 0 90px;
}

.hero-content {
    max-width: 760px;
}

.eyebrow,
.section-label {
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 14px;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 1.05;
    color: var(--text);
}

h1 {
    font-size: clamp(3.2rem, 8vw, 6rem);
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    margin-bottom: 18px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.hero-text,
.section-text,
.card p,
.trust-card p,
.contact-line {
    color: var(--muted);
    font-size: 1rem;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text);
    color: var(--white);
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--white);
}

.section {
    padding: 90px 0;
}

.soft-bg {
    background: var(--soft);
}

.trust {
    padding-bottom: 40px;
}

.trust-grid,
.cards {
    display: grid;
    gap: 24px;
}

.trust-grid {
    grid-template-columns: repeat(3, 1fr);
}

.cards {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

.trust-card,
.card,
.price-category {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.price-category {
    margin-top: 24px;
}

.price-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.price-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.price-list div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-line {
    margin-bottom: 10px;
}

@media (max-width: 960px) {
    .trust-grid,
    .cards {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        gap: 18px;
    }
}

@media (max-width: 720px) {
    .nav {
        flex-direction: column;
        gap: 14px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .hero {
        padding: 90px 0 70px;
    }

    .trust-grid,
    .cards {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .price-list div {
        font-size: 0.95rem;
    }
}

/* --- Kampagne-mærke (Botox 1 område) --- */
.campaign-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--accent-dark);
    color: var(--white);
    border-radius: 999px;
    vertical-align: middle;
}

.price-campaign s {
    color: var(--muted);
    opacity: 0.55;
    margin-right: 6px;
}

.price-campaign span:last-child {
    color: var(--text);
    font-weight: 600;
}