/* ============================================================
   ÉCLAT PURETÉ — site.css
   Palette:  #FFFFFF white | #FAF9F7 off-white | #1A1A1A charcoal
             #B8976A muted gold | #E8E4DF warm grey
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: #1A1A1A;
    background: #FFFFFF;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.15;
}

a {
    color: #B8976A;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #9a7d55;
}

a:focus-visible {
    outline: 2px solid #B8976A;
    outline-offset: 3px;
    border-radius: 2px;
}

/* === UTILITY === */
.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #B8976A;
    margin-bottom: 0.85rem;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 1.25rem;
}

.gold-rule {
    border: none;
    border-top: 1px solid #B8976A;
    opacity: 0.35;
}

/* === BUTTONS === */
.btn-gold {
    display: inline-block;
    background: #B8976A;
    color: #FFFFFF;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
}

.btn-gold:hover {
    background: #9a7d55;
    color: #FFFFFF;
    text-decoration: none;
}

.btn-gold:focus-visible {
    outline: 2px solid #B8976A;
    outline-offset: 4px;
}

/* === NAVIGATION === */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFFFFF;
    transition: box-shadow 0.35s ease;
}

.site-nav.scrolled {
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.07);
}

.site-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-nav__logo img {
    width: 55px;
    height: auto;
}

.site-nav__logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: 0.04em;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.site-nav__links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.site-nav__links a:hover {
    color: #B8976A;
}

.site-nav__cta {
    background: #B8976A;
    color: #FFFFFF !important;
    padding: 0.5rem 1.25rem;
    transition: background 0.2s ease !important;
}

.site-nav__cta:hover {
    background: #9a7d55 !important;
    color: #FFFFFF !important;
}

.site-nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

.site-nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #1A1A1A;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.site-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* === HERO === */
.hero {
    padding: 8rem 2rem 6rem;
    text-align: center;
    background: #FFFFFF;
    position: relative;
}

.hero::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: #B8976A;
    margin: 4rem auto 0;
}

.hero__logo {
    width: 100px;
    height: auto;
    margin: 0 auto 2.5rem;
}

.hero__eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #B8976A;
    margin-bottom: 1.5rem;
}

.hero__heading {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.08;
    max-width: 820px;
    margin: 0 auto 1.75rem;
}

.hero__subtext {
    font-size: 1.05rem;
    font-weight: 300;
    color: #5a5a5a;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* === TRUST SIGNALS === */
.trust {
    background: #FAF9F7;
    padding: 6.5rem 2rem;
    text-align: center;
}

.trust__header {
    margin-bottom: 4rem;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E8E4DF;
    border-radius: 50%;
    background: #FFFFFF;
    flex-shrink: 0;
}

.trust__icon svg {
    width: 22px;
    height: 22px;
    stroke: #B8976A;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust__item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1A1A1A;
}

.trust__item p {
    font-size: 0.88rem;
    color: #6a6a6a;
    line-height: 1.7;
    max-width: 220px;
}

/* === SERVICES === */
.services {
    padding: 7rem 2rem;
    background: #FFFFFF;
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services__intro {
    font-size: 0.95rem;
    color: #6a6a6a;
    line-height: 1.75;
    margin-top: 0.5rem;
}

.services__category {
    max-width: 900px;
    margin: 0 auto 5rem;
}

.services__category-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #B8976A;
    margin-bottom: 0.6rem;
}

.services__category-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E8E4DF;
}

/* Package Cards */
.package-card {
    background: #FAF9F7;
    padding: 2.5rem 2.75rem;
    margin-bottom: 1.25rem;
    border-left: 3px solid #B8976A;
    transition: box-shadow 0.2s ease;
}

.package-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.package-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.2rem;
}

.package-card__type {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B8976A;
    margin-bottom: 1.5rem;
}

.package-card__features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-card__features li {
    font-size: 0.9rem;
    color: #444;
    padding: 0.3rem 0 0.3rem 1.4rem;
    position: relative;
    line-height: 1.55;
}

.package-card__features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #B8976A;
    font-size: 0.75rem;
    top: 0.38rem;
}

.package-card__best-for {
    font-size: 0.82rem;
    font-style: italic;
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.package-card__cta {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B8976A;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.package-card__cta:hover {
    color: #9a7d55;
}

/* === ABOUT === */
.about {
    background: #FAF9F7;
    padding: 7rem 2rem;
}

.about__inner {
    max-width: 780px;
    margin: 0 auto;
}

.about__header {
    margin-bottom: 2.75rem;
}

.about__body p {
    font-size: 1rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about__body p:last-child {
    margin-bottom: 0;
}

/* === SERVICE AREA === */
.service-area {
    padding: 6rem 2rem;
    background: #FFFFFF;
    text-align: center;
}

.service-area__header {
    margin-bottom: 3rem;
}

.service-area__cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    max-width: 720px;
    margin: 0 auto;
}

.service-area__cities li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #1A1A1A;
    padding: 0.3rem 1.25rem;
    position: relative;
}

.service-area__cities li:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -4px;
    color: #B8976A;
    font-size: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* === CONTACT FORM === */
.contact {
    background: #FAF9F7;
    padding: 7rem 2rem;
}

.contact__inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact__header p {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 0.5rem;
}

/* Form elements */
.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
}

.form-group label span {
    color: #B8976A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E8E4DF;
    padding: 0.85rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #1A1A1A;
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B8976A;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B8976A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Honeypot — hidden from humans, visible to bots */
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    visibility: hidden;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Field validation state */
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
    border-color: #c0392b;
}

