.contact-flex {
   display: grid;
   grid-template-columns: .9fr 1.1fr;
   gap: 56px;
   align-items: start
}

.contact-info .eyebrow {
   margin-bottom: 16px
}

.contact-info h2 {
   font-size: clamp(1.9rem, 3.8vw, 2.8rem);
   color: var(--green-800);
   margin-bottom: 14px
}

.contact-info h2 em {
   font-style: italic;
   color: var(--gold-600)
}

.contact-info>p {
   color: var(--muted);
   font-size: 1.05rem;
   margin-bottom: 32px;
   max-width: 440px
}

.contact-cards {
   display: flex;
   flex-direction: column;
   gap: 16px
}

.c-card {
   display: flex;
   gap: 18px;
   align-items: flex-start;
   background: var(--white);
   border: 1px solid rgba(18, 69, 42, .08);
   border-radius: var(--radius-sm);
   padding: 22px 24px;
   box-shadow: var(--shadow-sm);
   transition: transform .35s, box-shadow .35s
}

.c-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-md)
}

.c-card .c-ic {
   width: 50px;
   height: 50px;
   flex-shrink: 0;
   border-radius: 14px;
   background: var(--green-grad);
   display: flex;
   align-items: center;
   justify-content: center
}

.c-card .c-ic svg {
   width: 24px;
   height: 24px;
   stroke: var(--gold-300);
   fill: none;
   stroke-width: 1.9
}

.c-card h4 {
   font-size: 1.08rem;
   color: var(--green-800);
   margin-bottom: 3px
}

.c-card p,
.c-card a {
   color: var(--muted);
   font-size: .95rem;
   margin: 0;
   line-height: 1.5
}

.c-card a:hover {
   color: var(--green-600)
}

.c-card .c-sub {
   font-size: .82rem;
   color: var(--gold-600);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .06em;
   margin-top: 4px
}

.cform {
   background: var(--white);
   border-radius: var(--radius);
   padding: 44px 42px;
   box-shadow: var(--shadow-md);
   border: 1px solid rgba(18, 69, 42, .06)
}

.cform h3 {
   font-size: 1.6rem;
   color: var(--green-800);
   margin-bottom: 6px
}

.cform h3 em {
   font-style: italic;
   color: var(--gold-600)
}

.cform .cform-sub {
   color: var(--muted);
   font-size: .96rem;
   margin-bottom: 26px
}

.frow {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 18px
}

.field {
   margin-bottom: 18px
}

.field label {
   display: block;
   font-weight: 700;
   font-size: .82rem;
   color: var(--green-800);
   margin-bottom: 8px;
   letter-spacing: .02em
}

.field input,
.field select,
.field textarea {
   width: 100%;
   font-family: var(--sans);
   font-size: .98rem;
   color: var(--ink);
   background: var(--cream);
   border: 1.5px solid rgba(18, 69, 42, .12);
   border-radius: 12px;
   padding: 14px 16px;
   transition: border-color .3s, box-shadow .3s;
   outline: none
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
   border-color: var(--gold-500);
   box-shadow: 0 0 0 4px rgba(216, 180, 90, .16);
   background: var(--white)
}

.field input::placeholder,
.field textarea::placeholder {
   color: #9aa89f
}

.cform .btn-nv {
   width: 100%;
   justify-content: center;
   margin-top: 6px
}

.form-success {
   display: none;
   background: linear-gradient(135deg, rgba(47, 155, 92, .14), rgba(37, 211, 102, .16));
   border: 1.5px solid rgba(47, 155, 92, .4);
   color: var(--green-700);
   border-radius: 12px;
   padding: 16px 20px;
   font-weight: 700;
   font-size: .95rem;
   margin-bottom: 22px;
   align-items: center;
   gap: 10px
}

.form-note {
   font-size: .82rem;
   color: var(--muted);
   text-align: center;
   margin-top: 16px
}

.contact-strip {
   background: var(--green-900);
   padding: 0
}

.contact-strip .cs-grid {
   display: grid;
   grid-template-columns: 1.3fr 1fr
}

.contact-strip .cs-map {
   min-height: 340px;
   position: relative;
   overflow: hidden
}

.contact-strip .cs-map iframe {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   border: 0;
   filter: grayscale(.3) contrast(1.05)
}

.contact-strip .cs-hours {
   padding: 54px 48px;
   color: #fff
}

.contact-strip .cs-hours .eyebrow {
   color: var(--gold-400);
   margin-bottom: 16px
}

.contact-strip .cs-hours h3 {
   color: #fff;
   font-size: 1.7rem;
   margin-bottom: 22px
}

.hours-list li {
   display: flex;
   justify-content: space-between;
   gap: 16px;
   padding: 13px 0;
   border-bottom: 1px solid rgba(255, 255, 255, .1);
   font-size: .95rem;
   color: rgba(255, 255, 255, .78)
}

.hours-list li b {
   color: #fff;
   font-weight: 600
}

.hours-list li .h-em {
   color: var(--gold-400);
   font-weight: 700
}