*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #263238;
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    hyphens: auto;
}

a {
    color: #1A237E;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-pad {
    padding: 3.5rem 0;
}

@media (min-width: 768px) {
    .section-pad {
        padding: 4.5rem 0;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 35, 126, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.25rem;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1A237E;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.logo-mark {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, #C5A059, #1A237E);
    color: #ffffff;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.3rem;
}

.logo-text {
    letter-spacing: 0.08em;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.9rem;
}

.nav-link {
    position: relative;
    color: #455A64;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    font-size: 0.76rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #C5A059, #1A237E);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    border: none;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.3rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
     width: 1.8rem;
     height: 2px;
    background: #1A237E;
     transition: transform 0.25s ease, opacity 0.25s ease;
     transform-origin: center;
}

.nav-toggle.open span:first-child {
     transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:last-child {
     transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }
}

.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(26, 35, 126, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    padding: 1rem 1.4rem;
    border-radius: 0.75rem;
    z-index: 60;
}

@media (min-width: 768px) {
    .main-nav.open {
        position: static;
        flex-direction: row;
        border: none;
        box-shadow: none;
        padding: 0;
    }
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #102027;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.13), transparent 60%),
        radial-gradient(circle at bottom right, rgba(26, 35, 126, 0.18), transparent 55%);
    z-index: -2;
}

.hero-thread {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.hero-thread .needle {
    position: absolute;
    top: 15%;
    left: -10%;
    width: 7rem;
    height: 0.12rem;
    background: linear-gradient(90deg, #C5A059, #ffffff);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(197, 160, 89, 0.6);
    transform: translate3d(0, 0, 0);
}

.hero-thread .thread {
    position: absolute;
    top: 40%;
    left: -20%;
    width: 150%;
    height: 220%;
    background-image: radial-gradient(circle at 0 0, transparent 0, transparent 48%, rgba(197, 160, 89, 0.4) 50%, transparent 52%), radial-gradient(circle at 20% 40%, transparent 0, transparent 48%, rgba(26, 35, 126, 0.4) 50%, transparent 52%);
    background-size: 280px 280px;
    opacity: 0.4;
    transform: translate3d(0, 0, 0);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr);
     gap: 1.8rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
        gap: 4rem;
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

.hero-copy h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 2.1rem;
    line-height: 1.1;
    margin: 0.3rem 0 1rem;
    color: #111827;
}

@media (min-width: 768px) {
    .hero-copy h1 {
        font-size: 2.6rem;
    }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 600;
}

.lead {
    font-size: 1rem;
    max-width: 32rem;
    color: #4b5563;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.primary-btn {
    background: linear-gradient(120deg, #1A237E, #283593);
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(26, 35, 126, 0.33);
}

.primary-btn:hover {
    background: linear-gradient(120deg, #11175a, #1A237E);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(26, 35, 126, 0.4);
    text-decoration: none;
}

.ghost-btn {
    border-color: rgba(197, 160, 89, 0.65);
    color: #1A237E;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.ghost-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid #C5A059;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.ghost-btn:hover::before {
    transform: scaleX(1);
}

.ghost-btn:hover {
    text-decoration: none;
}

.text-btn {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.7);
    background: none;
    box-shadow: none;
    color: #1A237E;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    font-size: 0.86rem;
    color: #6b7280;
}

.hero-meta span {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    font-size: 0.7rem;
    color: #9ca3af;
}

.hero-visual {
    display: flex;
    align-items: center;
     justify-content: flex-end;
}

.hero-card {
    position: relative;
     border-radius: 1.4rem;
    overflow: hidden;
     box-shadow: 0 20px 55px rgba(15, 23, 42, 0.35);
     background: radial-gradient(circle at 20% 0, rgba(197, 160, 89, 0.18), #020617);
     max-width: 380px;
     border: 1px solid rgba(15, 23, 42, 0.75);
}

.hero-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
     filter: saturate(1.02) contrast(1.03);
}

.hero-card-overlay {
     padding: 1.1rem 1.3rem 1.35rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: #e5e7eb;
}

.hero-card-overlay p {
    font-size: 0.88rem;
    margin: 0 0 0.9rem;
}

.hero-stat {
    font-size: 0.8rem;
    display: grid;
    gap: 0.2rem;
    color: #f9fafb;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    font-size: 0.7rem;
    color: #d1d5db;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-note {
    color: #e5e7eb;
    opacity: 0.85;
}

.ribbon {
    border-top: 1px solid rgba(26, 35, 126, 0.05);
    border-bottom: 1px solid rgba(26, 35, 126, 0.05);
    background: linear-gradient(90deg, rgba(26, 35, 126, 0.02), rgba(197, 160, 89, 0.05));
}

.ribbon-inner {
    text-align: center;
    font-size: 0.9rem;
    color: #4b5563;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 2.4rem;
    text-align: left;
}

.section-header h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.7rem;
    margin: 0 0 0.7rem;
    color: #111827;
}

.section-header p {
    margin: 0;
    color: #4b5563;
}

.services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.7rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-card {
    border-radius: 1.3rem;
    padding: 1.6rem 1.5rem 1.7rem;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.service-card h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
    color: #111827;
}

.service-card p {
    font-size: 0.95rem;
    color: #4b5563;
}

.service-card ul {
    margin: 0.7rem 0 1rem;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.service-card li {
    margin-bottom: 0.2rem;
}

.text-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: #1A237E;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: none;
}

.process {
    background-color: #f9fafb;
}

.process-timeline {
    position: relative;
    display: grid;
    gap: 1.8rem;
}

.process-line {
    position: absolute;
    top: 0.7rem;
    bottom: 0.7rem;
    left: 0.6rem;
    width: 1px;
    background-image: linear-gradient(to bottom, rgba(26, 35, 126, 0.5) 20%, rgba(197, 160, 89, 0.3) 60%, rgba(26, 35, 126, 0.1));
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.1rem;
    padding-left: 0.3rem;
}

.step-number {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(26, 35, 126, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1A237E;
    z-index: 1;
}

.step-body h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    color: #111827;
}

.step-body p {
    margin: 0;
    font-size: 0.92rem;
    color: #4b5563;
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2.4rem;
        row-gap: 2.2rem;
    }

    .process-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .process-step {
        padding-left: 0;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.8rem;
    align-items: center;
}

@media (min-width: 900px) {
    .feature-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

.feature-copy h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.7rem;
}

.feature-copy p {
    margin: 0 0 0.8rem;
    color: #4b5563;
}

.feature-list {
    display: grid;
    gap: 1.3rem;
    margin-top: 1.1rem;
    margin-bottom: 1.4rem;
}

.feature-list h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    color: #111827;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stitch-figure {
    position: relative;
    border-radius: 1.7rem;
    padding: 2.4rem 1.9rem;
    background: radial-gradient(circle at 20% 0, rgba(197, 160, 89, 0.15), transparent 60%), radial-gradient(circle at 100% 120%, rgba(26, 35, 126, 0.7), #020617);
    color: #e5e7eb;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.5);
    overflow: hidden;
}

.stitch-svg {
    width: 100%;
    max-width: 220px;
    height: auto;
}

.stitch-path {
    fill: none;
    stroke: rgba(250, 250, 250, 0.82);
    stroke-width: 2;
    stroke-dasharray: 6 7;
    stroke-linecap: round;
}

.stitch-caption {
    margin-top: 1.4rem;
    max-width: 15rem;
    font-size: 0.9rem;
}

.cta-band {
    background: #020617;
    color: #e5e7eb;
}

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 1.8rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }
}

.cta-grid h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1.7rem;
}

