/* contact.thetrowagency.com

   Brand blue #00B7FF carries the accent: the top rule, the button fill, the rule beside the
   agent details and the link underlines. It is too light for text on white (about 2.3:1), so
   blue at text size uses #0077B3, the same hue darkened. Navy text on the #00B7FF button is
   about 7:1. */

:root {
  --blue: #00B7FF;
  --blue-hover: #00A6E8;
  --blue-active: #0092CC;
  --blue-ink: #0077B3;
  --blue-deep: #005E8F;
  --blue-focus: #0094CF;
  --ink: #0B1F3D;
  --ink-soft: #2B3D52;
  --muted: #5B6A77;
  --line: #D6DEE8;
  --serif: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, Georgia, serif;
  --sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--sans);
  border-top: 4px solid var(--blue);
}

img { max-width: 100%; display: block; }

a {
  color: var(--blue-ink);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: .2em;
}
a:hover { color: var(--blue-deep); }

:focus-visible { outline: 3px solid var(--blue-focus); outline-offset: 2px; }

.wrap { width: 100%; max-width: 40rem; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Header ---------- */

.site-header { border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; min-height: 3.5rem; }

.wordmark {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.wordmark:hover { color: var(--ink); }

/* ---------- Type ---------- */

main { padding-top: 2.25rem; padding-bottom: 2.5rem; }

h1, h2 { font-family: var(--serif); font-weight: 700; color: var(--ink); }
h1 { font-size: 2rem; line-height: 1.15; margin: 0 0 .75rem; }
h2 { font-size: 1.25rem; line-height: 1.3; margin: 0 0 .5rem; }
p { margin: 0 0 .85rem; }

.lede { font-size: 1.125rem; color: var(--ink-soft); margin-bottom: 2rem; }

.block { border-top: 1px solid var(--line); padding-top: 1.75rem; margin-top: 1.75rem; }

.fine { font-size: .9375rem; color: var(--ink-soft); }

/* ---------- Who you are contacting ---------- */

.agent { border-left: 3px solid var(--blue); padding-left: 1rem; }

.eyebrow {
  margin: 0 0 .75rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.agent-row { display: flex; align-items: center; gap: 1rem; margin-bottom: .9rem; }
.agent-photo { width: 4.5rem; height: 4.5rem; border-radius: 50%; object-fit: cover; flex: none; }
.agent-lines p, .agent-facts p { margin: 0; }
.agent-name { font-family: var(--serif); font-size: 1.375rem; font-weight: 700; line-height: 1.25; }
.agent-facts { color: var(--ink-soft); }

/* ---------- Button ---------- */

.button {
  display: block;
  width: 100%;
  min-height: 3rem;
  margin: 1.25rem 0 .75rem;
  padding: .75rem 1.25rem;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--ink);
  font: 600 1.0625rem/1.2 var(--sans);
  cursor: pointer;
}
.button:hover { background: var(--blue-hover); }
.button:active { background: var(--blue-active); }

/* ---------- Legal pages ---------- */

.updated { color: var(--muted); font-size: .9375rem; margin-bottom: 2rem; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; margin: 0 0 .85rem; }
.prose li { margin-bottom: .4rem; }
.terms-list { margin: 0; }
.terms-list dt { font-weight: 600; margin-top: .9rem; }
.terms-list dd { margin: .15rem 0 0; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
  font-size: .9375rem;
  color: var(--muted);
}
.site-footer nav { display: flex; flex-wrap: wrap; column-gap: 1.5rem; }
.site-footer nav a { display: inline-block; padding: .7rem 0; }
.site-footer p { margin: .5rem 0 0; }

/* The HighLevel chat bubble floats over the bottom corner; keep the footer links clear of it. */
.has-chat .site-footer { padding-bottom: 6.5rem; }

@media (min-width: 40rem) {
  main { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  h1 { font-size: 2.5rem; }
  .button { display: inline-block; width: auto; }
  .agent-photo { width: 5rem; height: 5rem; }
}
