.mcp-home {
    --mcp-green: #123c2c;
    --mcp-green-light: #1f5c43;
    --mcp-gold: #c7a252;
    --mcp-cream: #faf8f4;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--mcp-cream);
}
.mcp-home * { box-sizing: border-box; }

/* Hero */
.mcp-home-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
}
.mcp-home-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mcp-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding-bottom: 56px;
    color: #fff;
}
.mcp-home-hero-overlay span {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mcp-gold);
    margin-bottom: 14px;
    font-weight: 700;
}
.mcp-home-hero-overlay h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 16px;
    text-transform: uppercase;
    max-width: 780px;
    line-height: 1.25;
}
.mcp-home-hero-underline {
    width: 60px;
    height: 3px;
    background: var(--mcp-gold);
    margin-bottom: 26px;
}
.mcp-home-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.mcp-home-btn-primary,
.mcp-home-btn-ghost {
    display: inline-block;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.mcp-home-btn-primary {
    background: var(--mcp-gold);
    color: var(--mcp-green);
}
.mcp-home-btn-primary:hover {
    background: #d8b569;
}
.mcp-home-btn-ghost {
    border: 1px solid #fff;
    color: #fff;
}
.mcp-home-btn-ghost:hover {
    background: rgba(255,255,255,0.15);
}

/* Intro */
.mcp-home-intro {
    text-align: center;
    padding: 60px 4vw 10px;
}
.mcp-home-intro h2 {
    color: var(--mcp-green);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.mcp-home-intro p {
    color: #6b6558;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cards */
.mcp-home-cards {
    padding: 40px 4vw 20px;
}
.mcp-home-cards-grid {
    width: min(94%, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1100px) {
    .mcp-home-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .mcp-home-cards-grid { grid-template-columns: 1fr; }
}
.mcp-home-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(18,60,44,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.mcp-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(18,60,44,0.14);
}
.mcp-home-card-photo {
    height: 170px;
    overflow: hidden;
}
.mcp-home-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.mcp-home-card:hover .mcp-home-card-photo img {
    transform: scale(1.06);
}
.mcp-home-card-map {
    display: block;
}
.mcp-home-card-map #map-home {
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.mcp-home-card-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mcp-home-card-body h3 {
    color: var(--mcp-green);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin: 0 0 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mcp-gold);
}
.mcp-home-card-body p {
    color: #4a463d;
    font-size: 14px;
    line-height: 1.75;
    margin: 12px 0 0;
    flex: 1;
}
.mcp-home-card-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--mcp-green);
    font-weight: 700;
    font-size: 13px;
    align-self: flex-start;
}
.mcp-home-card:hover .mcp-home-card-link {
    color: var(--mcp-green-light);
}

/* Highlight band (restaurant teaser) */
.mcp-home-band {
    background: #eef3ef;
    padding: 64px 4vw;
    border-top: 1px solid rgba(18,60,44,0.08);
    margin-top: 24px;
}
.mcp-home-band-inner {
    width: min(94%, 1300px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .mcp-home-band-inner { grid-template-columns: 1fr; }
}
.mcp-home-band-photo {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18,60,44,0.14);
}
.mcp-home-band-photo img {
    width: 100%;
    display: block;
}
.mcp-home-band-text h2 {
    color: var(--mcp-green);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 8px;
    line-height: 1.35;
}
.mcp-home-band-underline {
    width: 50px;
    height: 3px;
    background: var(--mcp-gold);
    margin-bottom: 22px;
}
.mcp-home-band-text p {
    color: #4a463d;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 22px;
}
.mcp-home-band-text a {
    display: inline-block;
    background: var(--mcp-green);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 30px;
    transition: background 0.25s ease;
}
.mcp-home-band-text a:hover {
    background: var(--mcp-green-light);
}

/* Services band (reuses services.html markup/classes via services-modern.css) */
div.mcp-home-services-band {
    background: #f2ede0;
    padding: 60px 4vw 64px;
    margin-top: 24px;
}
.mcp-home-services-band .mcp-services-categories { padding: 0; }
.mcp-home-services-band-head {
    text-align: center;
    margin-bottom: 8px;
}
.mcp-home-services-band-head h2 {
    color: var(--mcp-green);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.mcp-home-services-band-underline {
    width: 50px;
    height: 3px;
    background: var(--mcp-gold);
    margin: 0 auto 8px;
}

/* Partner strip */
.mcp-home-partners {
    text-align: center;
    padding: 56px 4vw 70px;
}
.mcp-home-partners p {
    color: var(--mcp-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 24px;
}
.mcp-home-partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.mcp-home-partners-logos img {
    max-height: 56px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}
.mcp-home-partners-logos img:hover {
    opacity: 1;
}
