/* ═══════════════════════════════════════════════════════════
   TLOLCC — contact.css
═══════════════════════════════════════════════════════════ */

/* ─── HERO ───────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  background-color: var(--brown);
  background-image: url('../Images/web_images/64f7be534050456def69a365_IMG-2866.jpg');
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.contact-hero-cross {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cline x1='40' y1='10' x2='40' y2='70' stroke='%23C9A84C' stroke-width='0.7'/%3E%3Cline x1='22' y1='28' x2='58' y2='28' stroke='%23C9A84C' stroke-width='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px; opacity: 0.04; pointer-events: none;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,15,6,0.93) 0%, rgba(44,26,14,0.80) 60%, rgba(44,26,14,0.45) 100%);
  pointer-events: none;
}
.contact-hero-content {
  position: relative; z-index: 1;
  padding: 72px 48px 72px max(48px, 10vw);
  max-width: 640px;
}
.contact-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 600; line-height: 1.0;
  color: var(--cream); margin-bottom: 22px;
  display: flex; flex-direction: column;
}
.contact-hero-title span { font-weight: 300; }
.contact-hero-title em   { font-style: italic; color: var(--gold); font-weight: 400; }
.contact-hero-sub {
  font-family: var(--ff-display); font-style: italic;
  font-size: 15px; line-height: 1.85;
  color: rgba(250,247,242,0.6);
  max-width: 460px; padding-left: 18px;
  border-left: 2px solid var(--gold);
}

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact-section {
  background: var(--cream); padding: var(--sec-pad) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ─── FORM ───────────────────────────────────────────────── */
.contact-form-wrap h2,
.contact-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600; color: var(--brown);
  margin-bottom: 32px; line-height: 1.15;
}
.contact-form-wrap .eyebrow,
.contact-info .eyebrow { margin-bottom: 10px; }

.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex; flex-direction: column; gap: 7px;
}
.form-group label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 3px;
  padding: 13px 16px;
  font-family: var(--ff-body); font-size: 14px;
  color: var(--brown);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%238B6D5B' stroke-width='1.8'%3E%3Cpolyline points='5,8 10,13 15,8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.7; }

.form-submit {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
}
.form-submit svg { width: 18px; height: 18px; }
.form-note {
  font-size: 12px; color: var(--text-light);
  margin: -6px 0 0; font-style: italic;
}

/* ─── INFO CARDS ─────────────────────────────────────────── */
.info-cards {
  display: flex; flex-direction: column; gap: 2px;
}
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: padding-left var(--t);
}
.info-card:first-child { padding-top: 0; }
.info-card:last-child  { border-bottom: none; }
.info-card:hover { padding-left: 6px; }

.info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-mid);
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
}
.info-icon svg {
  width: 18px; height: 18px;
  color: var(--red);
}
.info-body h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 5px;
}
.info-link {
  font-size: 15px; color: var(--brown);
  text-decoration: none; line-height: 1.6;
  transition: color var(--t);
}
.info-link:hover { color: var(--red); }

/* Hours card */
.info-card--hours .info-body { flex: 1; }
.hours-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 3px;
}
.hours-day {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); min-width: 50px;
}
.hours-time {
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 600;
  color: var(--brown); line-height: 1;
}
.hours-label {
  font-size: 13px; color: var(--text-light);
  margin-bottom: 0; line-height: 1.4;
}

/* ─── MAP ────────────────────────────────────────────────── */
.map-wrap {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--cream-mid);
}
.map-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  filter: grayscale(20%) sepia(10%);
  border: none;
}
.map-overlay-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--brown);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  display: flex; align-items: flex-start; gap: 12px;
  max-width: 300px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 1;
}
.map-overlay-badge svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--gold); margin-top: 2px;
}
.map-badge-name {
  font-family: var(--ff-display);
  font-size: 14px; font-weight: 600;
  color: var(--cream); margin-bottom: 4px;
  line-height: 1.3;
}
.map-badge-addr {
  font-size: 12px; color: rgba(250,247,242,0.6);
  line-height: 1.5;
}

/* ─── NAV CONTACT BUTTON — active state ──────────────────── */
.btn-nav-contact.active-page {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .contact-hero-content { padding: 56px 24px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; }
  .map-wrap { height: 300px; }
  .map-overlay-badge { left: 12px; bottom: 12px; max-width: calc(100% - 24px); }
}

@media (max-width: 480px) {
  .contact-hero-title { font-size: 48px; }
}
