:root {
    --ofa-primary: #EFAC34;
    --ofa-primary-dark: #d98b0f;
    --ofa-primary-soft: #f9e1b5;
    --ofa-accent: #CF4730;
    --ofa-ink: #1f1f1f;
    --ofa-muted: #737373;
    --ofa-line: rgba(31, 31, 31, 0.14);
    --ofa-bg: #f7f4ee;
    --ofa-card: #ffffff;
    --ofa-shadow: 0 28px 70px rgba(29, 25, 18, 0.1);
    --ofa-radius: 28px;
    --ofa-font: "Gotham", "Gotham Book", "Montserrat", "Avenir Next", Arial, sans-serif;
}

.ofa-contact-page {
    background: var(--ofa-bg);
    color: var(--ofa-ink);
    font-family: var(--ofa-font);
    width: 100%;
    max-width: none;
}

.ofa-contact-page * {
    box-sizing: border-box;
}

.ofa-contact-page h1,
.ofa-contact-page h2,
.ofa-contact-page p,
.ofa-contact-page a,
.ofa-contact-page input,
.ofa-contact-page select,
.ofa-contact-page textarea,
.ofa-contact-page button,
.ofa-contact-page span,
.ofa-contact-page label {
    font-family: var(--ofa-font);
}

.ofa-contact-page h1 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 45px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.ofa-contact-page h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.12;
    font-weight: 700;
}

.ofa-contact-page p,
.ofa-contact-page li,
.ofa-contact-page input,
.ofa-contact-page select,
.ofa-contact-page textarea,
.ofa-contact-page button {
    font-size: 17px;
    line-height: 1.6;
}

.ofa-contact-page a {
    color: inherit;
    text-decoration-color: rgba(239, 172, 52, 0.65);
    text-underline-offset: 0.18em;
}

.ofa-contact-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: clamp(340px, 42vw, 520px);
    overflow: hidden;
    background: #dad6cf;
}

.ofa-contact-hero__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: 57%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
    will-change: transform;
}

.ofa-contact-hero__panel--left {
    left: 0;
    clip-path: polygon(0 0, 78% 0, 61% 100%, 0 100%);
}

.ofa-contact-hero__panel--right {
    inset: 0 0 0 auto;
    clip-path: polygon(36% 0, 100% 0, 100% 100%, 19% 100%);
}

.ofa-contact-hero__center {
    position: absolute;
    inset: -8% 0;
    pointer-events: none;
}

.ofa-contact-hero__bar {
    position: absolute;
    top: -2%;
    bottom: -2%;
    left: 50%;
    display: block;
    transform: translateX(-50%) skewX(-11deg);
    transform-origin: center;
    background: rgba(246, 242, 236, 0.96);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
}

.ofa-contact-hero__bar--main {
    width: min(24vw, 290px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 0 40px rgba(255,255,255,0.32);
}

.ofa-contact-hero__bar--ghost {
    left: calc(50% + min(7.5vw, 84px));
    width: min(6.2vw, 78px);
    background: rgba(255,255,255,0.23);
}

.ofa-contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.07), rgba(0,0,0,.12));
    pointer-events: none;
}

.ofa-contact-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 82px) 24px 30px;
}

.ofa-contact-shell__intro {
    max-width: 840px;
    margin: 0 auto 42px;
    text-align: center;
}

.ofa-contact-kicker {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ofa-primary-dark);
}

.ofa-contact-title-accent {
    position: relative;
    width: 170px;
    height: 18px;
    margin: 20px auto 18px;
}

.ofa-contact-title-accent::before,
.ofa-contact-title-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 999px;
    background: var(--ofa-primary);
}

.ofa-contact-title-accent::before {
    top: 8px;
    width: 170px;
    height: 2px;
}

.ofa-contact-title-accent::after {
    top: 0;
    width: 38px;
    height: 18px;
    -webkit-mask: linear-gradient(#000 0 0) center/100% 2px no-repeat, linear-gradient(#000 0 0) center 8px/100% 2px no-repeat;
    mask: linear-gradient(#000 0 0) center/100% 2px no-repeat, linear-gradient(#000 0 0) center 8px/100% 2px no-repeat;
}

.ofa-contact-intro {
    margin: 0;
    color: var(--ofa-muted);
}

.ofa-contact-grid {
    display: grid;
    grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.ofa-contact-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(207, 71, 48, 0.08);
    border-radius: var(--ofa-radius);
    box-shadow: var(--ofa-shadow);
    backdrop-filter: blur(7px);
}

.ofa-contact-card--info {
    padding: 28px 28px 34px;
    position: sticky;
    top: 24px;
}

.ofa-contact-card__badge-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.ofa-contact-card__badge {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(239, 172, 52, 0.16);
    box-shadow: 0 14px 32px rgba(33, 25, 12, 0.13);
    background: #fff;
}

.ofa-contact-card__logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

.ofa-contact-card__logos img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 10px;
    border: 1px solid rgba(31,31,31,.06);
}

.ofa-info-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.ofa-info-item + .ofa-info-item {
    margin-top: 26px;
}

.ofa-info-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(239, 172, 52, 0.18), rgba(207, 71, 48, 0.08));
    color: var(--ofa-primary-dark);
}

