:root {
  --ivory: #f8f6f0;
  --sand: #ded1bd;
  --sage: #879b7d;
  --forest: #24382b;
  --charcoal: #252525;
  --muted: #6f6a61;
  --white: #fff;
  --line: #e7dfd2;
}
* {
  box-sizing: border-box;
  transition: all .4s;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, sans-serif;
}
h1,
h2 {
  font-family: "Playfair Display", serif;
  color: var(--forest);
  line-height: 0.95;
  margin: 0;
}
h1 {
  font-size: clamp(54px, 8vw, 112px);
}
h2 {
  font-size: clamp(36px, 5vw, 64px);
}
h3 {
  margin: 0 0 10px;
}
.nav {
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  color: var(--forest);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.btn,
button {
  border: 0;
  background: var(--forest);
  color: white;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  cursor: pointer;
}
.btn.small {
  padding: 10px 18px;
}
.btn.ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}
.btn.full {
  width: 100%;
  margin-top: 18px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  min-height: 760px;
  padding: 7vw 5vw 5vw;
  align-items: center;
  position:relative
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 800;
  font-size: 12px;
}
.lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 650px;
}
.actions,
.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-row {
  color: var(--forest);
  font-weight: 700;
  font-size: 14px;
}
.hero-card {
  position: relative;
}

.floating-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  z-index: 2;
}
.photo-panel,
.product-img {
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(42, 45, 37, 0.14);
}
.main-photo {
  height: 520px;
  background-image:
    linear-gradient(135deg, rgba(36, 56, 43, 0.2), rgba(222, 209, 189, 0.2)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=80");
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.mini-grid .photo-panel {
  height: 180px;
}
.p1 {
  background-image: url("https://images.unsplash.com/photo-1506629905607-d405d7d3b0d2?auto=format&fit=crop&w=800&q=80");
}
.p2 {
  background-image: url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=800&q=80");
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics div {
  padding: 34px 5vw;
  border-right: 1px solid var(--line);
}
.metrics strong {
  display: block;
  font-size: 30px;
  color: var(--forest);
}
.metrics span {
  color: var(--muted);
}
.metrics-iconed{
  grid-template-columns: repeat(5,1fr);
}
.metrics-iconed div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.metrics-iconed div span{
  font-size: 13px;
}
.metrics-iconed div i{
  font-size: 50px;
  color:var(--sage)
}
.section {
  padding: 7vw 5vw;
}
.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.products,
.services,
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 16px;
  line-height: .8 !important;
  text-align: center
}
.product-img {
  display: flex;        /* optional, helps centering in older setups */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 500px;
  margin-bottom: 18px;
}
@media(max-width:768px){
  .product-img{
    height:300px
  }
}
.product-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit:fill;
  object-position: center;
}
.product p {
  color: var(--muted);
}
.product button {
  width: 100%;
  margin-top: 14px;
  background: var(--sage);
}
.img1 {
  background-image: url("https://images.unsplash.com/photo-1548624313-0396c75e4b1a?auto=format&fit=crop&w=700&q=80");
}
.img2 {
  background-image: url("https://images.unsplash.com/photo-1543163521-1bf539c55dd2?auto=format&fit=crop&w=700&q=80");
}
.img3 {
  background-image: url("https://images.unsplash.com/photo-1543076447-215ad9ba6923?auto=format&fit=crop&w=700&q=80");
}
.img4 {
  background-image: url("https://images.unsplash.com/photo-1594223274512-ad4803739b7c?auto=format&fit=crop&w=700&q=80");
}
.split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.reverse {
  grid-template-columns: 0.85fr 1fr;
}
.timeline {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}
.timeline div {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 22px;
}
.timeline span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: none;
}
.timeline p {
  margin: 5px 0;
  color: var(--muted);
}
.phone-mock,
.system-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(42, 45, 37, 0.12);
}
.phone-top {
  height: 18px;
  width: 110px;
  background: #ddd;
  border-radius: 999px;
  margin: 0 auto 28px;
}
.status {
  background: #ecf2e8;
  color: var(--forest);
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-block;
  font-weight: 800;
}
.phone-line,
.system-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.service-panel {
  background: var(--forest);
  color: white;
}
.service-panel h2 {
  color: white;
}
.light .eyebrow {
  color: var(--sand);
}
.light p {
  color: #e4ded2 !important;
}
.services div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px;
  border-radius: 28px;
}
.services p {
  color: #e4ded2;
}
.services strong {
  color: var(--sand);
}
.checks {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-weight: 600;
}
.checks li:before {
  content: "✓";
  color: var(--sage);
  font-weight: 900;
  margin-right: 12px;
}
.system-card h3 {
  font-size: 30px;
  color: var(--forest);
}
.system-row span {
  color: var(--sage);
  font-weight: 800;
}
.hubs {
  background: #fff;
}
.hub-grid {
  grid-template-columns: repeat(3, 1fr);
}
.hub-grid div {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  background: var(--ivory);
}
footer {
  padding: 44px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--charcoal);
  color: white;
}
footer .brand {
  color: white;
}
footer .brand-mark {
  background: var(--sage);
}
footer p {
  color: #d9d2c8;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hero,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }
  .metrics,
  .products,
  .services,
  .hub-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 60px;
  }
  .main-photo {
    height: 420px;
  }
  footer {
    display: block;
  }
  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
