/* ============================================
   GEIGENVERLEIH — Stylesheet
   ============================================ */

/* --- Base --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background-color: #E6E3D6;
    color: #262624;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Noise Overlay --- */
.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(230, 227, 214, 0.92);
    border-bottom-color: rgba(38, 38, 36, 0.05);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #5A5852;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: #CC5500;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background-color: #1A4D2E;
    padding: 0.625rem 1.5rem;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.nav-cta:hover {
    background-color: #143d24;
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}

.mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

.mobile-link {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #5A5852;
    padding: 0.5rem 0;
    transition: color 0.15s ease;
}

.mobile-link:hover {
    color: #CC5500;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 90vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-blob-1 {
    position: absolute;
    top: 5rem;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(26, 77, 46, 0.1);
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}

.hero-blob-2 {
    position: absolute;
    bottom: 0;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(204, 85, 0, 0.1);
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-tag-line {
    width: 2rem;
    height: 1px;
    background-color: #CC5500;
}

.hero-tag-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #CC5500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

.hero-title .accent {
    color: #CC5500;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.625;
    color: #5A5852;
    max-width: 32rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1A4D2E;
    color: #fff;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 2px;
    box-shadow: 0 10px 15px -3px rgba(26, 77, 46, 0.1);
    transition: all 0.15s ease;
}

.btn-primary:hover {
    background-color: #143d24;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(38, 38, 36, 0.2);
    color: #262624;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.btn-secondary:hover {
    border-color: rgba(204, 85, 0, 0.3);
    color: #CC5500;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(38, 38, 36, 0.1);
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 500;
    color: #262624;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #888888;
    margin-top: 0.25rem;
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
    max-width: 28rem;
    margin-left: auto;
}

.hero-image-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(38, 38, 36, 0.1);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 77, 46, 0.2);
    mix-blend-mode: multiply;
}

.hero-float-tag {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background-color: #F5F4F0;
    border: 1px solid rgba(38, 38, 36, 0.1);
    border-radius: 2px;
    padding: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 14rem;
    z-index: 10;
}

.hero-float-tag-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.hero-float-tag-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
}

.hero-float-tag-text {
    font-size: 0.875rem;
    color: #5A5852;
    line-height: 1.4;
}

/* Decorative dots */
.hero-dots {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    opacity: 0.3;
}

.hero-dots span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #CC5500;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-indicator-text {
    font-size: 0.75rem;
    color: #888888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator-line {
    width: 1px;
    height: 2rem;
    background-color: rgba(38, 38, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-indicator-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background-color: #CC5500;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(1rem); }
}

/* --- Section Shared --- */
.section {
    padding: 6rem 1.5rem;
}

.section-lg {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .section,
    .section-lg {
        padding: 6rem 3rem;
    }
}

.section-header-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-header-tag-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-tag-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #CC5500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    line-height: 1.625;
    color: #5A5852;
}

/* --- Instrument Cards --- */
.instrument-card {
    background-color: #F5F4F0;
    border: 1px solid rgba(38, 38, 36, 0.05);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.instrument-card:hover {
    border-color: rgba(204, 85, 0, 0.2);
}

.instrument-card-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.instrument-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instrument-card:hover .instrument-card-img {
    transform: scale(1.05);
}

.instrument-card-body {
    padding: 2rem;
}

.instrument-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.instrument-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
}

.instrument-card-price {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #CC5500;
}

.instrument-card-desc {
    font-size: 0.875rem;
    color: #5A5852;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.instrument-tag {
    font-size: 0.75rem;
    background-color: #E6E3D6;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(38, 38, 36, 0.1);
}

.instrument-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A4D2E;
    transition: color 0.15s ease;
    margin-top: 0.5rem;
}

.instrument-link:hover {
    color: #CC5500;
}

.instrument-link .link-arrow {
    transition: transform 0.15s ease;
}

.instrument-link:hover .link-arrow {
    transform: translateX(4px);
}

