* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #17202c;
    background: #fffaf4;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 82px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 244, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 24, 38, 0.12);
}

.header-inner {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -1px;
    box-shadow: 0 12px 28px rgba(16, 24, 38, 0.2);
}

.brand-text strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.1;
    color: #101826;
}

.brand-text small {
    display: block;
    color: #566172;
    font-size: 0.76rem;
    margin-top: 2px;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    font-weight: 800;
    font-size: 0.91rem;
    color: #273244;
}

.main-nav a:hover {
    color: #8a4a10;
}

.nav-cta {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(16, 24, 38, 0.16);
}

.nav-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 15px;
    background: var(--primary);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 12%, rgba(185, 111, 36, 0.2), transparent 30%),
        radial-gradient(circle at 90% 18%, rgba(16, 24, 38, 0.12), transparent 28%),
        linear-gradient(135deg, #fffaf4 0%, #f4dfc6 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(90deg, rgba(16, 24, 38, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(16, 24, 38, 0.12) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: #8a4a10;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 900;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.45rem, 8vw, 5.25rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
    max-width: 780px;
    margin-bottom: 24px;
    color: var(--primary);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.55rem);
    line-height: 1;
    letter-spacing: -0.055em;
    color: var(--primary);
    margin-bottom: 18px;
}

h3 {
    color: var(--primary);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-text {
    max-width: 660px;
    color: #384354;
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 18px 32px rgba(16, 24, 38, 0.2);
}

.btn-outline {
    border-color: rgba(16, 24, 38, 0.22);
    background: #ffffff;
    color: var(--primary);
}

.btn-whatsapp {
    background: #168a45;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(22, 138, 69, 0.22);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-points span {
    padding: 9px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 38, 0.16);
    color: #17202c;
    font-weight: 900;
    font-size: 0.86rem;
}

.hero-visual {
    display: grid;
    place-items: center;
}

.photo-card {
    position: relative;
    border-radius: 38px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 38, 0.12);
    box-shadow: 0 28px 72px rgba(16, 24, 38, 0.22);
}

.hero-photo-card {
    width: min(470px, 100%);
    min-height: 520px;
}

.hero-photo-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 24, 38, 0.72), transparent 58%);
    pointer-events: none;
}

.photo-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.94);
    color: var(--primary);
    box-shadow: 0 18px 38px rgba(16, 24, 38, 0.2);
}

.photo-badge strong,
.photo-badge span {
    display: block;
}

.photo-badge strong {
    font-size: 1.2rem;
    line-height: 1.1;
    margin-bottom: 6px;
}

.photo-badge span {
    color: #384354;
    font-weight: 700;
}

.quick-info {
    background: var(--primary);
    color: #ffffff;
}

.info-grid {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.info-grid div {
    padding: 22px;
    background: var(--primary);
}

.info-grid strong,
.info-grid span,
.info-grid a {
    display: block;
}

.info-grid strong {
    color: #f4c16f;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    margin-bottom: 5px;
}

.info-grid a,
.info-grid span {
    color: #ffffff;
    font-weight: 800;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
    color: #4d5868;
}

.service-grid,
.process-grid,
.testimonial-grid,
.benefits-grid {
    display: grid;
    gap: 18px;
}

.service-card,
.process-step,
.testimonial-card,
.benefit-card {
    border: 1px solid rgba(16, 24, 38, 0.12);
    background: #ffffff;
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 22px 55px rgba(16, 24, 38, 0.08);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 126px;
    height: 126px;
    border-radius: 999px;
    border: 2px dashed rgba(185, 111, 36, 0.45);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #f0d2a9;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-card p,
.service-card li,
.benefit-card p {
    color: #4d5868;
}

.service-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.about {
    background:
        linear-gradient(180deg, rgba(16, 24, 38, 0.035), transparent),
        #fffaf4;
}

.about-grid {
    display: grid;
    gap: 34px;
    align-items: center;
}

.about-image {
    position: relative;
    min-height: 430px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(16, 24, 38, 0.18);
}

.about-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 24, 38, 0.62), transparent 55%);
}

.stat-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 250, 244, 0.94);
}

.stat-card strong {
    display: block;
    color: var(--primary);
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.stat-card span {
    color: #384354;
    font-weight: 900;
}

.about-copy p {
    color: #4d5868;
}

.trust-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.trust-list div {
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 14px 32px rgba(16, 24, 38, 0.06);
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list strong {
    color: var(--primary);
}

.trust-list span {
    color: #4d5868;
    margin-top: 4px;
}

.process {
    background: var(--primary);
    color: #ffffff;
}

.process h2,
.process h3 {
    color: #ffffff;
}

.process .eyebrow {
    color: #f4c16f;
}

.process .section-heading p:not(.eyebrow),
.process-step p {
    color: #d4dbe6;
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.process-step span {
    display: inline-flex;
    margin-bottom: 28px;
    color: #f4c16f;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -0.06em;
}

.showcase-grid {
    display: grid;
    gap: 18px;
}

.showcase-card,
.showcase-photo {
    min-height: 260px;
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 38, 0.12);
    box-shadow: 0 22px 55px rgba(16, 24, 38, 0.08);
}

.showcase-photo {
    position: relative;
}

.showcase-photo img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.showcase-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 24, 38, 0.78), transparent 58%);
}

