/* Brand palette for this page */
:root{
    --ag-white:#fff;
    --ag-ink:#201713;
    --ag-muted:#6a6b6d;

    --ag-orange:#D86B2F;          /* solid orange (cards/buttons) */
    --ag-orange-600:#BB5E2A;
    --ag-orange-100:#F6DED3;      /* light field background */
    --ag-brown:#4B2C21;           /* footer bg */
    --ag-brown-700:#3B231A;

    --radius-lg:22px;
    --radius-xl:28px;
    --shadow:0 10px 30px rgba(0,0,0,.12);
}

/* ---------- Hero ---------- */
.contact-hero{ min-height: 54vh; }
.contact-hero .jarallax-img{
    object-fit: cover; width: 100%; height: 100%;
}

/* ---------- Contact + Newsletter ---------- */
.contact-section{ padding: clamp(28px, 4vw, 48px) 0; }

.ag-form .ag-input{
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--ag-orange-100);
    padding: 14px 18px;
    font-weight: 500;
    outline: 0;
}

.ag-form .ag-textarea{
    border-radius: var(--radius-lg);
    resize: vertical;
    min-height: 150px;
}

.ag-btn{
    display: inline-block;
    border: 0;
    background: var(--ag-orange);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow);
}
.ag-btn:hover{ background: var(--ag-orange-600); color:#fff; }

.ag-btn--dark{
    background: #2f251f;
}
.ag-btn--dark:hover{ background: #221a15; }

/* Newsletter card */
.newsletter-card{
    position: relative;
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    background: var(--ag-orange);
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 320px;
}
.newsletter-card__bg{
    position: absolute; inset: -10% -10% -10% -10%; z-index: 0;
    background:
        radial-gradient(120% 90% at 85% 20%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 60%),
        radial-gradient(90% 70% at 20% 80%, rgba(0,0,0,.12) 0%, rgba(0,0,0,0) 60%);
}
.newsletter-card > *{ position: relative; z-index: 1; }
.newsletter-title{ font-weight: 800; margin: 0 0 6px; }
.newsletter-text{ margin: 0 0 14px; opacity: .95; }

.newsletter-row{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}
.newsletter-input{
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    width: 100%;
}

/* ---------- Info cards ---------- */
.info-cards{ padding: clamp(24px, 4vw, 48px) 0; }

.info-card{
    border-radius: var(--radius-lg);
    padding: 18px;
    background: var(--ag-white);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 14px;
    align-items: start;
}
.info-card__icon{
    display: grid; place-items: center;
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(255,255,255,.2);
}
.info-card__title{ margin: 2px 0 6px; font-weight: 800; }
.info-card__text{ margin: 0; color: var(--ag-muted); }

/* color variants */
.info-card--solid{ background: var(--ag-orange); color: #fff; }
.info-card--tint{ background: #fff2ea; }
.info-card--light{ background: #faf6f4; }

.info-card--solid .info-card__icon{ background: rgba(255,255,255,.2); }
.info-card__icon--tint{ background: #ffe8dc; }
.info-card__icon--light{ background: #f5eae5; }

/* ---------- Map ---------- */
.map-wrap{ padding: 8px 0 48px; }
.map-frame{
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-frame iframe{
    border: 0; width: 100%; height: clamp(280px, 40vh, 420px);
}

/* ---------- Footer theme ---------- */
.footer{
    background: var(--ag-brown);
    color: #fff;
}
.footer .divider{ border-color: rgba(255,255,255,.15); }
.footer .grid{ display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 28px; }
.footer .lead{ opacity: .95; }
.footer .copy{ opacity: .85; }
.footer .col-title{ font-weight: 800; margin-bottom: 10px; }
.footer .menu, .footer .social{ list-style: none; padding: 0; margin: 0; }
.footer .menu li + li,
.footer .social li + li{ margin-top: 10px; }
.footer .menu a, .footer .social a{ color: #fff; opacity: .9; text-decoration: none; }
.footer .menu a:hover, .footer .social a:hover{ opacity: 1; text-decoration: underline; }
.footer .bottom{
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; padding-top: 14px;
    /*border-top: 1px solid rgba(255,255,255,.15);*/
    margin-top: 16px;
}
.footer .legal a{ color:#fff; opacity:.85; margin-left:16px; }

/* Responsive */
@media (max-width: 991px){
    .footer .grid{ grid-template-columns: 1fr; }
}
