/* Buildchain Digital — warm natural theme */
:root {
  --bg: #f4efe6;
  --bg-deep: #e8dfd0;
  --surface: #fffaf2;
  --surface-soft: #f9f3ea;
  --ink: #2a2621;
  --ink-soft: #5c554c;
  --muted: #7a7268;
  --line: #d9cfc0;
  --sage: #4a6b4f;
  --sage-deep: #3a5540;
  --sage-soft: #d8e4d9;
  --clay: #a67c52;
  --clay-soft: #f0e4d4;
  --leaf: #6d8f72;
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --radius-lg: 1.75rem;
  --shadow: 0 12px 40px rgba(42, 38, 33, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --header-h: 4.25rem;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(109, 143, 114, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(166, 124, 82, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--sage);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-variation-settings: "SOFT" 50, "WONK" 0.5;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sage);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

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

.inline-error {
  background: #f3d6d0;
  color: #5c2c24;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(244, 239, 230, 0.88);
  border-bottom: 1px solid rgba(217, 207, 192, 0.7);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background:
    linear-gradient(145deg, var(--sage) 0%, var(--leaf) 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 250, 242, 0.25);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 30% 28%;
  border: 2px solid #f7f1e8;
  border-radius: 3px;
  transform: rotate(45deg);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  transition: color 0.2s var(--ease);
}

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

.site-nav .nav-cta {
  background: var(--sage);
  color: #fffaf2;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
}

.site-nav .nav-cta:hover {
  background: var(--sage-deep);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border: 0;
  }
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-primary {
  background: var(--sage);
  color: #fffaf2;
}

.btn-primary:hover {
  background: var(--sage-deep);
  color: #fff;
}

.btn-secondary {
  background: var(--surface);
  color: var(--sage-deep);
  border-color: var(--sage-soft);
}

.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--muted);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero — brand-led, full-bleed visual plane */
.hero-home {
  position: relative;
  min-height: min(88vh, 52rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: 0 0.75rem;
}

.hero-home-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: drift 28s ease-in-out infinite alternate;
}

.hero-home-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 38, 33, 0.15) 0%, rgba(42, 38, 33, 0.72) 70%, rgba(42, 38, 33, 0.88) 100%);
}

.hero-home-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 3.5rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  color: #f7f1e8;
  animation: rise 0.9s var(--ease) both;
}

.hero-home-content .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.75rem);
  font-weight: 650;
  margin: 0 0 0.5rem;
  line-height: 1.05;
  color: #fffaf2;
}

.hero-home-content h1 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  color: rgba(247, 241, 232, 0.92);
  max-width: 28rem;
  margin: 0 0 1rem;
}

.hero-home-content .hero-note {
  max-width: 26rem;
  color: rgba(247, 241, 232, 0.82);
  margin-bottom: 0;
}

.hero-home .btn-primary {
  background: #c9a87c;
  color: var(--ink);
}

.hero-home .btn-primary:hover {
  background: #dbb98d;
  color: var(--ink);
}

@keyframes drift {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, 1%);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fade-up 0.8s var(--ease) both;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.24s;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
}

.page-hero .lede {
  margin-bottom: 0;
}

/* Proof / soft stats */
.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: -2.5rem 1.25rem 0;
  position: relative;
  z-index: 2;
  max-width: calc(var(--max) + 0);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.proof-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .proof-band {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
}

/* Feature mosaic — not cards-as-default; soft panels for browsing */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.mosaic-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 18rem;
}

.mosaic-media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.benefit-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.benefit-list li:last-child {
  border-bottom: 0;
}

.benefit-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .mosaic {
    grid-template-columns: 1fr;
  }
}

/* Course grid — interactive browsing containers */
.course-grid,
.blog-grid,
.tier-grid {
  display: grid;
  gap: 1.5rem;
}

