/* Extracted from views/frontend/contact-us.blade.php */
/* ── OM OSS REDESIGN — scoped under .om-redesign ── */
.om-redesign {
    --om-wine: #862736;
    --om-wine-hover: #9c2e40;
    --om-wine-dark: #5c1a25;
    --om-wine-light: rgba(134, 39, 54, 0.08);
    --om-wine-light-solid: #f4e8ea;
    --om-cream: #faf8f5;
    --om-text: #1a1a1a;
    --om-text-sec: #5a5550;
    --om-text-muted: #8a8580;
    --om-border: rgba(0, 0, 0, 0.08);
    --om-border-strong: rgba(0, 0, 0, 0.12);
    --om-font-display: 'Playfair Display', Georgia, serif;
    --om-font-body: 'Source Sans 3', -apple-system, sans-serif;
    --om-max-w: 1080px;
    --om-radius: 10px;
    --om-radius-lg: 14px;
    font-family: var(--om-font-body);
    color: var(--om-text);
    -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.om-hero {
    max-width: var(--om-max-w);
    margin: 0 auto;
    padding: 4rem 2rem 3.5rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
    align-items: center;
}
.om-hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--om-wine);
    margin-bottom: 1rem;
}
.om-hero__heading {
    font-family: var(--om-font-display);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--om-text);
    margin-bottom: 1.25rem;
}
.om-hero__heading em { color: var(--om-wine); font-style: italic; }
.om-hero__desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--om-text-sec);
    margin-bottom: 1.5rem;
}
.om-hero__desc p + p { margin-top: 0.75rem; }
.om-hero__social {
    display: flex;
    gap: 0.5rem;
}
.om-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--om-cream);
    border: 1px solid var(--om-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    text-decoration: none;
}
.om-social-link:hover {
    background: var(--om-wine);
    border-color: var(--om-wine);
    transform: translateY(-2px);
    text-decoration: none;
}
.om-social-link svg {
    width: 16px; height: 16px;
    fill: var(--om-text-muted);
    transition: fill 0.2s;
}
.om-social-link:hover svg { fill: #fff; }
.om-hero__image-frame {
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, #e8e2da, #d4cec6);
    border-radius: var(--om-radius-lg);
    overflow: hidden;
}
.om-hero__image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.om-hero__image-caption {
    font-size: 0.7rem;
    color: var(--om-text-muted);
    text-align: right;
    margin-top: 0.5rem;
}

/* ── ADVISORY ── */
.om-advisory {
    max-width: var(--om-max-w);
    margin: 0 auto;
    padding: 0 2rem 1rem;
}
.om-advisory__box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #664d03;
}

/* ── STORY SECTION ── */
.om-story {
    background: var(--om-cream);
    border-top: 1px solid var(--om-border);
    border-bottom: 1px solid var(--om-border);
    padding: 4rem 2rem;
}
.om-story__inner {
    max-width: 720px;
    margin: 0 auto;
}
.om-section-heading {
    font-family: var(--om-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--om-text);
    text-align: center;
    margin-bottom: 0.5rem;
}
.om-section-heading::after {
    content: '';
    display: block;
    width: 40px; height: 3px;
    background: var(--om-wine);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}
.om-section-sub {
    font-size: 0.95rem;
    color: var(--om-text-sec);
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
}
.om-story__text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--om-text-sec);
}
.om-story__text p + p { margin-top: 1.25rem; }
.om-story__quote {
    font-family: var(--om-font-display);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--om-wine-dark);
    border-left: 3px solid var(--om-wine);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* ── VALUES ── */
.om-values {
    padding: 4rem 2rem;
}
.om-values__inner {
    max-width: var(--om-max-w);
    margin: 0 auto;
}
.om-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.om-value-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    text-align: center;
    transition: border-color 0.2s;
}
.om-value-card:hover { border-color: var(--om-border-strong); }
.om-value-card__icon {
    width: 52px; height: 52px;
    margin: 0 auto 1.25rem;
    background: var(--om-wine-light-solid);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.om-value-card__icon svg { width: 24px; height: 24px; }
.om-value-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--om-text);
    margin-bottom: 0.5rem;
}
.om-value-card__desc {
    font-size: 0.85rem;
    color: var(--om-text-sec);
    line-height: 1.6;
}