.full-height-centered-page{
    height:100vh;
    display:grid;
    place-content: center;
    text-align: center;
}
.sign-area{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    place-content: center;
}
.sign-area form{
    border-top: 50px solid var(--forest);
    display: grid !important;
    width:30%;
    margin:auto;
    gap:10px;
    padding:30px;
    background-color: white;
    box-shadow: 0 0 10px rgba(222, 209, 189, 0.2);
    border-radius: 30px;
}
@media(max-width:768px){
    .sign-area form{
        width:90%
    }
}
.sign-area form h1{
    font-size: 50px;
    margin-bottom:15px;
    text-align: center;
}
.sign-area form p{
    text-align: center;
    font-size: 12px;
    color:var(--charcoal)
}
.sign-area form p a{
    color:var(--forest)
}
.sign-area form input{
    padding:20px;
    border:2px solid var(--forest);
    color:var(--forest);
    outline:none;
    border-radius: 360px;
    font-family: Inter, sans-serif;
}
.sign-area form .label-group{
    display: flex;
    font-size: 9px !important;
    gap:10px;
    justify-content: center;
    align-items:center;
    font-weight: 700;
}

.label-group label{
  display:flex;
  align-items: center;
  font-size:14px;
  color: var(--forest);
  width:fit-content;
  height:30px;
  border-radius:360px;
  padding:0 10px;
  background-color: var(--line);
}
input[type='radio']{
  opacity: .4;
  accent-color: var(--forest);
     
}
input[type='radio']:checked{
  opacity: 1
}

.mini-banner{
  height:40vh !important;
  background: linear-gradient(45deg, var(--muted), var(--line));
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:20px
}
.mini-banner .breadcrumb{
    font-style: italic;
    font-size: 13px;
    display:flex;
    gap:10px;
    align-items: center;
}
.card{
  background-color: white;
  margin:50px
}
.card .card-body{
  padding:30px
}
.card-body h1{
  font-size: 30px !important;
}

