:root {
  --mint-light: #d7ede5;
  --mint-light-alpha: #d7ede5cc;

  --maroon-dark: #691b12;

  --orange-coral: #f15e38;

  --white: #ffffff;
  --gray-50: #f7f7f7;
  --gray-600: #666664;

  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Futuru", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Futuru";
  src: url("../assets/fonts/Futuru-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ______________________ css _________________________ */

/* Common css styles */
a {
  text-decoration: none;
}
/* primary btn */
.button--primary {
  box-shadow: 0px 4px 0px 0px #691b12;
  background-color: var(--orange-coral);
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  padding: 0.56rem 2.5rem;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.button--primary:hover {
  box-shadow: 0px 0px 0px 0px #691b12;
  transform: translateY(4px);
}
/* secondary btn */
.button--secondary {
  position: relative;
  overflow: hidden;
  border: 2px solid #691b12;
  font-family: var(--font-heading);
  color: var(--maroon-dark);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.56rem 2.5rem;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.button--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #691b12;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.button--secondary span {
  position: relative;
  z-index: 2;
}

.button--secondary:hover::before {
  transform: translateX(0);
}

.button--secondary:hover {
  color: #fff;
}
/* section title */
.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 62px;
  line-height: 68px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .section__title {
    font-size: 48px;
    line-height: 54px;
  }
  .button--primary,
  .button--secondary {
    font-size: 18px;
    line-height: 24px;
    padding: 0.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .section__title {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
  }
  .button--primary,
  .button--secondary {
    font-size: 16px;
    line-height: 20px;
    padding: 0.5rem 2rem;
  }
}

/* ============= Navbar ============== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__menu {
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease;
}
.navbar__container {
  max-width: 1344px;
  width: 100%;
  margin: 1.5rem auto 0;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand{
  width:160px
}
.navbar__brand img{
  width:62px
}
.navbar__menu .navbar__link {
  font-family: var(--font-heading);
  color: var(--maroon-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2%;
}
.navbar__contact {
  box-shadow: 0px 4px 0px 0px #691b12;
  background-color: var(--orange-coral);
  font-family: var(--font-heading);
  color: var(--mint-light);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2%;
  padding: 6px 2rem;
  border-radius: 999px;
  display: block;
  text-decoration: none;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.navbar__contact:hover {
  box-shadow: 0px 0px 0px 0px #691b12;
  transform: translateY(4px);
}
.navbar__contact.mb {
  display: none;
}
.navbar__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.burger__menu {
  display: none;
}

@media (max-width: 1024px) {
  .navbar__menu .navbar__link {
    font-size: 18px;
  }

  .navbar__contact {
    font-size: 18px;
    padding: 6px 1.75rem;
  }

  .navbar__right {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .burger__menu {
    box-shadow: 0px 4px 0px 0px #691b12;
    background-color: var(--orange-coral);
    padding: 8px 20px;
    border-radius: 999px;
    display: flex;
    justify-self: center;
    align-items: center;
    cursor: pointer;
  }
  .navbar__container {
    margin-top: 1rem;
    align-items: start;
  }
  .navbar__contact.mb {
  display: block;
}
.navbar__contact.web {
  display: none;
}
  .navbar__right {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--mint-light);
    z-index: 10;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.35s ease,
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.35s ease;

    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  }
  .navbar__right.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .navbar__menu {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .navbar__menu .navbar__link {
    font-size: 18px;
  }

  .navbar__contact {
    font-size: 18px;
    padding: 8px 2rem;
  }

  .navbar__container {
    position: relative;
  }
  /*  */
}
/* ============= Header ============== */
.hero__title {
  font-family: var(--font-heading);
  color: var(--maroon-dark);
  font-weight: 700;
  font-size: 96px;
  line-height: 92px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.brand__highlight {
  color: var(--orange-coral);
}
.hero__description {
  font-family: var(--font-primary);
  color: var(--gray-600);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  max-width: 550px;
  width: 100%;
  margin: 2rem auto 0;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2.75rem;
}

.hero__highlight {
  border-radius: 12px;
  display: flex;
  gap: 4px;
  background-color: #ffffff80;
  padding: 6px 16px 6px 10px;
  color: var(--gray-600);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -2%;
  text-align: center;
}
.hero__highlights {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 120px 0 250px;
  position: relative;
  z-index: 3;
}
.hero {
  background-color: var(--mint-light);
  position: relative;
  overflow-x: clip;
}
.hero__content {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.hero__container {
  padding-top: 120px;
  position: relative;
}
.hero__decor-wrap {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.header__base {
  position: absolute;
  bottom: -15px;
  width: 100%;
  z-index: 2;
}
.header_tree-left {
  position: absolute;
  left: 20px;
  bottom: 0;
  transform: rotate(-5deg);
  max-width: 428px;
  width: 100%;
}
.header_tree-right {
  position: absolute;
  right: 20px;
  bottom: 0;
  transform: rotate(5deg);
  max-width: 428px;
  width: 100%;
}
.header_bird-pair {
  position: absolute;
  right: 5%;
  top: 15%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 87px;
  width: 100%;
}
.header_cloud-xl {
  position: absolute;
  top: 7%;
  right: -10%;
}
.header_bird-pair-l {
  position: absolute;
  left: 5%;
  top: 20%;
  transform: scaleX(-1);
  z-index: 1;
  max-width: 87px;
  width: 100%;
}
.header_cloud-xl-l {
  position: absolute;
  top: 25%;
  left: -10%;
}
.header_cloud-md {
  position: absolute;
  top: 5%;
  left: 60%;
}
.header_cloud-sm {
  position: absolute;
  top: 7%;
  right: 10%;
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* Container adjustments */
  .hero__container {
    padding-top: 100px;
  }

  /* Hero Title */
  .hero__title {
    font-size: 64px;
    line-height: 64px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Hero Description */
  .hero__description {
    font-size: 18px;
    line-height: 24px;
    max-width: 400px;
    margin: 1.5rem auto 0;
  }

  /* Hero Actions */
  .hero__actions {
    margin-top: 2rem;
    gap: 1rem;
  }

  /* Highlights */
  .hero__highlights {
    flex-wrap: wrap;
    padding: 80px 0 220px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__highlight {
    font-size: 14px;
    line-height: 20px;
    gap: 4px;
    padding: 6px 12px 6px 8px;
  }

  /* Decorative Trees */
  .header_tree-left {
    left: 0%;
    bottom: 0;
    max-width: 250px;
    transform: rotate(-3deg);
  }

  .header_tree-right {
    right: 0%;
    bottom: 0;
    max-width: 250px;
    transform: rotate(3deg);
  }

  /* Birds */
  .header_bird-pair {
    max-width: 50px;
    top: auto;
    bottom: 50%;
    right: 5%;
    transform: translateX(0);
  }

  .header_bird-pair-l {
    max-width: 50px;
    top: auto;
    bottom: 50%;
    left: 5%;
    transform: scaleX(-1);
  }

  /* Clouds */
  .header_cloud-xl-l {
    width: 300px;
    top: 30%;
    left: -40%;
  }

  .header_cloud-xl {
    width: 200px;
    top: 5%;
    right: -10%;
  }

  .header_cloud-md {
    width: 60px;
    top: 5%;
    left: 40%;
  }

  .header_cloud-sm {
    width: 45px;
    top: 5%;
    left: 65%;
  }

  /* Hero content */
  .hero__content {
    max-width: 720px;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .hero__container {
    padding-top: 80px;
  }
  .hero__title {
    font-size: 44px;
    line-height: 44px;
    letter-spacing: -0.02em;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero__description {
    font-size: 16px;
    line-height: 22px;
    margin-top: 24px;
    max-width: 310px;
    margin: 24px auto 0;
  }
  .hero__actions {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .hero__highlights {
    flex-wrap: wrap;
    padding: 36px 0 200px;
    max-width: 350px;
    margin: 0 auto;
  }
  .hero__highlight {
    font-size: 12px;
    line-height: 18px;
    gap: 4px;
  }
  .header_tree-left {
    left: -10%;
    max-width: 145px;
    width: 100%;
  }
  .header_tree-right {
    right: -10%;
    max-width: 145px;
    width: 100%;
  }
  .header_bird-pair {
    max-width: 35px;
    width: 100%;
    top: auto;
    bottom: 35%;
    right: 2%;
  }
  .header_bird-pair-l {
    max-width: 35px;
    width: 100%;
    top: auto;
    bottom: 35%;
    left: 2%;
  }
  .header_cloud-xl-l {
    width: 380px;
    top: 35%;
    left: -50%;
  }
  .header_cloud-xl {
    width: 266px;
    top: 3%;
    right: -20%;
  }
  .header_cloud-md {
    top: 3%;
    left: 30%;
    width: 80px;
  }
  .header_cloud-sm {
    top: 3%;
    left: 60%;
    width: 52px;
  }
}
/* ====================== Menu ====================== */
.menu {
  background-color: var(--maroon-dark);
  padding: 48px 0 120px;
}
.menu__container {
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.menu__title {
  text-align: center;
  color: #e3f3ed;
}
.menu__subtitle {
  font-family: var(--font-primary);
  font-weight: 500;
  color: #d7ede5cc;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -2%;
  text-align: center;
  margin-top: 1.5rem;
}
.menu__content {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu__tabs {
  border: 1px solid #d7ede54d;
  padding: 6px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

.menu__tab {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--mint-light);
  font-size: 20px;
  padding: 3px 40px 6px;
  border-radius: 999px;
  line-height: 28px;
  letter-spacing: 2%;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
}
.menu__tab.menu__tab--active {
  background-color: var(--orange-coral);
  box-shadow: 0px 4px 0px 0px #691b12;
    color: var(--white);
}

.menu__panels {
  margin-top: 48px;
  width: 100%;
}
.menu__panel {
  display: none;
}

.menu__panel--active {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
}

.menu__item {
  background-color: #d7ede5;
  border-radius: 1rem;
  padding: 12px;
  max-width: 424px;
    display: flex;
  flex-direction: column;
    justify-content: space-between;
    gap:12px;
}
.menu__item-image {
  max-height: 316px;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.menu__item-tags {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 12px;
}

.menu__item-tag {
  background-color: var(--maroon-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  padding: 3px 16px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-tag_icon {
  width: 14px;
  height: 14px;
}
.menu__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.menu__item-content {
  display:flex;
  flex-direction:column;
  justify-content: space-between;
 flex-grow: 1;
}

.menu__item-title {
  font-family: var(--font-heading);
  color: var(--maroon-dark);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
.menu__item-content-top{
  display: flex;
  flex-direction: column;
}
.menu__item-description {
  font-family: var(--font-primary);
  color: var(--gray-600);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-top: 0.75rem;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.menu__item-prices {
  display: flex;
  gap: 10px;
  margin-top: 0.75rem;
  border-top: 1px solid #691b1233;
  padding-top: 0.75rem;
  justify-content: space-between;
  text-transform: uppercase;
}

.menu__item-price {
  font-family: var(--font-heading);
  color: var(--maroon-dark);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  padding: 5px 5px 6px;
  background-color: white;
  border-radius: 999px;
  flex-grow: 1;
  text-align: center;
}

/* responsive */

@media (max-width: 1024px) {
  .menu__subtitle {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.015em;
  }
  .menu__tab {
    font-size: 16px;
    line-height: 24px;
    padding: 2px 28px 6px;
  }
  .menu__panels {
    margin-top: 32px;
  }
  .menu__panel--active {
    gap: 20px;
     grid-template-columns: repeat(2, minmax(280px, 1fr));

  }

  .menu__item {
    padding: 10px;
    width: 100%;
    max-width: 100%;
  }

  .menu__item-image {
    max-height: 250px;
    border-radius: 10px;
  }

  .menu__item-tags {
    top: 10px;
    right: 10px;
    gap: 6px;
  }

  .menu__item-tag {
    font-size: 10px;
    padding: 3px 12px 5px;
    gap: 6px;
  }

  .item-tag_icon {
    width: 12px;
    height: 12px;
  }

  .menu__item-content {
    padding-top: 10px;
  }

  .menu__item-title {
    font-size: 20px;
    line-height: 28px;
  }

  .menu__item-description {
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
  }

  .menu__item-prices {
    gap: 6px;
    margin-top: 8px;
    padding-top: 6px;
  }

  .menu__item-price {
    font-size: 12px;
    line-height: 18px;
    padding: 4px 18px 5px;
  }
}

@media (max-width: 768px) {
  .menu {
    padding: 48px 0;
  }
  .menu__container {
    padding: 0 1rem;
  }
  .menu__subtitle {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.01em;
    margin-top: 1rem;
  }
  .menu__content {
    margin-top: 2rem;
  }
  .menu__tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    gap: 4px;
    justify-content: start;
  }

  .menu__tabs::-webkit-scrollbar {
    display: none;
  }
  .menu__tab {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 28px 12px 28px;
  }
  .menu__panels {
    margin-top: 24px;
  }
  .menu__panel--active {
    gap: 16px;
    display: flex;
    overflow: scroll;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  }
  .menu__item {
    background-color: #d7ede5;
    border-radius: 12px;
    padding: 8px;
    max-width: 290px;
    width: 100%;
    flex-shrink: 0;
  }
  .menu__item-image {
    max-height: 213px;
    height: 100%;
    border-radius: 8px;
  }
  .menu__item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .menu__item-tags {
    top: 8px;
    right: 8px;
    gap: 4px;
  }
  .menu__item-tag {
    font-size: 9px;
    padding: 4px 8px 6px;
    gap: 4px;
  }
  .item-tag_icon {
    width: 12px;
    height: 12px;
  }
  .menu__item-content {
    padding-top: 8px;
  }
  .menu__item-title {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.01em;
  }
  .menu__item-description {
    font-size: 12px;
    line-height: 18px;
    margin-top: 8px;
  }
  .menu__item-prices {
    gap: 4px;
    margin-top: 10px;
    padding-top: 8px;
  }
  .menu__item-price {
    font-size: 10px;
    line-height: 16px;
    padding: 4px 14px 6px;
    letter-spacing: 0.02em;
  }
}

/* =================== Location =================== */

.location {
  background-color: #f7f7f7;
  padding: 10rem 0;
}
.location__container {
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location__title {
  font-family: var(--font-heading);
  color: var(--maroon-dark);
}

.location__hours-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--maroon-dark);
}

.location__hours-value {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--maroon-dark);
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.location__hours-time {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--maroon-dark);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.location__meta-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.location__meta-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  max-width: 475px;
  width: 100%;
}
.location__meta {
  display: flex;
  gap: 12px;
}

.location-btn {
  margin-top: 52px;
  padding: 9px 40px 14px;
}

.map-container {
  position: relative;
  width: 710px;
  height: 550px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* responsive  */
@media (max-width: 1024px) {
  .location {
    padding: 6rem 0;
  }

  .location__container {
    gap: 40px;
  }

  .location__hours-label {
    font-size: 20px;
    line-height: 24px;
  }

  .location__hours-value {
    font-size: 16px;
    line-height: 22px;
    margin-top: 8px;
  } 
  .location__hours-time {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }

  .location__meta-icon {
    width: 36px;
    height: 36px;
  }

  .location__meta-wrap {
    margin-top: 32px;
    gap: 20px;
  }

  .location-btn {
    margin-top: 40px;
    padding: 8px 32px 12px;
  }

  .map-container {
    width: 480px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .location {
    padding: 3.75rem 0;
  }
  .location__container {
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 36px;
    align-items: start;
  }
  .location__title {
    text-align: start;
  }
  .location__hours-label {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
  }

  .location__hours-value {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    margin-top: 4px;
  }
.location__hours-time {
 
  font-size: 12px;
  line-height: 18px;
 
  margin-top: 7px;
}
  .location__meta-icon {
    width: 32px;
    height: 32px;
  }
  .location__meta-wrap {
    gap: 28px;
    margin-top: 36px;
  }

  .location-btn {
    margin-top: 32px;
    padding: 8px 2rem 14px;
  }
  .map-container {
    height: 280px;
    width: 100%;
  }
}

/* =================== Review =================== */
.reviews {
  background-color: var(--maroon-dark);
  padding: 120px 0 80px;
}

.reviews__title {
  color: #e3f3ed;
  text-align: center;
}

.reviews__list {
  display: flex;
  gap: 60px;
  margin: 60px auto 0;
  max-width: 1344px;
  width: 100%;
  padding: 0 0.75rem;
}

.review-card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.review-card-top{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.review-card__text {
  font-family: var(--font-primary);
  color: #d7ede5cc;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 24px 0;
}

.review-card__author {
  font-family: var(--font-primary);
  font-weight: 500;
  color: #d7ede5cc;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  border-top: 1px solid #d7ede54d;
  padding-top: 12px;
  width: 100%;
  max-width: 424px;
}

/* =================== Social Proof =================== */
.reviews__footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  align-items: center;
}
.reviews__instagram {
  box-shadow: 0px 4px 0px 0px #d7ede5;
  border-radius: 32px;
  background-color: var(--white);
  padding: 12px 40px;
  font-family: var(--font-heading);
  color: var(--maroon-dark);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.reviews__instagram:hover {
  box-shadow: 0px 0px 0px 0px #691b12;
  transform: translateY(4px);
}
/* ==================== */
.reviews__social {
  margin-top: 55px;
  position: relative;
  height: 410px;
}

.reviews_outer {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 12px;
}

/* Add a wrapper to control the fixed-width layout */
.social-cards-container {
  position: relative;
  width: 1440px;
  height: 410px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.social-card {
  background-color: var(--mint-light);
  border-radius: 16px;
  padding: 12px;
  display: inline-block;
  position: absolute;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-card__handle {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--orange-coral);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.social-card__icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.social-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.social-card__meta svg {
  width: 20px;
  height: 20px;
}

.social-card__avatar {
  width: 288px;
  border-radius: 12px;
}

/* Use pixel values instead of percentages for consistent positioning */
.social-card:nth-child(1) {
  left: 0;
  bottom: 5px;
  transform: rotate(-6deg);
  z-index: 2;
}

.social-card:nth-child(2) {
  left: 180px;
  bottom: 5px;
  transform: rotate(6deg);
  z-index: 1;
}

.social-card:nth-child(3) {
  left: 390px;
  bottom: 7px;
  transform: rotate(-6deg);
  z-index: 3;
}

.social-card:nth-child(4) {
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%) rotate(0deg);
  z-index: 4;
}

.social-card:nth-child(5) {
  right: 390px;
  bottom: 5px;
  transform: rotate(-6deg);
  z-index: 3;
}

.social-card:nth-child(6) {
  right: 180px;
  bottom: 5px;
  transform: rotate(6deg);
  z-index: 1;
}

.social-card:nth-child(7) {
  right: 0;
  bottom: 5px;
  transform: rotate(-6deg);
  z-index: 2;
}

/* Preserve rotation on hover */
.social-card:nth-child(1):hover {
  transform: rotate(-6deg) scale(1.05);
  z-index: 1000;
}

.social-card:nth-child(2):hover {
  transform: rotate(6deg) scale(1.05);
  z-index: 1000;
}

.social-card:nth-child(3):hover {
  transform: rotate(-6deg) scale(1.05);
  z-index: 1000;
}

.social-card:nth-child(4):hover {
  transform: translateX(-50%) rotate(0deg) scale(1.05);
  z-index: 1000;
}

.social-card:nth-child(5):hover {
  transform: rotate(-6deg) scale(1.05);
  z-index: 1000;
}

.social-card:nth-child(6):hover {
  transform: rotate(6deg) scale(1.05);
  z-index: 1000;
}

.social-card:nth-child(7):hover {
  transform: rotate(-6deg) scale(1.05);
  z-index: 1000;
}
/* ====================== */
@media (max-width: 1440px) {
  .reviews__social {
    overflow-x: clip;
  }
}

@media (max-width: 768px) {
  .reviews__social {
    margin-top: 60px;
    height: 200px;
    overflow-x: clip;
  }

  .social-cards-container {
    width: 840px;
    height: 200px;
  }

  .social-card__meta svg {
    width: 12px;
    height: 12px;
  }

  .social-card__handle {
    font-size: 12px;
    line-height: 16px;
  }

  .social-card {
    border-radius: 8px;
    padding: 6px;
  }

  .social-card__meta {
    margin-top: 4px;
  }

  .social-card__avatar {
    width: 168px;
    border-radius: 6px;
  }

  /* Scale positions proportionally for mobile */
  .social-card:nth-child(1) {
    left: 0;
  }

  .social-card:nth-child(2) {
    left: 105px;
  }

  .social-card:nth-child(3) {
    left: 230px;
  }

  .social-card:nth-child(5) {
    right: 230px;
  }

  .social-card:nth-child(6) {
    right: 105px;
  }

  .social-card:nth-child(7) {
    right: 0;
  }

  .reviews {
    padding: 48px 0;
  }
  .review-card__text {
    font-size: 14px;
    line-height: 20px;
    margin: 16px 0;
  }
  .review-card__author {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    padding-top: 8px;
  }

  .reviews__list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-top: 36px;
 
  }

  .reviews__list::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: 296px;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0 16px;
  }

  .reviews__instagram {
    padding: 12px 32px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.01em;
    gap: 8px;
  }
  .social-card__meta svg {
    width: 12px;
    height: 12px;
  }
  .social-card__handle {
    font-size: 12px;
    line-height: 16px;
  }

  .social-card {
    border-radius: 8px;
    padding: 6px;
  }
  .social-card__meta {
    margin-top: 4px;
  }
  .social-card__avatar {
    width: 168px;
    border-radius: 6px;
  }
}
/* =================== CTA =================== */
.cta {
  background-color: var(--mint-light);
  position: relative;
  overflow: clip;
}
.cta__container {
  max-width: 1440px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
}
.cta__title {
  color: var(--maroon-dark);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta__subtitle {
  font-family: var(--font-primary);
  color: var(--gray-600);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -2%;
  text-align: center;
  margin-top: 24px;
}
.cta__actions {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cta__actions .button--secondary {
  padding: 9px 40px 14px;
}
.cta__actions .button--primary {
  padding: 10px 40px 14px;
}
.cta__info-list {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}
.cta__info-text {
  font-family: var(--font-primary);
  font-weight: 500;
  color: #691b12e5;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
}
.cta__info-text span {
  color: var(--maroon-dark);
  font-weight: 700;
}
.cta__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__info-icon svg {
  width: 16px;
  height: 16px;
}
.cta__info-item {
  display: flex;
  gap: 4px;
  align-items: center;
  background-color: #ffffff80;
  border-radius: 12px;
  padding: 6px 16px 6px 11px;
  justify-content: center;
}
.cta__decorations {
  pointer-events: none;
}
.cta__decoration--flower-left {
  width: 270px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.cta__decoration--flower-right {
  width: 270px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(30%, -50%);
}

.cta__decoration--cloud-left-top {
  position: absolute;
  top: 35px;
  left: -7%;
}
.cta__decoration--cloud-left-bottom {
  position: absolute;
  bottom: -5%;
  left: -14%;
  width: 510px;
  z-index: 1;
}
.cta__decoration--cloud-right-bottom {
  position: absolute;
  bottom: -5%;
  right: -12%;
  width: 510px;
  z-index: 1;
}

.cta__decoration--cloud-right-top {
  position: absolute;
  top: 35px;
  right: -2%;
}

@media (max-width: 1024px) {
  .cta__container {
    padding: 80px 0 80px;
  }
  .cta__decorations {
    display: none;
  }
  .cta__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
  }

  .cta__actions {
    gap: 1rem;
    margin-top: 2rem;
  }

  .cta__info-list {
    margin-top: 32px;
    gap: 6px;
  }

  .cta__info-text {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .cta__container {
    padding: 68px 0 120px;
  }
  .cta__decorations {
    display: block;
  }
  .cta__subtitle {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.01em;
    margin-top: 16px;
  }

  .cta__actions {
    gap: 12px;
    margin-top: 2rem;
  }
  .cta__actions .button--primary {
    padding: 12px 40px 12px;
  }
  .cta__info-text {
    letter-spacing: -0.01em;
    font-size: 12px;
    line-height: 18px;
  }

  .cta__info-icon svg {
    width: 14px;
    height: 14px;
  }

  .cta__decoration--flower-left {
    width: 90px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
    transform: translate(-30%, -50%) rotate(180deg);
  }

  .cta__decoration--flower-right {
    width: 90px;
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
    transform: translate(20%, -50%);
  }

  .cta__decoration--cloud-right-bottom,
  .cta__decoration--cloud-right-top,
  .cta__decoration--cloud-left-bottom,
  .cta__decoration--cloud-left-top {
    display: none;
  }
}

/* =================== Footer =================== */
.footer {
  background-color: var(--maroon-dark);
  padding: 150px 0 80px;
  position: relative;
}
.footer__container {
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
}
.footer__contact {
  grid-column: 1 / 5; /* 4 columns */
  grid-row: 1;
}

.footer__brand {
  grid-column: 5 / 9; /* middle 4 */
  grid-row: 1;
}

.footer__hours {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.footer__hours-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 285px;
}
.footer__copyright {
  grid-column: 1 / 9; /* 8 columns */
  grid-row: 2;
}

.footer__heading {
  font-family: var(--font-heading);
  color: var(--mint-light);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer__contact-list > * + * {
  margin-top: 1rem;
}
.footer__contact-list {
  margin-top: 28px;
}

.footer__contact-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--gray-50);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: center;
}

.footer__contact-item svg {
  width: 22px;
  height: 22px;
}

.footer__social {
  margin-top: 60px;
}
.footer__social-links {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.footer__social-links svg {
  width: 44px;
  height: 44px;
}
.footer__brand img {
  width: 100%;
  max-width: 380px;
  height: auto;
}
.footer__copyright {
  font-family: var(--font-primary);
  color: #ffffffcc;
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid #ffffff4d;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  margin-top: 60px;
}

.footer__hours-item {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-50);
  line-height: 24px;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ffffff66;
}
.footer__hours-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__background {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .footer {
    padding: 60px 0 20px;
  }
  .footer__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 40px;
  }

  /* Reset desktop placement */
  .footer__contact,
  .footer__brand,
  .footer__hours,
  .footer__copyright {
    grid-column: auto;
    grid-row: auto;
  }

  /* Tablet Layout */
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer__contact {
    grid-column: 1 / 2;
  }

  .footer__hours {
    grid-column: 2 / 3;
  }

  .footer__copyright {
    grid-column: 1 / -1; /* full width */
  }
  /* Reorder visually for tab */
  .footer__brand {
    order: 1;
  }
  .footer__contact {
    order: 2;
  }
  .footer__hours {
    order: 3;
  }
  .footer__copyright {
    order: 4;
    text-align: center;
  }

  .footer__brand img {
    width: 320px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 14px;
  }
  .footer__heading {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .footer__brand {
    order: 1;
  }
  .footer__contact {
    order: 2;
  }
  .footer__hours {
    order: 3;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .footer__copyright {
    order: 4;
    align-self: stretch;
    margin-top: 0;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
  }

  .footer__contact-item {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.01em;
  }

  .footer__contact-item svg {
    width: 16px;
    height: 16px;
  }
  .footer__contact-list > * + * {
    margin-top: 12px;
  }
  .footer__contact-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__social-links {
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
  }

  .footer__social-links svg {
    width: 32px;
    height: 32px;
  }
  .footer__social {
    margin-top: 40px;
  }
  .footer__copyright {
    padding-top: 10px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.01em;
  }
  .footer__brand img {
    width: 120px;
    height: auto;
  }
  .footer__hours-item {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
    padding: 12px 0;
  }
  .footer__hours-list {
    margin-top: 12px;
  }
  .footer__background {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: auto;
    width: 100%;
    z-index: 5;
    pointer-events: none;
  }
}
