/*
  shr-contactus-page-v3.css — Contact 2026 (native) page-specific components.
  (v3 = the new native template; the legacy editor-content file is
  shr-contact-page.css, kept only as a revert fallback and slated for deletion.)
  Loaded only on landing-pages/template-contact-2026.php (dep: shr-sections).
  Everything structural (sections, kickers, rules, h2, blueprint frames +
  corner marks, hover-lift, scroll-reveal, tag chips, buttons) is reused from
  shr-sections.css / shr-shared.css. Only the genuinely unique bits live here —
  all scoped under .shr-contact.
*/

/* ═══════════ Hero ═══════════ */
.shr-contact-hero__grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: start;
}
.shr-contact-hero__title {
	font-family: var(--s2u-font-heading); font-weight: 600;
	font-size: clamp(32px, 4vw, 52px); line-height: 1.08; letter-spacing: .01em;
	text-transform: uppercase; color: var(--s2u-text); margin: 0 0 20px;
}
.shr-contact-hero__lead { font-size: 17px; line-height: 1.6; color: var(--s2u-neutral-700); max-width: 58ch; margin: 0 0 28px; }
.shr-contact-hero__lead strong { color: var(--s2u-text); }

.shr-contact-meta { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--s2u-divider); }
.shr-contact-meta__item {
	flex: 1 1 150px; padding: 16px 20px 16px 0; margin-right: 20px;
	display: flex; flex-direction: column; gap: 4px;
	border-right: 1px solid var(--s2u-divider);
}
.shr-contact-meta__item:last-child { border-right: 0; margin-right: 0; }
.shr-contact-meta__label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--s2u-accent-700); }
.shr-contact-meta__value { font-family: var(--s2u-font-heading); font-weight: 600; font-size: 17px; text-transform: uppercase; color: var(--s2u-text); }

/* Inline SVG icons (assets/icons/*.svg via shr_icon()) — size + align by
   default; individual contexts below override size where needed. */
.shr-contact svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }

/* "Response channels" spec-sheet panel (blueprint frame, right of the hero
   copy) — a datasheet of contact rows rather than a stack of CTA buttons, so
   the blueprint frame + corner marks read as a real spec sheet, not a random
   box. WhatsApp is ranked first with a red accent bar as the fastest channel. */
.shr-contact-channels { padding: 0; background: #fff; display: flex; flex-direction: column; }
.shr-contact-channels__head { padding: 22px 26px 16px; }
.shr-contact-channels__sub { display: block; font-size: 13px; color: var(--s2u-neutral-500); margin-top: 4px; }

.shr-contact-channel {
	display: flex; align-items: flex-start; gap: 14px;
	padding: 16px 26px; border-top: 1px solid var(--s2u-divider);
	text-decoration: none; color: inherit;
	border-left: 3px solid transparent;
	transition: background .16s ease, border-color .16s ease;
}
.shr-contact-channel:hover { background: var(--s2u-accent-100); }
.shr-contact-channel--primary { border-left-color: var(--s2u-red); }
.shr-contact-channel__icon { color: var(--s2u-accent-700); margin-top: 2px; }
.shr-contact-channel--primary .shr-contact-channel__icon { color: var(--s2u-red); }
.shr-contact-channel__body { flex: 1; min-width: 0; }
.shr-contact-channel__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.shr-contact-channel__label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--s2u-accent-700); }
.shr-contact-channel--primary .shr-contact-channel__label { color: var(--s2u-red); }
.shr-contact-channel__arrow { font-size: 15px; color: var(--s2u-neutral-500); transition: transform .16s ease, color .16s ease; }
.shr-contact-channel:hover .shr-contact-channel__arrow { color: var(--s2u-red); transform: translateX(3px); }
.shr-contact-channel__value {
	display: block; font-family: var(--s2u-font-heading); font-weight: 600; font-size: 20px;
	text-transform: uppercase; color: var(--s2u-text); font-feature-settings: 'tnum' 1; margin-top: 2px;
}
.shr-contact-channel__caption { display: block; font-size: 12px; color: var(--s2u-neutral-500); margin-top: 3px; }

