/* ── SOLEA CONTACT — contact.css ── */

/* ── Hero ── */
.ct-hero {
    background: var(--oak);
    padding: 120px 40px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ct-hero--photo {
    background-size: cover;
    background-position: center;
}
.ct-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30,12,0,.62) 0%, rgba(50,20,0,.55) 100%);
    z-index: 0;
}
.ct-hero--photo::before { display: none; }
.ct-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(196,149,106,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.ct-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 64px;
    background: var(--cream-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--oak-light);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.ct-eyebrow__line { display: inline-block; width: 32px; height: 1px; background: var(--oak-light); }
.ct-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    line-height: 0.95;
    color: var(--milk);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.ct-hero__title em { font-style: italic; color: var(--oak-light); }
.ct-hero__sub {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: rgba(255,248,217,0.55);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.ct-hero__scroll {
    position: absolute;
    bottom: 80px; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.ct-hero__scroll-line {
    display: block;
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--oak-light));
    margin: 0 auto;
    animation: ctScrollPulse 2s ease-in-out infinite;
}
@keyframes ctScrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50%       { opacity: 0.8; transform: scaleY(1); }
}

/* ── Main layout ── */
.ct-main { background: var(--cream-bg); padding: 80px 40px 100px; }
.ct-main__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

/* ── Form header ── */
.ct-form-header { margin-bottom: 40px; }
.ct-form-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    color: var(--oak);
    margin-bottom: 10px;
    line-height: 1.15;
}
.ct-form-sub {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--oak-mid);
    line-height: 1.7;
}

/* ── Form ── */
.ct-form { display: flex; flex-direction: column; gap: 20px; }
.ct-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ct-field { display: flex; flex-direction: column; gap: 8px; }
.ct-field__label {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--oak-mid);
    font-weight: 500;
}
.ct-required { color: var(--oak-light); }
.ct-field__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--sand);
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    transition: border-color 0.25s ease;
    border-radius: 0;
    -webkit-appearance: none;
}
.ct-field__input:focus { border-bottom-color: var(--oak-light); }
.ct-field__input::placeholder { color: var(--sand); }
.ct-field__input.is-invalid { border-bottom-color: #C0392B; }
.ct-field__error {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #C0392B;
    min-height: 16px;
    display: block;
}
.ct-field__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* Select */
.ct-select-wrap { position: relative; }
.ct-field__select { cursor: pointer; padding-right: 28px; }
.ct-select-arrow {
    position: absolute;
    right: 4px; top: 50%;
    transform: translateY(-50%);
    color: var(--oak-light);
    pointer-events: none;
}

/* Checkbox */
.ct-field--check { flex-direction: row; align-items: flex-start; gap: 0; }
.ct-check-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.ct-check-input { position: absolute; opacity: 0; width: 0; height: 0; }
.ct-check-box {
    width: 16px; height: 16px;
    border: 1px solid var(--sand);
    background: transparent;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
    position: relative;
}
.ct-check-input:checked + .ct-check-box { background: var(--oak); border-color: var(--oak); }
.ct-check-input:checked + .ct-check-box::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 5px; height: 9px;
    border: 1.2px solid var(--milk);
    border-top: none; border-left: none;
    transform: rotate(45deg);
}
.ct-check-text {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--oak-mid);
    line-height: 1.6;
}
.ct-link { color: var(--oak-light); text-decoration: underline; text-underline-offset: 2px; }

/* Submit */
.ct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    background: var(--milk);
    border: none;
    padding: 18px 40px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease;
    align-self: flex-start;
}
.ct-submit::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--oak-light);
    transform: translateX(-101%);
    transition: transform 0.35s ease;
    z-index: 0;
}
.ct-submit:hover::after { transform: translateX(0); }
.ct-submit__text, .ct-submit__icon, .ct-submit__loading { position: relative; z-index: 1; }
.ct-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.ct-spin { animation: ctSpin 0.8s linear infinite; }
@keyframes ctSpin { to { transform: rotate(360deg); } }

/* Feedback */
.ct-form-feedback {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    border-radius: 2px;
}
.ct-form-feedback--success {
    background: rgba(39,174,96,0.08);
    border: 1px solid rgba(39,174,96,0.25);
    color: #1e7e34;
}
.ct-form-feedback--error {
    background: rgba(192,57,43,0.06);
    border: 1px solid rgba(192,57,43,0.2);
    color: #922b21;
}

