/* ── Contact page ──────────────────────────────────────────── */

/* Hero */
.contact-hero {
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(100px, 16vh, 180px) clamp(20px, 4vw, 56px) clamp(52px, 7vh, 80px);
  background: var(--cream);
}

.contact-headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.94;
  font-size: clamp(44px, 7.2vw, 120px);
  margin-top: 18px;
}

/* ── Contact grid ────────────────────────────────────────────── */
.contact-section {
  background: var(--cream);
  padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (max-width: 820px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* Info column */
.contact-info-head {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.05;
  margin-top: 16px;
}

.contact-info-sub {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 38ch;
}

.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(14,158,153,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.contact-detail-value a {
  color: inherit;
  text-decoration: none;
  transition: color .25s;
}

.contact-detail-value a:hover { color: var(--accent); }

/* Map */
.contact-map {
  margin-top: 36px;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Hours grid */
.hours-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.hours-row {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}

.hours-row:last-child { border-bottom: none; }
.hours-row:nth-child(even) { background: rgba(23,19,16,0.025); }

.hours-day { font-weight: 600; }
.hours-time { color: var(--sub); }

/* ── Form ────────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--cream);
}

.contact-form-head {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.05;
  margin-bottom: 28px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sub);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(23,19,16,0.03);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,158,153,0.12);
  background: #fff;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(23,19,16,0.3); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(23,19,16,0.4)' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

.form-notice {
  font-size: 12px;
  color: var(--sub);
  line-height: 1.5;
  margin-top: 4px;
}

.form-submit {
  margin-top: 8px;
  align-self: flex-start;
}

/* Success state (JS toggles this) */
.form-success {
  display: none;
  padding: 24px;
  border-radius: var(--r-md);
  background: rgba(14,158,153,0.08);
  border: 1px solid rgba(14,158,153,0.3);
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}
