:root {
  --canvas: #f4ebdd;
  --limestone: #f4ebdd;
  --cream: #fff9ef;
  --sand: #e8d2ad;
  --adobe: #a94f32;
  --terracotta: #c96a43;
  --mesquite: #604536;
  --agave: #557565;
  --teal: #173f43;
  --gold: #d9a441;
  --charcoal: #282724;
  --navy: var(--teal);
  --navy-2: #205a5c;
  --mint: var(--agave);
  --mint-dark: #3d5e50;
  --amber: var(--gold);
  --amber-dark: #9b721e;
  --white: var(--cream);
  --ink-muted: #665f56;
  --line: rgba(96, 69, 54, 0.17);
  --line-strong: rgba(96, 69, 54, 0.3);
  --shadow: 0 22px 56px rgba(40, 39, 36, 0.12);
  --radius-lg: 12px;
  --radius-md: 9px;
  --radius-sm: 6px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--navy);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(12, 27, 51, 0.08);
  background: rgba(240, 244, 241, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--navy);
  font-family:
    "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(12, 27, 51, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 32%, var(--amber) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--mint), #c6f7df);
  box-shadow: 0 10px 30px rgba(121, 227, 183, 0.36);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  color: #314056;
  font-size: 0.94rem;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--mint-dark);
}

.nav-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: #201600;
  box-shadow: 0 14px 34px rgba(235, 176, 53, 0.32);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.8rem 0 3rem;
}

.hero-grid,
.section-inner,
.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(24, 124, 90, 0.2);
  border-radius: 999px;
  background: rgba(121, 227, 183, 0.18);
  color: #14553f;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.section-title,
.route-title,
.result-title {
  margin: 0;
  color: var(--navy);
  font-family:
    "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  margin-top: 1.1rem;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.hero-copy {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: #40506a;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 680px;
  margin-top: 2rem;
}

.metric-tile {
  min-height: 105px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  padding: 1rem;
}

.metric-tile strong {
  display: block;
  font-size: 1.4rem;
}

.metric-tile span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-image {
  overflow: hidden;
  border: 1px solid rgba(12, 27, 51, 0.14);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
}

.energy-card {
  position: absolute;
  right: -0.5rem;
  bottom: 1rem;
  width: min(370px, 84%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 1rem;
  backdrop-filter: blur(16px);
}

.energy-card-header,
.form-header,
.result-grid,
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.energy-bars {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.energy-bar {
  display: grid;
  grid-template-columns: 86px 1fr 46px;
  gap: 0.7rem;
  align-items: center;
  color: #43536c;
  font-size: 0.86rem;
}

.bar-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e7eee9;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--mint);
}

.bar-fill.amber {
  background: var(--amber);
}

.section {
  padding: 4.6rem 0;
}

.section.alt {
  background: var(--white);
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section.dark .section-title,
.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.dark p,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--mint-dark);
  font-weight: 800;
}

.section-title,
.route-title,
.result-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-lede {
  max-width: 720px;
  margin: 1rem 0 0;
  color: #506079;
  font-size: 1.08rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.calculator,
.form-shell,
.result-shell,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(12, 27, 51, 0.07);
}

.card {
  padding: 1.4rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.14rem;
}

.card p,
.muted {
  color: var(--ink-muted);
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 1rem;
  padding: 1rem;
  margin-top: 2rem;
}

.calculator-form,
.calculator-result {
  border-radius: 18px;
  padding: 1.2rem;
}

.calculator-form {
  background: var(--white);
}

.calculator-result {
  background: var(--navy);
  color: var(--white);
}

.calculator-result .muted {
  color: rgba(255, 255, 255, 0.7);
}