.cta-grid p {
    margin: 0;
    color: #cbd5f5;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
}

.cta-details {
    font-size: 0.9rem;
}

.cta-details span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.2rem;
}

.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 2.6rem 0 2.2rem;
    margin-top: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 17rem;
}

.footer-column h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d1d5db;
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.footer-column li {
    margin-bottom: 0.35rem;
}

.footer-column a {
    color: #e5e7eb;
}

.footer-meta p {
    font-size: 0.86rem;
}

.copyright {
    margin-top: 0.8rem;
    color: #6b7280;
}

.simple-footer {
    margin-top: 0;
}

.page-hero {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.06), rgba(197, 160, 89, 0.18));
    border-bottom: 1px solid rgba(26, 35, 126, 0.08);
}

.page-hero h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 2rem;
    margin-top: 0.3rem;
    margin-bottom: 0.7rem;
    color: #111827;
}

.page-hero .lead {
    max-width: 32rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 1.8rem;
    align-items: flex-start;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    }
}

.pricing-table {
    border-radius: 1.3rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr 0.7fr;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
}

.pricing-head {
    background: rgba(15, 23, 42, 0.96);
    color: #f9fafb;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.pricing-row:nth-child(even):not(.pricing-head) {
    background: rgba(248, 250, 252, 0.92);
}