.course-grid {
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.tier-grid {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  align-items: stretch;
}

.course-tile,
.blog-tile,
.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

a.course-tile:hover,
a.blog-tile:hover,
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.course-tile img,
.blog-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.course-tile-body,
.blog-tile-body,
.tier-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-tile h3,
.blog-tile h3,
.tier h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.course-meta,
.blog-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.tile-link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 700;
  color: var(--sage);
  text-decoration: none;
}

/* Pricing tiers */
.tier {
  padding: 0;
}

.tier-body {
  padding: 1.75rem 1.5rem;
}

.tier.featured {
  border-color: var(--sage);
  background: linear-gradient(180deg, var(--surface) 0%, var(--sage-soft) 140%);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--sage-deep);
  margin: 0.5rem 0 0.25rem;
}

.tier-price span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--muted);
  font-weight: 600;
}

.tier ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.tier li {
  margin-bottom: 0.4rem;
}

/* Testimonials */
.quote-stack {
  display: grid;
  gap: 1.25rem;
}

.quote {
  background: var(--surface-soft);
  border-left: 4px solid var(--leaf);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.35rem 1.5rem;
}

.quote p {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.quote footer {
  font-size: 0.9rem;
  color: var(--muted);
}

.quote.long {
  border-left-color: var(--clay);
}

.stars {
  color: var(--clay);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  margin-bottom: 0.65rem;
  color: var(--sage-deep);
}

/* Forms */
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74, 107, 79, 0.18);
}

.field-error {
  color: #9b3d2e;
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.form-status.is-success {
  background: var(--sage-soft);
  color: var(--sage-deep);
}

.form-status.is-error {
  background: #f3d6d0;
  color: #5c2c24;
}

.form-status.is-pending {
  background: var(--clay-soft);
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

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

.contact-aside address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Legal */
.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: 2.25rem;
  font-size: 1.45rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: var(--sage-soft);
}

/* Modules list */
.module-list {
  counter-reset: mod;
  list-style: none;
  padding: 0;
}

.module-list li {
  counter-increment: mod;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem 1.15rem 4rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.module-list li::before {
  content: counter(mod, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sage);
}

/* Soft CTA band */
.cta-band {
  margin: 2rem 1.25rem 4rem;
  padding: 2.75rem 1.75rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(74, 107, 79, 0.92), rgba(58, 85, 64, 0.95)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1400&q=80")
      center / cover;
  color: #f7f1e8;
  text-align: center;
}

.cta-band h2 {
  color: #fffaf2;
  margin: 0 0 0.65rem;
}

.cta-band p {
  max-width: 32rem;
  margin: 0 auto 1.25rem;
  color: rgba(247, 241, 232, 0.88);
}

.cta-band .btn-primary {
  background: #c9a87c;
  color: var(--ink);
}

/* Case study */
.case {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.case h3 {
  margin-top: 0;
}

/* 404 */
.page-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.page-404 .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 7rem);
  color: var(--sage);
  margin: 0;
  line-height: 1;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 36rem;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Footer */
.site-footer {
  background: #2f3d31;
  color: rgba(247, 241, 232, 0.85);
  margin-top: 3rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.site-footer a {
  color: #e8dfd0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fffaf2;
  margin: 0 0 0.65rem;
}

.footer-tag {
  color: rgba(247, 241, 232, 0.7);
  max-width: 18rem;
  font-size: 0.95rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-cols h3 {
  color: #c9a87c;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.85rem;
}

.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-cols li {
  margin-bottom: 0.45rem;
}

.footer-cols address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-base {
  border-top: 1px solid rgba(247, 241, 232, 0.12);
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(247, 241, 232, 0.55);
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Article */
.article {
  max-width: 42rem;
  margin: 0 auto;
}

.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  aspect-ratio: 21 / 9;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.instructor {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.instructor img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 700px) {
  .split-2 {
    grid-template-columns: 1fr;
  }
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.chip {
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.placeholder-partial {
  min-height: var(--header-h);
}
