:root {
    --msy-blue: #1e9be9;
    --msy-blue-dark: #1676b5;
    --msy-orange: #f08a24;
    --msy-orange-dark: #c76716;
    --msy-brown: #5a3418;
    --msy-cream: #fff5df;
    --msy-ink: #252525;
    --msy-muted: #667085;
    --msy-border: #e9edf3;
    --msy-white: #ffffff;
    --msy-shadow: 0 16px 45px rgba(31, 52, 82, 0.14);
    --msy-radius: 18px;
    --msy-header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: var(--msy-header-height); }
body {
    margin: 0;
    color: var(--msy-ink);
    background: var(--msy-white);
    font-family: Lato, Raleway, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; }
a { color: var(--msy-blue-dark); text-decoration: none; }
a:hover, a:focus { color: var(--msy-orange-dark); }
button, input, textarea { font: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.screen-reader-text:focus {
    background: var(--msy-white);
    clip: auto;
    height: auto;
    left: 10px;
    padding: 12px 16px;
    top: 10px;
    width: auto;
    z-index: 100000;
    border-radius: 8px;
    box-shadow: var(--msy-shadow);
}

.top-bar {
    background: linear-gradient(90deg, var(--msy-brown), #7c4d24);
    color: var(--msy-cream);
    font-size: 14px;
}
.top-bar__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.top-bar a { color: var(--msy-cream); font-weight: 700; }
.top-bar__mail { display: inline-flex; align-items: center; gap: 8px; }
.top-bar__note { opacity: 0.92; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 18px rgba(31, 52, 82, 0.08);
    backdrop-filter: blur(12px);
}
.main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}
.custom-logo-link { display: flex; align-items: center; max-width: 250px; }
.custom-logo { display: block; width: min(250px, 55vw); max-height: 74px; object-fit: contain; }
.main-navigation { margin-left: auto; }
.primary-menu-wrap { display: flex; align-items: center; gap: 18px; }
.menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    color: #111827;
    font-weight: 800;
    font-size: 14px;
    border-radius: 999px;
}
.menu a:hover, .menu a:focus { background: var(--msy-cream); color: var(--msy-brown); }
.header-cta, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 0;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.header-cta, .button-primary {
    color: var(--msy-white);
    background: linear-gradient(135deg, var(--msy-orange), var(--msy-orange-dark));
    box-shadow: 0 12px 26px rgba(240, 138, 36, 0.26);
}
.header-cta:hover, .header-cta:focus, .button-primary:hover, .button-primary:focus {
    color: var(--msy-white);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(240, 138, 36, 0.32);
}
.button-light {
    background: rgba(255, 255, 255, 0.94);
    color: var(--msy-brown);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--msy-border);
    border-radius: 14px;
    background: var(--msy-white);
    color: var(--msy-brown);
    position: relative;
}
.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease, opacity 160ms ease;
}
.menu-toggle__line { top: 22px; }
.menu-toggle__line::before { top: -7px; left: 0; right: 0; }
.menu-toggle__line::after { top: 7px; left: 0; right: 0; }
body.menu-open .menu-toggle__line { background: transparent; }
body.menu-open .menu-toggle__line::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle__line::after { transform: translateY(-7px) rotate(-45deg); }

.section { padding: clamp(56px, 8vw, 92px) 0; }
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading h2, .hero-card h1 {
    margin: 0;
    color: #3d3329;
    font-family: Montserrat, Lato, Arial, sans-serif;
    letter-spacing: -0.02em;
}
.section-heading h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; }
.title-rule {
    display: block;
    width: 86px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--msy-orange), var(--msy-blue));
}
.section-heading--left { text-align: left; }
.section-heading--left .title-rule { margin-left: 0; }
.section-heading--light h2 { color: var(--msy-white); }

.hero-section {
    min-height: 570px;
    display: flex;
    align-items: center;
    background-color: var(--msy-blue);
    background-image: var(--hero-bg);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    display: none;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 40px;
    align-items: center;
    padding: 74px 0;
}
.hero-card {
    color: var(--msy-white);
    padding: clamp(28px, 5vw, 46px);
    border-radius: 28px;
    background: #5a3418;
    box-shadow: var(--msy-shadow);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-card h1 { color: var(--msy-white); font-size: clamp(25px, 3.6vw, 42px); line-height: 1.08; margin-bottom: 16px; }
.hero-card p { margin: 0 0 16px; font-size: 18px; }
.hero-icon { color: var(--msy-cream); margin-bottom: 12px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.about-section { background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%); }
.about-grid {
    display: grid;
    grid-template-columns: 180px 1fr 320px;
    gap: 34px;
    align-items: start;
}
.about-photos { display: grid; gap: 16px; }
.stacked-photo, .overview-thumb {
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(31, 52, 82, 0.13);
    background: var(--msy-white);
}
.about-copy { font-size: 17px; }
.checked-list { list-style: none; margin: 12px 0 22px; padding: 0; display: grid; gap: 8px; }
.checked-list li { position: relative; padding-left: 30px; }
.checked-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--msy-white);
    background: var(--msy-blue);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}