/* ── TEAM ── */
.om-team {
    padding: 4rem 2rem;
    background: var(--om-cream);
    border-top: 1px solid var(--om-border);
    border-bottom: 1px solid var(--om-border);
}
.om-team__inner {
    max-width: var(--om-max-w);
    margin: 0 auto;
}
.om-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}
.om-team-card {
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.om-team-card:hover {
    border-color: var(--om-border-strong);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.om-team-card__avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    background: var(--om-wine-light-solid);
    display: flex;
    align-items: center;
    justify-content: center;
}
.om-team-card__avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.om-team-card__avatar-initials {
    font-family: var(--om-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--om-wine);
}
.om-team-card__name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--om-text);
    margin-bottom: 0.2rem;
}
.om-team-card__role {
    font-size: 0.78rem;
    color: var(--om-wine);
    font-weight: 500;
    margin-bottom: 0.6rem;
}
.om-team-card__bio {
    font-size: 0.8rem;
    color: var(--om-text-sec);
    line-height: 1.6;
}
.om-team-card__email {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: var(--om-wine);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.om-team-card__email:hover { color: var(--om-wine-hover); text-decoration: none; }

/* ── CONTACT ── */
.om-contact {
    padding: 4rem 2rem;
}
.om-contact__inner {
    max-width: var(--om-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.om-contact-form {
    background: var(--om-cream);
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    padding: 2rem;
}
.om-contact-form__heading {
    font-family: var(--om-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--om-text);
    margin-bottom: 0.35rem;
}
.om-contact-form__sub {
    font-size: 0.85rem;
    color: var(--om-text-sec);
    margin-bottom: 1.5rem;
}
.om-form-group {
    margin-bottom: 1rem;
}
.om-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--om-text);
    margin-bottom: 0.35rem;
}
.om-form-group input,
.om-form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--om-border-strong);
    border-radius: 6px;
    font-family: var(--om-font-body);
    font-size: 0.875rem;
    color: var(--om-text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.om-form-group input:focus,
.om-form-group textarea:focus {
    border-color: var(--om-wine);
}
.om-form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.om-form-group input::placeholder,
.om-form-group textarea::placeholder {
    color: var(--om-text-muted);
}
.om-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.om-form-checkbox input[type="checkbox"] {
    width: 16px; height: 16px;
    margin-top: 2px;
    accent-color: var(--om-wine);
    flex-shrink: 0;
}
.om-form-checkbox label {
    font-size: 0.78rem;
    color: var(--om-text-sec);
    line-height: 1.5;
}
.om-form-checkbox a {
    color: var(--om-wine);
    text-decoration: none;
}
.om-form-submit {
    width: 100%;
    padding: 0.8rem;
    background: var(--om-wine);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--om-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.om-form-submit:hover { background: var(--om-wine-hover); }
.om-form-note {
    font-size: 0.72rem;
    color: var(--om-text-muted);
    margin-top: 0.75rem;
    text-align: center;
}
.om-form-alert {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
}
.om-form-alert--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.om-form-alert--danger {
    background: #fce8e8;
    color: #c62828;
    border: 1px solid #f5c6c6;
}
.om-form-alert ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
}
.om-form-alert .om-alert-close {
    float: right;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    line-height: 1;
}
.om-form-alert .om-alert-close:hover { opacity: 1; }

/* Contact info sidebar */
.om-contact-info__heading {
    font-family: var(--om-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--om-text);
    margin-bottom: 1.5rem;
}
.om-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.om-contact-info-item__icon {
    width: 44px; height: 44px;
    background: var(--om-wine-light-solid);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.om-contact-info-item__icon svg { width: 20px; height: 20px; }
.om-contact-info-item__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--om-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}
.om-contact-info-item__value {
    font-size: 0.95rem;
    color: var(--om-text);
    font-weight: 500;
}
.om-contact-info-item__value a {
    color: var(--om-text);
    text-decoration: none;
    transition: color 0.15s;
}
.om-contact-info-item__value a:hover { color: var(--om-wine); text-decoration: none; }
.om-response-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #e8f5e9;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-top: 2rem;
}
.om-response-badge__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
}
.om-response-badge__text {
    font-size: 0.8rem;
    color: #2e7d32;
    font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .om-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .om-hero__image-frame { max-width: 320px; }
    .om-contact__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .om-values__grid { grid-template-columns: 1fr; }
    .om-team__grid { grid-template-columns: 1fr; }
    .om-hero { padding: 2.5rem 1.25rem 2rem; }
    .om-story { padding: 3rem 1.25rem; }
    .om-values { padding: 3rem 1.25rem; }
    .om-team { padding: 3rem 1.25rem; }
    .om-contact { padding: 3rem 1.25rem; }
}
