/* Base styles and variables */
:root {
    --bg: #f3f4f6;          /* page background */
    --panel: #ffffff;       /* surfaces/cards */
    --border: #e5e7eb;      /* border color */
    --muted: #6b7280;
    --text: #111827;
    /* Palette: Slate gray */
    --brand: #374151;   /* gray-700 */
    --brand-2: #6b7280; /* gray-500 */
    --accent: #0ea5e9;  /* sky highlights */
    --accent-red: #374151; /* CTA color */
    --on-brand: #ffffff;
    --ring: rgba(55, 65, 81, 0.35);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --radius: 14px;
    --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
    --font-heading: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font: 15px/1.65 var(--font-body);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }

.section { padding: 80px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)); }
.section-head { margin-bottom: 28px; }
/* Patterned section helper */
.section--pattern { position: relative; overflow: hidden; }
.section--pattern::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-image:
    radial-gradient(color-mix(in srgb, var(--brand-2) 22%, transparent) 1px, transparent 1px),
    radial-gradient(color-mix(in srgb, var(--brand) 16%, transparent) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px; background-position: 0 0, 12px 12px; opacity: .18; }
.section--pattern > .container { position: relative; z-index: 1; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 12px; font-family: var(--font-heading); letter-spacing: -0.01em; }
h1 { font-size: clamp(1.9rem, 3.1vw, 2.7rem); font-weight: 700; }
h2 { font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); }
.lead { font-size: 1rem; color: var(--muted); }
.muted { color: var(--muted); font-size: 0.95rem; }
p { font-size: 0.96rem; }
.tiny { font-size: 0.85rem; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; padding: 8px 12px; background: #111a33; border-radius: 8px; outline: 3px solid var(--brand); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; backdrop-filter: saturate(120%) blur(6px); background: var(--panel); border-bottom: 1px solid var(--border); }
.site-header.light { backdrop-filter: none; background: var(--panel); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 700; letter-spacing: 0.2px; }
.site-header.light .brand { color: #1b1b1b; }
.brand.small { font-weight: 600; font-size: 0.95rem; }

.nav-toggle { display: none; background: transparent; border: 0; color: #fff; cursor: pointer; padding: 8px; border-radius: 8px; }
.nav-toggle:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
.nav-menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.nav-menu a { color: #2b2b2b; text-decoration: none; opacity: 0.9; }
.nav-menu a:hover { opacity: 1; }
.site-header.light .nav-menu a { color: #2b2b2b; text-transform: uppercase; font-weight: 700; letter-spacing: 0.02em; opacity: 0.8; }
.site-header.light .nav-menu a:hover { opacity: 1; }
.site-header.light .nav-menu li.active a { background: var(--accent-red); color: #fff; padding: 8px 12px; border-radius: 8px; opacity: 1; }
@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; }
    .nav-menu { position: absolute; right: 20px; top: 64px; background: var(--panel); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 12px; padding: 10px; display: none; flex-direction: column; gap: 6px; }
    .nav-menu.open { display: flex; }
}

.lang-switch { display: inline-flex; gap: 8px; border: 1px solid rgba(255,255,255,0.1); padding: 4px; border-radius: 999px; background: rgba(255,255,255,0.06); }
.lang-switch button { background: transparent; color: #fff; border: 0; padding: 6px 10px; border-radius: 999px; cursor: pointer; font-weight: 600; opacity: 0.8; }
.lang-switch button.active, .lang-switch button:hover { opacity: 1; background: rgba(255,255,255,0.12); }

/* Hero */
.hero { padding: 80px 0; }
.hero { position: relative; overflow: hidden; }
.hero-bg, .hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero-video, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 4s ease-in-out; will-change: opacity; pointer-events: none; }
.hero-video.active, .hero__video.active { opacity: 1; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1.5s ease-in-out; will-change: opacity; pointer-events: none; }
.hero__slide.active { opacity: 1; }
.hero-scrim, .hero__scrim { position: absolute; inset: 0; background:
    radial-gradient(130% 100% at 20% 45%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.50) 45%, rgba(0,0,0,0.26) 70%, rgba(0,0,0,0.10) 100%),
    linear-gradient(90deg, rgba(3,6,12,0.50) 0%, rgba(3,6,12,0.32) 40%, rgba(3,6,12,0.14) 70%, rgba(3,6,12,0.04) 100%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-copy .hero-ctas, .hero__content .hero-ctas { margin-top: 18px; display: flex; gap: 12px; flex-wrap: nowrap; }
.trust-badges, .hero__badges { display: flex; gap: 12px; padding: 0; margin: 18px 0 0; list-style: none; flex-wrap: nowrap; }
.trust-badges li, .hero__badges li { padding: 6px 10px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 10%, white); color: var(--text); font-weight: 600; border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent); }
.hero-visual, .hero__visual { display: grid; place-items: center; }
.hero-visual, .hero__visual { position: relative; }
.hero-visual img, .hero__visual img { width: 100%; height: auto; border-radius: var(--radius); border: none; box-shadow: none; }
.hero-visual::before, .hero__visual::before { content: ""; position: absolute; width: 64%; padding-bottom: 64%; border-radius: 50%; background: color-mix(in srgb, var(--brand-2) 10%, #ffffffaa); left: 8%; bottom: 6%; z-index: 0; filter: blur(0.3px); }
.hero-visual::after, .hero__visual::after { content: none; }
.hero-visual .portrait, .hero__visual .portrait { position: relative; z-index: 1; border-radius: 18px; }
@media (max-width: 700px) {
    .hero { padding: 120px 0 140px; min-height: 80vh; }
    .hero .grid-2 { align-items: center; }
    .hero .hero__visual { display: none; }
    .hero .hero__content { text-align:center; max-width: 540px; margin: 0 auto; }
    .hero .hero__content p { max-width: 28rem; margin-left: auto; margin-right: auto; }
    .hero .hero__content .hero-ctas { justify-content: center; flex-wrap: wrap; }
    .hero .hero__badges { justify-content: center; flex-wrap: wrap; }
    .hero .hero__badges li { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.25); color: #fff; }
    .hero__scrim { background: linear-gradient(180deg, rgba(3,6,12,0.65) 0%, rgba(3,6,12,0.8) 50%, rgba(3,6,12,0.92) 100%); }
}
@media (min-width: 701px) {
    .hero .hero__visual { display: grid; }
    .hero .hero__content { text-align: left; margin: 0; }
}
@media (min-width: 701px) and (max-width: 1024px) {
    .hero .grid-2 { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 28px; }
    .hero .hero__visual img { max-width: 420px; }
}

/* Improve text readability on video */
.hero .hero-copy, .hero .hero__content { color: #ffffff; position: relative; z-index: 1; }
.hero .hero-copy h1, .hero .hero-copy p, .hero .hero-copy a, .hero .hero__content h1, .hero .hero__content p, .hero .hero__content a { color: #ffffff; }
.hero .hero-copy h1, .hero .hero__content h1 { text-shadow: 0 1px 2px rgba(0,0,0,0.7), 0 8px 28px rgba(0,0,0,0.45); }
.hero .hero-copy p, .hero .hero__content p { text-shadow: 0 1px 2px rgba(0,0,0,0.7); }
.hero .btn.btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.55); }
.hero .trust-badges li { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: #ffffff; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--panel); border: 1px solid var(--border); padding: 18px; border-radius: var(--radius); box-shadow: var(--shadow); }
.card p { color: var(--muted); margin: 6px 0 0; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }

/* About */
.bullets { margin: 0; padding-left: 18px; }
.bullets li { margin: 6px 0; }

/* Projects */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1100px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .project-grid { grid-template-columns: 1fr; } }
.project { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.project img { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--border); }
.project h3 { margin: 10px 0 4px; }

/* Contact */
.contact .contact-list { list-style: none; padding: 0; margin: 14px 0 0; }
.contact .contact-list li + li { margin-top: 6px; }
.contact-form { background: var(--panel); border: 1px solid var(--border); padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow); }
.field { display: grid; gap: 8px; margin-bottom: 12px; }
.field.inline { display: flex; align-items: center; gap: 8px; }
label { font-weight: 600; }
input, textarea { width: 100%; background: #ffffff; color: var(--text); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font-size: 1rem; }
input:focus, textarea:focus { outline: 0; box-shadow: 0 0 0 4px var(--ring); border-color: var(--brand-2); }

/* Footer */
.site-footer {
    margin-top: 60px;
    background: color-mix(in srgb, #ffffff 85%, var(--brand) 15%);
    border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
    color: var(--text);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    padding: 64px 0 32px;
}
.footer-brand p { color: color-mix(in srgb, var(--text) 60%, #6b7280); margin: 12px 0 20px; max-width: 320px; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}
.footer-logo img { height: 54px; width: auto; display: block; }
.footer-cta {
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    background: var(--brand);
}
.footer-col { min-width: 200px; }
.footer-heading {
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--text) 80%, #000);
    margin-bottom: 12px;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-links.stacked { flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links a {
    color: color-mix(in srgb, var(--text) 70%, #4c5b78);
    text-decoration: none;
    font-weight: 500;
}
.footer-links a:hover { color: #ffffff; }
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: color-mix(in srgb, var(--text) 70%, #6b7280);
    font-size: 0.95rem;
}
.footer-contact i { margin-right: 8px; color: var(--brand); }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: #ffffff; }
.footer-meta {
    border-top: 1px solid color-mix(in srgb, #ffffff 22%, transparent);
    padding: 22px 0 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.site-footer .container { padding-left: 32px; padding-right: 32px; }
@media (max-width: 700px) {
    .site-footer { margin-top: 40px; }
    .footer-grid { padding: 48px 0 24px; gap: 28px; }
    .site-footer .container { padding-left: 20px; padding-right: 20px; }
    .footer-meta { padding: 18px 0 30px; }
}
.site-footer .btn.footer-cta { background: var(--brand); color: #fff; border-color: color-mix(in srgb, var(--brand) 70%, transparent); }
.site-footer .btn.footer-cta:hover { opacity: 0.9; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: 12px; text-decoration: none; color: var(--on-brand); background: var(--brand); border: 1px solid color-mix(in srgb, var(--brand) 30%, #0000); font-weight: 800; letter-spacing: 0.2px; box-shadow: var(--shadow); }
.btn:hover { filter: brightness(1.04); transform: translateY(-1px); transition: transform 120ms ease, filter 120ms ease; }
.btn:active { transform: translateY(0); }
.btn.btn-ghost { color: var(--accent-red); background: transparent; border: 1px solid color-mix(in srgb, var(--accent-red) 40%, transparent); }
.btn.btn-sm { padding: 8px 12px; font-weight: 700; }

/* Links */
a { color: var(--brand-2); }
a:hover { filter: brightness(1.1); }

/* Utilities */
.hidden { display: none !important; }

/* Rooms background slideshow */
.rooms { position: relative; overflow: hidden; }
.rooms.section { padding: 120px 0; }
@media (max-width: 700px) {
    .rooms.section { padding: 96px 0; }
}
.rooms__bg { position: absolute; inset: 0; z-index: 0; }
.rooms__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s ease; }
.rooms__slide.is-active { opacity: 1; }
.rooms__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.5) 38%, rgba(0,0,0,0.25) 68%, rgba(0,0,0,0.10) 100%); }
.rooms__container { position: relative; z-index: 1; }
.rooms .section-head h2, .rooms .section-head p, .rooms .card h3, .rooms .card p { color: #fff; }
.rooms .card { background: rgba(17, 24, 39, 0.72); border-color: rgba(255,255,255,0.22); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: 0 14px 30px rgba(0,0,0,0.25); padding: 20px; }
.rooms .card h3 { color: #fff; }
.rooms .card p { color: rgba(255,255,255,0.92); }
.rooms .card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.32); }
.rooms__entries { display: grid; gap: 18px; }
.rooms__entry { color: #fff; background: rgba(17,24,39,0.55); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 16px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.rooms__entry h3 { margin-top: 0; color: #fff; }
.rooms__entry ul { margin: 8px 0 8px 18px; }
.rooms__entry li { margin: 2px 0; }
.rooms__details .accordion-item { background: rgba(17,24,39,0.6); border: 1px solid rgba(255,255,255,0.18); color: #fff; }
.rooms__details .accordion-button { background: rgba(255,255,255,0.06); color: #fff; }
.rooms__details .accordion-button:not(.collapsed) { background: rgba(255,255,255,0.1); color: #fff; box-shadow: inset 0 -1px 0 rgba(255,255,255,0.15); }
.rooms__details .accordion-body { color: rgba(255,255,255,0.92); }
.rooms__details strong { color: #fff; }
.rooms__details h3, .rooms__details .h4 { color: #ffffff; }

/* About */
.about__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; align-items: start; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }
.about__content p { color: var(--muted); }
.about__chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.about__chip { padding: 8px 12px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 10%, white); border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent); font-weight: 600; }
.about__card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.about__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.about__list li { position: relative; padding-left: 22px; color: var(--muted); }
.about__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-2); font-weight: 800; }

/* Pricing */
.pricing { position: relative; }
.pricing::before { content: ""; position: absolute; inset: 0; pointer-events: none; background:
    radial-gradient(1200px 420px at 10% -10%, rgba(16,24,40,0.06), transparent 60%),
    radial-gradient(900px 320px at 95% 120%, rgba(16,24,40,0.07), transparent 60%);
    z-index: 0;
}
.pricing__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1100px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .pricing__grid { grid-template-columns: 1fr; } }
.pricing__card { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.06); display: grid; gap: 12px; align-content: start; position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pricing__card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); opacity: .65; }
.pricing__card:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(0,0,0,0.12); border-color: color-mix(in srgb, var(--brand) 30%, var(--border)); }
.pricing__header { display: grid; gap: 6px; }
.pricing__title { font-family: var(--font-heading); font-size: 1.2rem; margin: 0; letter-spacing: .2px; }
.pricing__price { display: flex; align-items: baseline; gap: 6px; }
.pricing__amount { font-weight: 800; font-size: 1.6rem; letter-spacing: -0.01em; }
.pricing__unit { color: var(--muted); font-size: 0.95rem; }
.pricing__list { list-style: none; padding: 0; margin: 4px 0 10px; display: grid; gap: 8px; }
.pricing__list li { display: flex; align-items: center; gap: 8px; color: var(--muted); position: relative; padding-left: 22px; }
.pricing__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-2); font-weight: 800; }
.pricing__list i { color: var(--brand-2); }
.pricing__card--primary { background: var(--brand); color: var(--on-brand); border-color: color-mix(in srgb, var(--brand) 35%, var(--border)); }
.pricing__card--primary .pricing__title,
.pricing__card--primary .pricing__amount,
.pricing__card--primary .pricing__unit,
.pricing__card--primary .pricing__list li { color: var(--on-brand); }
.pricing__card--primary .pricing__list i { color: var(--on-brand); }
.pricing__card--warn { background: #0f172a; color: #e5e7eb; border-color: #1f2937; }
.pricing__card--warn .pricing__title { color: #e5e7eb; }
.pricing__card--warn .btn { color: #0f172a; background: #e5e7eb; border-color: #e5e7eb; }
.pricing__card--warn .pricing__ribbon { position: absolute; top: 12px; right: -38px; background: #ef4444; color: #fff; font-weight: 800; transform: rotate(45deg); padding: 4px 48px; box-shadow: 0 6px 14px rgba(0,0,0,.25); }

/* References */
.refs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1100px) { .refs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .refs__grid { grid-template-columns: 1fr; } }
.refs__card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 16px; box-shadow: 0 12px 24px rgba(0,0,0,0.05); position: relative; }
.refs__head { margin-bottom: 6px; }
.refs__name { font-weight: 800; }
.refs__date { color: var(--muted); font-size: 0.9rem; }
.refs__text { color: var(--text); }

/* Legal */
.legal h1 { margin-bottom: 10px; }
.legal h2 { margin-top: 22px; }
.legal ol { padding-left: 22px; }
.legal li { margin: 6px 0; }
.pricing__badge { display: inline-block; padding: 4px 8px; background: rgba(255,255,255,0.22); color: var(--on-brand); border-radius: 999px; font-weight: 700; width: fit-content; font-size: 0.8rem; }
.pricing__note { margin-top: 8px; }

/* Bootstrap integrations and accents */
.site-header.light .navbar .nav-link { color: #2b2b2b; opacity: 0.9; font-size: 0.92rem; padding: 0.4rem 0.55rem; }
.site-header.light .navbar .nav-link.active, .site-header.light .navbar .nav-link:hover { opacity: 1; }
.site-header.light .btn.btn-danger { background-color: var(--accent-red); border-color: var(--accent-red); }
.site-header .navbar-brand { font-size: 1rem; }
.site-header .navbar-brand img.logo { height: 56px; width: auto; display: block; }
.site-header .navbar { padding-top: 16px; padding-bottom: 16px; }
@media (max-width: 991.98px) {
    .site-header.light .navbar .nav-link { font-size: 0.85rem; padding: 0.35rem 0.5rem; }
}
.site-header .dropdown-menu { font-size: 0.95rem; }
@media (max-width: 520px) {
    .site-header .navbar-brand img.logo { height: 48px; }
}
.site-header .navbar { padding-top: 12px; padding-bottom: 12px; }

/* Smaller, neat nav CTA */
.site-header .nav-cta {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    background: var(--brand);
    color: var(--on-brand);
    border: 1px solid color-mix(in srgb, var(--brand) 30%, #0000);
    text-transform: none !important;
    letter-spacing: 0;
    box-shadow: none;
}
.site-header .nav-cta:hover { opacity: 0.95; filter: none; transform: none; }


/* Feature cards: clean, icon-led */
.feature-card, .features__card { position: relative; background: var(--panel); border: 1px solid var(--border); transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.feature-card:hover, .features__card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); border-color: color-mix(in srgb, var(--brand) 35%, var(--border)); }
.feature-card .feat-icon, .features__card .features__icon { width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--brand) 15%, white); color: var(--brand); font-size: 20px; }
.feature-card .h5, .features__title { font-family: var(--font-heading); }
.feature-card::before, .features__card::before { content:""; position:absolute; inset:0 auto 0 0; width:3px; background: color-mix(in srgb, var(--brand) 60%, transparent); border-top-left-radius: 10px; border-bottom-left-radius: 10px; transition: width 160ms ease; }
.feature-card:hover::before, .features__card:hover::before { width:6px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-revealed { opacity: 1; transform: none; }