.about-panel, .overview-side, .contact-form-card, .contact-details {
    background: var(--msy-white);
    border: 1px solid var(--msy-border);
    border-radius: var(--msy-radius);
    box-shadow: var(--msy-shadow);
}
.about-panel { padding: 26px; border-top: 5px solid var(--msy-orange); }
.about-panel h3, .overview-side h3, .overview-main h3 { margin: 0 0 8px; color: var(--msy-brown); }
.about-panel p { margin-top: 0; }
.payment-strip {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 44px;
    padding: 20px;
    border-radius: 24px;
    background: var(--msy-white);
    border: 1px solid var(--msy-border);
    box-shadow: 0 10px 30px rgba(31, 52, 82, 0.08);
}
.paypal-logo { display: block; max-width: 228px; }
.buy-card {
    display: grid;
    gap: 4px;
    justify-items: center;
    padding: 18px;
    color: var(--msy-white);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--msy-blue), var(--msy-blue-dark));
    box-shadow: 0 12px 26px rgba(30, 155, 233, 0.22);
}
.buy-card--alt { background: linear-gradient(135deg, var(--msy-orange), var(--msy-orange-dark)); }
.buy-card span { font-weight: 900; font-size: 22px; }
.buy-card strong { font-size: 14px; letter-spacing: 0.02em; }
.buy-card:hover, .buy-card:focus { color: var(--msy-white); transform: translateY(-2px); }

.video-section { background: #fbfbfb; border-block: 1px solid #f1f1f1; }
.video-frame {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    background: var(--msy-white);
    border-radius: 24px;
    box-shadow: var(--msy-shadow);
}
.video-frame video { display: block; width: 100%; border-radius: 18px; background: #111; }

.gallery-section { background: var(--msy-white); }
.secure-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #eef2f7;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 22px rgba(31, 52, 82, 0.08);
}
.gallery-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 220ms ease; }
.gallery-zoom {
    position: absolute;
    inset: auto 12px 12px auto;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--msy-white);
    background: rgba(90, 52, 24, 0.86);
    font-size: 13px;
    font-weight: 900;
}
.gallery-item:hover .gallery-thumb, .gallery-item:focus .gallery-thumb { transform: scale(1.05); }

.process-section {
    padding: clamp(50px, 8vw, 82px) 0;
    color: var(--msy-white);
    background: linear-gradient(90deg, rgba(19, 119, 191, 0.88), rgba(90, 52, 24, 0.66)), var(--process-bg);
    background-size: cover;
    background-position: center;
}
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-card {
    min-height: 220px;
    padding: 30px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(6px);
}
.process-icon {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}
.process-card h3 { margin: 0 0 10px; color: var(--msy-white); }
.process-card p { margin: 0; }

