/* =====================================================
   KLINIK IZA – FÆLLES DESIGN
===================================================== */

:root {
    --green-dark: #153b32;
    --green: #285c4d;
    --green-soft: #6d8c81;
    --green-light: #dfeae5;

    --cream: #f7f3eb;
    --cream-dark: #ebe3d5;

    --white: #ffffff;
    --text: #252a28;
    --text-light: #656d69;

    --gold: #b3905f;

    --shadow-small: 0 12px 35px rgba(21, 59, 50, 0.09);
    --shadow: 0 20px 60px rgba(21, 59, 50, 0.13);
    --shadow-large: 0 35px 90px rgba(21, 59, 50, 0.18);

    --radius-large: 34px;
    --radius-medium: 22px;
    --radius-small: 14px;
}

/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

/* =====================================================
   TYPOGRAFI
===================================================== */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    max-width: 780px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--green-dark);
}

.section-text {
    max-width: 690px;
    margin-top: 24px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
}

.content-text {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
}

.content-text + .content-text {
    margin-top: 22px;
}

/* =====================================================
   KNAPPER
===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 56px;
    padding: 0 26px;

    border: 1px solid transparent;
    border-radius: 100px;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
    box-shadow: 0 14px 35px rgba(21, 59, 50, 0.22);
}

.btn-primary:hover {
    background: var(--green);
    box-shadow: 0 18px 40px rgba(21, 59, 50, 0.28);
}

.btn-secondary {
    background: transparent;
    color: var(--green-dark);
    border-color: rgba(21, 59, 50, 0.22);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--green-dark);
}

.btn-light:hover {
    background: var(--cream);
}

.arrow {
    font-size: 20px;
    line-height: 1;
}

/* =====================================================
   TOPBAR
===================================================== */

.topbar {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    transition: color 0.2s ease;
}

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

/* =====================================================
   HEADER OG NAVIGATION
===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(247, 243, 235, 0.9);
    border-bottom: 1px solid rgba(21, 59, 50, 0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;

    flex-shrink: 0;
}

.logo-mark {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-dark);
    color: var(--white);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    color: var(--green-dark);
}

.logo-subtitle {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;

    list-style: none;
}

.nav-links a {
    position: relative;

    color: var(--text);

    font-size: 14px;
    font-weight: 700;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: var(--green);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-contact {
    min-height: 48px;
    padding: 0 22px;
}

.menu-button {
    display: none;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background: var(--green-dark);
    color: var(--white);

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: currentColor;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =====================================================
   FORSIDE – HERO
===================================================== */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 75px 0 100px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    top: -220px;
    right: -180px;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    background: rgba(223, 234, 229, 0.85);
}

.hero::after {
    content: "";

    position: absolute;
    left: -160px;
    bottom: -280px;

    width: 500px;
    height: 500px;

    border-radius: 50%;
    border: 1px solid rgba(40, 92, 77, 0.15);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;

    gap: 75px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-label span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow: 0 0 0 7px rgba(179, 144, 95, 0.13);
}

.hero h1 {
    max-width: 690px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 7vw, 92px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -4px;

    color: var(--green-dark);
}

.hero h1 em {
    color: var(--green);
    font-weight: 400;
}

.hero-description {
    max-width: 620px;

    margin-top: 30px;

    color: var(--text-light);

    font-size: 19px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 38px;
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;

    margin-top: 45px;
    padding-top: 30px;

    border-top: 1px solid rgba(21, 59, 50, 0.12);
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--green-dark);

    font-size: 14px;
    font-weight: 700;
}

.hero-detail-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--white);

    box-shadow: 0 8px 25px rgba(21, 59, 50, 0.08);
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-image {
    position: absolute;
    inset: 0 30px 0 0;

    overflow: hidden;

    border-radius: 220px 220px 40px 40px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 59, 50, 0.08),
            rgba(179, 144, 95, 0.18)
        ),
        url("profil.jpg")center / cover no-repeat;

    box-shadow: var(--shadow);
}

.hero-image::after {
    content: "Billede af Izabella";

    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    color: rgba(21, 59, 50, 0.55);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;

    background:
        radial-gradient(
            circle at top,
            rgba(255, 255, 255, 0.15),
            transparent 55%
        );
}

.hero-image.has-image::after {
    display: none;
}