.card-body h2{
  font-size: 20px !important;
}
@media(max-width:768px){
  .card{
    margin:5px
  }
}
.more{
  margin: 0 0 30px 0;
  display: flex;
  justify-content: end;
}
.more a{
  text-decoration: none;
  display:block;
  padding:10px 20px;
  border: 1px solid var(--sand);
  width:fit-content;
  color:var(--forest);
  font-weight: 700;
  border-radius: 360px;
  box-shadow: 0 0 10px rgba(222, 209, 189, 0.2);
}

  .product-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 24px 96px;
    font-family: Inter, sans-serif;
    color: var(--charcoal);
  }

  /* --- breadcrumb --- */
  .product-page .crumb {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0 0 18px;
  }

  .product-page .highlights {
    display: grid;
    grid-template-columns: 420px 1fr 300px;
    gap: 32px;
    align-items: start;
    border-bottom: 1px solid var(--line);
    padding-bottom: 36px;
  }

  /* --- left: image --- */
  .product-page .img {
    position: sticky;
    top: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
  }
  .product-page .img img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  /* --- middle: info --- */
  .product-page .col-info {
    min-width: 0;
  }

  .product-page .product-category {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--sage);
    margin: 0 0 6px;
  }

  .product-page .product-name {
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
    margin: 0 0 10px;
  }

  .product-page .owner {
    display: flex !important;
    gap: 6px !important;
    align-items: center !important;
    cursor: pointer;
    width: fit-content;
    font-size: 13px;
    color: var(--sage);
    margin-bottom: 18px;
  }
  .product-page .owner:hover {
    text-decoration: underline;
    color: var(--forest);
  }
  .product-page .owner img {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50%;
    object-fit: cover;
  }

  .product-page .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
  }
  .product-page .trust-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--forest);
    background: var(--sand);
    border-radius: 4px;
    padding: 5px 9px;
  }

  .product-page .about-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 10px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .product-page .details {
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal);
  }
  .product-page .details ul {
    padding-left: 18px;
    margin: 0;
  }
  .product-page .details li {
    margin-bottom: 6px;
  }

  /* --- right: buy box --- */
  .product-page .buybox {
    position: sticky;
    top: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: var(--white);
  }

  .product-page .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 4px;
  }
  .product-page .price::before {
    content: "Price: ";
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
  }

  .product-page .pickup-note {
    font-size: 12.5px;
    color: var(--forest);
    font-weight: 600;
    margin: 10px 0 2px;
  }
  .product-page .pickup-sub {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 14px;
  }

  .product-page .stock-line {
    font-size: 14px;
    font-weight: 600;
    color: var(--sage);
    margin: 4px 0 14px;
  }
  .product-page .stock-line.reserved {
    color: #b3532c;
  }

  .product-page .actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-page .a-tag,
  .product-page .actions button {
    width: 100%;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ivory);
    background: var(--forest);
    border: none;
    border-radius: 20px;
    padding: 11px 18px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
  }
  .product-page .a-tag:hover,
  .product-page .actions button:hover {
    background: var(--charcoal);
  }

  .product-page .actions p {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0 0 4px;
  }
  .product-page .actions b {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--forest) !important;
    margin-bottom: 6px;
  }
  .product-page .actions a[href^="mailto"] {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--forest) !important;
    background: none;
    padding: 0;
    text-decoration: underline;
    width: auto;
  }

  .product-page .sold-by {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
  }
  .product-page .sold-by span {
    color: var(--sage);
    font-weight: 600;
  }

  @media (max-width: 980px) {
    .product-page .highlights {
      grid-template-columns: 1fr;
    }
    .product-page .img,
    .product-page .buybox {
      position: static;
    }
  }

  .seller-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 24px 96px;
    font-family: Inter, sans-serif;
    color: var(--charcoal);
  }

  /* --- header --- */
  .seller-page .seller-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
  .seller-page .seller-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line);
    background: var(--white);
  }
  .seller-page .seller-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--charcoal);
  }
  .seller-page .seller-meta {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
  }
  .seller-page .seller-meta span {
    color: var(--sage);
    font-weight: 600;
  }
  .seller-page .trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--forest);
    background: var(--sand);
    border-radius: 4px;
    padding: 5px 9px;
    margin-top: 8px;
  }

  /* --- grid --- */
  .seller-page .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px;
  }

  .seller-page .card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
  }
  .seller-page .card:hover {
    border-color: var(--sage);
  }

  .seller-page .card-img {
    aspect-ratio: 1 / 1;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .seller-page .card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .seller-page .card-body {
    padding: 12px 14px 14px;
  }

  .seller-page .card-category {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--sage);
    margin: 0 0 4px;
  }

  .seller-page .card-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--charcoal);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .seller-page .card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
  }

  .seller-page .card-status {
    display: inline-block;
    margin-top: 8px;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--sand);
    color: var(--forest);
  }
  .seller-page .card-status.reserved {
    background: #f3e3da;
    color: #b3532c;
  }

  /* --- empty state --- */
  .seller-page .empty {
    text-align: center;
    padding: 72px 20px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
  }

  @media (max-width: 520px) {
    .seller-page .seller-header {
      flex-wrap: wrap;
    }
  }