.pricing-note {
    font-size: 0.92rem;
    color: #4b5563;
}

.pricing-note h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pricing-note p {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.soft-bg {
    background: #f9fafb;
}

.slider-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

@media (min-width: 900px) {
    .slider-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.slider-card {
    border-radius: 1.3rem;
    padding: 1.5rem 1.4rem 1.7rem;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.slider-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.2rem;
}

.slider-card p {
    margin-top: 0;
    margin-bottom: 0.9rem;
    font-size: 0.93rem;
    color: #4b5563;
}

.comparison-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.comparison-inner {
    position: relative;
    width: 100%;
}

.comparison-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
}

.comparison-overlay img {
    height: 100%;
    object-fit: cover;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.handle-circle {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.7);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.55);
}

.comparison-range {
    width: 100%;
    margin-top: 0.8rem;
    appearance: none;
    height: 4px;
    background: rgba(148, 163, 184, 0.6);
    border-radius: 999px;
}

.comparison-range::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1A237E;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.5);
    cursor: pointer;
}

.comparison-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1A237E;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.5);
    cursor: pointer;
}

.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.7rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gallery-card {
    border-radius: 1.1rem;
    overflow: hidden;
    background: #020617;
    color: #e5e7eb;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.55);
}

.gallery-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 0.9rem 1rem 1.1rem;
    font-size: 0.9rem;
}

.contact-layout {
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

@media (min-width: 960px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
    }
}

.contact-panel,
.contact-details {
    background: #ffffff;
    border-radius: 1.3rem;
    padding: 1.6rem 1.5rem 1.7rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.contact-panel h2,
.contact-details h2 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.4rem;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
    margin-top: 0.7rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-row label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6b7280;
    font-weight: 600;
}

.form-row input,
.form-row textarea {
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.9);
    padding: 0.65rem 0.8rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: #111827;
    background: #f9fafb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #1A237E;
    box-shadow: 0 0 0 1px rgba(26, 35, 126, 0.35);
    background: #ffffff;
}

.checkbox-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.55rem;
}

.checkbox-row input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
}

.checkbox-row label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: #4b5563;
}

.form-actions {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
}

.form-note {
    font-size: 0.8rem;
    color: #6b7280;
}

.map-embed {
    margin-top: 0.8rem;
}

.map-embed iframe {
    width: 100%;
    border-radius: 1rem;
}

.map-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.legal-hero {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05), rgba(197, 160, 89, 0.15));
}

.legal-content {
    background: #ffffff;
}

.legal-content h2 {
    font-size: 1.1rem;
    margin-top: 1.4rem;
    margin-bottom: 0.4rem;
    color: #111827;
}

.legal-content p,
.legal-content li {
    font-size: 0.96rem;
    color: #374151;
}

.legal-content ul {
    padding-left: 1.1rem;
}

.minimal-page .site-header {
    border-bottom: none;
}

.success-main {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.2rem 1.25rem 2.2rem;
    background: radial-gradient(circle at top, rgba(197, 160, 89, 0.16), transparent 60%);
}

.success-panel {
    max-width: 520px;
    width: 100%;
    background: #ffffff;
    border-radius: 1.6rem;
    padding: 2.2rem 1.9rem 2.1rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.4);
    text-align: left;
}

.success-icon {
    width: 2.7rem;
    height: 2.7rem;
    margin-inline: auto;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #C5A059, #1A237E);
    margin-bottom: 1.1rem;
    position: relative;
}

.success-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.3rem;
    height: 0.7rem;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translate(-50%, -60%) rotate(-45deg);
}

.success-panel h1 {
    margin: 0 0 0.5rem;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.7rem;
    color: #111827;
}

.success-panel p {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 0.96rem;
    color: #4b5563;
}

.success-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.success-meta {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.fade-up {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .hero-copy h1 {
        font-size: 1.7rem;
    }

    .hero-card {
        max-width: 100%;
    }

    .pricing-row {
        grid-template-columns: 1.3fr 1.7fr 0.7fr;
        font-size: 0.85rem;
    }

    .success-panel {
        padding: 1.9rem 1.5rem 1.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-card {
        margin: 0;
    }
}