.overview-section { background: #fffaf1; }
.overview-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.overview-media-row { display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: start; margin: 24px 0; }
.overview-side { padding: 28px; }
.overview-side blockquote {
    margin: 22px 0 0;
    padding: 22px;
    border-left: 5px solid var(--msy-orange);
    background: var(--msy-cream);
    border-radius: 14px;
}
.overview-side blockquote p { margin: 0 0 10px; }
.overview-side cite { color: var(--msy-brown); font-weight: 900; }

.contact-section {
    color: var(--msy-white);
    background: linear-gradient(90deg, rgba(30, 155, 233, 0.86), rgba(90, 52, 24, 0.7)), var(--contact-bg);
    background-size: cover;
    background-position: center;
}
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.contact-form-card, .contact-details {
    padding: clamp(24px, 4vw, 38px);
    background: rgba(255, 255, 255, 0.94);
    color: var(--msy-ink);
}
.contact-form-card .section-heading--light h2 { color: var(--msy-brown); }
.msy-contact-form,
.contact-form-card .wpcf7-form {
    display: grid;
    gap: 14px;
}
.contact-form-card .wpcf7-form p {
    margin: 0;
}
.msy-contact-form label,
.contact-form-card .wpcf7-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
    color: #384252;
}
.msy-contact-form input,
.msy-contact-form textarea,
.contact-form-card .wpcf7-form input[type="text"],
.contact-form-card .wpcf7-form input[type="email"],
.contact-form-card .wpcf7-form input[type="tel"],
.contact-form-card .wpcf7-form input[type="url"],
.contact-form-card .wpcf7-form input[type="number"],
.contact-form-card .wpcf7-form select,
.contact-form-card .wpcf7-form textarea {
    width: 100%;
    border: 1px solid var(--msy-border);
    border-radius: 14px;
    padding: 13px 15px;
    background: #ffffff;
    color: var(--msy-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: border-color 140ms ease, box-shadow 140ms ease;
}
.contact-form-card .wpcf7-form textarea,
.msy-contact-form textarea {
    min-height: 132px;
    resize: vertical;
}
.msy-contact-form input:focus,
.msy-contact-form textarea:focus,
.contact-form-card .wpcf7-form input:focus,
.contact-form-card .wpcf7-form select:focus,
.contact-form-card .wpcf7-form textarea:focus {
    outline: 3px solid rgba(30, 155, 233, 0.18);
    border-color: var(--msy-blue);
    box-shadow: 0 0 0 1px rgba(30, 155, 233, 0.12);
}
.contact-form-card .wpcf7-form .wpcf7-submit {
    width: auto;
    min-width: 150px;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    background: linear-gradient(135deg, var(--msy-orange), var(--msy-orange-dark));
    color: var(--msy-white);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(199, 103, 22, 0.24);
}
.contact-form-card .wpcf7-form .wpcf7-submit:hover,
.contact-form-card .wpcf7-form .wpcf7-submit:focus {
    background: linear-gradient(135deg, var(--msy-blue), var(--msy-blue-dark));
}
.contact-form-card .wpcf7-spinner {
    margin: 0 0 0 10px;
}
.contact-form-card .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #b42318;
    font-size: 14px;
    font-weight: 800;
}
.contact-form-card .wpcf7 form .wpcf7-response-output {
    margin: 4px 0 0;
    padding: 12px 14px;
    border: 1px solid var(--msy-border);
    border-radius: 12px;
    background: #fff7ed;
    color: var(--msy-brown);
    font-weight: 800;
}
.field-trap { display: none; }
.form-notice {
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #ecfdf5;
    color: #065f46;
    font-weight: 800;
}
.form-notice--missing, .form-notice--security, .form-notice--mail_failed { background: #fff1f2; color: #9f1239; }
.contact-details h3 { margin-top: 0; color: var(--msy-brown); }
.contact-details a { font-weight: 900; }

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 28px 0;
    text-align: center;
}
.site-footer a { color: var(--msy-cream); font-weight: 900; }
.site-footer a:hover, .site-footer a:focus { color: var(--msy-orange); }
.footer-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; list-style: none; margin: 0 0 14px; padding: 0; }
.footer-menu a { color: #e5e7eb; }
.site-info { font-size: 14px; }

.lightbox[hidden] { display: none; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
}
.lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    display: grid;
    place-items: center;
}
.lightbox__image {
    max-height: min(82vh, 760px);
    width: auto;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}
.lightbox__close, .lightbox__nav {
    position: absolute;
    border: 0;
    color: var(--msy-white);
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    cursor: pointer;
}
.lightbox__close { top: -54px; right: 0; width: 44px; height: 44px; font-size: 28px; }
.lightbox__nav { top: 50%; width: 48px; height: 48px; transform: translateY(-50%); font-size: 44px; line-height: 1; }
.lightbox__nav--prev { left: -64px; }
.lightbox__nav--next { right: -64px; }
.lightbox__close:hover, .lightbox__nav:hover, .lightbox__close:focus, .lightbox__nav:focus { background: var(--msy-orange); }

@media (max-width: 1020px) {
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .primary-menu-wrap {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 12px);
        display: none;
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
        background: var(--msy-white);
        border: 1px solid var(--msy-border);
        border-radius: 20px;
        box-shadow: var(--msy-shadow);
    }
    body.menu-open .primary-menu-wrap { display: flex; }
    .menu { display: grid; gap: 4px; }
    .menu a { width: 100%; justify-content: center; }
    .header-cta { width: 100%; }
    .about-grid, .overview-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 360px; }
    .payment-strip { grid-template-columns: 1fr; justify-items: center; }
    .process-grid { grid-template-columns: 1fr; }
    .secure-gallery { grid-template-columns: repeat(2, 1fr); }
    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }
}

@media (max-width: 720px) {
    :root { --msy-header-height: 118px; }
    .top-bar__inner { flex-direction: column; justify-content: center; padding: 9px 0; gap: 4px; text-align: center; }
    .main-header__inner { min-height: 76px; }
    .hero-grid { grid-template-columns: 1fr; padding: 46px 0; }
    .hero-media { display: none; }
    .hero-card { border-radius: 22px; }
    .hero-card p { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .button { width: 100%; }
    .about-photos { grid-template-columns: 1fr 1fr; }
    .overview-media-row { grid-template-columns: 1fr; }
    .secure-gallery { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 4 / 3; }
    .section { padding: 48px 0; }
    .contact-form-card, .contact-details, .about-panel, .overview-side { padding: 22px; }
    .lightbox { padding: 16px; }
    .lightbox__close { top: -50px; right: 0; }
    .lightbox__nav { width: 42px; height: 42px; font-size: 38px; }
}