/* WhatsApp alternative */
.ct-wa-alt { margin-top: 36px; }
.ct-wa-alt__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sand);
}
.ct-wa-alt__divider::before, .ct-wa-alt__divider::after {
    content: ''; flex: 1; height: 1px; background: var(--sand);
}
.ct-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: var(--oak-mid);
    border: 1px solid var(--sand);
    padding: 14px 24px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.ct-wa-btn:hover { background: #25D366; border-color: #25D366; color: #fff; }

/* ── Info kolona ── */
.ct-info-col { position: sticky; top: 60px; display: flex; flex-direction: column; gap: 40px; }
.ct-info-cards { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--sand); }
.ct-info-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-bottom: 1px solid var(--sand);
    transition: background 0.25s ease;
}
.ct-info-card:last-child { border-bottom: none; }
.ct-info-card:hover { background: var(--cream-deep); }
.ct-info-card__icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.ct-info-card__title {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--oak-light);
    margin-bottom: 6px;
    font-weight: 500;
}
.ct-info-card__text {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--oak);
    line-height: 1.6;
    margin-bottom: 4px;
    display: block;
}
.ct-info-card__sub { font-family: var(--font-sans); font-size: 11px; color: var(--sand); font-weight: 300; }
.ct-info-card__link {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    color: var(--oak-light);
    text-decoration: none;
    margin-top: 4px;
    transition: color 0.2s;
}
.ct-info-card__link:hover { color: var(--oak); }

/* Oraret */
.ct-hours { display: flex; flex-direction: column; gap: 6px; }
.ct-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--oak);
}
.ct-hours__row--closed .ct-hours__time { color: var(--sand); }
.ct-hours__time { font-weight: 400; }

/* Social */
.ct-social__label {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 14px;
}
.ct-social__links { display: flex; gap: 12px; }
.ct-social__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    color: var(--oak-mid);
    border: 1px solid var(--sand);
    padding: 10px 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.ct-social__link:hover { background: var(--oak); border-color: var(--oak); color: var(--milk); }

/* ── Harta ── */
.ct-map-section { background: var(--cream-deep); position: relative; }
.ct-map-wrap { position: relative; height: 480px; }
.ct-map-wrap--no-iframe {
    height: auto;
    display: flex;
    align-items: stretch;
    background: var(--oak);
}
.ct-map-iframe { width: 100%; height: 100%; display: block; border: none; filter: grayscale(20%) contrast(1.05); }
.ct-map-card {
    position: absolute;
    top: 40px; left: 60px;
    background: var(--oak);
    padding: 32px 28px;
    min-width: 220px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.ct-map-card--static {
    position: static;
    box-shadow: none;
    padding: 60px 80px;
    min-width: 0;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.ct-map-card__name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 300;
    color: var(--milk);
    line-height: 1;
    margin-bottom: 4px;
}
.ct-map-card__sub {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--oak-light);
    margin-bottom: 16px;
}
.ct-map-card__divider { height: 1px; background: rgba(196,149,106,0.3); margin-bottom: 16px; }
.ct-map-card__addr {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,248,217,0.6);
    margin-bottom: 14px;
    line-height: 1.5;
}
.ct-map-card__directions {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--oak-light);
    text-decoration: none;
    transition: color 0.2s;
}
.ct-map-card__directions:hover { color: var(--milk); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .ct-main { padding: 60px 24px 80px; }
    .ct-main__inner { grid-template-columns: 1fr; gap: 60px; }
    .ct-info-col { position: static; }
    .ct-map-wrap { height: 380px; }
    .ct-map-card { left: 20px; top: 20px; }
}
@media (max-width: 640px) {
    .ct-hero { padding: 80px 24px 90px; }
    .ct-form__row { grid-template-columns: 1fr; }
    .ct-submit { width: 100%; justify-content: center; }
    .ct-map-wrap { height: 320px; }
    .ct-map-card { display: none; }
    .ct-social__links { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .ct-hero { padding: 70px 20px 80px; }
    .ct-hero__title { font-size: 38px; line-height: 1.1; }
    .ct-hero__sub { font-size: 14px; max-width: 100%; }
    .ct-eyebrow { font-size: 9px; letter-spacing: 3px; }
    .ct-form-title { font-size: 22px; }
    .ct-main { padding: 48px 20px 64px; }
    .ct-wa-btn { font-size: 13px; padding: 14px 20px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