.floating-card {
    position: absolute;
    z-index: 4;

    right: -10px;
    bottom: 56px;

    width: 255px;
    padding: 24px;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-medium);

    background: rgba(255, 255, 255, 0.88);

    box-shadow: var(--shadow);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.floating-card-small {
    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.floating-card h3 {
    margin-top: 9px;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.floating-card p {
    margin-top: 10px;

    color: var(--text-light);

    font-size: 14px;
}

.experience-badge {
    position: absolute;
    z-index: 4;

    top: 58px;
    left: -35px;

    width: 145px;
    height: 145px;

    display: grid;
    place-items: center;

    padding: 18px;

    border-radius: 50%;

    background: var(--green-dark);
    color: var(--white);

    text-align: center;

    box-shadow: 0 20px 50px rgba(21, 59, 50, 0.28);
}

.experience-badge strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.experience-badge span {
    display: block;

    margin-top: 6px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* =====================================================
   BEHANDLINGER
===================================================== */

.treatments {
    background: var(--white);
}

.treatments-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.treatments-heading .section-text {
    max-width: 440px;
    margin-top: 0;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.treatment-card {
    position: relative;

    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 34px;

    overflow: hidden;

    border: 1px solid rgba(21, 59, 50, 0.09);
    border-radius: var(--radius-large);

    background: var(--cream);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-8px);

    background: var(--white);

    box-shadow: var(--shadow);
}

.treatment-card::after {
    content: "";

    position: absolute;
    right: -80px;
    bottom: -80px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: rgba(223, 234, 229, 0.85);

    transition: transform 0.35s ease;
}

.treatment-card:hover::after {
    transform: scale(1.2);
}

.treatment-number {
    position: relative;
    z-index: 2;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.treatment-content {
    position: relative;
    z-index: 2;
}

.treatment-icon {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border-radius: 20px;

    background: var(--green-dark);
    color: var(--white);

    font-size: 25px;
}

.treatment-card h3 {
    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.15;
}

.treatment-card p {
    margin-top: 15px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.75;
}

.treatment-link {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    color: var(--green-dark);

    font-size: 14px;
    font-weight: 800;
}

.treatment-link span {
    transition: transform 0.25s ease;
}

.treatment-card:hover .treatment-link span {
    transform: translateX(6px);
}

/* =====================================================
   OM SEKTION PÅ FORSIDEN
===================================================== */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;

    gap: 90px;
}

.about-visual {
    position: relative;
    min-height: 600px;
}

.about-shape {
    position: absolute;
    inset: 0 60px 0 0;

    border-radius: 40px 200px 40px 40px;

    background:
        linear-gradient(
            150deg,
            rgba(40, 92, 77, 0.9),
            rgba(21, 59, 50, 0.98)
        );

    box-shadow: var(--shadow);
}

.about-shape::before {
    content: "Ro";

    position: absolute;
    top: 50px;
    left: 45px;

    color: rgba(255, 255, 255, 0.1);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 135px;
}

.about-quote {
    position: absolute;
    right: 0;
    bottom: 50px;

    width: 330px;
    padding: 36px;

    border-radius: var(--radius-large);

    background: var(--white);

    box-shadow: var(--shadow);
}

.about-quote-mark {
    color: var(--gold);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: 0.7;
}

.about-quote p {
    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.45;
}

.about-quote span {
    display: block;

    margin-top: 18px;

    color: var(--text-light);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-top: 34px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 18px;

    border-radius: var(--radius-small);

    background: rgba(255, 255, 255, 0.6);
}

.check {
    flex-shrink: 0;

    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-light);
    color: var(--green-dark);

    font-size: 13px;
    font-weight: 900;
}

.about-point strong {
    display: block;

    color: var(--green-dark);

    font-size: 15px;
}

.about-point span {
    display: block;

    margin-top: 3px;

    color: var(--text-light);

    font-size: 13px;
}

/* =====================================================
   UNDERSIDER – HERO
===================================================== */

.page-hero {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(223, 234, 229, 0.95),
            transparent 30%
        ),
        var(--cream);
}

.page-hero::before {
    content: "";

    position: absolute;
    top: -260px;
    right: -170px;

    width: 580px;
    height: 580px;

    border-radius: 50%;
    border: 1px solid rgba(21, 59, 50, 0.12);
}

.page-hero-inner {
    position: relative;
    z-index: 2;

    max-width: 870px;
}

.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 8vw, 95px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -4px;

    color: var(--green-dark);
}

.page-hero p {
    max-width: 720px;

    margin-top: 28px;

    color: var(--text-light);

    font-size: 19px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb span {
    color: var(--gold);
}

/* =====================================================
   UNDERSIDER – INDHOLD
===================================================== */

.content-section {
    padding: 105px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);

    gap: 75px;
    align-items: start;
}

.content-main h2 {
    margin-top: 50px;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    margin-top: 35px;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.content-main p {
    margin-top: 20px;

    color: var(--text-light);

    font-size: 17px;
    line-height: 1.9;
}

.content-main ul {
    display: grid;
    gap: 12px;

    margin-top: 24px;

    list-style: none;
}

.content-main li {
    position: relative;

    padding-left: 32px;

    color: var(--text-light);

    font-size: 17px;
    line-height: 1.7;
}

.content-main li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-light);
    color: var(--green-dark);

    font-size: 12px;
    font-weight: 900;
}

