    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Lato', sans-serif; background: #efefef; }
 
    /* ══════════════════════════════
       CONTACT SECTION
    ══════════════════════════════ */
    .contact-section {
      background: #efefef;
      padding: 55px 36px 65px;
    }
 
    /* Header */
    .contact-header {
      text-align: center;
      margin-bottom: 44px;
    }
    .contact-header .tag {
      font-size: 14px;
      font-weight: 700;
      color: #4a7a1e;
      margin-bottom: 8px;
    }
    .contact-header h2 {
      font-size: 40px;
      font-weight: 900;
      color: #1a1a1a;
      margin-bottom: 12px;
    }
    .contact-header p {
      font-size: 15px;
      color: #555;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }
 
    /* ── Main Grid ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    /* ── Left: Info Cards ── */
    .contact-info { display: flex; flex-direction: column; gap: 18px; }
 
    .info-card {
      background: #fff;
      border-left: 4px solid #3b5323;
      padding: 22px 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      border-radius: 0 6px 6px 0;
    }
    .info-card .icon-wrap {
      width: 46px; height: 46px;
      background: #3b5323;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .info-card .icon-wrap svg { width: 22px; height: 22px; }
    .info-card .info-text h4 {
      font-size: 15px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 5px;
    }
    .info-card .info-text p,
    .info-card .info-text a {
      font-size: 13.5px;
      color: #555;
      line-height: 1.7;
      text-decoration: none;
    }
    .info-card .info-text a:hover { color: #3b5323; }
 
    /* Hours table */
    .hours-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 2px 14px;
      font-size: 13px;
      color: #555;
      margin-top: 4px;
    }
    .hours-grid .day { font-weight: 600; color: #333; }
    .hours-grid .closed { color: #cc2200; font-weight: 600; }
    .hours-grid .open  { color: #3b5323; font-weight: 600; }
 
    /* Social icons */
    .social-row {
      display: flex;
      gap: 10px;
      margin-top: 6px;
    }
    .social-row a {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: #3b5323;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      transition: background 0.2s;
    }
    .social-row a:hover { background: #4a7a28; }
    .social-row a svg { width: 16px; height: 16px; }
 
    /* ── Right: Map + Form ── */
    .contact-right { display: flex; flex-direction: column; gap: 22px; }
 
    /* Map */
    .map-wrap {
      width: 100%;
      height: 240px;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .map-wrap iframe {
      width: 100%; height: 100%;
      border: none;
    }
 
    /* Form */
    .contact-form {
      background: #fff;
      padding: 28px 28px 24px;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .contact-form h3 {
      font-size: 18px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 2px solid #e8f0d8;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group label {
      font-size: 12.5px;
      font-weight: 700;
      color: #444;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      border: 1.5px solid #ddd;
      border-radius: 4px;
      padding: 10px 13px;
      font-size: 13.5px;
      font-family: 'Lato', sans-serif;
      color: #333;
      outline: none;
      transition: border-color 0.2s;
      background: #fafafa;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #3b5323;
      background: #fff;
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-group.full { grid-column: 1 / -1; }
 
    .submit-btn {
      background: #3b5323;
      color: #fff;
      border: none;
      padding: 12px 34px;
      font-size: 14px;
      font-weight: 700;
      font-family: 'Lato', sans-serif;
      cursor: pointer;
      border-radius: 4px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      transition: background 0.2s;
      margin-top: 6px;
    }
    .submit-btn:hover { background: #4a7a28; }
 
    /* ══ RESPONSIVE ══ */
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 540px) {
      .contact-section { padding: 36px 16px 48px; }
      .contact-header h2 { font-size: 28px; }
      .form-row { grid-template-columns: 1fr; }
    }