.hero {
  position: relative;
  min-height: 100dvh;
  background: linear-gradient(to bottom, var(--black), var(--cream));
}

.hero video {
  height: 100dvh;
  width: 100%;
  object-position: center;
  object-fit: cover;
  aspect-ratio: 16/9;
  mix-blend-mode: multiply;
}

.h-t-wrapper {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.heading {
  display: flex;
  align-items: center;
  column-gap: 3rem;
  font-size: 7rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  -webkit-text-stroke: 1px var(--cream);
  color: var(--dbrown);
}

.heading img {
  height: 0.7em;
  width: auto;
  object-fit: cover;
  object-position: center;
}

.tagline {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  color: var(--lbrown);
  -webkit-text-stroke: 1px var(--cream);
}

.hero .btns{
  display: flex;
  align-items: center;
  gap: 5rem;
}

.hero .btns .cta {
  padding: 0.3rem 4rem;
  font-size: 1.5rem;
  border-color: var(--cream);
  color: var(--cream);
  background: transparent;
}

.hero .btns .cta:hover {
  border-color: var(--lbrown);
  color: var(--lbrown);
  background: var(--cream);
}

.hero .btns .cta:active, .hero .btns .cta:focus {
  color: var(--dbrown);
  background: var(--lbrown);
}

.why {
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.why-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-template-rows: repeat(2, max-content);
  justify-content: center;
  align-content: center;
  gap: 1rem;
}

.point {
  position: relative;
  height: 250px;
  width: 350px;
  aspect-ratio: 1;
  border: var(--dborder);
  color: var(--cream);
  background-color: var(--dbrown);
  background: linear-gradient(to bottom, var(--black), var(--cream));
}

.point img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.why-txts {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
}

.why-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-txt {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.brownies {
  display: flex;
  justify-content: center;
  column-gap: 3.5rem;
}

.brownie {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.brownie:nth-child(odd) {
  margin-top: 7rem;
  flex-direction: column-reverse;
}

.b-heading {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
}

.b-tagline {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.b-img {
  width: 200px;
  height: auto;
  aspect-ratio: 1 / 1.5;
  border: var(--dborder);
  overflow: hidden;
}

.b-img img {
  height: 100%;
  width: 100%;
  image-rendering: optimizeSpeed;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.b-img img:hover {
  transform: scale(1.1);
}

.menu, .faq {
  min-height: max-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  padding: 4rem 0;
  border-top: var(--dborder);
}

.m-heading, .faq-heading, .why-heading {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.menu-grid {
  width: max-content;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5rem;
  padding: 0 5rem;
}

.faq-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 0 5rem;
}

.faq-qn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: var(--lborder);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-wrap-mode: wrap;
  text-wrap-style: balance;
  color: var(--dbrown);
  cursor: pointer;
}

.faq-qn:hover, .faq-qn:focus, .faq-qn:active {
  border: var(--dborder);
}

.faq-ans {
  padding: 10px;
  border: var(--lborder);
  border-top: none;
  font-size: 1rem;
  line-height: 1.2;
  text-wrap-mode: wrap;
  text-wrap-style: balance;
  color: var(--lbrown);
}