:root {
  --teal: #335E64;
  --gold: #FCB614;
  --cream: #fff0ba;
  --paper: #f8f5ed;
  --ink: #28575c;
  --light: #fff5c7;
}

@font-face {
  font-family: "Hien Khanh";
  src: url("assets/font/HIEN%20KHANH%203.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chivo";
  src: url("assets/font/Chivo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  color: #fff;
  background: var(--teal);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-main {
  overflow: hidden;
}

.container {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
}

.site-main>section {
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  min-height: 80px;
  padding: 0 24px;
  color: #172d32;
  background: var(--gold);
  border: 5px solid var(--cream);
  font-family: "Hien Khanh", Impact, "Arial Black", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  background: url("assets/hero-bg.webp") center 20% / cover no-repeat;
  border-bottom: 2px solid var(--gold);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .28) 100%);
}

.hero .container {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 111px);
}

.hero .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero h1 {
  margin: 0 0 30px;
  color: var(--light);
  font-family: "Hien Khanh", Impact, "Arial Black", sans-serif;
  font-size: 86px;
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero p {
  margin: 0 0 34px;
  font-family: "Chivo", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
}

.scroll-cue {
  display: grid;
  width: 68px;
  height: 68px;
  margin-top: 36px;
  place-items: center;
}

.scroll-cue svg {
  display: block;
  width: 100%;
  height: 100%;
}

.intro {
  padding: 3rem 0 20rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(4, 12, 13, 0.3) 100%),
    linear-gradient(180deg, #335E64 0%, #031315 79.33%),
    url("assets/silk-bg.webp") center top / cover no-repeat;
  background-blend-mode: normal, hard-light, normal;
}

.intro .head {
  width: min(895px, 100%);
  margin: 3rem auto;
  text-align: center;
}

.title,
.menu-callout h2,
.site-footer h2 {
  margin: 0;
  color: var(--gold);
  font-family: "Hien Khanh", Impact, "Arial Black", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.intro .title {
  font-size: 48px;
  line-height: 1.35;
}

.intro .content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.intro .btn {
  margin-bottom: 4rem;
}

.menu-photo {
  width: 50%;
  aspect-ratio: 630 / 720;
  object-fit: cover;
}

.occasion .container {
  width: min(1040px, calc(100% - 36px));
}

.occasion .content {
  position: relative;
  min-height: 306px;
}

.occasion-copy {
  position: relative;
  z-index: 2;
  width: 42%;
  margin-left: 8px;
  padding-top: 1rem;
}

.occasion p {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.35;
}

.pho-art {
  position: absolute;
  top: -2rem;
  right: 22px;
  width: 58%;
  transform: translateY(-50%) rotate(25deg);
}

.slogan-art {
  position: absolute;
  top: 0;
  left: -11%;
  width: 75%;
  margin: 0 0 18px;
  transform: translateY(calc(-100% - 1rem));
}

.occasion .btn {
  min-height: 80px;
  font-size: 24px;
}

.art {
  padding-bottom: 58px;
}

.art .content {
  display: grid;
  place-items: center;
  position: relative;
  padding-top: 5rem;
}

.diamond {
  width: 40%;
  aspect-ratio: 1/1;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

.diamond::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--gold);
}

.mural {
  position: absolute;
  margin-top: -7%;
  z-index: 2;
  width: 25%;
}

.mural::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(44, 83, 88, 0.8) 50%, var(--teal) 100%);
}

.fan {
  position: absolute;
  top: 38%;
  width: 10%;
  aspect-ratio: 1 / 1;
}

.fan-left {
  left: 26%;
}

.fan-right {
  right: 26%;
  transform: scaleX(-1);
}

.menu-callout-section {
  position: relative;
  z-index: 11;
  background-color: #111;
}

.menu-callout-image {
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 10%,
      #000 24%,
      #000 76%,
      rgba(0, 0, 0, 0.2) 90%,
      transparent 100%);
  mask-image: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 10%,
      #000 24%,
      #000 76%,
      rgba(0, 0, 0, 0.2) 90%,
      transparent 100%);
  z-index: 0;
}