.result-number {
  margin: 0.4rem 0;
  font-family:
    "Space Grotesk", Inter, sans-serif;
  font-size: 2rem;
  font-weight: 760;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.field label,
.choice-label,
.consent {
  font-weight: 750;
}

.field small,
.help-text {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  padding: 0.8rem 0.9rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 4px rgba(121, 227, 183, 0.26);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.choice {
  position: relative;
  min-height: 52px;
}

.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice span {
  display: flex;
  height: 100%;
  min-height: 52px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 0.8rem 0.9rem;
  font-weight: 700;
}

.choice input:checked + span {
  border-color: var(--mint-dark);
  background: rgba(121, 227, 183, 0.22);
}

.route {
  padding: 3.3rem 0 5rem;
}

.route-header {
  max-width: 850px;
  margin-bottom: 2rem;
}

.form-shell,
.result-shell,
.admin-panel {
  padding: clamp(1rem, 3vw, 2rem);
}

.progress {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: #dce6df;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--amber));
  transition: width 180ms ease;
}

.form-step {
  display: none;
  margin-top: 1.4rem;
}

.form-step.active {
  display: block;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.consent-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
}

.consent-box input {
  width: 20px;
  min-height: 20px;
  margin-top: 0.2rem;
}

.error {
  color: #a43b25;
  font-weight: 700;
}

.success-note {
  border: 1px solid rgba(24, 124, 90, 0.2);
  border-radius: 18px;
  background: rgba(121, 227, 183, 0.18);
  padding: 1rem;
}

.summary-list,
.faq-list {
  display: grid;
  gap: 0.8rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}

.summary-row:last-child {
  border-bottom: 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem 1.1rem;
}

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.upload-zone {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1.5px dashed rgba(12, 27, 51, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.5rem;
  text-align: center;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.admin-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0.62rem 0.9rem;
  cursor: pointer;
}

.lead-list {
  display: grid;
  gap: 0.75rem;
}

.lead-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 1rem;
}

.comm-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.comm-line span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(240, 244, 241, 0.8);
  padding: 0.32rem 0.55rem;
  color: #43536c;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: rgba(121, 227, 183, 0.22);
  color: #14553f;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 5rem;
  color: #42516a;
}

.footer p {
  max-width: 620px;
  margin: 0.4rem 0 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 9;
  display: none;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(12, 27, 51, 0.16);
  padding: 0.45rem;
  padding-left: 1rem;
  backdrop-filter: blur(18px);
}

.sticky-cta span {
  font-weight: 800;
}

.chat-launcher {
  position: fixed;
  left: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 0.78rem 1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.chat-launcher span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
}

@media (max-width: 920px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .nav.open .nav-links {
    flex-direction: column;
  }

  .hero-grid,
  .calculator,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .energy-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .hero-grid,
  .section-inner,
  .footer,
  .nav {
    width: min(100% - 1rem, 1180px);
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-copy,
  .section-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .nav.open .nav-actions,
  .form-actions,
  .footer,
  .result-grid,
  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .input-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    left: 0.5rem;
    right: 0.5rem;
    justify-content: space-between;
  }

  .sticky-cta .button {
    width: auto;
  }

  .chat-launcher {
    display: none;
  }
}

/* Texas material system: warm limestone outside, technical teal underneath. */
body {
  background: var(--limestone);
  color: var(--charcoal);
}

::selection {
  background: var(--sand);
  color: var(--teal);
}

.site-header {
  border-bottom-color: rgba(96, 69, 54, 0.12);
  background: rgba(244, 235, 221, 0.92);
}

.brand {
  color: var(--teal);
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  border-radius: 7px;
  background: var(--adobe);
  box-shadow: 5px 5px 0 var(--gold);
}

.nav-links {
  color: var(--mesquite);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--adobe);
}

.nav-toggle {
  border-color: var(--line);
  background: var(--cream);
}

.nav-toggle span {
  background: var(--teal);
}

.button {
  border-radius: 7px;
  letter-spacing: 0.01em;
}

.button-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.24);
}

.button-primary:hover {
  background: #c58f2d;
}

.button-secondary {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal);
}

.button-secondary:hover {
  background: rgba(23, 63, 67, 0.08);
}

.button-dark {
  background: var(--teal);
  color: var(--cream);
}

