:root {
    --color-primary: #3d6a9e;
    --color-primary-dark: #2e5785;
    --color-dark: #1c2732;
    --color-text: #3a3a3a;
    --color-muted: #6b6b6b;
    --color-light: #f5f5f5;
    --color-border: #d9d9d9;
    --max-width: 1200px;
    --font-serif: "Playfair Display", "Georgia", "Times New Roman", serif;
    --font-sans: "Helvetica Neue", Arial, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.6;
    background: #fff;
}

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

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--color-dark); font-weight: 700; }

/* Header */
.site-header {
    background: #eceef1;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}
.home .site-header {
    background: transparent;
    border-bottom: none;
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 2;
}
.home .site-header .nav a { color: #000; }
.home .site-header .nav a:hover,
.home .site-header .nav a.active { color: var(--color-primary); }
.home .hero { padding-top: 220px; padding-bottom: 80px; min-height: 720px; }
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.logo img { height: 80px; width: auto; }

.nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}
.nav a {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.2rem;
}
.nav a.active,
.nav a:hover { color: var(--color-primary); text-decoration: none; }

.nav-toggle { display: none; }
.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 26px;
    position: relative;
    z-index: 3;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.25s, top 0.25s, opacity 0.25s;
}
.nav-toggle-label span { top: 12px; }
.nav-toggle-label span::before { content: ""; top: -9px; }
.nav-toggle-label span::after { content: ""; top: 9px; }
.nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
.nav-toggle:checked ~ .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
.nav-toggle:checked ~ .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle-label { display: block; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eceef1;
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .home .nav { background: #eceef1; }
    .nav { border-bottom: none; }
    .nav-toggle:checked ~ .nav { border-bottom: 1px solid var(--color-border); }
    .home .nav-toggle:checked ~ .nav { border-bottom: none; }
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 1.5rem;
    }
    .nav ul li { border-bottom: 1px solid var(--color-border); }
    .nav ul li:last-child { border-bottom: none; }
    .nav a { display: block; padding: 0.75rem 0; }
    .nav-toggle:checked ~ .nav { max-height: 400px; }
}

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-dark);
    background: url("../images/hero.webp") center -200px/cover no-repeat;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.7);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
    font-family: var(--font-serif);
    color: #000;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.25;
    margin-bottom: 2rem;
    max-width: 1100px;
}
.hero-intro {
    max-width: 1050px;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #000;
}

.btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.btn:hover { background: var(--color-primary-dark); text-decoration: none; color: #fff; }

/* Sections */
section { padding: 4rem 0; }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}
.section-lead {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    color: var(--color-text);
}
.section-alt { background: var(--color-light); }

/* Offer cards */
.offer-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 860px;
    margin: 0 auto;
}
.offer-card {
    background: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}
.offer-card img {
    display: block;
    width: calc(100% + 4rem);
    max-width: none;
    height: 400px;
    margin: -2rem -2rem 1.5rem;
    object-fit: cover;
    object-position: top;
}
.offer-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}
.offer-card p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--color-muted);
}

/* Home offer mini grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.offer-grid .offer-card { text-align: left; padding: 1.5rem; }

/* Pricing */
.price-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.price-block { margin-bottom: 2.5rem; }
.price-block h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-dark);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-primary);
    margin-bottom: 0.5rem;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table td {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}
.price-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--color-dark);
    white-space: nowrap;
}
.price-table .discount td:last-child { color: var(--color-primary); }

@media (max-width: 768px) {
    .price-columns { grid-template-columns: 1fr; gap: 1rem; }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info p { margin-bottom: 1.5rem; font-size: 1.25rem; color: var(--color-dark); font-weight: 600; }
.contact-info .label {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: var(--color-dark);
}
.map-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }
.contact-subtitle {
    text-align: center;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--color-muted);
    text-transform: uppercase;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .nav ul { gap: 1rem; }
    .hero { background-position: center center; }
}

/* Footer */
.site-footer {
    background: var(--color-primary);
    color: #e8eef6;
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto 1.5rem;
    padding: 0 1.5rem;
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-contact-row { justify-content: center; }
}
.site-footer h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
}
.site-footer a { color: #e8eef6; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.site-footer p { font-size: 0.95rem; margin-bottom: 0.3rem; }
.footer-contact-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; font-size: 0.95rem; }
.footer-contact-row::before {
    content: "";
    width: 14px; height: 14px;
    background: currentColor;
    opacity: 0.85;
    -webkit-mask: var(--icon) center/contain no-repeat;
    mask: var(--icon) center/contain no-repeat;
    flex-shrink: 0;
}
.footer-contact-row.mail { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4.236-8 4.882-8-4.882V6l8 4.882L20 6z'/></svg>"); }
.footer-contact-row.phone { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6.62 10.79a15.1 15.1 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01z'/></svg>"); }
.copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #d2ddea;
    max-width: var(--max-width);
    margin: 0 auto;
}
