* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--primary);
    background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.15), transparent 34rem),
        linear-gradient(180deg, #fffaf3 0%, #ffffff 38%, #f8f3eb 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 86px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.6rem, 8vw, 5.7rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
}

h2 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 5vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-heading p:last-child {
    max-width: 660px;
    color: #6b5f55;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.22);
}

.btn-soft {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 24, 39, 0.1);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 243, 0.86);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background:
        radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.7), transparent 18%),
        linear-gradient(135deg, var(--primary), #3f2f23);
    border-radius: 15px;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.logo-text {
    letter-spacing: -0.04em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.92rem;
    font-weight: 800;
}

.main-nav a {
    color: rgba(17, 24, 39, 0.76);
}

.main-nav a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 16px;
    color: #fff !important;
    background: var(--primary);
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--primary);
    border-radius: 14px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 999px;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 780px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
    align-items: center;
    gap: 56px;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: #5f554c;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 620px;
    gap: 12px;
}

.hero-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.06);
}

.hero-stats strong {
    display: block;
    margin-bottom: 2px;
    font-size: 1.35rem;
    line-height: 1;
}

.hero-stats span {
    color: #71675d;
    font-size: 0.86rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-glow-one {
    right: -150px;
    top: 110px;
    width: 420px;
    height: 420px;
    background: rgba(217, 119, 6, 0.24);
}

.hero-glow-two {
    left: -170px;
    bottom: 60px;
    width: 340px;
    height: 340px;
    background: rgba(17, 24, 39, 0.12);
}

.camera-card {
    position: absolute;
    inset: 20px 20px 20px 0;
    min-height: 520px;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 40%),
        linear-gradient(145deg, #16100c, #342116 48%, #130f0c);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 44px;
    box-shadow: 0 34px 90px rgba(17, 24, 39, 0.34);
}

.camera-card::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
}

.camera-card::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    background: rgba(217, 119, 6, 0.45);
    border-radius: 999px;
    filter: blur(20px);
}

.camera-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.camera-top span:first-child {
    width: 86px;
    height: 34px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.camera-top span:last-child {
    width: 54px;
    height: 54px;
    background:
        radial-gradient(circle, #f5c16a 0 18%, #5b3920 19% 42%, #23160f 43%);
    border-radius: 50%;
}

.lens-wrap {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    place-items: center;
}

.lens {
    display: grid;
    place-items: center;
    width: min(290px, 64vw);
    height: min(290px, 64vw);
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 10%, transparent 11%),
        conic-gradient(from 20deg, #0f172a, #7c4a22, #111827, #eab761, #0f172a);
    border: 18px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow:
        inset 0 0 50px rgba(255, 255, 255, 0.14),
        0 28px 70px rgba(0, 0, 0, 0.45);
}

.lens-core {
    width: 42%;
    height: 42%;
    background:
        radial-gradient(circle at 35% 35%, #fef3c7 0 6%, transparent 7%),
        radial-gradient(circle, #020617 0 35%, #1e293b 36% 62%, #111827 63%);
    border-radius: 50%;
}

.camera-caption {
    position: absolute;
    z-index: 3;
    left: 34px;
    right: 34px;
    bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}

.camera-caption span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.camera-caption strong {
    font-size: 1.2rem;
    letter-spacing: -0.04em;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 196px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.16);
    backdrop-filter: blur(14px);
}

.floating-card-one {
    left: -28px;
    top: 90px;
}

.floating-card-two {
    right: -6px;
    bottom: 120px;
}

.mini-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--accent);
    border-radius: 15px;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card small {
    color: #766c62;
}

/* Services */

.services-section {
    background: rgba(255, 255, 255, 0.46);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 26px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 30px;
    box-shadow: 0 24px 64px rgba(17, 24, 39, 0.07);
}

.service-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 50%;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    color: #fff;
    background: var(--primary);
    border-radius: 18px;
    font-size: 1.35rem;
}

.service-card p {
    color: #655d55;
}

/* About */

.about-section {
    background: var(--secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.photo-stack {
    position: relative;
    min-height: 500px;
}

.photo-card {
    position: absolute;
    display: flex;
    align-items: flex-end;
    min-height: 300px;
    padding: 20px;
    color: #fff;
    border-radius: 34px;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.2);
}

.photo-card span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-weight: 800;
}

.photo-card-one {
    left: 5%;
    top: 0;
    width: 62%;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.8)),
        radial-gradient(circle at 30% 20%, #f8d48a, #8a4f22 42%, #111827);
    transform: rotate(-7deg);
}

.photo-card-two {
    right: 4%;
    top: 90px;
    width: 58%;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.75)),
        radial-gradient(circle at 70% 20%, #f5b84d, #312018 44%, #09090b);
    transform: rotate(6deg);
}

.photo-card-three {
    left: 16%;
    bottom: 0;
    width: 68%;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.82)),
        radial-gradient(circle at 35% 35%, #fef3c7, #a16207 38%, #111827);
}