.menu-callout-section .container {
  position: relative;
  z-index: 2;
}

.menu-callout-section .content {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(950px, 100%);
}

.menu-callout {
  position: relative;
  width: 100%;
  padding: 22px 34px 42px;
  background: var(--cream);
  border: 3px solid var(--gold);
  text-align: center;
}

.menu-callout h2 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1.4;
  padding-bottom: 2rem;
}

.menu-callout .btn {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials {
  padding: 4rem 0;
  background: var(--teal);
  text-align: center;
}

.testimonials .head {
  display: inline-flex;
  margin-bottom: 3rem;
  position: relative;
}

.heart {
  position: absolute;
  bottom: 0;
  left: -3rem;
  width: 90px;
  object-fit: contain;
  transform: translateX(-100%);
}

.testimonials .title {
  font-size: 48px;
  line-height: 1.2;
}

.testimonials .content {
  width: min(909px, 100%);
  min-height: 448px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slider .slides {
  display: flex;
  gap: 2rem;
  width: 100%;
  transition: transform .45s ease;
  touch-action: pan-y pinch-zoom;
  will-change: transform;
}

.testimonial-slider .slide {
  flex: 0 0 calc((100% - 4rem) / 3);
}

.testimonial-slider .slides,
.testimonial-slider .slide {
  min-height: 408px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 408px;
  padding: 32px 28px 31px;
  border: 5px solid var(--gold);
  border-radius: 0 33px 0 33px;
  text-align: left;
}

.testimonial.featured {
  color: var(--ink);
  background: var(--cream);
}

.testimonial img {
  width: 90px;
  height: 114px;
  margin: 0 auto 22px;
  object-fit: cover;
  border: 1px solid var(--gold);
  border-radius: 5px;
}

.testimonial p {
  margin: 0 0 35px;
  font-size: 18px;
  line-height: 1.35;
}

.testimonial-name {
  margin: 0;
  margin-top: auto;
  font-size: 31px;
  line-height: 1;
}

.testimonial-slider .pager {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  text-align: center;
}

.testimonial-slider .pager .page {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0 4px;
  background: var(--gold);
  border: 1px solid var(--cream);
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
}

.testimonial-slider .pager .page.active {
  background: #b61f24;
}

.testimonial-slider .pager .page.active::before {
  display: none;
}

.brand-section {
  padding: 8px 0 20px;
  background: var(--teal);
}

.brand-section .content {
  position: relative;
  display: grid;
  min-height: 120px;
  place-items: center;
}

.brand-logo-large {
  width: 45%;
}

.spark {
  position: absolute;
  width: 50px;
  height: auto;
}

.spark.left {
  bottom: 18px;
  left: 5%;
}

.cart {
  position: absolute;
  top: 4px;
  right: 5%;
  width: 200px;
  height: auto;
}

.site-footer {
  padding: 24px 0 0;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 55px;
}

.site-footer .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  width: min(990px, 100%);
  margin: 0 auto 2rem;
  text-align: left;
}

.site-footer .foot {
  position: relative;
}

.spark.right {
  right: 5%;
  top: -5%;
  width: 72px;
}

.info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin: 0;
  padding: 2.5rem 0;
  font-family: "Hien Khanh", Impact, "Arial Black", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  text-transform: uppercase;
}

.info+.info {
  padding-left: 34px;
  border-left: 2px solid var(--gold);
}

.info strong {
  color: var(--gold);
  font-weight: 400;
}

.footer-phone {
  display: inline-block;
  margin-bottom: 16px;
  font-family: "Hien Khanh", Impact, "Arial Black", sans-serif;
  font-size: 31px;
  font-weight: 400;
  text-transform: uppercase;
}

.site-footer .foot p {
  margin-bottom: 2rem;
  color: var(--gold);
  font-family: "Hien Khanh", Impact, "Arial Black", sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 12px;
}

.socials a {
  width: 48px;
  height: 48px;
}

.socials svg {
  width: 100%;
  height: 100%;
}

.market {
  width: min(990px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: url('assets/market.webp') center / contain no-repeat, var(--paper);
  background-blend-mode: multiply;
}
