/* Adaptive Innovations — shared styles */

:root {
  --teal-950: #0B2E2B;
  --teal-800: #0E4F49;
  --teal-700: #12756C;
  --teal-600: #0E4F49;
  --teal-500: #1FA598;
  --teal-300: #CFE7E2;
  --teal-200: #C7E2DC;
  --teal-100: #E7F2F0;
  --teal-50: #F4FAF8;
  --sand-50: #FAF7F2;
  --sand-200: #E9E2D6;
  --border: #E2ECEA;
  --input-border: #D9E5E2;
  --ink: #0B2E2B;
  --muted: #3B5C58;
  --muted-2: #5B7B77;
  --footer-muted: #A8C9C3;
  --footer-border: #1E4642;
  --footer-copyright: #6F9992;
}

* { box-sizing: border-box; }

html { font-size: 100%; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { color: var(--teal-800); }

button { font-family: inherit; }

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

html.high-contrast {
  filter: contrast(1.35) saturate(1.15);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  display: flex;
  justify-content: center;
  padding: 5rem 1.5rem;
}

/* ---------- Utility bar ---------- */
.utility-bar {
  background: var(--teal-950);
  color: var(--teal-300);
  font-size: 0.8rem;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
}
.utility-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.utility-bar__notice { letter-spacing: 0.02em; }
.utility-bar__controls { display: flex; gap: 0.5rem; align-items: center; }
.utility-bar__controls span { opacity: 0.75; }
.utility-btn {
  background: transparent;
  border: 1px solid #2F5C57;
  color: var(--teal-300);
  border-radius: 6px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  cursor: pointer;
}
.utility-btn:hover { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.utility-btn--plus { font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}
.site-header .container {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}
.brand img { height: 5.5rem; width: auto; max-width: 100%; display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--teal-200);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.55rem 0.6rem;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--teal-950);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-800);
  border-radius: 8px;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover { background: var(--teal-100); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
  display: none;
}
.nav-link[aria-current="page"]::after { display: block; }
.nav-phone {
  margin-left: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-950);
  text-decoration: none;
  padding: 0.6rem 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary {
  background: var(--teal-700);
  color: #fff;
  padding: 0.7rem 1.15rem;
}
.btn-primary:hover { background: var(--teal-800); color: #fff; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.05rem; }
.btn-outline {
  background: #fff;
  color: var(--teal-800);
  border: 1.5px solid var(--teal-200);
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}
.btn-outline:hover { border-color: var(--teal-700); background: var(--teal-50); }
.btn-outline-sm {
  background: none;
  border: 1.5px solid var(--teal-200);
  color: var(--teal-800);
  padding: 0.8rem 1.3rem;
}
.btn-outline-sm:hover { border-color: var(--teal-700); background: #fff; }
.btn-light {
  background: #fff;
  color: var(--teal-800);
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}
.btn-light:hover { background: var(--teal-300); }
.btn-ghost-on-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}
.btn-ghost-on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-block { width: 100%; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin: 0 0 1rem;
}
h1, h2, h3 { margin: 0; color: var(--ink); font-weight: 800; }
.h1 { font-size: 3.4rem; line-height: 1.05; letter-spacing: -0.025em; }
.h1--page { font-size: 3rem; line-height: 1.08; letter-spacing: -0.025em; }
.h2 { font-size: 2.4rem; line-height: 1.15; letter-spacing: -0.02em; }
.h2--sub { font-size: 2.2rem; line-height: 1.15; letter-spacing: -0.02em; }
.lede { font-size: 1.2rem; line-height: 1.6; color: var(--muted); max-width: 34rem; }
.lede--page { font-size: 1.15rem; line-height: 1.65; color: var(--muted); max-width: 44rem; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg,#F4FAF8 0%,#FFFFFF 100%);
  display: flex;
  justify-content: center;
  padding: 4.5rem 1.5rem 3.5rem;
}
.hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 3.5rem;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  color: var(--teal-800);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.pill__dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--teal-500); display: inline-block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }
.email-note { font-size: 0.95rem; color: var(--muted-2); margin: 0; }