.content-card {
    position: sticky;
    top: 120px;

    padding: 34px;

    border-radius: var(--radius-large);

    background: var(--cream);

    box-shadow: var(--shadow-small);
}

.content-card h3 {
    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.2;
}

.content-card p {
    margin-top: 15px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.8;
}

.content-card .btn {
    width: 100%;
    margin-top: 25px;
}

.info-list {
    display: grid;
    gap: 14px;

    margin-top: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 16px;

    border-radius: var(--radius-small);

    background: var(--white);
}

.info-icon {
    flex-shrink: 0;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-light);
    color: var(--green-dark);
}

.info-item strong {
    display: block;

    color: var(--green-dark);

    font-size: 14px;
}

.info-item span {
    display: block;

    margin-top: 2px;

    color: var(--text-light);

    font-size: 13px;
}

/* =====================================================
   UDDANNELSE OG TIDSLINJE
===================================================== */

.timeline {
    position: relative;

    display: grid;
    gap: 18px;

    margin-top: 38px;
}

.timeline::before {
    content: "";

    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 72px;

    width: 1px;

    background: rgba(21, 59, 50, 0.16);
}

.timeline-item {
    position: relative;

    display: grid;
    grid-template-columns: 72px 1fr;

    gap: 24px;

    padding: 22px;

    border: 1px solid rgba(21, 59, 50, 0.08);
    border-radius: var(--radius-medium);

    background: var(--cream);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.timeline-item:hover {
    transform: translateX(6px);

    background: var(--white);

    box-shadow: var(--shadow-small);
}

.timeline-year {
    position: relative;
    z-index: 2;

    color: var(--gold);

    font-size: 14px;
    font-weight: 900;
}

.timeline-year::after {
    display: none;
}

.timeline-item h3 {
    margin: 0;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.timeline-item p {
    margin-top: 7px;

    color: var(--text-light);

    font-size: 14px;
    line-height: 1.6;
}

/* =====================================================
   PRISER
===================================================== */

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 45px;
}

.price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 28px;

    border: 1px solid rgba(21, 59, 50, 0.09);
    border-radius: var(--radius-medium);

    background: var(--cream);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.price-card:hover {
    transform: translateY(-5px);

    background: var(--white);

    box-shadow: var(--shadow-small);
}

.price-card h3 {
    margin: 0;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.price-card p {
    margin-top: 6px;

    color: var(--text-light);

    font-size: 13px;
}

.price {
    flex-shrink: 0;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

/* =====================================================
   KONTAKTSIDE
===================================================== */

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 55px;
}

.contact-panel {
    padding: 38px;

    border-radius: var(--radius-large);

    background: var(--green-dark);
    color: var(--white);

    box-shadow: var(--shadow);
}

.contact-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 39px;
    font-weight: 400;
    line-height: 1.15;
}

.contact-panel > p {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.8;
}

.contact-list {
    display: grid;
    gap: 14px;

    margin-top: 30px;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.contact-list-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-list-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);
}

.contact-list-item small {
    display: block;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-list-item strong {
    display: block;

    margin-top: 3px;

    color: var(--white);

    font-size: 15px;
    line-height: 1.5;
}

.map-box {
    min-height: 520px;

    overflow: hidden;

    border-radius: var(--radius-large);

    background: var(--green-light);

    box-shadow: var(--shadow-small);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;

    border: 0;
}

/* =====================================================
   KONTAKT CTA
===================================================== */

.contact-cta {
    padding: 0 0 110px;
}

.contact-box {
    position: relative;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 60px;

    padding: 70px;

    overflow: hidden;

    border-radius: 42px;

    background: var(--green-dark);
    color: var(--white);

    box-shadow: 0 30px 80px rgba(21, 59, 50, 0.2);
}

.contact-box::before {
    content: "";

    position: absolute;
    top: -170px;
    right: -80px;

    width: 430px;
    height: 430px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-box::after {
    content: "";

    position: absolute;
    right: 80px;
    bottom: -270px;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);
}

.contact-content,
.contact-details {
    position: relative;
    z-index: 2;
}

.contact-box .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.contact-box .section-title {
    color: var(--white);
    font-size: clamp(40px, 5vw, 64px);
}

.contact-box .section-text {
    color: rgba(255, 255, 255, 0.7);
}

.contact-box .btn-primary {
    margin-top: 32px;

    background: var(--white);
    color: var(--green-dark);

    box-shadow: none;
}

.contact-box .btn-primary:hover {
    background: var(--cream);
}

.contact-details {
    display: grid;
    align-content: center;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-item-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);
}

