:root {
    --primary: #2a1710;
    --secondary: #b87333;
    --accent: #f2c879;
    --cream: #fff7ec;
    --paper: #fffdf8;
    --ink: #21130f;
    --muted: #72594d;
    --line: rgba(42, 23, 16, 0.14);
    --shadow: 0 24px 70px rgba(42, 23, 16, 0.16);
    --radius: 28px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
}

body {
    margin: 0;
    padding-top: var(--header-height);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 5% 0%, rgba(242, 200, 121, 0.45), transparent 32rem),
        linear-gradient(180deg, #fff7ec 0%, #fffdf8 48%, #f8ecdc 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 12px 18px;
    background: rgba(255, 247, 236, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(42, 23, 16, 0.06);
}

.site-header.scrolled {
    box-shadow: 0 14px 38px rgba(42, 23, 16, 0.1);
}

.nav-shell {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 14px 38px rgba(42, 23, 16, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px 9px 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1px;
    background:
        radial-gradient(circle at 35% 28%, #fff2cf 0 8%, var(--accent) 9% 28%, var(--secondary) 58%, var(--primary));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
    flex: 0 0 auto;
}

.brand-text {
    min-width: 0;
}

.brand strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
}

.main-nav a:hover {
    background: rgba(184, 115, 51, 0.1);
    color: var(--primary);
}

.main-nav .nav-cta {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 22px rgba(42, 23, 16, 0.16);
}

.main-nav .nav-cta:hover {
    background: #111827;
    color: #fff;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    display: block;
    transition: 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 18px 42px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 34px;
    align-items: center;
}

.hero-bg-shape {
    position: absolute;
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 999px;
    pointer-events: none;
}

.hero-bg-one {
    width: 360px;
    height: 360px;
    right: -120px;
    top: 90px;
}

.hero-bg-two {
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: 80px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 900;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(42px, 8vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 5.4vw, 58px);
    line-height: 1;
    letter-spacing: -0.055em;
}

h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.hero-text {
    max-width: 660px;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    cursor: pointer;
    transition: 0.22s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 30px rgba(42, 23, 16, 0.22);
}

.btn-secondary {
    background: #fffdf8;
    color: var(--primary);
    border-color: var(--line);
}

.hero-stats {
    max-width: 620px;
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-stats div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.78);
    box-shadow: 0 16px 36px rgba(42, 23, 16, 0.06);
}

.hero-stats strong {
    display: block;
    font-size: 25px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 500px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--primary);
    isolation: isolate;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(42, 23, 16, 0.08), rgba(42, 23, 16, 0.72)),
        radial-gradient(circle at 35% 20%, rgba(242, 200, 121, 0.3), transparent 18rem);
    z-index: 1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.hero-visual-card {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.hero-visual-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 900;
}

.hero-visual-card strong {
    display: block;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
}

.hero-visual-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.event-strip {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 34px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-strip span {
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.78);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 18px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px;
}

.package-grid,
.testimonial-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

.package-card,
.process-card,
.testimonial,
.showcase-card,
.showcase-note,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.88);
    box-shadow: 0 18px 46px rgba(42, 23, 16, 0.08);
}

.package-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
}

.package-card::after {
    content: "";
    position: absolute;
    width: 135px;
    height: 135px;
    top: -58px;
    right: -58px;
    border-radius: 50%;
    background: rgba(184, 115, 51, 0.12);
}

.package-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(184, 115, 51, 0.12);
    font-size: 26px;
}

.package-label {
    margin-bottom: 8px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 900;
}

.package-card p {
    color: var(--muted);
}

.package-card ul {
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.package-card li {
    position: relative;
    padding: 8px 0 8px 26px;
    color: var(--muted);
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
}

.package-card a {
    display: inline-flex;
    color: var(--primary);
    font-weight: 900;
}

.package-card.featured {
    background:
        radial-gradient(circle at right top, rgba(242, 200, 121, 0.18), transparent 18rem),
        linear-gradient(145deg, #3b2417, #1c0f0a);
    color: #fff;
    transform: translateY(-8px);
}

.package-card.featured .package-icon {
    background: rgba(255, 255, 255, 0.12);
}

.package-card.featured .package-label,
.package-card.featured li::before {
    color: var(--accent);
}

.package-card.featured p,
.package-card.featured li {
    color: rgba(255, 255, 255, 0.78);
}

.package-card.featured a {
    color: #fff;
}

.about-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

.about-image {
    min-height: 420px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--primary);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-copy {
    padding: 34px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(242, 200, 121, 0.28), transparent 18rem),
        var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
}

.about-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.trust-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.trust-list div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-list strong {
    display: block;
    margin-bottom: 5px;
    color: var(--accent);
}

.trust-list span {
    font-weight: 900;
}

.process-card {
    padding: 24px;
}

.process-card span {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.process-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.showcase-grid {
    display: grid;
    gap: 18px;
}

.showcase-large {
    position: relative;
    min-height: 430px;
    border-radius: 36px;
    overflow: hidden;
    background: var(--primary);
    box-shadow: var(--shadow);
}

.showcase-large::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(42, 23, 16, 0.84));
}