.photo-frame { position: relative; height: 30rem; min-width: 0; }
.photo-frame--md { height: 26rem; }
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.photo-card {
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.35rem;
  box-shadow: 0 18px 40px rgba(11,46,43,0.12);
  max-width: 16rem;
}
.photo-card p { margin: 0; }
.photo-card__name { font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.photo-card__role { margin-top: 0.2rem !important; font-size: 0.85rem; color: var(--muted-2); }

/* image placeholder (used only if a real photo file is missing) */
.photo-frame__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--teal-50);
  border: 1.5px dashed var(--teal-200);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.9rem;
  padding: 1.5rem;
}

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--teal-950); color: var(--teal-300); display: flex; justify-content: center; padding: 1.5rem; }
.stats-bar .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.stats-bar__item { padding: 0.5rem 0; }
.stats-bar__item p { margin: 0; }
.stats-bar__value { font-size: 1.35rem; font-weight: 800; color: #fff; }
.stats-bar__label { margin-top: 0.2rem !important; font-size: 0.9rem; }

/* ---------- Generic section variants ---------- */
.section--tint { background: var(--teal-50); }
.section--sand { background: var(--sand-50); }
.section--white { background: #fff; }

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 4rem;
  align-items: start;
}
.two-col--center { align-items: center; }
.two-col--tight { gap: 3.5rem; }

/* We do / we don't cards */
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.info-card { background: var(--teal-50); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.info-card p { margin: 0; }
.info-card__title { margin-bottom: 0.5rem !important; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.info-card__body { font-size: 0.95rem; line-height: 1.6; color: var(--muted); }
.info-card--cta { background: var(--teal-800); border-radius: 16px; padding: 1.5rem; grid-column: span 2; color: var(--teal-300); }
.info-card--cta p { margin: 0; }
.info-card--cta .info-card__title { color: #fff; }
.info-card--cta .info-card__body { margin-bottom: 1rem !important; font-size: 0.95rem; line-height: 1.6; }

/* ---------- Section heading row with action ---------- */
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* ---------- Service cards (home) ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.service-card {
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--teal-100);
  color: var(--teal-800);
  font-weight: 800;
  font-size: 1rem;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; }
.service-card p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--muted); }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step { border-top: 3px solid var(--teal-200); padding-top: 1.25rem; }
.step--active { border-top-color: var(--teal-500); }
.step__label { margin: 0 0 0.5rem; font-size: 0.85rem; font-weight: 700; color: var(--teal-500); letter-spacing: 0.08em; }
.step h3 { margin: 0 0 0.5rem; font-size: 1.2rem; font-weight: 700; }
.step p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--muted); }