.button-ghost {
  color: var(--teal);
}

.hero {
  background: var(--limestone);
  border-bottom: 1px solid rgba(96, 69, 54, 0.1);
}

.hero h1,
.section-title,
.route-title,
.result-title {
  color: var(--teal);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  letter-spacing: -0.02em;
}

.hero-copy {
  color: var(--mesquite);
}

.eyebrow {
  border-color: rgba(169, 79, 50, 0.26);
  background: rgba(201, 106, 67, 0.11);
  color: var(--adobe);
}

.metric-tile {
  border-color: var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 249, 239, 0.7);
}

.metric-tile span,
.section-lede,
.card p,
.muted,
.field small,
.help-text {
  color: var(--ink-muted);
}

.hero-image {
  border-color: rgba(96, 69, 54, 0.2);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.energy-card {
  border-color: rgba(255, 249, 239, 0.96);
  border-radius: 10px;
  background: rgba(255, 249, 239, 0.94);
  box-shadow: 0 18px 44px rgba(40, 39, 36, 0.16);
}

.bar-track {
  background: rgba(232, 210, 173, 0.72);
}

.bar-fill {
  background: var(--agave);
}

.bar-fill.amber {
  background: var(--gold);
}

.section.alt {
  background: var(--cream);
}

.section.dark {
  background: var(--teal);
}

.section.dark p,
.section.dark .muted {
  color: rgba(255, 249, 239, 0.74);
}

.section-kicker {
  color: var(--adobe);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title::after,
.route-title::after,
.result-title::after {
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--adobe), var(--gold), var(--agave));
  content: "";
}

.card,
.form-shell,
.result-shell,
.admin-panel {
  border-color: var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 239, 0.78);
  box-shadow: 0 12px 32px rgba(40, 39, 36, 0.06);
}

.card:hover {
  border-color: rgba(169, 79, 50, 0.28);
}

.calculator {
  border-color: rgba(96, 69, 54, 0.16);
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: none;
}

.calculator-form {
  background: var(--cream);
}

.calculator-result {
  background: var(--teal);
}

.result-number {
  color: var(--gold);
}

input,
select,
textarea {
  border-color: var(--line-strong);
  border-radius: 7px;
  background: var(--cream);
  color: var(--charcoal);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--adobe);
  box-shadow: 0 0 0 4px rgba(169, 79, 50, 0.15);
}

.choice span {
  border-color: var(--line);
  border-radius: 7px;
  background: var(--cream);
}

.choice input:checked + span {
  border-color: var(--adobe);
  background: rgba(201, 106, 67, 0.12);
  color: var(--teal);
}

.progress {
  background: rgba(232, 210, 173, 0.65);
}

.progress span {
  background: var(--adobe);
}

.consent-box,
.faq-item,
.upload-zone {
  border-color: var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.8);
}

.error {
  color: var(--adobe);
}

.success-note {
  border-color: rgba(85, 117, 101, 0.28);
  border-radius: 8px;
  background: rgba(85, 117, 101, 0.12);
  color: var(--teal);
}

.upload-zone {
  border-color: rgba(169, 79, 50, 0.44);
}

.admin-tabs button,
.lead-row {
  border-color: var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.comm-line span {
  border-color: var(--line);
  border-radius: 5px;
  background: rgba(232, 210, 173, 0.28);
  color: var(--mesquite);
}

.badge {
  border-radius: 5px;
  background: rgba(85, 117, 101, 0.14);
  color: var(--agave);
}

.footer {
  border-top-color: var(--line);
  color: var(--mesquite);
}

.sticky-cta {
  border-color: rgba(255, 249, 239, 0.94);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.94);
  box-shadow: 0 16px 40px rgba(40, 39, 36, 0.16);
}

.chat-launcher {
  border-radius: 8px;
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(23, 63, 67, 0.22);
}

.chat-launcher span {
  background: var(--gold);
  color: var(--charcoal);
}

:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.8);
  outline-offset: 3px;
}