.contact-item small {
    display: block;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-item strong {
    display: block;

    margin-top: 3px;

    color: var(--white);

    font-size: 15px;
    line-height: 1.5;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #0e2d26;
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;

    gap: 70px;

    padding: 75px 0 55px;
}

.footer .logo-name {
    color: var(--white);
}

.footer .logo-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.footer-description {
    max-width: 410px;

    margin-top: 22px;

    font-size: 14px;
    line-height: 1.8;
}

.footer h4 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 12px;

    list-style: none;
}

.footer-links a {
    font-size: 14px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    font-size: 12px;
}

/* =====================================================
   ANIMATIONER
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .nav-links,
    .nav-contact {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .nav-links.mobile-active {
        position: fixed;
        top: 128px;
        right: 20px;
        left: 20px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 18px;

        border: 1px solid rgba(21, 59, 50, 0.1);
        border-radius: 24px;

        background: var(--white);

        box-shadow: var(--shadow);
    }

    .nav-links.mobile-active li {
        width: 100%;
    }

    .nav-links.mobile-active a {
        display: block;

        width: 100%;

        padding: 16px;

        border-radius: 12px;
    }

    .nav-links.mobile-active a:hover {
        background: var(--cream);
    }

    .nav-links.mobile-active a::after {
        display: none;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(50px, 7vw, 72px);
    }

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

    .about-grid {
        gap: 55px;
    }

    .content-grid {
        gap: 45px;
    }
}

/* =====================================================
   LILLE TABLET
===================================================== */

@media (max-width: 820px) {

    .topbar-inner {
        justify-content: center;
    }

    .topbar-info span:first-child {
        display: none;
    }

    .hero {
        padding-top: 55px;
    }

    .hero-grid,
    .about-grid,
    .contact-box,
    .content-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 570px;
        margin-top: 25px;
    }

    .hero-image {
        inset: 0 15px;
    }

    .experience-badge {
        left: 0;
    }

    .floating-card {
        right: 0;
    }

    .treatments-heading {
        display: block;
    }

    .treatments-heading .section-text {
        margin-top: 22px;
    }

    .about-visual {
        min-height: 510px;
    }

    .content-card {
        position: static;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 50px 34px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =====================================================
   MOBIL
===================================================== */

@media (max-width: 620px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section,
    .content-section {
        padding: 80px 0;
    }

    .topbar-info {
        gap: 12px;
        font-size: 11px;
    }

    .topbar-info a:last-child {
        display: none;
    }

    .nav {
        min-height: 74px;
    }

    .logo-mark {
        width: 41px;
        height: 41px;
    }

    .logo-name {
        font-size: 21px;
    }

    .logo-subtitle {
        font-size: 8px;
    }

    .nav-links.mobile-active {
        top: 111px;
        right: 14px;
        left: 14px;
    }

    .hero {
        min-height: auto;
        padding: 50px 0 75px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 51px;
        letter-spacing: -2.5px;
    }

    .hero-description,
    .page-hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-details {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-image {
        border-radius: 160px 160px 32px 32px;
    }

    .experience-badge {
        top: 30px;

        width: 112px;
        height: 112px;

        padding: 14px;
    }

    .experience-badge strong {
        font-size: 27px;
    }

    .experience-badge span {
        font-size: 9px;
    }

    .floating-card {
        bottom: 20px;

        width: 225px;

        padding: 20px;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        min-height: 345px;
        padding: 28px;
    }

    .about-visual {
        min-height: 440px;
    }

    .about-shape {
        right: 25px;
    }

    .about-quote {
        right: 0;
        bottom: 20px;

        width: 270px;

        padding: 27px;
    }

    .about-quote p {
        font-size: 19px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 75px 0;
    }

    .content-card,
    .contact-panel {
        padding: 26px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .timeline-year::after {
        display: none;
    }

    .price-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .map-box,
    .map-box iframe {
        min-height: 420px;
    }

    .contact-cta {
        padding-bottom: 75px;
    }

    .contact-box {
        padding: 42px 24px;
        border-radius: 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;

        padding-top: 60px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;

        padding: 22px 0;

        text-align: center;
    }
}
/* Ret afstand mellem grøn prik og tekst i tidslinjen */

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: 70px;
}

.timeline-item::before {
    display: none;
}

.timeline-item > div:last-child {
    padding-left: 35px;
}

.timeline-item h3 {
    margin-top: 0;
}
/* FJERN ALLE PRIKKER I TIDSLINJEN */

.timeline-item::before,
.timeline-item::after,
.timeline-year::before,
.timeline-year::after,
.timeline-item h3::before,
.timeline-item h3::after {
    content: none !important;
    display: none !important;
}
/* TVING ALLE PRIKKER VÆK FRA TIDSLINJEN */

.timeline,
.timeline-item,
.timeline-year {
    list-style: none !important;
}

.timeline::before,
.timeline::after,
.timeline *::before,
.timeline *::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}