.showcase-large img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.showcase-large div {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    color: #fff;
}

.showcase-large span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 900;
}

.showcase-large h3 {
    max-width: 650px;
    margin-bottom: 0;
    font-size: clamp(24px, 4vw, 38px);
}

.showcase-card {
    overflow: hidden;
}

.showcase-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.showcase-card div {
    padding: 24px;
}

.showcase-card p,
.showcase-note p {
    color: var(--muted);
    margin-bottom: 0;
}

.showcase-note {
    padding: 28px;
    background:
        repeating-linear-gradient(45deg, rgba(184, 115, 51, 0.1) 0 10px, transparent 10px 22px),
        #fffdf8;
}

.stars {
    margin-bottom: 14px;
    color: #b87333;
    letter-spacing: 2px;
    font-weight: 900;
}

.testimonial {
    padding: 26px;
}

.testimonial p {
    color: var(--muted);
}

.testimonial strong {
    display: block;
    color: var(--ink);
}

.testimonial span {
    color: var(--muted);
    font-size: 14px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 12px 34px rgba(42, 23, 16, 0.06);
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px;
    color: var(--primary);
    text-align: left;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.faq-item button::after {
    content: "+";
    font-size: 24px;
    line-height: 1;
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.contact-section {
    padding-bottom: 80px;
}

.contact-grid {
    display: grid;
    gap: 22px;
    border-radius: 42px;
    padding: 24px;
    background:
        radial-gradient(circle at 88% 15%, rgba(242, 200, 121, 0.28), transparent 20rem),
        linear-gradient(135deg, var(--primary), #150b07);
    box-shadow: var(--shadow);
}

.contact-copy {
    color: #fff;
    padding: 12px;
}

.contact-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-methods a {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 900;
}

.contact-form {
    padding: 24px;
    background: rgba(255, 253, 248, 0.96);
}

.form-row {
    margin-bottom: 16px;
}

.form-row.split {
    display: grid;
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(184, 115, 51, 0.55);
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.12);
}

.contact-form .btn {
    width: 100%;
}

.form-success {
    display: none;
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
    font-weight: 800;
}

.form-success.show {
    display: block;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    padding: 14px 18px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(34, 197, 94, 0.28);
}

.site-footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 18px 44px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 14px;
    color: var(--muted);
}

.site-footer strong {
    color: var(--primary);
}

.site-footer p {
    margin-bottom: 0;
}

.site-footer div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 879px) {
    body {
        --header-height: 78px;
    }

    .nav-shell {
        border-radius: 28px;
    }

    .brand strong {
        max-width: 185px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main-nav {
        position: fixed;
        top: 86px;
        left: 18px;
        right: 18px;
        display: grid;
        gap: 4px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 28px;
        background: rgba(255, 253, 248, 0.98);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: 0.22s ease;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 14px;
    }

    .hero {
        padding-top: 46px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }
}

@media (min-width: 700px) {
    .package-grid,
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row.split {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1.25fr 0.75fr;
    }

    .showcase-large {
        grid-row: span 2;
    }
}

@media (min-width: 880px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
    }

    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .about-copy {
        padding: 46px;
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: 0.85fr 1fr;
        align-items: center;
        padding: 34px;
    }

    .contact-copy {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: clamp(40px, 14vw, 58px);
    }

    h2 {
        font-size: clamp(31px, 10vw, 44px);
    }

    .section {
        padding: 56px 18px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 420px;
    }

    .hero-visual {
        border-radius: 32px;
    }

    .hero-visual-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .event-strip {
        margin-top: 24px;
    }

    .contact-grid {
        border-radius: 32px;
        padding: 18px;
    }

    .contact-methods a,
    .hero-actions .btn {
        width: 100%;
    }

    .floating-whatsapp {
        left: 18px;
        right: 18px;
        text-align: center;
    }
}