/* ===== Tokens ===== */
:root {
  --bg-dark: #121212;
  --bg-darker: #0f0f0f;
  --bg-cream: #f7f5f0;
  --bg-white: #ffffff;
  --accent: #ffb800;
  --accent-hover: #e5a400;
  --text: #111111;
  --text-muted: #6b6b6b;
  --text-on-dark: #ffffff;
  --text-muted-dark: #9a9a9a;
  --border: #e8e6e1;
  --border-dark: #2a2a2a;
  --radius-pill: 999px;
  --radius-card: 14px;
  --container: 1100px;
  --font: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* Design uses ~19% side margins / content ~62% of viewport.
   Below ~900px that proportion gets too narrow, so the content
   holds at 560px until the viewport itself forces it smaller. */
.container {
  width: min(var(--container), 100% - 40px, max(62%, 560px));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.15rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.accent {
  color: var(--accent);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.7rem 1.25rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

/* ===== Header ===== */
.site-header {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 1.35rem 0;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "logo nav actions";
  align-items: center;
  gap: 1.5rem;
}

.logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  justify-self: start;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.35rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  white-space: nowrap;
}

.logo-text small {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #8a8a8a;
  font-weight: 500;
  margin-top: 3px;
  white-space: nowrap;
}

.nav {
  grid-area: nav;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--accent);
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  justify-self: end;
}

/* CSS-only menu toggle — the checkbox drives the collapsed nav below 1024px */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-button {
  display: none;
  grid-area: burger;
  justify-self: end;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-button span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:focus-visible ~ .nav-button {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle:checked ~ .nav-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .nav-button span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .nav-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.site-header .btn-sm {
  padding: 0.72rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== Hero ===== */
.hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 4.75rem 0 5.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
}

.hero-copy .eyebrow {
  margin-bottom: 1.35rem;
}

.hero h1 {
  font-size: clamp(3.25rem, 7.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: #9b9b9b;
  max-width: 30rem;
  margin-bottom: 2.25rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-ctas .btn {
  padding: 1rem 1.85rem;
  font-size: 0.95rem;
}

.hero-stats {
  display: flex;
  gap: 2.75rem;
  padding-bottom: 0.15rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 7.25rem;
}

.stat strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: #8f8f8f;
  line-height: 1.35;
  max-width: 8.25rem;
}

/* ===== Who We Are ===== */
.who {
  background: var(--bg-white);
  padding: 5.5rem 0 5rem;
}

.who-copy {
  max-width: 560px;
}

.who h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 2.65rem);
}

.who p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
}

.who .tagline {
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0;
}

/* ===== Services ===== */
.services {
  background: var(--bg-cream);
  padding: 5.5rem 0 5rem;
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.services-head h2 {
  margin-bottom: 0;
  max-width: 18ch;
}

.section-aside {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 16rem;
  padding-bottom: 0.35rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.75rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: #ddd8ce;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-num {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.service-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  transition: color 0.15s ease;
}

.service-link:hover {
  color: var(--accent-hover);
}

.services-cta {
  text-align: center;
}

.services-cta .btn-primary {
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.28);
}

/* ===== How It Works ===== */
.how {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 5.5rem 0 5.5rem;
}

.section-head.centered {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head.centered h2 {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1.35rem;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #fff;
}

.step p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 18rem;
}

/* ===== Why GL ===== */
.why {
  background: var(--bg-white);
  padding: 5.5rem 0 5.5rem;
}

.why .section-head {
  margin-bottom: 3rem;
}

.why .section-head h2 {
  margin-bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #eee;
}

.why-item {
  display: flex;
  gap: 1rem;
  padding: 2rem 1.75rem 2rem 0;
  border-bottom: 1px solid #eee;
}

.why-item:nth-child(3n + 2),
.why-item:nth-child(3n + 3) {
  padding-left: 1.75rem;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ===== CTA Band ===== */
.cta-band {
  background: var(--accent);
  color: #111;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(18rem, 40vw, 32rem);
  font-weight: 800;
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.07);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  color: rgba(0, 0, 0, 0.75);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-darker);
  color: var(--text-on-dark);
  padding: 4.5rem 0 1.75rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a,
.footer-col p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-area p {
  margin-bottom: 1.25rem;
  max-width: 16rem;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

.footer-bottom .disclaimer {
  font-size: 0.72rem;
  font-style: italic;
  margin-top: 0.3rem;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: #fff;
}

/* ===== Responsive ===== */

/* The narrow container leaves little room beside the headline, so the hero
   stats drop below it well before tablet sizes */
@media (max-width: 1550px) {
  .nav {
    gap: 1.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-stats {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.75rem 2.25rem;
  }
}

/* Header priority as the page narrows: the quote button drops out of the bar
   first, then the inline nav links, and the phone number holds its place for
   as long as it fits on the line.
   `display: contents` lets the phone and button be placed independently. */
@media (max-width: 1420px) {
  .header-inner {
    grid-template-areas: "logo nav phone";
  }

  .header-actions {
    display: contents;
  }

  .phone {
    grid-area: phone;
    justify-self: end;
  }

  .header-actions .btn {
    display: none;
  }
}

/* Nav links collapse behind the menu button; the button joins them in the
   panel now that there is somewhere to put it */
@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "logo phone burger"
      "nav nav nav"
      "cta cta cta";
    column-gap: 1rem;
    row-gap: 0;
  }

  .nav-button {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding-top: 0.5rem;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-actions .btn {
    grid-area: cta;
    justify-self: start;
    margin: 1.15rem 0 0.35rem;
  }

  .nav-toggle:checked ~ .header-actions .btn {
    display: inline-flex;
  }
}

@media (max-width: 1250px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-item:nth-child(3n + 2),
  .why-item:nth-child(3n + 3) {
    padding-left: 0;
  }

  .why-item:nth-child(even) {
    padding-left: 1.5rem;
  }
}

/* Small tablet / large phone — everything drops to one or two columns */
@media (max-width: 900px) {
  .hero {
    padding: 3.5rem 0 4rem;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .services-head h2 {
    max-width: none;
  }

  .section-aside {
    max-width: none;
    padding-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Phone */
@media (max-width: 700px) {
  .site-header {
    padding: 1rem 0;
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero-inner {
    gap: 2.75rem;
  }

  .hero-ctas .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-stats {
    gap: 1.5rem 1.25rem;
  }

  .stat {
    flex: 1 1 7rem;
    min-width: 0;
  }

  .who,
  .services,
  .how,
  .why {
    padding: 4rem 0;
  }

  .service-grid,
  .steps,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-num {
    margin-bottom: 1rem;
  }

  .steps {
    gap: 2.25rem;
  }

  .step-num {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }

  .step p,
  .footer-area p {
    max-width: none;
  }

  .why-item,
  .why-item:nth-child(even) {
    padding: 1.75rem 0;
  }

  .cta-band {
    padding: 4rem 0;
  }

  .cta-watermark {
    font-size: 16rem;
    right: -12%;
  }

  .site-footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-nav {
    gap: 1.25rem;
  }
}

/* Narrow phone */
@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-watermark {
    font-size: 12rem;
  }
}

/* ===== Contact page ===== */
.page-hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 4rem 0 3.75rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: #9b9b9b;
  max-width: 32rem;
  line-height: 1.55;
}

.contact-page {
  background: var(--bg-cream);
  padding: 5rem 0 5.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem 2.25rem 2.25rem;
}

.contact-form-panel h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.contact-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note.is-error {
  color: #b42318;
}

.form-note.is-success {
  color: #067647;
}

.contact-form .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b6b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a8a8a8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.18);
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.form-note a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note a:hover {
  color: var(--accent-hover);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-aside-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.6rem;
}

.contact-aside-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.contact-aside-dark {
  background: var(--bg-dark);
  border-color: var(--border-dark);
  color: var(--text-on-dark);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.contact-details a,
.contact-details p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.4;
}

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

.contact-expect {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-expect li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.contact-expect li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.nav a[aria-current="page"] {
  color: var(--accent);
}

@media (max-width: 1000px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

@media (max-width: 700px) {
  .page-hero {
    padding: 3rem 0 2.75rem;
  }

  .contact-page {
    padding: 3.5rem 0 4rem;
  }

  .contact-form-panel {
    padding: 1.75rem 1.35rem 1.5rem;
  }

  .form-row,
  .contact-aside {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
  }
}

/* Too narrow for the phone number to share the line with the logo, so it
   moves into the menu panel — the last thing to leave the bar */
@media (max-width: 460px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo burger"
      "nav nav"
      "phone phone"
      "cta cta";
  }

  .phone {
    display: none;
    justify-self: start;
    padding-top: 0.9rem;
  }

  .nav-toggle:checked ~ .header-actions .phone {
    display: inline-flex;
  }

  .header-actions .btn {
    justify-self: stretch;
    margin-top: 1rem;
  }
}