.showcase-photo div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.showcase-photo span,
.showcase-photo h3 {
    color: #ffffff;
}

.pattern-block {
    min-height: 170px;
}

.showcase-card div:last-child {
    padding: 22px;
}

.showcase-card span,
.showcase-photo span {
    display: block;
    color: #8a4a10;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    margin-bottom: 8px;
}

.showcase-card h3,
.showcase-photo h3 {
    margin-bottom: 0;
}

.pinstripe {
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 2px, transparent 2px 22px),
        var(--primary);
}

.denim {
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 9px),
        #244c73;
}

.uniform {
    background:
        repeating-linear-gradient(135deg, rgba(16, 24, 38, 0.16) 0 12px, transparent 12px 24px),
        #d48a24;
}

.benefits {
    background: #ffffff;
}

.benefit-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 900;
}

.testimonials {
    background:
        radial-gradient(circle at 50% 0%, rgba(185, 111, 36, 0.13), transparent 35%),
        #fffaf4;
}

.testimonial-card p {
    font-size: 1.03rem;
    color: #384354;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: var(--primary);
}

.testimonial-card span {
    color: #8a4a10;
    font-weight: 900;
    font-size: 0.88rem;
}

.faq-grid {
    display: grid;
    gap: 34px;
}

.faq-intro p:not(.eyebrow) {
    color: #4d5868;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 38, 0.12);
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(16, 24, 38, 0.04);
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 52px 20px 20px;
    text-align: left;
    font-weight: 900;
    color: var(--primary);
    cursor: pointer;
    position: relative;
}

.faq-item button::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 1.4rem;
    color: #8a4a10;
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: #4d5868;
}

.contact {
    background:
        radial-gradient(circle at 85% 15%, rgba(185, 111, 36, 0.2), transparent 30%),
        var(--primary);
    color: #ffffff;
}

.contact-grid {
    display: grid;
    gap: 28px;
    align-items: start;
}

.contact-copy h2 {
    color: #ffffff;
}

.contact-copy .eyebrow {
    color: #f4c16f;
}

.contact-copy p {
    color: #d4dbe6;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

.contact-details a,
.contact-details div {
    display: block;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details strong,
.contact-details span {
    display: block;
}

.contact-details strong {
    color: #f4c16f;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}

.contact-details span {
    color: #ffffff;
    font-weight: 800;
}

.booking-form {
    padding: 28px;
    border-radius: 32px;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form-row label {
    font-weight: 900;
    color: var(--primary);
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    border: 1px solid rgba(16, 24, 38, 0.18);
    border-radius: 16px;
    padding: 13px 14px;
    background: #fffaf4;
    color: #17202c;
    outline: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(185, 111, 36, 0.14);
}

.form-row textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
}

.form-message {
    display: none;
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: #e6f6ec;
    color: #0f5f30;
    font-weight: 800;
}

.form-message.show {
    display: block;
}

.site-footer {
    padding: 36px 0;
    background: #0b111b;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    gap: 22px;
}

.site-footer strong {
    color: #ffffff;
}

.site-footer p,
.site-footer span,
.site-footer a {
    color: #d4dbe6;
}

.site-footer a,
.site-footer span {
    display: block;
}

.floating-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    padding: 13px 17px;
    border-radius: 999px;
    background: #168a45;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(22, 138, 69, 0.3);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: 0.25s ease;
}

.floating-whatsapp.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 859px) {
    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 86px;
        display: grid;
        gap: 8px;
        padding: 18px;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 24px 70px rgba(16, 24, 38, 0.2);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 12px;
        border-radius: 14px;
    }

    .main-nav a:hover {
        background: var(--accent);
    }
}

@media (min-width: 700px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-grid,
    .testimonial-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-photo.large,
    .showcase-card.wide {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
        align-items: start;
    }
}

@media (min-width: 860px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }

    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .faq-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .showcase-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

    .showcase-photo.large {
        grid-column: span 1;
        grid-row: span 2;
    }

    .showcase-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 520px) {
    .section-pad {
        padding: 62px 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-text small {
        display: none;
    }

    .hero-photo-card,
    .hero-photo-card img {
        min-height: 420px;
        height: 420px;
    }

    .photo-card {
        border-radius: 28px;
    }

    .photo-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .about-image,
    .about-image img {
        min-height: 360px;
        height: 360px;
    }

    .booking-form {
        padding: 22px;
    }

    .btn {
        width: 100%;
    }
}