section.how-it-works{
    margin:30px 20px
}
.how-it-works-items{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 40px 0;
  gap:40px
}
@media(max-width:768px){
  .how-it-works-items{
    grid-template-columns: repeat(2,1fr);
  }
}
.how-it-works-item{
    position:relative
}
.how-it-works-item .arrow{
  background:var(--forest);
  color:var(--line);
  width:40px;
  height:40px;
  border-radius: 360px;
  position:absolute;
  top:50%;
  right:-20px;
  display: grid;
  place-content:center
}

.how-it-works-item .intro{
  display:grid;
  grid-template-columns: 10% 90%; 
  gap:20px;
  font-weight: 700;
}
@media(max-width:768px){
  .how-it-works-item .arrow{
      top:70%;
      right:40%
  }
  .how-it-works-item .intro{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.how-it-works-item .intro .count{
  width:30px;
  height:30px;
  border-radius: 360px;
  display:grid;
  place-content: center;
  background-color: var(--sage);
  color:var(--ivory);
}
.how-it-works-item img{
    width:100%;
    background:whitesmoke;
    height:200px;
    border-radius: 20px;
    margin-top:15px
}

@media(max-width:786px){
  .how-it-works-item img{
      height:170px
  }
}
.how-it-works-item p{
  font-size: 10px;
  color:var(--forest)
}
.how-it-works-item .intro .message{
    color:var(--sage);
    font-size: 13px;
}

.how-it-works-header{
  display: grid;
  grid-template-columns: 30% 40% 30%;
  align-items: center;
  text-align: center;
}
.how-it-works-header h2{
  font-size: 25px;
}
@media(max-width:768px){
  .how-it-works-header h2{
      font-size: 18px !important;
  }
}
.how-it-works-header .line-a, .how-it-works-header .line-b{
  background-color: var(--sage);
  height:2px
}


.lessons{
  display:flex;
  gap:10px;
  bottom:20px;
  position: absolute;
  right:20px;
  width: 40%;
}
@media(max-width:768px){
  .hero{
    position:static
  }
  .lessons{
    position: static;
    flex-direction: column;
    width:100%
  }
}

.lesson{
  background-color: rgba(240, 243, 230, 0.671);
  border:1px solid whitesmoke;
  padding:20px;
  width:600px;
  border-radius: 20px;
  backdrop-filter: blur(3px);
}
@media(max-width:768px){
  .lesson{
    width:100%
  }
}
.lesson .lesson-header{
  line-height: 0;
  color:var(--forest);
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Playfair Display';
  text-transform: uppercase;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap:30px;
}
.lesson-header h3{
  font-size: 25px;
}
.lesson-header .icon{
  width:50px;
  aspect-ratio: 1/1;
  border-radius: 360px;
  background-color: var(--forest);
  display:grid;
  place-content: center;
  color:var(--ivory)
}
.lesson .lesson-body{

}
.lesson-body p{
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
}
.lesson-body ul{
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 50px;
  list-style: none;
}
.lesson-body ul li{
  margin:0;
  padding:0;
  position:relative;
  color:var(--sage)
}
.lesson-body ul li::before{
  content:"";
  position:absolute;
  left:0;
  padding:0;
  font-size: 13px !important;
  width:10px;
  left:-20px;
  top:10%;
  border-radius: 360px;
  aspect-ratio: 1/1;
  background-color: var(--sage);
}
.lesson-body small{
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  margin:0;
  text-align: center;
  position: absolute;
  bottom:0;
  left:0;
  right:0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: var(--sage);
  color: var(--ivory);
  padding:10px 20px
}

.reveal{
  opacity: 0;
  transform: translateY(40px)
}
.reveal.show{
  opacity: 1;
  transform:translateY(0)
}

.loading{
  height:50vh;
  display:grid;
  place-content: center;
  position:relative
}
.loading::before{
     position: absolute;
     content:"";
     width:50px;
     height:50px;
     border:4px solid var(--forest);
     border-top: 4px solid var(--sage);
     border-radius: 360px;
     top:50%;
     left:50%;
     transform: translate(-50%, -50%);
     animation:spin .4s linear infinite
}
@keyframes spin{
  0%{
      transform: rotate(0deg)
  }
  100%{
      transform: rotate(360deg);
  }
}