        .page-wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 90px 40px 80px;
            position: relative;
            z-index: 1;
        }

        .contact-card.contact-info-card {
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 0;
            padding: 8px 36px;
            background:
                linear-gradient(to right, #F8F4EF 30%, rgba(248,244,239,0.15) 100%),
                url('../images/wildroot-contact-back.png') right center / cover no-repeat;
        }

        .contact-card.contact-info-card .contact-info-item {
            justify-content: flex-start;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
        }

        .contact-info-divider {
            height: 1px;
            width: 100%;
            background: rgba(30,58,32,0.1);
        }

        .contact-card {
            background: #F8F4EF;
            border: 1px solid rgba(30,58,32,0.1);
            border-top: 3px solid rgba(176,160,95,0.5);
            border-radius: 8px;
            padding: 36px 40px;
            margin-bottom: 20px;
            display: flex;
            gap: 28px;
            align-items: flex-start;
            box-shadow: 0 4px 20px rgba(30,58,32,0.08);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            border-color: rgba(176,160,95,0.4);
            border-top-color: #B0A05F;
            box-shadow: 0 8px 28px rgba(30,58,32,0.12);
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            background: #1E3A20;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 26px;
            height: 26px;
            fill: none;
            stroke: #B0A05F;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .contact-icon svg [fill="#B0A05F"] {
            fill: #B0A05F;
            stroke: none;
        }

        .contact-label {
            font-family: var(--font-primary);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #B0A05F;
            margin-bottom: 8px;
        }

        .contact-value {
            font-size: 22px;
            color: #1E3A20;
            line-height: 1.6;
        }
        .contact-value a {
            color: inherit;
            text-decoration: none;
        }
        .contact-value a:hover {
            text-decoration: underline;
        }

        .contact-form-card {
            display: block;
            padding: 32px 40px;
        }
        .form-note {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-weight: 700;
            font-size: 28px;
            color: #1E3A20;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        .contact-form-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .form-row {
            display: flex;
            gap: 14px;
        }
        .form-row input { flex: 1; }
        .contact-form-card input,
        .contact-form-card textarea {
            background: rgba(255,255,255,0.6);
            border: 1px solid rgba(30,58,32,0.15);
            border-radius: 6px;
            padding: 12px 16px;
            color: #1E3A20;
            font-size: 15px;
            font-family: var(--font-primary);
            width: 100%;
            outline: none;
            transition: border-color 0.2s;
            resize: vertical;
        }
        .contact-form-card input::placeholder,
        .contact-form-card textarea::placeholder {
            color: rgba(30,58,32,0.35);
        }
        .contact-form-card input:focus,
        .contact-form-card textarea:focus {
            border-color: rgba(176,160,95,0.6);
        }
        .contact-form-card button[type="submit"] {
            align-self: flex-end;
            background: #1E3A20;
            border: none;
            border-radius: 50px;
            color: #B0A05F;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 16px 44px;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease;
        }
        .contact-form-card button[type="submit"]:hover {
            background: #2d5a32;
            color: #C9B870;
        }
        .contact-form-card button[type="submit"]:disabled {
            opacity: 0.5;
            cursor: default;
        }
        .form-status {
            font-size: 14px;
            min-height: 20px;
        }
        .form-status.success { color: #7ec87e; }
        .form-status.error   { color: #e07070; }

        .contact-map-card {
            display: block;
            padding: 0;
            overflow: hidden;
        }
        .contact-map {
            width: 100%;
        }
        .contact-map iframe {
            display: block;
            width: 100%;
            height: 300px;
            border: none;
        }
        .directions-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px;
            color: #B0A05F;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.2s;
        }
        .directions-btn:hover {
            background: rgba(176,160,95,0.08);
        }
        .directions-btn svg {
            width: 16px;
            height: 16px;
            stroke: #B0A05F;
        }

        @media (max-width: 768px) {
            .page-wrap { padding: 60px 16px 60px; }
            .contact-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
            .contact-info-card, .contact-card.contact-info-card { padding: 4px 20px; }
            .contact-label { font-size: 10px; }
            .contact-value { font-size: 17px; }
            .contact-icon { width: 44px; height: 44px; }
            .contact-icon svg { width: 20px; height: 20px; }
            .contact-form-card { padding: 20px 16px; }
            .form-note { font-size: 20px; }
            .form-row { flex-direction: column; }
            .contact-form-card button[type="submit"] { align-self: stretch; }
            .contact-map iframe { height: 200px; }
        }