/* --- Steps --- */
.steps-grid {
    display: grid;
    gap: 1px;
    background-color: rgba(38, 38, 36, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    background-color: #F5F4F0;
    padding: 2rem;
    transition: background-color 0.3s ease;
}

.step-item:hover {
    background-color: #E6E3D6;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 1px solid rgba(38, 38, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.step-item:hover .step-number {
    border-color: rgba(204, 85, 0, 0.3);
}

.step-number span {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: #CC5500;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.875rem;
    color: #5A5852;
    line-height: 1.6;
}

/* --- About / Feature --- */
.about-image-wrap {
    position: relative;
}

.about-image-frame {
    aspect-ratio: 4 / 5;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(38, 38, 36, 0.1);
    padding: 0.5rem;
    background-color: #F5F4F0;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.about-quote {
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    max-width: 22rem;
    background-color: #F5F4F0;
    border: 1px solid rgba(38, 38, 36, 0.1);
    border-radius: 2px;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.about-quote-icon {
    color: #CC5500;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.about-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    color: #262624;
    margin-bottom: 0.75rem;
}

.about-quote-author {
    font-size: 0.875rem;
    color: #888888;
}

/* Feature list */
.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(26, 77, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #1A4D2E;
    font-size: 0.875rem;
}

.feature-title {
    font-weight: 500;
    color: #262624;
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: #5A5852;
    line-height: 1.6;
}

/* --- Pricing --- */
.pricing-card {
    border-radius: 2px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.pricing-card-default {
    background-color: #E6E3D6;
    border: 1px solid rgba(38, 38, 36, 0.05);
}

.pricing-card-default:hover {
    border-color: rgba(38, 38, 36, 0.15);
}

.pricing-card-featured {
    position: relative;
    background-color: #1A4D2E;
    color: #fff;
    box-shadow: 0 20px 25px -5px rgba(26, 77, 46, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #CC5500;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}

.pricing-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-card-default .pricing-label {
    color: #888888;
}

.pricing-card-featured .pricing-label {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 500;
}

.pricing-card-featured .pricing-amount {
    color: #fff;
}

.pricing-period {
    font-size: 0.875rem;
}

.pricing-card-default .pricing-period {
    color: #888888;
}

.pricing-card-featured .pricing-period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-desc {
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.pricing-card-default .pricing-desc {
    color: #5A5852;
}

.pricing-card-featured .pricing-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.pricing-card-default .pricing-list li {
    color: #5A5852;
}

.pricing-card-featured .pricing-list li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card-default .pricing-list iconify-icon {
    color: #1A4D2E;
}

.pricing-card-featured .pricing-list iconify-icon {
    color: #CC5500;
}

.pricing-btn-outline {
    display: block;
    text-align: center;
    border: 1px solid rgba(38, 38, 36, 0.2);
    color: #262624;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.pricing-btn-outline:hover {
    border-color: rgba(204, 85, 0, 0.3);
    color: #CC5500;
}

.pricing-btn-white {
    display: block;
    text-align: center;
    background-color: #fff;
    color: #1A4D2E;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.pricing-btn-white:hover {
    transform: translateY(-2px);
}

/* --- Testimonials --- */
.testimonial-card {
    background-color: #F5F4F0;
    border: 1px solid rgba(38, 38, 36, 0.05);
    border-radius: 2px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(204, 85, 0, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: #CC5500;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.875rem;
    color: #5A5852;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(38, 38, 36, 0.05);
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(26, 77, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A4D2E;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #262624;
}

.testimonial-role {
    font-size: 0.75rem;
    color: #888888;
}

/* --- Contact --- */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(26, 77, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1A4D2E;
    font-size: 0.875rem;
}

.contact-info-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #262624;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 0.875rem;
    color: #5A5852;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background-color: #E6E3D6;
    border: 1px solid rgba(38, 38, 36, 0.05);
    border-radius: 2px;
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 2.5rem;
    }
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #262624;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: #F5F4F0;
    border: 1px solid rgba(38, 38, 36, 0.1);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #262624;
    font-family: 'Instrument Sans', sans-serif;
    transition: border-color 0.15s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888888;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(204, 85, 0, 0.4);
}

.form-textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #1A4D2E;
    color: #fff;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(26, 77, 46, 0.1);
    transition: all 0.15s ease;
}

.form-submit:hover {
    background-color: #143d24;
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    text-align: center;
    padding: 0.75rem;
    background-color: rgba(26, 77, 46, 0.1);
    border-radius: 2px;
}

.form-success p {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A4D2E;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 5rem 1.5rem;
    background-color: #1A4D2E;
    overflow: hidden;
}

.cta-banner-blob-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}

.cta-banner-blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(204, 85, 0, 0.1);
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}

.cta-banner .section-title {
    color: #fff;
}

.cta-banner .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #CC5500;
    color: #fff;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.btn-accent:hover {
    background-color: #B34900;
    transform: translateY(-2px);
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.btn-white-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
    background-color: #262624;
    color: #9EA08F;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 3rem;
    }
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(158, 160, 143, 0.8);
    margin-bottom: 1.5rem;
}

.footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(158, 160, 143, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #9EA08F;
    transition: all 0.15s ease;
}

.footer-social-link:hover {
    border-color: #CC5500;
    color: #CC5500;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    font-size: 0.875rem;
    color: rgba(158, 160, 143, 0.8);
    padding: 0.375rem 0;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: #CC5500;
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-text {
    font-size: 0.75rem;
    color: rgba(158, 160, 143, 0.6);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Utility: Background colors --- */
.bg-main { background-color: #E6E3D6; }
.bg-sec { background-color: #F5F4F0; }

/* --- Utility: Container --- */
.container-main {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

/* --- About decorative blob --- */
.about-blob {
    position: absolute;
    top: 2.5rem;
    left: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(26, 77, 46, 0.05);
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}

.testimonial-blob {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18rem;
    height: 18rem;
    background: rgba(204, 85, 0, 0.05);
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}
/* Formspree — Error state */
.form-error {
    text-align: center;
    padding: 0.75rem;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 2px;
}

.form-error p {
    font-size: 0.875rem;
    font-weight: 500;
    color: #b91c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
/* ============================================
   COOKIE BANNER (Responsive)
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #262624;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 2rem;
    }

    .cookie-banner-inner {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 2rem;
    }
}

.cookie-banner-text {
    font-size: 0.8125rem;
    color: rgba(158, 160, 143, 0.9);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .cookie-banner-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

.cookie-banner-text a {
    color: #CC5500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    color: #e06600;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .cookie-banner-buttons {
        gap: 0.75rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}

.cookie-btn-accept {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: #CC5500;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
    white-space: nowrap;
}

.cookie-btn-accept:hover {
    background-color: #B34900;
}

@media (min-width: 768px) {
    .cookie-btn-accept {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

.cookie-btn-reject {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: transparent;
    color: rgba(158, 160, 143, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    border: 1px solid rgba(158, 160, 143, 0.2);
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.cookie-btn-reject:hover {
    border-color: rgba(158, 160, 143, 0.4);
    color: #fff;
}

@media (min-width: 768px) {
    .cookie-btn-reject {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

.cookie-btn-settings {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: transparent;
    color: rgba(158, 160, 143, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    border: 1px solid rgba(158, 160, 143, 0.2);
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.cookie-btn-settings:hover {
    border-color: rgba(158, 160, 143, 0.4);
    color: #fff;
}

@media (min-width: 768px) {
    .cookie-btn-settings {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

/* --- Settings Panel --- */
.cookie-settings {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-top 0.3s ease;
    margin-top: 0;
}

.cookie-settings.open {
    max-height: 350px;
    margin-top: 1rem;
}

.cookie-settings-inner {
    max-width: 48rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .cookie-settings-inner {
        padding: 1.25rem;
    }
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.625rem 0;
}

.cookie-option + .cookie-option {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-option-label {
    flex: 1;
    min-width: 0;
}

.cookie-option-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
}

.cookie-option-desc {
    font-size: 0.75rem;
    color: rgba(158, 160, 143, 0.7);
    line-height: 1.5;
}

/* --- Toggle --- */
.cookie-toggle {
    position: relative;
    width: 2.5rem;
    height: 1.375rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 1.125rem;
    height: 1.125rem;
    background-color: #fff;
    border-radius: 9999px;
    transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #CC5500;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(1.125rem);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.cookie-toggle.disabled .cookie-toggle-slider {
    background-color: #1A4D2E;
}

.cookie-toggle.disabled .cookie-toggle-slider::before {
    transform: translateX(1.125rem);
}

.cookie-btn-save {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: #1A4D2E;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
    white-space: nowrap;
}

.cookie-btn-save:hover {
    background-color: #143d24;
}

@media (min-width: 768px) {
    .cookie-btn-save {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

.cookie-settings .flex {
    display: flex;
    justify-content: center;
    padding-top: 0.75rem;
}

@media (min-width: 768px) {
    .cookie-settings .flex {
        justify-content: flex-end;
        padding-top: 1rem;
    }
}