/* ===============================
   Contact / Privacy Page Styles
================================ */

.contact-page body,
.contact-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(219, 174, 88, 0.18), transparent 24rem),
        linear-gradient(180deg, #f4f0e8, #e9e6dd);
}



























/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-form__fieldset {
    border: 1px solid #d0ccc6;
    padding: 24px 28px;
    background: rgba(245, 243, 239, 0.76);
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(20,20,18,0.06);
}

.contact-form__legend {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.04em;
    padding: 0 8px;
}

.contact-form__checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.contact-form__check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #444;
    cursor: pointer;
    line-height: 1.5;
}

.contact-form__check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #DBAE58;
    flex-shrink: 0;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form__required {
    font-size: 0.68rem;
    background: #DBAE58;
    color: #fff;
    padding: 2px 8px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.contact-form__label:has(.contact-form__required) {
    margin-bottom: 4px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #d0ccc6;
    font-size: 0.88rem;
    color: #222;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 8px;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #DBAE58;
    box-shadow: 0 0 0 3px rgba(200, 168, 90, 0.15);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
}

.contact-form__privacy {
    font-size: 0.82rem;
    color: #555;
    padding: 20px;
    background: #f5f3ef;
    border: 1px solid #d0ccc6;
    border-radius: 8px;
}

.contact-form__privacy a {
    color: #DBAE58;
    text-decoration: underline;
}

.contact-form__submit {
    padding: 20px;
    background: #2c2420;
    color: #f0ede8;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.3s ease;
    border-radius: 8px;
}

.contact-form__submit:hover {
    background: #3e3028;
}



.contact-form__note {
    margin: 0;
    font-size: 0.74rem;
    color: #999;
    line-height: 1.8;
}



















/* Responsive */
@media (max-width: 767px) {
    

    

    

    

    

    .contact-form__checks {
        grid-template-columns: 1fr;
    }

    
}

/* ===============================
   Contact — Modern Layout
================================ */

.ct-main {
    min-height: 100vh;
}

/* Hero */
.ct-hero {
    position: relative;
    background: #0f0f0e;
    padding: 160px 40px 88px;
    overflow: hidden;
}

.ct-hero::after {
    content: "CONTACT";
    position: absolute;
    right: -0.05em;
    bottom: -0.18em;
    font-size: clamp(6rem, 16vw, 14rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.ct-hero__inner {
    max-width: 900px;
    margin: 0 auto;
}

.ct-hero__label {
    margin: 0 0 20px;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: #DBAE58;
    font-weight: 700;
    text-transform: uppercase;
}

.ct-hero__title {
    margin: 0 0 24px;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    font-weight: 800;
    color: #f7f4ee;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.ct-hero__desc {
    margin: 0 0 32px;
    font-size: 0.9rem;
    line-height: 2;
    color: rgba(247, 244, 238, 0.56);
    max-width: 520px;
}

.ct-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ct-chips li {
    padding: 7px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    color: rgba(247, 244, 238, 0.64);
}

/* Body layout */
.ct-body {
    max-width: 1080px;
    margin: 0 auto;
    padding: 72px 40px 120px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* Aside */
.ct-aside {
    position: sticky;
    top: 110px;
    border: 1px solid rgba(20, 20, 18, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.ct-aside__item {
    padding: 20px 22px;
    background: rgba(247, 244, 238, 0.6);
    border-bottom: 1px solid rgba(20, 20, 18, 0.07);
}

.ct-aside__label {
    margin: 0 0 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #DBAE58;
}

.ct-aside__value {
    margin: 0;
    font-size: 0.84rem;
    color: #333;
    font-weight: 500;
    line-height: 1.7;
}

.ct-aside__note {
    padding: 18px 22px;
    background: rgba(20, 20, 18, 0.03);
    border-top: none;
}

.ct-aside__note p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.8;
    color: #888;
}

/* Form row (two inputs side by side) */
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .ct-body {
        grid-template-columns: 1fr;
        padding: 56px 24px 80px;
    }

    .ct-aside {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .ct-aside__item {
        border-bottom: none;
        border-right: 1px solid rgba(20, 20, 18, 0.07);
    }

    .ct-aside__item:last-child {
        border-right: none;
    }

    .ct-aside__note {
        display: none;
    }
}

@media (max-width: 767px) {
    .ct-hero {
        padding: 140px 24px 72px;
    }

    .ct-aside {
        grid-template-columns: 1fr;
    }

    .ct-aside__item {
        border-right: none;
        border-bottom: 1px solid rgba(20, 20, 18, 0.07);
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   Privacy Policy — Modern Layout
================================ */

.privacy-page {
    background: #f4f0e8;
}

.pp-main {
    min-height: 100vh;
}

/* Hero */
.pp-hero {
    position: relative;
    background: #0f0f0e;
    padding: 160px 40px 80px;
    overflow: hidden;
}

.pp-hero::after {
    content: "PRIVACY";
    position: absolute;
    right: -0.05em;
    bottom: -0.18em;
    font-size: clamp(7rem, 18vw, 16rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.pp-hero__inner {
    max-width: 900px;
    margin: 0 auto;
}

.pp-hero__label {
    margin: 0 0 20px;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: #DBAE58;
    font-weight: 700;
    text-transform: uppercase;
}

.pp-hero__title {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    font-weight: 800;
    color: #f7f4ee;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

/* Body */
.pp-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 40px 120px;
}

.pp-lead {
    margin: 0 0 64px;
    font-size: 0.9rem;
    line-height: 2.1;
    color: #555;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(20, 20, 18, 0.1);
}

/* Article list */
.pp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pp-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(20, 20, 18, 0.1);
}

.pp-item__head {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.pp-item__num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #DBAE58;
    flex-shrink: 0;
    font-feature-settings: "tnum";
}

.pp-item__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.02em;
}

.pp-item__body {
    margin: 0;
    font-size: 0.875rem;
    line-height: 2.1;
    color: #555;
}

.pp-item__body p {
    margin: 0 0 12px;
}

.pp-item__body p:last-child {
    margin-bottom: 0;
}

.pp-item__body ol {
    margin: 16px 0 0;
    padding-left: 1.5em;
}

.pp-item__body ol li {
    margin-bottom: 8px;
    line-height: 1.9;
}

/* Contact info block */
.pp-contact {
    margin-top: 28px;
    border: 1px solid rgba(20, 20, 18, 0.1);
    border-radius: 3px;
    overflow: hidden;
    background: rgba(247, 244, 238, 0.6);
}

.pp-contact__list {
    margin: 0;
    padding: 0;
}

.pp-contact__row {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(20, 20, 18, 0.07);
}

.pp-contact__row:last-child {
    border-bottom: none;
}

.pp-contact__row dt {
    flex-shrink: 0;
    width: 120px;
    padding: 14px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #888;
    background: rgba(20, 20, 18, 0.03);
    border-right: 1px solid rgba(20, 20, 18, 0.07);
}

.pp-contact__row dd {
    margin: 0;
    padding: 14px 20px;
    font-size: 0.875rem;
    color: #333;
    line-height: 1.7;
}

.pp-contact__row dd a {
    color: #DBAE58;
    text-decoration: none;
    border-bottom: 1px solid rgba(219, 174, 88, 0.3);
}

/* Responsive */
@media (max-width: 767px) {
    .pp-hero {
        padding: 140px 24px 64px;
    }

    .pp-body {
        padding: 56px 24px 80px;
    }

    .pp-contact__row {
        flex-direction: column;
        gap: 0;
    }

    .pp-contact__row dt {
        width: auto;
        border-right: none;
        border-bottom: 1px solid rgba(20, 20, 18, 0.07);
        padding: 10px 16px;
    }

    .pp-contact__row dd {
        padding: 10px 16px 14px;
    }
}
.contact-form__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.contact-form__error {
    margin: 0 0 24px;
    padding: 14px 16px;
    border: 1px solid #a64040;
    color: #8f2727;
    background: #fff4f4;
    line-height: 1.7;
}

.contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.7;
}
