/* ============================================================
   Talk Talk — In-Home Speech and Language Services
   Design system + component styles (plain CSS)
   ============================================================ */

:root {
  /* Brand palette: Navy #2F4156 · Teal #567C8D · Sky Blue #C8D9E6 · Beige #F5EFEB · White */
  --background: #f5efeb;
  --surface: #efe7e1;
  --surface-2: #e6dcd4;
  --card: #ffffff;
  --foreground: #3a4a5a;
  --muted-foreground: #6b7885;
  --heading: #2f4156;
  --border: #e0d8d0;

  --teal: #567c8d;
  --teal-soft: #6f94a4;
  --teal-tint: #c8d9e6;
  --teal-foreground: #ffffff;
  --navy: #2f4156;
  --navy-foreground: #ffffff;

  --secondary: #efe7e1;

  --shadow-sm: 0 1px 2px rgba(47, 65, 86, 0.06), 0 1px 3px rgba(47, 65, 86, 0.05);
  --shadow-md: 0 4px 12px rgba(47, 65, 86, 0.08), 0 2px 6px rgba(47, 65, 86, 0.05);
  --shadow-lg: 0 12px 32px rgba(47, 65, 86, 0.14);
  --shadow-xl: 0 24px 60px rgba(47, 65, 86, 0.18);

  --radius: 0.75rem;
  --maxw: 80rem; /* 1280px */
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
  padding: 0;
}
h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.15;
  text-wrap: balance;
}
:target {
  scroll-margin-top: 8rem;
}
[id] {
  scroll-margin-top: 8rem;
}
@media (min-width: 1024px) {
  :target,
  [id] {
    scroll-margin-top: 10.5rem;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
main {
  flex: 1;
}
.section {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .section {
    padding-block: 6rem;
  }
}
.bg-surface {
  background-color: var(--surface);
}
.bg-background {
  background-color: var(--background);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn svg {
  width: 1rem;
  height: 1rem;
}
.btn-teal {
  background-color: var(--teal);
  color: var(--teal-foreground);
  box-shadow: var(--shadow-sm);
}
.btn-teal:hover {
  background-color: var(--navy);
}
.btn-navy {
  background-color: var(--navy);
  color: var(--navy-foreground);
}
.btn-navy:hover {
  background-color: var(--teal);
}
.btn-outline {
  background-color: var(--card);
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  background-color: var(--secondary);
}
.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
}
.h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--navy);
}
@media (min-width: 768px) {
  .h2 {
    font-size: 2.25rem;
  }
}
.lead {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.utility-bar {
  display: none;
  background-color: var(--navy);
  color: var(--navy-foreground);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .utility-bar {
    display: block;
  }
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.5rem;
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.utility-item:hover {
  color: #fff;
}
.utility-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal-soft);
}
.utility-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}
.utility-cta:hover {
  color: var(--teal-soft);
}
.utility-cta svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal-soft);
}

