:root {
    --bg: #f6f3ef;
    --surface: rgba(255, 255, 255, 0.82);
    --card: #ffffff;
    --text: #17171b;
    --muted: #6f6f78;
    --accent: #c97d4f;
    --accent-alt: #946449;
    --stroke: rgba(23, 23, 27, 0.08);
    --radius: 22px;
    --shadow-soft: 0 25px 60px rgba(24, 24, 29, 0.08);
    --shadow-card: 0 15px 35px rgba(10, 10, 12, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    background-image: url('/img/salut2.png');
    background-position: right top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -2;
}

body::before {
    background: rgba(201, 125, 79, 0.18);
    top: -120px;
    right: -160px;
}

body::after {
    background: rgba(123, 108, 96, 0.15);
    bottom: -140px;
    left: -120px;
}

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

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

main {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 140px 0 100px;
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.main-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(1.5rem, 5vw, 5rem);
    background: rgb(236 228 217);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 20;
    width: 100%;
    box-sizing: border-box;
}

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

.logo-image {
    width: 95px;
    height: 85px;
    object-fit: contain;
    border-radius: 18px;
}

.logo-text strong {
    display: block;
    font-weight: 600;
}

.logo-text small {
    color: var(--muted);
    font-size: 0.85rem;
}

.main-nav {
    display: flex;
    gap: 20px;
    font-weight: 500;
}

.main-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease;
}

.main-nav a:hover {
    background: rgba(23, 23, 27, 0.08);
}

.cta-nav {
    background: var(--text);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 36px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(201, 125, 79, 0.2), transparent 45%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-content p {
    color: var(--muted);
    max-width: 520px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--accent-alt);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.92);
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow-card);
}

.stat strong {
    display: block;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.stat span {
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: linear-gradient(326deg, #29160a, #5d3e1a);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.btn.primary:focus-visible {
    outline: 2px solid rgba(201, 125, 79, 0.4);
    outline-offset: 4px;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(201, 125, 79, 0.25);
}

.btn.ghost {
    border-color: rgba(23, 23, 27, 0.4);
    color: var(--text);
    background: rgba(23, 23, 27, 0.02);
}

.btn.full {
    width: 100%;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.content-grid,
.split-section,
.cards,
.contact,
.locations {
    background: var(--surface);
    border-radius: 32px;
    padding: clamp(2.5rem, 5vw, 4rem);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-card);
}

.content-grid,
.split-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.content-grid.neutral {
    background: #f3eee7;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.section-title.center {
    text-align: center;
}

.cards-grid,
.locations-grid {
    display: grid;
    margin-top: 32px;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.location-card {
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 25px rgba(20, 20, 26, 0.08);
    position: relative;
    overflow: hidden;
}

.card::after,
.location-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 125, 79, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::after,
.location-card:hover::after {
    opacity: 1;
}

.card h3,
.location-card h3 {
    margin-top: 0;
    font-family: 'Playfair Display', serif;
}

.card ul,
.location-card ul {
    padding-left: 18px;
    color: var(--muted);
}

.locations .address {
    margin-top: 32px;
    text-align: center;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(24, 24, 26, 0.06);
}

.contact {
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    inset: 65px 25%;
    border-radius: 60px;
    background: radial-gradient(circle at 70% 30%, rgba(201, 125, 79, 0.08), transparent 60%);
    pointer-events: none;
    opacity: 0.45;
}

.contact-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
    padding: 32px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 27, 31, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6px);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row label {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--accent-alt);
}

.form-row input,
.form-row textarea,
.form-row select {
    border-radius: 18px;
    border: 1px solid rgba(27, 27, 31, 0.12);
    padding: 18px 18px;
    font-size: 1rem;
    font-family: inherit;
    background: linear-gradient(180deg, #fff, #f8f5f2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: rgba(199, 137, 90, 0.9);
    box-shadow: 0 0 0 3px rgba(199, 137, 90, 0.15);
}

.form-row textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row--full {
    grid-column: 1 / -1;
}

.contact-form .btn {
    grid-column: 1 / -1;
}

.form-note {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.9rem;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid;
    margin-bottom: 16px;
    font-weight: 500;
}

.form-alert.success {
    background: rgba(69, 160, 103, 0.12);
    border-color: rgba(69, 160, 103, 0.5);
    color: #2f7a4e;
}

.form-alert.error {
    background: rgba(226, 88, 88, 0.12);
    border-color: rgba(226, 88, 88, 0.5);
    color: #a73535;
}

.main-footer {
    padding: 48px clamp(1.5rem, 5vw, 5rem);
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .main-header {
        background: rgb(236 228 217);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .main-nav {
        position: fixed;
        margin-top: 126px;
        inset: 0 0 0 40%;
        background: linear-gradient(177deg, #ece4d9e0, #4f3216bd);
        flex-direction: column;
        padding: 52px 31px 433px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.08);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .burger {
        display: flex;
    }
}

