@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Darker Grotesque";
  src: url("assets/fonts/darker-grotesque-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Darker Grotesque";
  src: url("assets/fonts/darker-grotesque-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Darker Grotesque";
  src: url("assets/fonts/darker-grotesque-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --sage: #e1e9e5;
  --orange: #e0510c;
  --lime: #b1c716;
  --yellow: #f6c85d;
  --active: #ba1a1a;
  --container: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #666;
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--black);
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-weight: 700;
}

.container {
  width: 80%;
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.narrow {
  width: 700px;
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 80px;
  background: #fff;
}

.header-inner {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.brand {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: auto;
  max-width: 58px;
  max-height: 48px;
}

.main-nav {
  display: flex;
  height: 100%;
  margin-left: auto;
  align-items: center;
  gap: 26px;
}

.main-nav > a {
  color: #555;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.main-nav > a[aria-current="page"] {
  color: var(--active);
}

.search-toggle {
  width: 20px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-toggle span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  margin: auto;
  border: 1.5px solid #444;
  border-radius: 50%;
}

.search-toggle span::after {
  position: absolute;
  width: 8px;
  height: 1.5px;
  right: -6px;
  bottom: -3px;
  content: "";
  background: #444;
  transform: rotate(-48deg);
  transform-origin: left center;
}

.search-panel {
  position: absolute;
  z-index: 4;
  top: 67px;
  right: 0;
  display: none;
  width: 260px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.search-panel.is-open {
  display: block;
}

.search-panel input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #aaa;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 30px;
  margin-left: auto;
  padding: 3px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #111;
}

.outline-button,
.yellow-button {
  display: inline-block;
  padding: 12px 20px;
  border: 3px solid #000;
  color: #000;
  background: transparent;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  color: #fff;
  background: #000;
}

.yellow-button {
  border-color: var(--yellow);
  background: var(--yellow);
}

.yellow-button:hover,
.yellow-button:focus-visible {
  border-color: #000;
}

/* Home: hero */
.home-hero {
  position: relative;
  min-height: 938px;
  overflow: hidden;
  padding: 130px 0 170px;
  background-color: var(--sage);
  background-image: linear-gradient(90deg, #e1e9e5 0%, rgba(225, 233, 229, .5) 100%), url("assets/hero-pattern.png");
  background-repeat: no-repeat, repeat;
  background-position: center, center;
  background-size: cover, auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 47.25% 47.25%;
  gap: 5.5%;
}

.hero-copy h1 {
  margin: 11px 0 28px;
  padding-bottom: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}

.hero-kicker {
  margin-bottom: 8px;
  color: #606060;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-description {
  margin-bottom: 28px;
  padding-bottom: 11px;
  color: #171717;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-order {
  margin-top: 28px;
}

.hero-order h2 {
  margin-bottom: 2px;
  color: #3c3c3c;
  font-size: 32px;
  line-height: 1.05;
}

.hero-order p {
  margin: 0;
  color: #666;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.45;
}

.hero-collage {
  position: relative;
  height: 650px;
  margin-top: -100px;
}
.hero-collage img {
  max-width: none;
}


.hero-side {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 40%;
  border: 4px solid var(--orange);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px var(--orange);
}

.hero-main {
  position: absolute;
  z-index: 3;
  top: 67px;
  right: -21%;
  width: 62%;
  aspect-ratio: 1;
  border: 7px solid var(--lime);
  border-radius: 50%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  top: 170px;
  left: 15%;
  width: 35%;
}

.hero-bottom {
  position: absolute;
  z-index: 5;
  top: 330px;
  right: -23%;
  width: 125%;
  height: 420px;
  border: 10px solid #000;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.hero-brush {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 188px;
  object-fit: fill;
}

/* Home: recognition and favorites */
.section-title {
  padding: 55px 0 25px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 14px;
  font-size: 48px;
  line-height: 1;
}

.section-title p {
  margin: 0;
  color: #1d1d1d;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.4;
}

.recognition-shell,
.favorites-shell {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 50px 50px;
  border-radius: 0 0 50px 50px;
  background-color: #e8e8e8;
  background-image: url("assets/wave-dark.png");
  background-repeat: no-repeat;
  background-position: center -7%;
  background-size: contain;
}

.recognition-grid {
  display: grid;
  min-height: 241px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 5.5%;
}

.guru-award {
  position: relative;
  display: flex;
  width: 180px;
  min-height: 130px;
  padding: 18px 10px 10px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #050505, #414141);
  box-shadow: inset 0 0 0 6px #1f1f1f, inset 0 0 0 8px #c9a74b;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guru-award p {
  margin: 0 0 5px;
  color: #fff;
  font-size: 10px;
  line-height: 1.25;
}

.guru-award strong {
  color: #e9ce7b;
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.05;
}

.guru-award span {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 11px;
  text-transform: uppercase;
}

.guru-award b {
  color: #e9ce7b;
  font-size: 14px;
}

.leaves-award img {
  width: 186px;
  height: 201px;
  object-fit: contain;
}

.favorites {
  padding-top: 4px;
}

.favorites-shell {
  padding-top: 50px;
  padding-bottom: 73px;
  background-color: #000;
  background-position: center top;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.5%;
}

.favorites-grid img {
  width: 100%;
  border-radius: 29px;
}

/* Home: why */
.why {
  padding: 52px 0 51px;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 47.25% 47.25%;
  align-items: center;
  gap: 5.5%;
}

.why-collage {
  position: relative;
  min-height: 464px;
}

.yellow-dotted-circle {
  position: absolute;
  top: 36px;
  left: 0;
  width: 400px;
  max-width: 86%;
  aspect-ratio: 1;
  border: 6px dotted var(--yellow);
  border-radius: 50%;
}

.why-main-image {
  position: absolute;
  top: 46px;
  left: 10px;
  width: 380px;
  max-width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.why-small-image {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: 0;
  width: 45%;
  aspect-ratio: 1;
  border: 6px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.why-copy {
  padding-top: 5%;
}

.why-copy h2 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1;
}

.why-copy p {
  margin-bottom: 28px;
  color: #1d1d1d;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
}

/* Home: order */
.order-now {
  position: relative;
  overflow: hidden;
  padding: 328px 0 51px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), #e1e9e5);
}

.ribbon-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 328px;
  object-fit: fill;
}

.order-grid {
  display: grid;
  min-height: 406px;
  grid-template-columns: 64.8% 29.7%;
  align-items: center;
  gap: 5.5%;
}

.order-copy h2 {
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.05;
}

.order-copy p {
  max-width: 650px;
  margin-bottom: 26px;
  color: #1b1b1b;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}

.order-benefits {
  display: grid;
  gap: 23px;
}

.order-benefits article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
}

.order-benefits article > span {
  display: grid;
  width: 64px;
  height: 64px;
  color: #fff;
  border-radius: 50%;
  background: #000;
  font-size: 25px;
  place-items: center;
}

.order-benefits h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.order-benefits p {
  margin: 0;
  color: #1e1e1e;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

/* Home: ingredients */
.ingredients {
  padding: 52px 0 51px;
  background: #fff;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 47.25% 47.25%;
  align-items: center;
  gap: 5.5%;
}

.ingredients-copy h2 {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1.05;
}

.ingredients-copy p {
  color: #1d1d1d;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.5;
}

.ingredients-visual {
  position: relative;
  min-height: 680px;
}

.ingredients-photo {
  position: absolute;
  z-index: 2;
  top: 10%;
  left: 5%;
  width: 80%;
  border-radius: 50px;
}

.ingredients-circle {
  position: absolute;
  z-index: 1;
  top: 390px;
  right: 0;
  width: 220px;
  height: 220px;
  border: 6px dotted var(--yellow);
  border-radius: 50%;
}

.ingredients-dots {
  position: absolute;
  z-index: 3;
  right: 30%;
  bottom: -138px;
  width: 34%;
}

/* Home: gallery */
.home-gallery {
  padding: 51px 0 13px;
  background-color: #252525;
  background-image: linear-gradient(rgba(0, 0, 0, .12), rgba(0, 0, 0, .12)), url("assets/gallery-background.jpg");
  background-position: center;
  background-size: cover;
}

.gallery-panel {
  padding: 48px 32px 42px;
  min-height: 744px;
  border-radius: 28px;
  background: rgba(0, 0, 0, .86);
  text-align: center;
}

.gallery-panel > .outline-button {
  margin-bottom: 27px;
}

.light-button {
  color: #000;
  border-color: #000;
}

.light-button:hover,
.light-button:focus-visible {
  color: #000;
  background: #fff;
}

.gallery-panel h2 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 54px;
  line-height: 1;
}

.gallery-panel > p {
  width: 720px;
  max-width: 90%;
  margin: 0 auto 27px;
  color: #fff;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 5.5%;
  row-gap: 28px;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 13px;
  background: transparent;
  cursor: pointer;
}

.gallery-item[hidden] {
  display: none !important;
}

.gallery-item::after,
.menu-sheet::after {
  position: absolute;
  inset: 0;
  display: grid;
  content: "+";
  color: #2ea3f2;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  font-family: Arial, sans-serif;
  font-size: 32px;
  opacity: 0;
  transition: opacity .2s ease, background-color .2s ease;
  place-items: center;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after,
.menu-sheet:hover::after,
.menu-sheet:focus-visible::after {
  border-color: #e5e5e5;
  background: rgba(255, 255, 255, .9);
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 400 / 284;
  border-radius: 13px;
  object-fit: cover;
}

.gallery-pager {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.gallery-pager button {
  min-width: 32px;
  padding: 4px 8px;
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-pager button.is-active {
  color: #000;
  background: #fff;
}

/* Home: final information */
.home-contact {
  padding-top: 76px;
  background: #fff;
  text-align: center;
}

.home-contact-inner {
  max-width: 900px;
}

.home-contact h2 {
  margin-bottom: 26px;
  font-size: 96px;
  line-height: .9;
}

.home-contact .address,
.home-contact .schedule {
  margin-bottom: 12px;
  color: #191919;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.home-contact .phones {
  margin: 28px 0 90px;
  color: #171717;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.35;
}

.home-contact-buttons {
  display: grid;
  width: 520px;
  max-width: 100%;
  min-height: 59px;
  margin: 0 auto 51px;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.home-contact-buttons a {
  text-align: center;
}

.home-contact h3,
.location-title {
  margin-bottom: 25px;
  font-size: 46px;
  line-height: 1.2;
}

.wide-map {
  display: block;
  width: 100%;
  height: 608px;
  border: 0;
}

.social-strip {
  padding: 13px 0 3px;
  background-color: #000;
  background-image: linear-gradient(135deg, #000 20%, rgba(0, 0, 0, .8)), url("assets/hero-pattern.png");
  background-position: center;
}

.social-inner {
  display: flex;
  min-height: 173px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.social-inner h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.social-inner > div {
  display: flex;
  margin-top: 12px;
  gap: 12px;
}

.social {
  display: grid;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  place-items: center;
}

.instagram {
  background: #ea2c59;
}

.facebook {
  background: #3b5998;
}

.site-footer {
  padding: 2px 0 4px;
  display: flex;
  min-height: 84px;
  align-items: center;
  color: #fff;
  background: #000;
  font-size: 12px;
  line-height: 1.7;
}

.whatsapp-widget {
  position: fixed;
  z-index: 1300;
  right: 20px;
  bottom: 24px;
  display: flex;
  height: 40px;
  min-width: 188px;
  padding: 0 20px;
  color: #fff;
  border-radius: 28px;
  background: #59d600;
  box-shadow: 0 10px 25px rgba(50, 130, 0, .2);
  font-size: 17px;
  font-weight: 400;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.whatsapp-widget span {
  display: grid;
  width: 23px;
  height: 23px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 13px;
  place-items: center;
}

/* Menu */
.menu-body,
.menu-main,
.menu-footer {
  background: #000;
}

.menu-section {
  min-height: calc(100vh - 80px);
  padding: 77px 0 72px;
  color: #fff;
  background: #000;
}

.menu-section h1 {
  margin: 0 0 50px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 5.5%;
  row-gap: 55px;
}

.menu-sheet {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 400 / 516;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-hero {
  position: relative;
  min-height: 676px;
  overflow: hidden;
  padding: 77px 0 26px;
  background-color: var(--sage);
  background-image: linear-gradient(90deg, #e1e9e5 0%, rgba(225, 233, 229, .7) 100%), url("assets/hero-pattern.png");
  background-position: center;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  width: 700px;
  max-width: 100%;
  font-size: 96px;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  margin-top: 51px;
  grid-template-columns: 47.25% 47.25%;
  gap: 5.5%;
}

.details-card,
.schedule-card {
  height: 426px;
  border-radius: 30px;
}

.details-card {
  display: flex;
  padding: 50px 40px;
  color: #fff;
  background: var(--orange);
  flex-direction: column;
  justify-content: space-between;
}

.contact-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 9px;
}

.contact-symbol {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  color: #000;
  border-radius: 50%;
  background: #fff;
  font-size: 29px;
  place-items: center;
}

.location-symbol::before {
  width: 14px;
  height: 18px;
  border: 4px solid #000;
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-45deg);
}

.location-symbol::after {
  position: absolute;
  top: 22px;
  left: 28px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  content: "";
}

.phone-symbol {
  font-family: Arial, sans-serif;
  font-size: 30px;
  transform: rotate(-15deg);
}

.mail-symbol::before {
  width: 25px;
  height: 17px;
  border-radius: 2px;
  background: #000;
  content: "";
}

.mail-symbol::after {
  position: absolute;
  top: 21px;
  left: 21px;
  width: 20px;
  height: 12px;
  border-bottom: 3px solid #fff;
  content: "";
  transform: rotate(0deg) skewY(-28deg);
}

.contact-detail h2 {
  margin: 0 0 6px;
  color: #fff;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-detail p,
.contact-detail address {
  margin: 0;
  color: #fff;
  font-style: normal;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
}

.schedule-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #3b3b3b;
}

.schedule-shape {
  position: absolute;
  inset: 12px 12px 82px;
  border-radius: 25px 25px 22px 18px;
  background: #000;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 0 100%);
}

.schedule-copy {
  position: relative;
  z-index: 1;
  padding: 50px;
}

.schedule-copy h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 48px;
  line-height: 1.2;
}

.schedule-copy p {
  margin: 0;
  color: #fff;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-brush {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 255px;
  object-fit: fill;
}

.message-section {
  padding: 77px 0 8px;
  background: #fff;
}

.message-inner {
  width: 840px;
  max-width: 80%;
}

.message-inner > h2 {
  margin-bottom: 23px;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 30px;
  color: #000;
  border: 2px solid #000;
  border-radius: 5px;
  outline: 0;
  background: transparent;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-form #email {
  margin-top: 2px;
}

.contact-form textarea {
  resize: vertical;
  height: 150px;
  margin-top: 0;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(246, 200, 93, .55);
}

.contact-form .yellow-button {
  min-height: 57px;
  margin-top: -12px;
  justify-self: end;
  cursor: pointer;
}

.message-inner .location-title {
  margin-top: 52px;
  margin-bottom: 24px;
  font-size: 54px;
  line-height: 1.2;
  text-align: center;
}


.message-section .wide-map {
  height: 600px;
}
/* Lightbox */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 2200;
  inset: 0;
  display: grid;
  padding: 60px;
  background: rgba(0, 0, 0, .93);
  place-items: center;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 28px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.mobile-search-toggle {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    height: 80px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    height: auto;
    padding: 18px 24px;
    border-top: 3px solid var(--active);
    background: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a {
    padding: 12px 0;
  }

  .search-toggle {
    margin: 7px 0;
  }

  .search-panel {
    top: 80px;
    right: 55px;
  }

  .home-hero {
    min-height: 1310px;
    padding-top: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-collage {
    width: 620px;
    max-width: 100%;
    height: 620px;
    margin: 60px auto 0;
  }

  .hero-side {
    width: 36%;
  }

  .hero-main {
    top: 40px;
    right: -2%;
    width: 52%;
  }

  .hero-bottom {
    top: 280px;
    right: -8%;
    width: 105%;
    height: 370px;
  }

  .recognition-shell {
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 0 0 5vw 5vw;
    background-color: #000;
  }

  .favorites-grid,
  .why-grid,
  .order-grid,
  .ingredients-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .favorites-grid {
    gap: 35px;
  }

  .favorites-grid img {
    width: 70%;
    margin: auto;
  }

  .why-collage {
    width: 600px;
    max-width: 100%;
    margin: auto;
  }

  .why-copy {
    padding-top: 15%;
  }

  .yellow-dotted-circle {
    width: 50vw;
  }

  .why-main-image {
    width: 48vw;
  }

  .order-grid {
    gap: 60px;
  }

  .order-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-benefits article {
    grid-template-columns: 64px 1fr;
  }

  .ingredients-visual {
    width: 620px;
    max-width: 100%;
    margin: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-contact h2 {
    font-size: 40px;
  }

  .social-inner h2 {
    font-size: 20px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 7.5vw;
  }

  .contact-hero {
    padding-bottom: 100px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-cards {
    gap: 30px;
  }

  .details-card {
    padding: 40px;
  }

  .schedule-card {
    margin-bottom: 30%;
  }

  .message-inner > h2 {
    font-size: 32px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 18px;
  }

  .mobile-search-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-toggle {
    margin-left: 18px;
  }

  .main-nav .search-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .container {
    width: 90%;
  }

  .narrow {
    max-width: 90%;
  }

  .desktop-only {
    display: none;
  }

  .home-hero {
    min-height: 1180px;
    padding-top: 55px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-collage {
    height: 520px;
  }

  .hero-bottom {
    top: 235px;
    height: 300px;
    border-width: 7px;
  }

  .hero-brush {
    height: 115px;
  }

  .section-title {
    padding-top: 38px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .section-title p {
    font-size: 16px;
  }

  .recognition-shell {
    padding: 20px;
    background-color: #fff;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .favorites-shell {
    padding: 30px 20px;
  }

  .favorites-grid img {
    width: 100%;
  }

  .why {
    padding: 70px 0;
  }

  .why-collage {
    min-height: 400px;
  }

  .why-copy h2 {
    font-size: 20px;
  }

  .why-copy p,
  .ingredients-copy p,
  .gallery-panel > p {
    font-size: 18px;
  }

  .order-now {
    padding-top: 130px;
  }

  .ribbon-divider {
    height: 105px;
  }

  .order-copy p {
    font-size: 20px;
  }

  .order-benefits {
    grid-template-columns: 1fr;
  }

  .ingredients {
    padding-bottom: 70px;
  }

  .ingredients-visual {
    min-height: 520px;
  }

  .ingredients-dots {
    bottom: -40px;
  }

  .gallery-panel {
    width: 94%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .gallery-panel h2 {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-contact {
    padding-top: 65px;
  }

  .home-contact h2 {
    font-size: 21px;
  }

  .home-contact-buttons {
    grid-template-columns: 1fr;
  }

  .social-inner {
    min-height: 85px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .social-inner h2 {
    font-size: 16px;
  }

  .site-footer {
    text-align: center;
  }

  .menu-section {
    padding-top: 45px;
  }

  .menu-section h1 {
    margin-bottom: 40px;
    font-size: 40px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 9.5vw;
  }

  .contact-hero {
    padding-top: 50px;
  }

  .contact-hero h1 {
    font-size: 24px;
  }

  .details-card {
    height: auto;
    min-height: 426px;
    padding: 20px;
  }

  .contact-detail {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .contact-symbol {
    width: 58px;
    height: 58px;
  }

  .contact-detail p,
  .contact-detail address {
    font-size: 14px;
  }

  .schedule-card {
    height: 390px;
    margin-top: 20px;
    margin-bottom: 50%;
  }

  .schedule-copy {
    padding: 40px 30px;
  }

  .schedule-copy h2 {
    font-size: 32px;
  }

  .schedule-copy p {
    font-size: 25px;
  }

  .message-section {
    padding-top: 55px;
  }

  .message-inner {
    max-width: 90%;
  }

  .message-inner > h2 {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 17px;
    font-size: 14px;
  }

  .lightbox {
    padding: 45px 15px 20px;
  }

  .whatsapp-widget {
    right: 12px;
    bottom: 12px;
  }
}

  .container {
    width: 80%;
  }

  .narrow {
    max-width: 80%;
  }

@media (max-width: 479px) {
  .hero-copy h1 {
    font-size: 35px;
  }

  .hero-order h2 {
    font-size: 28px;
  }

  .home-hero {
    min-height: 1060px;
  }

  .hero-collage {
    height: 420px;
  }

  .hero-bottom {
    top: 195px;
    height: 240px;
  }

  .why-collage {
    min-height: 310px;
  }

  .ingredients-visual {
    min-height: 420px;
  }

  .ingredients-circle {
    top: 255px;
    width: 150px;
    height: 150px;
  }

  .gallery-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    width: 82%;
    margin: auto;
  }

  .menu-section h1 {
    font-size: 36px;
  }

  .contact-detail p,
  .contact-detail address {
    font-size: 12px;
  }

  .schedule-copy p {
    font-size: 22px;
  }
}

@media (max-width: 479px) {
  .home-hero {
    min-height: 1372px;
    padding-top: 53px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    margin: 11px 0 30px;
    font-size: 46px;
    line-height: 1;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-description {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    padding-bottom: 0;
  }

  .hero-order {
    margin-top: 30px;
  }

  .hero-brush {
    height: 93px;
  }

  .menu-section {
    padding-top: 79px;
  }

  .menu-section h1 {
    margin-bottom: 59px;
    font-size: 54px;
    line-height: 1.1;
  }

  .menu-grid {
    width: 100%;
  }

  .menu-sheet {
    aspect-ratio: auto;
  }

  .menu-sheet img {
    height: auto;
  }

  .contact-hero {
    padding: 79px 0 30px;
  }

  .contact-hero h1 {
    font-size: 24px;
    line-height: 1.333;
  }

  .contact-cards {
    margin-top: 60px;
    row-gap: 30px;
  }

  .details-card {
    min-height: 440px;
  }

  .contact-detail {
    grid-template-columns: 64px 1fr;
    gap: 9px;
  }

  .contact-symbol {
    width: 64px;
    height: 64px;
  }

  .contact-detail p,
  .contact-detail address {
    font-size: 19px;
    line-height: 1.5;
  }

  .schedule-card {
    height: 254px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .schedule-copy {
    padding: 20px 30px;
  }

  .schedule-copy h2 {
    font-size: 20px;
    line-height: 1;
  }

  .schedule-copy p {
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-side {
    top: 51px;
    left: 1.6%;
    width: 37%;
  }

  .hero-main {
    top: -76px;
    right: -9%;
    width: 60%;
  }

  .hero-dots {
    top: 82px;
  }

  .hero-bottom {
    top: 273px;
    right: -30%;
    width: 130%;
    height: 275px;
  }
  .contact-hero {
    margin-top: -1px;
    padding: 80px 0 29px;
  }

  .message-section {
    padding-top: 80px;
    padding-bottom: 9px;
  }

  .message-inner > h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    line-height: 1;
  }

  .contact-form {
    gap: 9px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 13px 17px;
  }

  .contact-form #email {
    margin-top: 0;
  }

  .contact-form textarea {
    margin-top: 1px;
  }

  .contact-form .yellow-button {
    margin-top: -5px;
    line-height: 1.55;
  }

  .message-inner .location-title {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    line-height: 1;
  }

  .site-footer {
    min-height: 120px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