.main-bar {
  border-bottom: 1px solid rgba(231, 226, 217, 0.7);
  background-color: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.2s;
}
.main-bar.scrolled {
  box-shadow: var(--shadow-sm);
}
.main-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img {
  height: 5rem;
  width: auto;
}
.brand-tag {
  display: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
}
@media (min-width: 640px) {
  .brand-tag {
    display: block;
  }
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
  }
}
.nav-link {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(70, 74, 77, 0.7);
  transition: background-color 0.2s, color 0.2s;
}
.nav-link:hover {
  background-color: var(--secondary);
  color: var(--navy);
}
.nav-link.active {
  background-color: var(--teal-tint);
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-phone {
  display: none;
}
@media (min-width: 640px) {
  .header-phone {
    display: inline-flex;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--navy);
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--card);
}
.mobile-nav.open {
  display: block;
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav .container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1rem;
}
.mobile-link {
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(70, 74, 77, 0.8);
  transition: background-color 0.2s;
}
.mobile-link:hover,
.mobile-link.active {
  background-color: var(--teal-tint);
  color: var(--navy);
}
.mobile-call {
  margin-top: 0.5rem;
  justify-content: center;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(231, 240, 242, 0.6), var(--background) 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding-block: 6rem;
  }
}
.hero-text {
  max-width: 36rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background-color: var(--teal-tint);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
}
.pill svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal);
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--heading);
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}
.hero h1 .accent {
  color: var(--teal);
}
.hero-lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .hero-lead {
    font-size: 1.25rem;
  }
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.hero-actions .btn {
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
}
.hero-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 32rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.hero-stats dt {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.hero-stats dd {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-media {
  position: relative;
}
.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-xl);
  outline: 1px solid rgba(0, 0, 0, 0.05);
}
.hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-frame img.current {
  opacity: 1;
}
.floating-card {
  position: absolute;
  bottom: -1.25rem;
  left: -0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  background-color: var(--navy);
  padding: 1rem 1.25rem;
  color: var(--navy-foreground);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) {
  .floating-card {
    left: -1.5rem;
  }
}
.floating-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background-color: var(--teal);
}
.floating-card .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal-foreground);
}
.floating-card .t {
  font-size: 0.875rem;
  font-weight: 700;
}
.floating-card .s {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero-dots {
  position: absolute;
  bottom: -2.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.5rem;
}
.hero-dots button {
  height: 0.625rem;
  width: 0.625rem;
  border: none;
  border-radius: 999px;
  background-color: var(--border);
  transition: all 0.3s;
}
.hero-dots button:hover {
  background-color: var(--teal-soft);
}
.hero-dots button.active {
  width: 1.75rem;
  background-color: var(--teal);
}

/* ============================================================
   Cards / grids (home)
   ============================================================ */
.center-head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.center-head .h2 {
  margin-top: 0.75rem;
}
.grid-3 {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.offer-card:hover {
  box-shadow: var(--shadow-md);
}
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background-color: var(--teal-tint);
}
.icon-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--teal);
}
.offer-card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}
.offer-card p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.offer-card p + p {
  margin-top: 0.75rem;
}

/* Who we are */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .split {
    padding-block: 6rem;
  }
}
@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.split-media {
  position: relative;
}
.split-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-xl);
  outline: 1px solid rgba(0, 0, 0, 0.05);
}
.split-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gta-badge {
  position: absolute;
  right: -0.75rem;
  top: -1rem;
  border-radius: 1rem;
  background-color: var(--teal);
  padding: 1rem 1.25rem;
  color: var(--teal-foreground);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) {
  .gta-badge {
    right: -1.5rem;
  }
}
.gta-badge .big {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.gta-badge .small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
.prose p {
  margin-top: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.prose p.strong {
  color: var(--navy);
  font-weight: 600;
}
.prose em {
  font-style: italic;
  color: var(--navy);
}
.chip-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  border-radius: 999px;
  background-color: var(--teal-tint);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.chip-secondary {
  background-color: var(--secondary);
}

/* Who we help */
.grid-2 {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}
.audience {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-sm);
}
.audience-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  background-color: var(--navy);
  padding: 1.5rem 1.75rem;
  color: var(--navy-foreground);
}
.audience-head .icon-badge {
  background-color: var(--teal);
}
.audience-head .icon-badge svg {
  color: var(--teal-foreground);
}
.audience-head h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.audience-head p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.audience-list {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 0.625rem;
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .audience-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.audience-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  height: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--heading);
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.audience-list a:hover {
  border-color: var(--teal);
  background-color: var(--card);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.audience-list a span {
  padding-top: 0.0625rem;
}
.audience-list svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  padding: 0.25rem;
  box-sizing: content-box;
  border-radius: 999px;
  background-color: var(--teal-tint);
  color: var(--teal);
  transition: background-color 0.2s, color 0.2s;
}
.audience-list a:hover svg {
  background-color: var(--teal);
  color: var(--teal-foreground);
}
.audience-foot {
  padding: 1rem;
  padding-top: 0;
}
.audience-foot a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background-color: var(--teal-tint);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
  transition: background-color 0.2s, color 0.2s;
}
.audience-foot a:hover {
  background-color: var(--teal);
  color: var(--teal-foreground);
}

