/* ============================================================
   Goodwood Marine — contact
   ============================================================ */

.section.on-light + .section.on-light { padding-top: 0; }

/* Ways to reach the shop. Cards, because each one is a tap target
   and on a phone the whole block should be thumb-sized. */
.reach { display: grid; gap: var(--sp-5); }
.reach__card {
  display: flex; flex-direction: column;
  padding: var(--sp-6);
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none; color: var(--ink-text);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out);
}
.reach__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reach__card:active { transform: translateY(-1px); }

.reach__icon {
  /* A bare icon. The boxed-icon treatment read as template furniture. */
  flex: none; width: 24px; height: 24px;
  color: var(--amber-ink);
}
.reach__icon svg { width: 24px; height: 24px; }

.reach__label {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-light);
  margin-bottom: var(--sp-2);
}
.reach__value {
  font-family: var(--data); font-size: var(--fs-xl); font-weight: 500;
  letter-spacing: -.02em; white-space: nowrap;
}
/* The email is 23 characters — at headline size it overflows a 390px
   screen, and it is the slower route anyway. */
.reach__value--sm { font-family: var(--body); font-size: var(--fs-base); white-space: normal; word-break: break-word; }
.reach__note { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--muted-light); }

/* Finding us */
.find { display: grid; gap: var(--sp-7); align-items: start; }
.find h2 { max-width: 18ch; margin-bottom: var(--sp-4); }
.find > div > p { color: var(--muted-light); max-width: 48ch; }
.find__address { margin-top: var(--sp-5); color: var(--ink-text); font-weight: 500; }
.find .btn { margin-top: var(--sp-6); }

.find__map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--ink-2);
  min-height: 340px;
}
.find__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* Enquiry form */
.narrow-form { max-width: 760px; }
.form-intro { margin-top: var(--sp-4); color: var(--muted-light); }
.enquiry-form { margin-top: var(--sp-8); }
.form-submit { margin-top: var(--sp-6); }

@media (min-width: 700px) {
  .reach { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
}
@media (min-width: 900px) {
  .find { grid-template-columns: 1fr 1fr; gap: var(--sp-9); }
}