/* ---------- Who we help list ---------- */
.who-list { display: grid; gap: 0.85rem; }
.who-list p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  padding-left: 1.5rem;
  border-left: 2px solid var(--teal-200);
}
.who-list strong { color: var(--ink); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial {
  margin: 0;
  background: var(--sand-50);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial p { margin: 0; font-size: 1.05rem; line-height: 1.65; color: var(--ink); }
.testimonial footer { font-size: 0.9rem; color: var(--muted-2); font-style: normal; }
.testimonial footer span { font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid var(--sand-200); border-radius: 14px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.faq-question:hover { background: var(--teal-50); }
.faq-sign { color: var(--teal-500); font-size: 1.4rem; line-height: 1; font-weight: 400; }
.faq-answer { margin: 0; padding: 0 1.5rem 1.5rem; font-size: 1rem; line-height: 1.7; color: var(--muted); }
.faq-item[data-open="false"] .faq-answer { display: none; }

/* ---------- Services page ---------- */
.service-blocks { display: grid; gap: 1.5rem; }
.service-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 2.5rem;
  background: var(--sand-50);
  border-radius: 20px;
  align-items: start;
}
.service-block--dark { background: var(--teal-800); color: var(--teal-300); }
.service-block__tag {
  display: inline-block;
  background: var(--teal-800);
  color: #fff;
  border-radius: 8px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.service-block--dark .service-block__tag { background: var(--teal-500); color: #04302C; }
.service-block h2 { font-size: 1.9rem; line-height: 1.2; font-weight: 800; margin: 1rem 0 0.75rem; }
.service-block--dark h2 { color: #fff; }
.service-block__intro { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--muted); }
.service-block--dark .service-block__intro { color: var(--teal-300); }
.service-block__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem 2rem; }
.service-block__list p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  padding-left: 1rem;
  border-left: 2px solid var(--teal-200);
}
.service-block--dark .service-block__list p { color: var(--teal-300); border-left-color: #2F6E67; }

/* ---------- About page ---------- */
.contact-links { display: grid; gap: 0.5rem; }
.contact-links a { font-size: 1rem; font-weight: 600; }
.role-title { margin: 0 0 1.5rem; font-size: 1rem; color: var(--muted-2); font-weight: 600; }
.bio p { font-size: 1.05rem; line-height: 1.75; color: var(--muted); margin: 0 0 1rem; }
.bio p:last-child { margin-bottom: 0; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.value-card { background: #fff; border: 1px solid var(--sand-200); border-radius: 18px; padding: 2rem; }
.value-card h3 { margin: 0 0 0.75rem; font-size: 1.25rem; font-weight: 700; }
.value-card p { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--muted); }

/* ---------- Contact page ---------- */
.contact-hero .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 4rem; align-items: start; }
.contact-details {
  display: grid;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
}
.contact-details p { margin: 0; }
.contact-details__label { margin-bottom: 0.2rem !important; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.contact-details a { text-decoration: none; }
.contact-details__phone { font-size: 1.1rem; font-weight: 700; }
.contact-details__email { font-size: 1.05rem; font-weight: 600; }
.contact-details__addr { font-size: 1rem; line-height: 1.5; color: var(--ink); }
.contact-details__reg { font-size: 1rem; color: var(--ink); }

.form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  min-width: 0;
  box-shadow: 0 18px 40px rgba(11,46,43,0.06);
}
.form-panel h2 { margin: 0 0 0.5rem; font-size: 1.6rem; font-weight: 800; }
.form-note { margin: 0 0 2rem; font-size: 0.95rem; color: var(--muted-2); }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; align-items: start; }
.field { display: grid; gap: 0.4rem; min-width: 0; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.field--full { grid-column: span 2; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: inherit;
  width: 100%;
  min-width: 0;
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--input-border);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--teal-500); }

.upload-box {
  border: 1.5px dashed var(--teal-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  background: var(--teal-50);
}
.upload-box input[type="file"] { font-family: inherit; max-width: 100%; font-size: 0.9rem; color: var(--muted); }
.upload-box p { margin: 0.75rem 0 0; font-size: 0.85rem; color: var(--muted-2); }

.form-submitted { text-align: center; padding: 3rem 1rem; }
.form-submitted__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}
.form-submitted h2 { margin: 0 0 0.75rem; font-size: 1.6rem; font-weight: 800; }
.form-submitted p { margin: 0 0 1.5rem; font-size: 1.05rem; line-height: 1.6; color: var(--muted); }

/* ---------- Bottom CTA ---------- */
.cta-band { background: var(--teal-700); display: flex; justify-content: center; padding: 4rem 1.5rem; }
.cta-band .container { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.cta-band h2 { margin: 0 0 0.5rem; font-size: 2.1rem; line-height: 1.15; color: #fff; letter-spacing: -0.02em; }
.cta-band p { margin: 0; font-size: 1.1rem; color: #D5EDE9; }
.cta-band__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-950); color: var(--footer-muted); display: flex; justify-content: center; padding: 3.5rem 1.5rem 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--footer-border);
}
.footer-logo { width: 15rem; max-width: 100%; height: auto; display: block; margin: 0 0 1.5rem; filter: brightness(0) invert(1) opacity(0.92); }
.footer-blurb { margin: 0; font-size: 0.95rem; line-height: 1.7; max-width: 26rem; }
.footer-heading { margin: 0 0 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
.footer-links { display: grid; gap: 0.6rem; justify-items: start; }
.footer-links button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--footer-muted);
  font-size: 0.98rem;
}
.footer-links a {
  color: var(--footer-muted);
  font-size: 0.98rem;
  text-decoration: none;
}
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-contact { display: grid; gap: 0.6rem; font-size: 0.98rem; }
.footer-contact p { margin: 0; }
.footer-contact__name { color: #fff; font-weight: 600; }
.footer-contact a { color: var(--footer-muted); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-contact__addr { line-height: 1.6; }
.footer-ack { margin: 2rem 0 0; font-size: 0.9rem; line-height: 1.7; max-width: 60rem; }
.footer-copyright { margin: 1.5rem 0 0; font-size: 0.85rem; color: var(--footer-copyright); }

/* ---------- Responsive tweaks ---------- */

/* Mobile nav: below this width, collapse the nav into a hamburger-triggered
   dropdown panel instead of letting it wrap into a messy multi-row header. */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .brand img { height: 4.25rem; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(11,46,43,0.12);
    padding: 0.75rem 1.5rem 1.5rem;
  }
  .nav.is-open { display: flex; }

  .site-header .container { position: relative; }

  .nav-link { padding: 0.85rem 0.75rem; }
  .nav-link::after { display: none !important; }
  .nav-link[aria-current="page"] { background: var(--teal-100); }

  .nav-phone {
    margin-left: 0;
    padding: 0.85rem 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 0.4rem;
  }
  .nav > .btn-primary {
    margin-top: 0.6rem;
    text-align: center;
    padding: 0.9rem 1.15rem;
  }
}

@media (max-width: 640px) {
  .h1 { font-size: 2.4rem; }
  .h1--page { font-size: 2.2rem; }
  .h2, .h2--sub { font-size: 1.9rem; }
  .section { padding: 3.5rem 1.5rem; }
  .form-grid { grid-template-columns: minmax(0,1fr); }
  .field--full { grid-column: span 1; }
  .info-grid { grid-template-columns: minmax(0,1fr); }
  .info-card--cta { grid-column: span 1; }

  .brand img { height: 3.5rem; }
  .photo-frame { height: 20rem; }
  .photo-frame--md { height: 18rem; }
  .photo-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
  .hero-actions .btn,
  .cta-band__actions .btn { width: 100%; }
  .hero-actions, .cta-band__actions { flex-direction: column; }
  .cta-band .container { text-align: center; justify-content: center; }
  .cta-band > .container > div:first-child { text-align: center; }
}

@media (max-width: 400px) {
  .h1 { font-size: 2.05rem; }
  .h1--page { font-size: 1.9rem; }
}
