:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --primary: #1e6fa8;
    --primary-dark: #155583;
    --primary-soft: #e6f0f8;
    --gold: #c9a84c;
    --border: #e2e8f0;
    --radius: 18px;
    --shadow-soft: 0 6px 24px rgba(15, 23, 42, .06);
    --shadow-elegant: 0 20px 50px -20px rgba(15, 23, 42, .25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.15rem; color: var(--text); }
.logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #4ea0d4); color: #fff; font-weight: 700; }
.main-nav { display: flex; gap: 4px; flex: 1; justify-content: center; overflow-x: auto; }
.main-nav a { padding: 8px 14px; border-radius: 999px; color: var(--text); font-size: .92rem; font-weight: 500; white-space: nowrap; }
.main-nav a:hover { background: var(--primary-soft); }
.main-nav a.active { background: var(--primary); color: #fff; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 1rem; border: 0; cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-primary { background: linear-gradient(135deg, #ffffff, #e6f0f8); color: var(--primary-dark); box-shadow: var(--shadow-elegant); border: 1px solid rgba(30, 111, 168, .15); }
.btn-primary:hover { transform: translateY(-2px); color: var(--primary-dark); }
.btn-outline { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-outline:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-2px); }
.btn-solid { background: var(--primary); color: #fff; }
.btn-solid:hover { background: var(--primary-dark); color: #fff; }

/* HERO */
.hero { position: relative; isolate: isolate; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.45) 50%, var(--bg)); }
.hero-inner { padding: 80px 0 110px; max-width: 640px; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); padding: 6px 14px; border-radius: 999px; font-size: .78rem; letter-spacing: .05em; }
.hero .eyebrow .star { color: var(--gold); }
.hero h1 { color: #fff; margin-top: 18px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p.lead { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 520px; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
@media (min-width: 600px) { .hero-cta { flex-direction: row; } }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, #e6f0f8, #f8fafc); padding: 80px 0 60px; text-align: center; }
.page-hero .eyebrow { display: inline-block; border: 1px solid rgba(30,111,168,.25); background: rgba(255,255,255,.6); padding: 6px 16px; border-radius: 999px; font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--primary); }
.page-hero h1 { margin-top: 18px; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 14px auto 0; }

/* QUICK INFO */
.quick-info { margin-top: -40px; position: relative; z-index: 2; }
.quick-info-grid { display: grid; gap: 18px; grid-template-columns: 1fr; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); }
@media (min-width: 700px) { .quick-info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-item { display: flex; align-items: center; gap: 14px; }
.info-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.info-item .label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.info-item .value { font-family: 'Playfair Display', serif; font-size: 1.1rem; }

/* SECTIONS */
section.section { padding: 80px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.section-head h2 { margin-top: 12px; }

/* CARDS GRID */
.cards-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elegant); }
.card .media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .media img { transform: scale(1.06); }
.card .badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.95); color: var(--primary); padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 600; }
.card .badge-right { position: absolute; top: 14px; right: 14px; background: var(--primary); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 600; }
.card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 16px; }
.card ul.highlights { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.card ul.highlights li { font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.card ul.highlights li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

.price-row { display: flex; justify-content: space-between; align-items: center; background: var(--primary-soft); border-radius: 14px; padding: 12px 16px; margin-top: auto; }
.price-row .label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.price-row .price { font-weight: 800; color: var(--primary-dark); font-size: 1.5rem; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.price-row .price small { font-weight: 500; color: var(--muted); font-size: .8rem; margin-left: 4px; }

/* FEATURES */
.features-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: transform .2s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feature .icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), #4ea0d4); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 14px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .9rem; margin: 0; }

/* CONTACT GRID */
.contact-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft); transition: transform .2s ease; }
.contact-card:hover { transform: translateY(-4px); }
.contact-card .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.contact-card h3 { margin-bottom: 6px; }
.contact-card .value { margin-top: 16px; font-weight: 600; color: var(--primary); }

/* GALLERY */
.gallery-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid img { border-radius: 16px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-soft); }

/* PRICING TABLE */
.pricing-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.pricing-table th, .pricing-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.pricing-table th { background: var(--primary-soft); color: var(--primary-dark); font-weight: 600; font-size: .9rem; }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table td.price { font-weight: 700; color: var(--primary-dark); font-variant-numeric: tabular-nums; }

/* PROSE */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 1.05rem; color: var(--text); }
.prose h2 { margin-top: 1.8em; }

/* MAP */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 420px; display: block; border: 0; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border-radius: var(--radius); padding: 48px; text-align: center; box-shadow: var(--shadow-elegant); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto 24px; }
.cta-band .btn-primary { color: var(--primary-dark); }

/* FOOTER */
.site-footer { margin-top: 80px; border-top: 1px solid var(--border); background: #f1f5f9; padding: 56px 0 0; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 36px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer h4 { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--muted); font-size: .9rem; }
.footer-links a:hover { color: var(--text); }
.footer-links li { color: var(--muted); font-size: .9rem; }
.footer-bottom { padding: 20px 20px; border-top: 1px solid var(--border); text-align: center; font-size: .8rem; color: var(--muted); }

@media (max-width: 720px) {
    .header-inner { flex-wrap: wrap; }
    .main-nav { order: 3; width: 100%; justify-content: flex-start; padding-bottom: 6px; }
}