.about-content p {
    color: #5f554c;
}

.trust-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.trust-list div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list span {
    color: #6b6258;
}

/* Process */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.process-card {
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 58px rgba(17, 24, 39, 0.06);
}

.process-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 900;
}

.process-card p {
    color: #6a6158;
}

/* Work */

.work-section {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(217, 119, 6, 0.34), transparent 30rem),
        linear-gradient(145deg, #111827, #1f130d);
}

.work-section .eyebrow,
.work-section .section-heading p {
    color: #f5c879;
}

.work-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: 220px;
    gap: 16px;
}

.work-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 22px;
    background: radial-gradient(circle at 40% 20%, #fbbf24, #7c2d12 42%, #111827);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.work-item::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
}

.work-item span {
    position: relative;
    z-index: 2;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 999px;
    font-weight: 900;
}

.work-item.large {
    grid-row: span 2;
}

.work-item.warm {
    background: radial-gradient(circle at 70% 15%, #fed7aa, #c2410c 42%, #1c1917);
}

.work-item.dark {
    background: radial-gradient(circle at 35% 20%, #94a3b8, #334155 42%, #020617);
}

.work-item.soft {
    background: radial-gradient(circle at 45% 25%, #fde68a, #a16207 45%, #1f130d);
}

.work-item.gold {
    background: radial-gradient(circle at 65% 20%, #fef3c7, #d97706 42%, #111827);
}

/* Packages */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.package-card {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 32px;
    box-shadow: 0 26px 70px rgba(17, 24, 39, 0.07);
}

.package-card.featured {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(217, 119, 6, 0.34), transparent 16rem),
        var(--primary);
    transform: translateY(-14px);
}

.package-card.featured .package-label,
.package-card.featured li {
    color: rgba(255, 255, 255, 0.76);
}

.package-card.featured .btn-primary {
    color: var(--primary);
    background: #fff;
}

.package-label {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.package-price {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.package-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.package-card li {
    color: #665d54;
}

.package-card li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--accent);
    font-weight: 900;
}

/* Testimonials */

.testimonials-section {
    background: var(--secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 30px;
}

.stars {
    margin-bottom: 18px;
    color: var(--accent);
    letter-spacing: 0.12em;
}

.testimonial-card p {
    color: #5f554c;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: #766c62;
    font-size: 0.9rem;
}

/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
}

.faq-intro p {
    color: #6a6158;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    color: var(--primary);
    background: transparent;
    border: 0;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
    flex: 0 0 auto;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #665d54;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    background: var(--accent);
}

/* Contact */

.contact-section {
    padding-bottom: 110px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 34px;
    padding: clamp(26px, 5vw, 52px);
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(217, 119, 6, 0.46), transparent 26rem),
        linear-gradient(145deg, #111827, #2a1a12);
    border-radius: 42px;
    box-shadow: 0 34px 90px rgba(17, 24, 39, 0.28);
}

.contact-card .eyebrow {
    color: #f5c879;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-details a,
.contact-details span {
    color: #fff;
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 22px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 13px 14px;
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 16px;
    outline: none;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.form-button {
    width: 100%;
}

.form-note {
    margin: 0;
    color: #756b61 !important;
    font-size: 0.82rem;
}

/* Footer and WhatsApp */

.site-footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.76);
    background: #0b111d;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-inner p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    color: #fff;
    background: #16a34a;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.3);
}

/* Reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 980px) {
    .section-pad {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .about-grid,
    .faq-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 540px;
    }

    .camera-card {
        inset: 0;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .work-item.large {
        grid-row: span 1;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 76px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 24px;
        box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
    }

    .main-nav a {
        padding: 14px;
        border-radius: 16px;
    }

    .main-nav a:hover {
        background: #f8f3eb;
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .hero-stats,
    .services-grid,
    .process-grid,
    .work-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 470px;
    }

    .camera-card {
        min-height: 440px;
        border-radius: 34px;
    }

    .floating-card {
        min-width: auto;
    }

    .floating-card-one {
        left: 8px;
        top: 44px;
    }

    .floating-card-two {
        right: 8px;
        bottom: 70px;
    }

    .camera-caption {
        align-items: flex-start;
        flex-direction: column;
    }

    .photo-stack {
        min-height: 420px;
    }

    .photo-card {
        min-height: 250px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .section-pad {
        padding: 58px 0;
    }

    h1 {
        font-size: clamp(2.35rem, 15vw, 4rem);
    }

    h2 {
        font-size: clamp(1.85rem, 11vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 430px;
    }

    .lens {
        width: 220px;
        height: 220px;
    }

    .floating-card {
        font-size: 0.86rem;
    }

    .photo-card-one,
    .photo-card-two,
    .photo-card-three {
        width: 76%;
    }

    .contact-card {
        border-radius: 30px;
    }
}