/* ============================================================
   Page banner (interior pages)
   ============================================================ */
.page-banner {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  color: var(--navy-foreground);
}
.page-banner .blur1,
.page-banner .blur2 {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}
.page-banner .blur1 {
  right: -6rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(79, 146, 168, 0.2);
}
.page-banner .blur2 {
  bottom: -8rem;
  left: 25%;
  width: 18rem;
  height: 18rem;
  background-color: rgba(111, 168, 201, 0.1);
}
.page-banner .container {
  position: relative;
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .page-banner .container {
    padding-block: 5rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a:hover {
  color: var(--teal-soft);
}
.breadcrumb svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--teal-soft);
}
.breadcrumb .current {
  color: var(--teal-soft);
}
.page-banner .eyebrow {
  margin-top: 1.5rem;
  color: var(--teal-soft);
}
.page-banner h1 {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
@media (min-width: 768px) {
  .page-banner h1 {
    font-size: 3rem;
  }
}
.page-banner .intro {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-wrap: pretty;
}

/* ============================================================
   Content pages (Children/Adults/Autism)
   ============================================================ */
.content-layout {
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .content-layout {
    padding-block: 4rem;
  }
}
.mobile-jump {
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .mobile-jump {
    display: none;
  }
}
.mobile-jump label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}
.mobile-jump select {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.content-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 3.5rem;
  }
}
.side-nav {
  display: none;
}
@media (min-width: 1024px) {
  .side-nav {
    display: block;
  }
}
.side-nav-inner {
  position: sticky;
  top: 7rem;
}
.side-nav-title {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}
.side-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.side-nav a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--muted-foreground);
  transition: background-color 0.2s, color 0.2s;
}
.side-nav a:hover {
  background-color: var(--secondary);
  color: var(--navy);
}
.side-nav a.active {
  background-color: var(--teal-tint);
  font-weight: 600;
  color: var(--navy);
}
.side-nav .num {
  margin-top: 0.125rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  background-color: var(--secondary);
  color: var(--muted-foreground);
}
.side-nav a.active .num {
  background-color: var(--teal);
  color: var(--teal-foreground);
}
.side-cta {
  margin-top: 2rem;
  border-radius: 1rem;
  background-color: var(--navy);
  padding: 1.25rem;
  color: var(--navy-foreground);
}
.side-cta p.t {
  font-size: 0.875rem;
  font-weight: 700;
}
.side-cta p.s {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.side-cta a {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background-color: var(--teal);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal-foreground);
  transition: background-color 0.2s, color 0.2s;
}
.side-cta a:hover {
  background-color: #fff;
  color: var(--navy);
}
.side-cta svg {
  width: 0.875rem;
  height: 0.875rem;
}

.sections {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.content-section {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .content-section {
    padding: 2rem;
  }
}
.content-section .head {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.content-section .num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background-color: var(--teal-tint);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--teal);
}
.content-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .content-section h2 {
    font-size: 1.6rem;
  }
}
.content-body {
  line-height: 1.6;
  color: var(--foreground);
}
.content-body p + p,
.content-body p + ul,
.content-body ul + p {
  margin-top: 1rem;
}
.content-body strong {
  font-weight: 700;
  color: var(--navy);
}
.content-body em {
  font-style: italic;
}
.content-body h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.content-body h3:first-child {
  margin-top: 0;
}

.bullets {
  display: grid;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .bullets {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.bullets .tick {
  margin-top: 0.125rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background-color: var(--teal-tint);
}
.bullets .tick svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--teal);
}
.bullets span:last-child {
  font-size: 0.95rem;
}