.ofa-info-item__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.ofa-info-item h2 {
    margin-bottom: 6px;
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ofa-primary-dark);
}

.ofa-info-item p {
    margin: 0;
    color: #4d4d4d;
}

.ofa-contact-card--form {
    padding: clamp(24px, 3.2vw, 42px);
}

.ofa-contact-card__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ofa-line);
}

.ofa-contact-card__header h2 {
    font-size: clamp(28px, 2.8vw, 36px);
}

.ofa-contact-card__header p {
    margin: 0;
    color: var(--ofa-muted);
    font-size: 15px;
}

.ofa-contact-alert {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.ofa-contact-alert--success {
    background: rgba(239, 172, 52, 0.16);
    color: #6c4703;
}

.ofa-contact-alert--error {
    background: rgba(207, 71, 48, 0.12);
    color: #8d2a18;
}

.ofa-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.ofa-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ofa-field--full {
    grid-column: 1 / -1;
}

.ofa-field span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #4b4b4b;
    font-weight: 700;
}

.ofa-field strong {
    color: var(--ofa-accent);
}

.ofa-field input,
.ofa-field select,
.ofa-field textarea {
    width: 100%;
    appearance: none;
    border: 1px solid rgba(31, 31, 31, 0.16);
    border-radius: 16px;
    padding: 15px 18px;
    background: #fff;
    color: var(--ofa-ink);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.ofa-field select {
    background-image: linear-gradient(45deg, transparent 50%, var(--ofa-ink) 50%), linear-gradient(135deg, var(--ofa-ink) 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 46px;
}

.ofa-field textarea {
    min-height: 185px;
    resize: vertical;
}

.ofa-field input:focus,
.ofa-field select:focus,
.ofa-field textarea:focus {
    outline: none;
    border-color: var(--ofa-primary);
    box-shadow: 0 0 0 5px rgba(239, 172, 52, 0.16);
    transform: translateY(-1px);
}

.ofa-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    color: #555;
}

.ofa-checkbox input {
    width: 19px;
    height: 19px;
    accent-color: var(--ofa-primary-dark);
    margin-top: 4px;
}

.ofa-checkbox a {
    color: var(--ofa-accent);
}

.ofa-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.ofa-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.ofa-form-note {
    margin: 0;
    max-width: 460px;
    color: var(--ofa-muted);
    font-size: 15px;
}

.ofa-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border: 1px solid rgba(207, 71, 48, 0.28);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ofa-primary), #f5a214);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(239, 172, 52, 0.24);
    transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

.ofa-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
}

.ofa-button__icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ofa-button:hover,
.ofa-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(239, 172, 52, 0.32);
    filter: saturate(1.04);
}

.ofa-map-section {
    padding: 10px 24px 60px;
}

.ofa-map-shell {
    max-width: 1320px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--ofa-shadow);
    border: 1px solid rgba(31,31,31,0.08);
    background: #fff;
}

.ofa-map-shell iframe {
    display: block;
    width: 100%;
    min-height: 520px;
    border: 0;
}

.ofa-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.ofa-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .ofa-contact-grid {
        grid-template-columns: 1fr;
	}
	
    .ofa-contact-card--info {
        position: static;
	}
	
    .ofa-contact-card__header,
    .ofa-form-footer {
        flex-direction: column;
        align-items: flex-start;
	}
}

@media (max-width: 767px) {
    .ofa-contact-shell,
    .ofa-map-section {
        padding-left: 16px;
        padding-right: 16px;
	}
	
    .ofa-contact-hero {
        min-height: 250px;
	}
	
    .ofa-contact-hero__panel {
        width: 62%;
	}
	
    .ofa-contact-hero__panel--left {
        clip-path: polygon(0 0, 83% 0, 61% 100%, 0 100%);
	}
	
    .ofa-contact-hero__panel--right {
        clip-path: polygon(42% 0, 100% 0, 100% 100%, 20% 100%);
	}
	
    .ofa-contact-hero__bar--main {
        width: 34vw;
	}
	
    .ofa-contact-hero__bar--ghost {
        left: calc(50% + 12vw);
        width: 9vw;
	}
	
    .ofa-contact-card {
        border-radius: 22px;
	}
	
    .ofa-form-grid,
    .ofa-contact-card__logos {
        grid-template-columns: 1fr;
	}
	
    .ofa-map-shell iframe {
        min-height: 380px;
	}
	
    .ofa-button {
        width: 100%;
        justify-content: center;
	}
}
