body {
  
  font-family: 'Montserrat', sans-serif;
}

/* Container using established 85vw width for consistency */
.contact-widget {
    width: 85vw;
    max-width: 1200px;
    margin: 100px auto;
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

/* Top Label with Yellow Line */
.label-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.label {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    font-weight: 400;
}

.line {
    height: 1px;
    background-color: #ddd;
    flex-grow: 1;
    max-width: 300px;
}

/* Main Text Area */
.cta-heading {
    margin-bottom: 80px;
}

.title-bold {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 25px;
}

.subtitle-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #333;
    max-width: 900px;
    line-height: 1.2;
}

/* 4-Column Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 50px;
}

.info-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.info-col p, .info-col address {
    font-size: 0.85rem;
    font-style: normal;
    line-height: 1.6;
    color: #555;
}

/* Yellow Accents & Links */
.yellow-link {
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    text-decoration: none;
    border-bottom: 2px solid #fdb813;
}

.big-time {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fdb813; /* Signature Yellow */
    line-height: 1;
}

.status {
    color: #0A0; /* Keep Red for 'Closed' status visibility */
}

.email-link, .map-link {
    color: #fdb813;
    text-decoration: none;
    font-weight: 600;
}

.map-link {
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .title-bold { font-size: 3.5rem; }
    .subtitle-italic { font-size: 1.5rem; }
}

























.gmf-map-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px;
  background: linear-gradient(
    135deg,
    #fff6da 0%,
    #ffffff 60%
  );
  border-radius: 20px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08);
}

.gmf-map-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f2c94c;
}

.gmf-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
  background-color: #f7f7f7;
}




















.main-header {
    position: fixed;
    top: 0; width: 100%; height: 60px;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    display: flex; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    width: 90%; max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { display: flex; align-items: center; gap: 15px; text-decoration: none; color: #1a1a1a; }
.logo-text { font-size: 1.4rem; font-weight: 900; letter-spacing: 4px; }
.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { text-decoration: none; color: #1a1a1a; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }
.nav-links a:hover { color: var(--yellow); }















































.hcw-contact-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 42px;
  background: linear-gradient(
    180deg,
    #fffaf0 0%,
    #ffffff 55%
  );
  border: 1px solid #f2c94c;
  border-radius: 16px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06);
}

.hcw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hcw-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hcw-field label {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
}

.hcw-field input,
.hcw-field select,
.hcw-field textarea {
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
  color: #1f1f1f;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hcw-field input::placeholder,
.hcw-field textarea::placeholder {
  color: #8f8f8f;
}

.hcw-field input:focus,
.hcw-field select:focus,
.hcw-field textarea:focus {
  outline: none;
  border-color: #f2c94c;
  box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.28);
}

.hcw-field select {
  cursor: pointer;
}

.hcw-actions {
  margin-top: 10px;
}

.hcw-submit-btn {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #1a1a1a;
  background: linear-gradient(
    180deg,
    #f7d65a 0%,
    #f2c94c 100%
  );
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(242, 201, 76, 0.45);
  transition:
    background-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.hcw-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 26px rgba(242, 201, 76, 0.55);
}

.hcw-submit-btn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 18px rgba(242, 201, 76, 0.45);
}