.end-cta {
  border-radius: 1rem;
  border: 1px solid rgba(79, 146, 168, 0.3);
  background-color: rgba(231, 240, 242, 0.6);
  padding: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .end-cta {
    padding: 2rem;
  }
}
.end-cta h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}
@media (min-width: 768px) {
  .end-cta h2 {
    font-size: 1.5rem;
  }
}
.end-cta p {
  margin-inline: auto;
  margin-top: 0.5rem;
  max-width: 36rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.cta-row {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.cta-row .btn {
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
}

/* ============================================================
   Team (About)
   ============================================================ */
.team-section {
  border-top: 1px solid var(--border);
  background-color: var(--surface);
}
.team-section .container {
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .team-section .container {
    padding-block: 5rem;
  }
}
.team-head {
  max-width: 42rem;
}
.team-head .eyebrow {
  color: var(--teal);
}
.team-head .h2 {
  margin-top: 0.75rem;
}
.team-head p {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.team-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background-color: var(--secondary);
}
@media (min-width: 640px) {
  .team-photo {
    aspect-ratio: 5 / 6;
  }
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-photo img.zoom {
  object-position: center center;
  transform: scale(1.4);
}
.team-info {
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .team-info {
    padding: 1.75rem;
  }
}
.team-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  text-wrap: balance;
}
.team-cred {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--teal);
}
.team-role {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.team-bio {
  padding: 0 1.5rem 1.5rem;
}
@media (min-width: 640px) {
  .team-bio {
    padding: 0 1.75rem 1.75rem;
  }
}
.team-bio .paras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--foreground);
}
.team-bio .paras .extra {
  display: none;
}
.team-card.expanded .team-bio .paras .extra {
  display: block;
}
.bio-toggle {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: var(--secondary);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
  transition: background-color 0.2s;
}
.bio-toggle:hover {
  background-color: var(--teal-tint);
}
.bio-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}
.team-card.expanded .bio-toggle svg {
  transform: rotate(180deg);
}
.bio-toggle .less {
  display: none;
}
.team-card.expanded .bio-toggle .more {
  display: none;
}
.team-card.expanded .bio-toggle .less {
  display: inline;
}