/* ═══════════ Ways to reach us — 4 cards ═══════════ */
.shr-contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.shr-contact-card { padding: 24px; background: #fff; display: flex; flex-direction: column; gap: 6px; }
.shr-contact-card__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--s2u-accent-700); }
.shr-contact-card__title { font-family: var(--s2u-font-heading); font-weight: 600; font-size: 19px; text-transform: uppercase; color: var(--s2u-text); margin: 0 0 6px; }
.shr-contact-card__lines { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.shr-contact-card__line { font-size: 14.5px; line-height: 1.5; color: var(--s2u-neutral-700); }
.shr-contact-card__line a { color: var(--s2u-text); text-decoration: none; font-weight: 600; }
.shr-contact-card__line a:hover { color: var(--s2u-red); }
.shr-contact-card__note { font-size: 12px; color: var(--s2u-neutral-500); margin-top: auto; padding-top: 8px; }

/* ═══════════ Find us + form (two-column) ═══════════ */
.shr-contact-main { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.shr-contact-find .s2u-h2 { margin-bottom: 18px; }

.shr-contact-address { padding: 22px 24px; background: #fff; display: flex; flex-direction: column; gap: 18px; margin-bottom: 20px; }
.shr-contact-address__detail { display: flex; flex-direction: column; gap: 6px; }
.shr-contact-address__label {
	display: flex; align-items: center; gap: 6px;
	font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--s2u-accent-700);
}
.shr-contact-address__label svg { width: 14px; height: 14px; }
.shr-contact-address address { font-style: normal; font-size: 14.5px; line-height: 1.55; color: var(--s2u-neutral-700); }
.shr-contact-directions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.shr-contact-directions-btn {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; font-weight: 600; color: var(--s2u-accent-700); text-decoration: none;
}
.shr-contact-directions-btn:hover { color: var(--s2u-red); }
.shr-contact-directions-btn svg { width: 16px; height: 16px; }

/* Waze photo card — the whole card is a link out to Waze directions, so the
   photo (a customer checking Waze next to a Fellowes shredder) doubles as a
   functional CTA rather than pure decoration. */
.shr-contact-waze { display: block; overflow: hidden; text-decoration: none; color: inherit; margin-bottom: 20px; transition: border-color .16s ease; }
.shr-contact-waze:hover { border-color: var(--s2u-red); }
.shr-contact-waze img { width: 100%; height: 300px; object-fit: cover; display: block; }
.shr-contact-waze__caption { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: #fff; font-size: 13.5px; font-weight: 600; color: var(--s2u-text); }
.shr-contact-waze__caption-icon { flex-shrink: 0; }
.shr-contact-waze__caption-icon svg { width: 20px; height: 20px; }

.shr-contact-map { border: 1px solid var(--s2u-divider); overflow: hidden; line-height: 0; }
.shr-contact-map iframe { display: block; width: 100%; height: 320px; }

.shr-contact-form-col .s2u-h2 { margin-bottom: 14px; }
.shr-contact-form-intro { font-size: 15.5px; line-height: 1.6; color: var(--s2u-neutral-700); margin: 0 0 16px; max-width: 60ch; }

/* Trade & wholesale callout — steel-blue badge (same tone as the site's
   kickers/links), not red, so it reads as an informational note rather than
   a clickable CTA (red was getting confused with the WhatsApp button; the
   even-darker --s2u-navy read as near-black). */
.shr-contact-trade-badge {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 18px; margin: 0 0 24px;
	background: var(--s2u-accent-700); color: #fff;
	font-size: 13.5px; font-weight: 600;
}
.shr-contact-trade-badge__icon { color: #fff; }
.shr-contact-trade-badge svg { width: 16px; height: 16px; }

.shr-contact-form-frame { padding: clamp(20px, 3vw, 32px); background: #fff; }

/* Ninja Forms styling — matches the s2u form-field language. */
.shr-contact-form-frame .nf-form-title { display: block; margin: 0 0 6px; }
.shr-contact-form-frame .nf-form-title h3 {
	font-family: var(--s2u-font-heading); font-weight: 600; font-size: 22px;
	letter-spacing: .02em; text-transform: uppercase; color: var(--s2u-text); margin: 0;
}
.shr-contact-form-frame .nf-form-fields-required { font-size: 12px; color: var(--s2u-neutral-500); margin-bottom: 20px; }
.shr-contact-form-frame .nf-field-label label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--s2u-text); }
.shr-contact-form-frame input[type="text"],
.shr-contact-form-frame input[type="email"],
.shr-contact-form-frame input[type="tel"],
.shr-contact-form-frame textarea,
.shr-contact-form-frame select {
	width: 100%; padding: 11px 14px; font-family: var(--s2u-font-body); font-size: 15px;
	color: var(--s2u-text); background: var(--s2u-bg); border: 1px solid var(--s2u-divider);
	border-radius: 0; box-shadow: none;
}
.shr-contact-form-frame input[type="text"]:focus,
.shr-contact-form-frame input[type="email"]:focus,
.shr-contact-form-frame input[type="tel"]:focus,
.shr-contact-form-frame textarea:focus {
	outline: none; border-color: var(--s2u-accent-700);
}
.shr-contact-form-frame .nf-submit button {
	font-family: var(--s2u-font-heading); font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	background: var(--s2u-red); color: #fff; border: 1px solid transparent; padding: 12px 26px;
	border-radius: 0; cursor: pointer; transition: background .18s ease;
}
.shr-contact-form-frame .nf-submit button:hover { background: var(--s2u-red-dark); }

/* ═══════════ Trust strip ═══════════ */
.shr-contact-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.shr-contact-trust__item {
	display: flex; align-items: center; gap: 12px; padding: 16px 18px;
	border: 1px solid var(--s2u-divider); background: #fff;
}
.shr-contact-trust__icon { color: var(--s2u-accent-700); flex-shrink: 0; }
.shr-contact-trust__icon svg { width: 22px; height: 22px; }
.shr-contact-trust__text { font-size: 13.5px; font-weight: 600; line-height: 1.35; color: var(--s2u-text); }

/* ═══════════ Responsive ═══════════ */
@media (max-width: 1000px) {
	.shr-contact-hero__grid { grid-template-columns: 1fr; }
	.shr-contact-main { grid-template-columns: 1fr; }
	.shr-contact-cards { grid-template-columns: repeat(2, 1fr); }
	.shr-contact-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.shr-contact-cards { grid-template-columns: 1fr; }
	.shr-contact-trust { grid-template-columns: 1fr; }
	.shr-contact-meta__item { flex-basis: 45%; }
}
