/* ============ CONTACT — page-specific compositions ============ */

/* Hero supporting tagline */
.c-side .c-hero-tag { margin-top: 14px; font-family: var(--font-display); font-size: clamp(18px,1.6vw,22px); line-height: 1.4; font-weight: 600; color: var(--brand); letter-spacing: -.012em; }

/* Hero split */
.c-hero { position: relative; overflow: hidden; padding-top: clamp(36px,4vw,56px); padding-bottom: clamp(52px,6vw,88px); }
.c-hero .hero-bg { position:absolute; inset:0; z-index:-1;
  background: radial-gradient(52% 56% at 88% 4%, color-mix(in oklab,var(--brand) 11%, transparent), transparent 70%), radial-gradient(42% 46% at 4% 0%, var(--brand-50), transparent 64%); }
.c-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px,5vw,72px); align-items: start; margin-top: 28px; }
.c-side h1 { margin-top: 16px; }
.c-side .lead { margin-top: 20px; max-width: 440px; }

/* Contact methods */
.methods { margin-top: 36px; display: grid; gap: 8px; }
.method { display: flex; align-items: center; gap: 15px; padding: 12px; border-radius: var(--r-md); transition: background .18s var(--ease); }
.method:hover { background: var(--soft); }
.method .cm-ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); box-shadow: inset 0 0 0 1px color-mix(in oklab,var(--brand) 16%, transparent); }
.method .cm-ic [data-lucide] { width: 21px; height: 21px; }
.method .lbl { font-size: 12.5px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.method .val { display: block; color: var(--ink); font-size: 16px; font-weight: 600; margin-top: 1px; transition: color .15s; }
.method:hover .val { color: var(--brand); }

/* Hours */
.hours { margin-top: 22px; display: inline-flex; align-items: center; gap: 13px; padding: 13px 18px; border-radius: var(--r-md); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line), var(--sh-xs); }
.hours .status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px color-mix(in oklab,var(--green) 22%, transparent); flex: none; }
.hours b { color: var(--ink); font-size: 14.5px; display: block; }
.hours span { color: var(--muted); font-size: 13.5px; }

/* Form card */
.c-form { background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--sh-lg), inset 0 0 0 1px var(--line); padding: clamp(24px,3vw,38px); }
.form-head h3 { color: var(--ink); }
.form-head p { color: var(--muted); margin-top: 7px; font-size: 14.5px; }
.c-form label { display: block; margin-top: 18px; }
.c-form label > span { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; letter-spacing: -.005em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { margin-top: 18px; }
.c-form input, .c-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border-radius: var(--r-sm); background: var(--soft);
  box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .18s var(--ease), background .18s;
}
.c-form input::placeholder, .c-form textarea::placeholder { color: var(--muted); }
.c-form input:hover:not(:focus), .c-form textarea:hover:not(:focus) {
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--brand) 32%, var(--line));
  background: var(--surface);
}
.c-form input:focus, .c-form textarea:focus { outline: none; background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--brand), 0 0 0 4px var(--brand-50); }
.c-form textarea { resize: vertical; min-height: 96px; line-height: 1.5; }

/* Selectable chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.form-chip {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink-2);
  padding: 9px 15px; border-radius: var(--r-pill); background: var(--surface);
  box-shadow: inset 0 0 0 1.5px var(--line); transition: all .16s var(--ease);
  display: inline-flex; align-items: center; gap: 7px;
}
.form-chip:hover { box-shadow: inset 0 0 0 1.5px var(--ink-2); transform: translateY(-1px); }
.form-chip::before { content: ""; width: 0; height: 0; border-radius: 50%; background: #fff; transition: all .16s var(--ease); }
.form-chip.active { background: var(--brand); color: #fff; box-shadow: inset 0 0 0 1.5px var(--brand); }
.form-chip.active::before { width: 7px; height: 7px; }

.form-foot { margin-top: 26px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.form-foot > span { color: var(--muted); font-size: 14px; }
.form-foot a { color: var(--brand); font-weight: 600; }

/* Trust line under the form actions */
.form-trust { margin-top: 16px; display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); line-height: 1.45; text-wrap: pretty; }
.form-trust .ft-stars { display: inline-flex; gap: 1px; color: #F5A623; flex: none; }
.form-trust .ft-stars [data-lucide] { width: 14px; height: 14px; fill: currentColor; }
.form-trust strong { color: var(--ink); font-weight: 700; }
.form-trust a { color: var(--brand); font-weight: 600; }

@media (max-width: 900px){ .c-grid { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 480px){ .form-row { grid-template-columns: 1fr; } }

/* Trust row */
.trust-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-item { text-align: center; }
.trust-item b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px,3.4vw,42px); color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.trust-item b span { color: var(--brand); }
.trust-item span { display: block; margin-top: 9px; color: var(--body); font-size: 14.5px; font-weight: 500; }
@media (max-width: 640px){ .trust-row { grid-template-columns: 1fr 1fr; gap: 32px 16px; } }

/* Office / map */
.office-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px,5vw,64px); align-items: center; }
.office-meta { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.office-meta b { color: var(--ink); font-size: 13.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.office-meta p { color: var(--body); font-size: 15px; margin-top: 9px; line-height: 1.55; }
.office-map { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md), inset 0 0 0 1px var(--line); aspect-ratio: 1 / 0.86; background: var(--soft); }
.office-map svg { width: 100%; height: 100%; display: block; }
@media (max-width: 880px){ .office-grid { grid-template-columns: 1fr; gap: 36px; } .office-map { order: -1; } }
@media (max-width: 420px){ .office-meta { grid-template-columns: 1fr; } }

/* Direct team */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 40px; }
.team-card { padding: 28px; }
.team-card .chip { margin-bottom: 16px; }
.team-card b { color: var(--ink); font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -.01em; display: block; }
.team-card p { color: var(--body); font-size: 14.5px; line-height: 1.5; margin-top: 8px; }
.team-card a.link-arrow { margin-top: 16px; font-size: 14.5px; }
@media (max-width: 720px){ .team-grid { grid-template-columns: 1fr; } }

/* Section header inline */
.sec-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.sec-head-row .lead { max-width: 360px; }