/* About philosophy */
.about-layout {
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .about-layout {
    padding-block: 5rem;
  }
}
.about-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 4rem;
  }
}
.about-main {
  max-width: 42rem;
}
.about-prose {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--foreground);
}
.about-prose em {
  font-style: italic;
  color: var(--navy);
}
.about-main h2 {
  margin-top: 3rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.promises {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .promises {
    grid-template-columns: repeat(2, 1fr);
  }
}
.promise {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.promise .icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background-color: var(--teal-tint);
}
.promise .icon svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--teal);
}
.promise span:last-child {
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--foreground);
}
.about-side .inner {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.side-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.side-card h2 {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
}
.side-card ul {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.side-navy {
  border-radius: 1rem;
  background-color: var(--navy);
  padding: 1.5rem;
  color: var(--navy-foreground);
}
.side-navy h2 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}
.side-navy p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.side-navy a {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background-color: var(--teal);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--teal-foreground);
  transition: background-color 0.2s, color 0.2s;
}
.side-navy a:hover {
  background-color: #fff;
  color: var(--navy);
}
.side-navy svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  max-width: 48rem;
  margin-inline: auto;
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .faq-wrap {
    padding-block: 5rem;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: rgba(79, 146, 168, 0.4);
}
.faq-item.open {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--navy);
  transition: color 0.2s;
}
.faq-q:hover,
.faq-item.open .faq-q {
  color: var(--teal);
}
.faq-q span {
  font-size: 1rem;
  font-weight: 700;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .faq-q span {
    font-size: 1.125rem;
  }
}
.faq-q svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s ease, opacity 0.4s ease;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-a-inner {
  overflow: hidden;
}
.faq-a-inner div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.center-navy {
  border-radius: 1.5rem;
  background-color: var(--navy);
  padding: 2rem;
  text-align: center;
  color: var(--navy-foreground);
}
@media (min-width: 768px) {
  .center-navy {
    padding: 2.5rem;
  }
}
.center-navy h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.center-navy p {
  margin-inline: auto;
  margin-top: 0.5rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.7);
}
.center-navy .cta-row {
  margin-top: 1.5rem;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-wrap {
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .contact-wrap {
    padding-block: 5rem;
  }
}
.quick-cards {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .quick-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quick-card {
  display: block;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
a.quick-card:hover {
  box-shadow: var(--shadow-md);
}
.quick-card h2 {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}
.quick-card .val {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  transition: color 0.2s;
}
a.quick-card:hover .val {
  color: var(--teal);
}

.consult-callout {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  border-radius: 1rem;
  background-color: var(--navy);
  padding: 2rem;
  color: var(--navy-foreground);
}
@media (min-width: 768px) {
  .consult-callout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.consult-callout .left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.consult-callout .icon-badge {
  flex-shrink: 0;
  background-color: var(--teal);
}
.consult-callout .icon-badge svg {
  color: var(--teal-foreground);
}
.consult-callout h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.consult-callout p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.consult-callout .btn {
  flex-shrink: 0;
}

.contact-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.map-frame {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe {
  width: 100%;
  height: 18rem;
  border: 0;
  display: block;
}
@media (min-width: 1024px) {
  .map-frame iframe {
    height: 420px;
  }
}
.areas-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.areas-card h2 {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
}
.areas-card ul {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.areas-card .chip {
  background-color: var(--secondary);
  padding: 0.5rem 1rem;
}

/* Form */
.contact-form {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2rem;
  }
}
.form-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-row {
  margin-top: 1.25rem;
}
.field label {
  margin-bottom: 0.375rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.field label .req {
  color: var(--teal);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 0.75rem 1rem;
  color: var(--navy);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(111, 114, 118, 0.7);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(79, 146, 168, 0.25);
}
.field textarea {
  resize: vertical;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.spinner {
  width: 1rem;
  height: 1rem;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-alert {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 40, 40, 0.3);
  background-color: rgba(200, 40, 40, 0.08);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #b42318;
}
.form-alert svg {
  margin-top: 0.125rem;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  border: 1px solid rgba(79, 146, 168, 0.3);
  background-color: var(--teal-tint);
  padding: 2.5rem;
  text-align: center;
}
.form-success .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background-color: var(--teal);
}
.form-success .badge svg {
  width: 2rem;
  height: 2rem;
  color: var(--teal-foreground);
}
.form-success h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}
.form-success p {
  margin-top: 0.5rem;
  max-width: 24rem;
  color: var(--muted-foreground);
  }

/* Dedicated thank-you page panel */
.thank-you-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 40rem;
  margin-inline: auto;
  border-radius: 1.5rem;
  border: 1px solid rgba(86, 124, 141, 0.3);
  background-color: var(--teal-tint);
  padding: 3rem 2.5rem;
  text-align: center;
}
.thank-you-panel .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background-color: var(--teal);
}
.thank-you-panel .badge svg {
  width: 2rem;
  height: 2rem;
  color: var(--teal-foreground);
}
.thank-you-panel h2 {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.thank-you-panel p {
  margin-top: 0.75rem;
  max-width: 30rem;
  line-height: 1.6;
  color: var(--foreground);
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--navy);
  color: var(--navy-foreground);
}
.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .footer-cta .container {
    flex-direction: row;
    align-items: center;
  }
}
.footer-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
@media (min-width: 768px) {
  .footer-cta h2 {
    font-size: 1.875rem;
  }
}
.footer-cta p {
  margin-top: 0.5rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-cta .btn-teal:hover {
  background-color: #fff;
  color: var(--navy);
}
.footer-main {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.6fr 1fr 1.4fr 1.1fr;
    column-gap: 3rem;
  }
}
.footer-brand img {
  height: 3.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-soft);
}
.footer-col ul {
  margin-top: 1rem;
}
.footer-links li + li {
  margin-top: 0.625rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-areas {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--teal-soft);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .container {
  padding-block: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.reveal-left {
  transform: translateX(-32px);
}
.reveal.reveal-right {
  transform: translateX(32px);
}
.reveal.reveal-scale {
  transform: scale(0.96);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-frame img {
    transition: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