/* Inline form message */
.form-message {
    display: none;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
}

.form-message.success {
    display: block;
    background: #f4f9ef;
    border: 1px solid #b8d89c;
    color: #3a6b22;
}

.form-message.error {
    display: block;
    background: #fdf2f2;
    border: 1px solid #e8b4b4;
    color: #8b2020;
}

/* === CLEANER APPLICATION PAGE === */
.apply-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.apply-hero__sub {
    font-size: 1rem;
    color: #6a6a6a;
    margin-top: 0.75rem;
    line-height: 1.75;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.apply-form-section {
    background: #FAF9F7;
    padding: 5rem 2rem 7rem;
}

.apply-form__inner {
    max-width: 780px;
    margin: 0 auto;
}

/* Form section dividers */
.form-section {
    margin: 2.75rem 0 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #E8E4DF;
}

.form-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #1A1A1A;
}

/* Radio & checkbox groups */
.form-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.form-check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

/* Pill-style toggle labels */
.form-check-item {
    display: inline-flex;
    align-items: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    user-select: none;
    border: 1px solid #E8E4DF;
    padding: 0.45rem 1rem;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.form-check-item:hover {
    border-color: #B8976A;
    color: #B8976A;
}

.form-check-item:has(input:checked) {
    border-color: #B8976A;
    color: #B8976A;
    background: #fdf8f2;
}

.form-check-item input[type="checkbox"],
.form-check-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Label note (e.g. "select all that apply") */
.form-label-note {
    font-size: 0.72rem;
    color: #bbb;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

/* File input */
.form-file-input {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: #444;
    padding: 0.6rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.form-file-input::file-selector-button {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #B8976A;
    background: transparent;
    border: 1px solid #B8976A;
    padding: 0.45rem 1rem;
    cursor: pointer;
    margin-right: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.form-file-input::file-selector-button:hover {
    background: #B8976A;
    color: #fff;
}

/* Radio group error state */
.field-error-group {
    outline: 2px solid #c0392b;
    outline-offset: 4px;
    border-radius: 2px;
}

/* === FOOTER === */
.site-footer {
    background: #000000;
    color: #999;
    padding: 4.5rem 2rem;
    text-align: center;
}

.site-footer__logo {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.site-footer__logo img {
    width: 48px;
    height: auto;
}

.site-footer__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.site-footer__tagline {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1.5rem;
}

.site-footer__area {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 2rem;
}

.site-footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 1rem;
}

.site-footer__links a {
    font-size: 0.75rem;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: #B8976A;
}

.site-footer__email {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 2rem;
}

.site-footer__email a {
    color: #B8976A;
}

.site-footer__copy {
    font-size: 0.72rem;
    color: #444;
}

/* === POLICY PAGE === */
.policy-page {
    padding: 6rem 2rem 7rem;
    background: #FFFFFF;
}

.policy-page__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
    padding-bottom: 2.5rem;
}

.policy-page__date {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: #aaa;
    margin-top: 0.4rem;
    letter-spacing: 0.05em;
}

.policy-page__body {
    max-width: 780px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section--intro {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #F0EDE8;
}

.policy-section p {
    font-size: 0.94rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: none;
    margin: 0.5rem 0 1rem;
    padding: 0;
}

.policy-section ul li {
    font-size: 0.94rem;
    color: #444;
    line-height: 1.7;
    padding: 0.28rem 0 0.28rem 1.4rem;
    position: relative;
}

.policy-section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #B8976A;
    font-size: 0.75rem;
    top: 0.38rem;
}

.policy-section a {
    color: #B8976A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-section a:hover {
    color: #9a7d55;
}

.policy-back {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #E8E4DF;
}

.policy-back a {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B8976A;
    text-decoration: none;
    border-bottom: 1px solid #B8976A;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.policy-back a:hover {
    color: #9a7d55;
    border-color: #9a7d55;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    /* Mobile Nav */
    .site-nav__hamburger {
        display: flex;
    }

    .site-nav__inner {
        padding: 0 1.5rem;
    }

    .site-nav__links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1.5rem 1.5rem;
        border-top: 1px solid #E8E4DF;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
        gap: 0;
    }

    .site-nav__links.open {
        display: flex;
    }

    .site-nav__links li {
        width: 100%;
        border-bottom: 1px solid #F0EDE8;
    }

    .site-nav__links li:last-child {
        border-bottom: none;
        padding-top: 0.5rem;
    }

    .site-nav__links a {
        display: block;
        padding: 0.8rem 0;
    }

    .site-nav__cta {
        display: inline-block;
        padding: 0.6rem 1.25rem !important;
    }

    /* Hero */
    .hero {
        padding: 5rem 1.5rem 4rem;
    }

    .hero__logo {
        width: 80px;
        margin-bottom: 2rem;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Service cards */
    .package-card {
        padding: 2rem;
    }

    /* About, contact & policy inner padding */
    .about__inner,
    .contact__inner,
    .policy-page__header,
    .policy-page__body {
        padding: 0;
    }

    .policy-page {
        padding: 4rem 1.5rem 5rem;
    }

    /* Trust grid stacks */
    .trust__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 2rem;
    }

    /* Cities */
    .service-area__cities li {
        font-size: 1.15rem;
        padding: 0.2rem 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero__heading {
        font-size: 2.2rem;
    }

    .hero,
    .trust,
    .services,
    .about,
    .service-area,
    .contact {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .services__category,
    .about__inner,
    .contact__inner {
        padding: 0;
    }

    .services__header {
        padding: 0;
    }
}
