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

:root {
    --background: #f5f0eb;
    --foreground: #3a3530;
    --primary: #5a8a6a;
    --primary-foreground: #f5f0eb;
    --secondary: #e8ddd0;
    --card: #ede6de;
    --muted-foreground: #7a7570;
    --border: #d9d0c5;
    --sage: #5a8a6a;
    --sage-light: #dce8df;
    --sand: #e8ddd0;
    --sand-dark: #b5a898;
    --nude: #c9b9a8;
    --warm-white: #f5f0eb;
    --radius: 0.75rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.2;
}

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

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

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(245, 240, 235, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--foreground);
}

.logo-icon {
    width: 54px;
    height: 54px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted-foreground);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 235, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted-foreground);
    padding: 0.5rem 0;
}

/* ========== SHARED ========== */
.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: #4d7a5c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(90, 138, 106, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--foreground);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
    padding-top: 72px;
    background: var(--secondary);
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--muted-foreground);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ========== HERO (forside) ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.hero-text {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    inset: -1rem;
    background: var(--sage-light);
    border-radius: 1.5rem;
    transform: rotate(-3deg);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ========== ABOUT ========== */
.about {
    padding: 6rem 0;
    background: var(--secondary);
}

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

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-img {
    border-radius: 1rem;
    width: 100%;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-img:nth-child(2) {
    margin-top: 2rem;
}

.about-text p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ========== SERVICES ========== */
.services {
    padding: 6rem 0;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header p {
    color: var(--muted-foreground);
    max-width: 540px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    background: var(--sage-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.service-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ========== VIDEOS ========== */
.videos {
    padding: 6rem 0;
    background: var(--secondary);
}

.videos-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.videos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.videos-header p {
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.video-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 20px;
    height: 20px;
    fill: var(--sage);
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.video-card h3 {
    padding: 1.25rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 400;
}

/* ========== CONTACT ========== */
.contact {
    padding: 6rem 0;
}

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

.contact-info p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--sage-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.contact-detail-text p {
    font-size: 0.88rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.contact-detail-text a {
    color: var(--primary);
}

.contact-detail-text a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--foreground);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* ========== PRICING ========== */
.pricing-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
}

.price-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.price-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.price-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    gap: 1rem;
}

.price-card-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.price-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--sage-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.price-card-title h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.price-card-title p {
    color: var(--muted-foreground);
    font-size: 0.88rem;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary);
    white-space: nowrap;
}

.price-amount span {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--muted-foreground);
}

.price-card-details {
    border-top: 1px solid var(--border);
    padding: 1.25rem 2rem;
    background: rgba(245, 240, 235, 0.5);
}

.price-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.price-detail-row + .price-detail-row {
    border-top: 1px solid var(--border);
}

.price-detail-row .label {
    color: var(--muted-foreground);
}

.price-detail-row .value {
    font-weight: 500;
    color: var(--foreground);
}

.price-note {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.82rem;
    color: var(--primary);
    background: var(--sage-light);
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
}

.pricing-footer-note {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
}

.pricing-footer-note a {
    color: var(--primary);
    font-weight: 500;
}

.pricing-footer-note a:hover {
    text-decoration: underline;
}

/* ========== BANNER (forside only) ========== */
.banner {
    background: var(--primary);
    color: var(--primary-foreground);
    text-align: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
}

.has-banner .header {
    top: 52px;
}

.has-banner .hero {
    padding-top: 124px;
}

/* ========== BOOKING ========== */
.booking-section {
    padding: 3rem 0 5rem;
    background: var(--background);
}

.booking-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.booking-iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

.footer-copy a {
    color: var(--primary);
}

.footer-copy a:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

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

    .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-image {
        max-width: 300px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .about-img {
        height: auto;
    }

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

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .price-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .price-card-details {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .about-img:nth-child(2) {
        margin-top: 0;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
