:root {
    --primary: #6ec1e4;   /* Elementor global "primary"   */
    --secondary: #54595f; /* Elementor global "secondary" */
    --text: #7a7a7a;      /* Elementor global "text"      */
    --accent: #61ce70;    /* Elementor global "accent"    */
    --dark: #3a3f44;
    --light: #f7f9fb;
    --white: #ffffff;
    --max: 1140px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3 {
    font-family: "Roboto Slab", Georgia, serif;
    color: var(--secondary);
    line-height: 1.2;
    margin: 0 0 .5em;
}

a { color: var(--primary); }
a:hover { color: #4aa6cc; }

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

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow { max-width: 820px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid #e6eaee;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 16px;
}

.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--secondary);
}
.brand-tag { font-size: .78rem; color: var(--primary); font-weight: 500; letter-spacing: .3px; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); border-bottom-color: var(--primary); }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 1.6rem;
    color: var(--secondary);
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--primary), #4aa6cc);
    color: var(--white);
    text-align: center;
    padding: 72px 0 64px;
}
.hero.hero-sm { padding: 54px 0 46px; }
.hero h1 { color: var(--white); font-size: 2.6rem; margin: 0; }
.hero-sub { font-size: 1.2rem; margin: .6rem 0 0; opacity: .95; }

@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
}

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--light); }

.section h2 { font-size: 1.9rem; }
.centered { text-align: center; }
.intro { max-width: 720px; margin: 0 auto 28px; }
.note { font-size: .9rem; font-style: italic; color: #999; }

.callout {
    background: #eef8fc;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 4px;
    color: var(--secondary);
}

/* ---------- Gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
    background: #e6eaee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 900px) {
    .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--secondary);
    color: #cfd4d9;
    padding: 38px 0;
    text-align: center;
}
.footer-nav { display: flex; gap: 24px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.footer-nav a { color: var(--white); text-decoration: none; font-weight: 500; }
.footer-nav a:hover { color: var(--primary); }
.footer-contact { margin: 8px 0; }
.footer-contact a { color: var(--primary); }
.footer-copy { font-size: .85rem; color: #9aa0a6; margin: 10px 0 0; }

/* ---------- Mobile nav ---------- */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid #e6eaee;
        padding: 8px 20px 16px;
    }
    body.nav-open .main-nav { display: flex; }
    .main-nav a { padding: 12px 0; border-bottom: 1px solid #eef1f4; }
    .main-nav a.active { border-bottom-color: #eef1f4; }
}
