@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

/* =====================================================
   GEL'S KITCHEN
   GLOBAL STYLES
===================================================== */


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #111111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  border: 0;
  outline: none;
}

address {
  font-style: normal;
}

p {
  font-weight: 400;
}

h1,
h2,
h3 {
  font-weight: 700;
}

button,
a {
  font-weight: 600;
}

/* =====================================================
   BRAND VARIABLES
===================================================== */

:root {

  /* Brand Colors */

  --color-pink: #f85aaa;
  --color-pink-dark: #e84496;

  --color-blue: #d3eef1;
  --color-blue-light: #edf9fa;

  --color-black: #111111;
  --color-white: #ffffff;

  /* Neutral Colors */

  --color-text: #191919;
  --color-text-soft: #555555;
  --color-border: #dddddd;


  /* Backgrounds */

  --bg-primary: var(--color-white);
  --bg-brand: var(--color-blue);
  --bg-soft: var(--color-blue-light);
  --bg-dark: var(--color-black);


  /* Typography */

  --font-body: Arial, Helvetica, sans-serif;

  --text-xs: 1.2rem;
  --text-sm: 1.4rem;
  --text-base: 1.6rem;
  --text-md: 1.8rem;
  --text-lg: 2.2rem;

  --heading-sm: 3.2rem;
  --heading-md: 4.4rem;
  --heading-lg: 6.4rem;
  --heading-xl: 8rem;


  /* Layout */

  --container-width: 120rem;
  --container-padding: 2.4rem;

  --section-padding: 10rem;


  /* Border Radius */

  --radius-sm: 0.8rem;
  --radius-md: 1.6rem;
  --radius-lg: 2.4rem;
  --radius-pill: 999rem;


  /* Transitions */

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}


/* =====================================================
   GLOBAL LAYOUT
===================================================== */

.container {
  width: min(
    calc(100% - (var(--container-padding) * 2)),
    var(--container-width)
  );
  margin-inline: auto;
}

.section {
  padding-block: var(--section-padding);
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

:focus-visible {
  outline: 0.3rem solid var(--color-pink);
  outline-offset: 0.3rem;
}

::selection {
  background: var(--color-pink);
  color: var(--color-black);
}


/* =====================================================
   RESPONSIVE FOUNDATION
===================================================== */

@media (max-width: 768px) {

  :root {
    --container-padding: 2rem;
    --section-padding: 7rem;

    --heading-md: 3.8rem;
    --heading-lg: 4.8rem;
    --heading-xl: 5.8rem;
  }

}

@media (max-width: 480px) {

  :root {
    --container-padding: 1.6rem;
    --section-padding: 6rem;
  }

}

/* Navigation Scroll Offset */

#home,
#locations,
#reviews,
#menu1 {
  scroll-margin-top: 5rem;
}

/** end of Navigation Scroll Offset */

/* Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 25%,
      transparent 25%
    ),
    linear-gradient(
      315deg,
      rgba(255, 255, 255, 0.08) 25%,
      transparent 25%
    ),
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%
    ),
    linear-gradient(
      225deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%
    ),
    var(--color-pink);

  background-size: 2.8rem 2.8rem;

  border-bottom: 0.25rem solid var(--color-black);
}

.navbar {
  position: relative;

  width: 100%;
}

.navbar-container {
  position: relative;
  z-index: 2;

  width: min(120rem, calc(100% - 4.8rem));
  height: 9rem;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Navigation Logo */

.navbar-logo {
  display: flex;
  align-items: center;

  flex-shrink: 0;
}

.navbar-brand {
  font-family: "Fredoka", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1;

  color: var(--color-black);
}

/** end of Navigation Logo */


/* Navigation Desktop Menu */

.navbar-menu {
  display: flex;
  align-items: center;

  gap: 4rem;
}

.navbar-link {
  position: relative;

  padding: 1rem 0;

  color: var(--color-black);

  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.navbar-link::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0.2rem;

  width: 0;
  height: 0.25rem;

  border-radius: 999rem;

  background: var(--color-black);

  transform: translateX(-50%);

  transition: width 0.25s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

/** end of Navigation Desktop Menu */


/* Navigation Menu CTA */

.navbar-menu-cta {
  min-height: 4.8rem;
  padding: 0 2.8rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0.2rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-blue);
  color: var(--color-black);

  box-shadow: 0.22rem 0.22rem 0 var(--color-black);

  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.navbar-menu-cta:hover {
  background: var(--color-white);

  transform: translate(0.08rem, 0.08rem);

  box-shadow: 0.12rem 0.12rem 0 var(--color-black);
}

/** end of Navigation Menu CTA */


/* Navigation Mobile Toggle */

.navbar-toggle {
  display: none;

  width: 4.2rem;
  height: 4.2rem;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 0.45rem;

  padding: 0;

  border: 0.18rem solid var(--color-black);
  border-radius: 1rem;

  background: var(--color-blue);

  box-shadow: 0.18rem 0.18rem 0 var(--color-black);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.navbar-toggle:hover {
  background: var(--color-white);

  transform: translate(0.08rem, 0.08rem);

  box-shadow: 0.1rem 0.1rem 0 var(--color-black);
}

.navbar-toggle-line {
  display: block;

  width: 2.35rem;
  height: 0.24rem;

  border-radius: 999rem;

  background: var(--color-black);

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

/** end of Navigation Mobile Toggle */


/* Navigation Mobile Menu */

.mobile-menu {
  display: none;
}

/** end of Navigation Mobile Menu */


/* Navigation Tablet */

@media (max-width: 900px) {

  .navbar-container {
    width: calc(100% - 4rem);
  }

  .navbar-menu {
    gap: 2.5rem;
  }

}

/** end of Navigation Tablet */


/* Navigation Mobile */

@media (max-width: 768px) {

  .navbar-container {
    width: calc(100% - 3.2rem);
    height: 8rem;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }


  /* Navigation Open Toggle */

  .navbar-toggle.active .navbar-toggle-line:nth-child(1) {
    transform: translateY(0.69rem) rotate(45deg);
  }

  .navbar-toggle.active .navbar-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .navbar-toggle-line:nth-child(3) {
    transform: translateY(-0.69rem) rotate(-45deg);
  }

  /** end of Navigation Open Toggle */


  /* Navigation Mobile Dropdown */

  .mobile-menu {
    position: absolute;

    top: 100%;
    left: 0;

    display: block;

    width: 100%;

    max-height: 0;
    overflow: hidden;

    padding: 0 1.6rem;

    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 25%,
        transparent 25%
      ),
      linear-gradient(
        315deg,
        rgba(255, 255, 255, 0.08) 25%,
        transparent 25%
      ),
      linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 25%
      ),
      linear-gradient(
        225deg,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 25%
      ),
      var(--color-pink);

    background-size: 2.8rem 2.8rem;

    opacity: 0;
    visibility: hidden;

    border-top: 0.1rem solid rgba(17, 17, 17, 0.1);
    border-bottom: 0.25rem solid var(--color-black);

    box-shadow: 0 1rem 2rem rgba(17, 17, 17, 0.1);

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .mobile-menu.active {
    max-height: 50rem;

    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-list {
    display: flex;
    flex-direction: column;

    padding: 1.4rem 0 2.2rem;
  }

  /** end of Navigation Mobile Dropdown */


  /* Navigation Mobile Links */

  .mobile-menu-link {
    display: flex;
    align-items: center;

    min-height: 5.8rem;
    padding: 0 0.4rem;

    border-bottom: 0.1rem solid rgba(17, 17, 17, 0.14);

    color: var(--color-black);

    font-family: "Fredoka", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;

    text-shadow: 0 0.1rem 0 rgba(255, 255, 255, 0.28);

    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }

  .mobile-menu-link:hover {
    color: rgba(17, 17, 17, 0.72);

    transform: translateX(0.3rem);
  }

  /** end of Navigation Mobile Links */


  /* Navigation Mobile Menu CTA */

  .mobile-menu-cta {
    min-height: 5.2rem;
    margin-top: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    border: 0.2rem solid var(--color-black);
    border-radius: 999rem;

    background: var(--color-blue);
    color: var(--color-black);

    box-shadow: 0.22rem 0.22rem 0 var(--color-black);

    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03rem;
    text-transform: uppercase;

    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }

  .mobile-menu-cta:hover {
    background: var(--color-white);

    transform: translate(0.08rem, 0.08rem);

    box-shadow: 0.12rem 0.12rem 0 var(--color-black);
  }

  /** end of Navigation Mobile Menu CTA */

}

/** end of Navigation Mobile */


/* Navigation Small Mobile */

@media (max-width: 480px) {

  .navbar-container {
    width: calc(100% - 2.8rem);
    height: 7.6rem;
  }

  .navbar-brand {
    font-size: 3rem;
  }

  .navbar-toggle {
    width: 4rem;
    height: 4rem;
  }

  .navbar-toggle-line {
    width: 2.25rem;
  }

  .mobile-menu {
    padding: 0 1.4rem;
  }

  .mobile-menu-link {
    font-size: 1.9rem;
  }

}

/** end of Navigation Small Mobile */

/** end of Navigation */

/* Hero */

.hero {
  position: relative;
  overflow: hidden;

  min-height: 0;

  display: flex;
  align-items: center;

  background: var(--color-blue);
}

.hero-container {
  width: min(120rem, calc(100% - 4.8rem));
  margin: 0 auto;
  padding: 7rem 0;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 8rem;
}


/* Hero Content */

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 58rem;
}

.hero-eyebrow {
  display: inline-block;

  margin-bottom: 1.8rem;

  color: var(--color-pink-dark);

  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 2.4rem;

  color: var(--color-black);

  font-size: clamp(5.4rem, 5.8vw, 8.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.25rem;
}

.hero-title span {
  display: block;

  color: var(--color-pink);
}

/* Hero Text */

.hero-text {
  position: relative;

  max-width: 50rem;

  margin-bottom: 3.4rem;
  padding-left: 1.8rem;

  border-left: 0.35rem solid var(--color-pink);

  color: rgba(17, 17, 17, 0.82);

  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.65;
}

.hero-text strong {
  display: block;

  margin-bottom: 0.35rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01rem;
}

/** end of Hero Text */


/* Hero Actions */

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.hero-btn {
  min-height: 5.2rem;
  padding: 0 3rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0.2rem solid var(--color-black);
  border-radius: 999rem;

  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-0.2rem);
}

.hero-btn-primary {
  background: var(--color-pink);
  color: var(--color-black);
}

.hero-btn-primary:hover {
  background: var(--color-pink-dark);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--color-black);
}

.hero-btn-secondary:hover {
  background: var(--color-black);
  color: var(--color-white);
}


/* Hero Visual */

.hero-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 2rem 2rem 2rem 0;
}

.hero-image-wrap {
  position: relative;

  width: 100%;
  max-width: 48rem;
  aspect-ratio: 4 / 5;
}

.hero-image-wrap::before {
  content: "";

  position: absolute;
  top: 2rem;
  left: 2rem;

  width: 100%;
  height: 100%;

  border-radius: 3rem;

  background: var(--color-pink);
}

.hero-image {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: cover;

  border: 0.4rem solid var(--color-black);
  border-radius: 3rem;
}


/* Hero Tablet */

@media (max-width: 900px) {

  .hero {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;

    padding: 6rem 0;
  }

  .hero-title {
    font-size: clamp(4.8rem, 7vw, 6.8rem);
  }

  .hero-image-wrap {
    max-width: 40rem;
  }

}


/* Hero Mobile */

@media (max-width: 700px) {

  .hero-container {
    width: calc(100% - 3.2rem);

    grid-template-columns: 1fr;
    gap: 3.2rem;

    padding: 5rem 0 4rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-eyebrow {
    margin-bottom: 1.4rem;

    font-size: 1.3rem;
  }

  .hero-title {
    margin-bottom: 2rem;

    font-size: clamp(4.5rem, 14vw, 6rem);
    letter-spacing: -0.18rem;
  }

  .hero-text {
    margin-bottom: 2.8rem;

    font-size: 1.7rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-visual {
    justify-content: center;

    padding: 0 1.5rem 1.5rem 0;
  }

  .hero-image-wrap {
    width: min(100%, 42rem);
    max-width: none;
  }

  .hero-image-wrap::before {
    top: 1.4rem;
    left: 1.4rem;
  }

}

/* Hero Medium Mobile */

@media (min-width: 481px) and (max-width: 700px) {

  .hero-content {
    margin: 0 auto;

    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

}

/** end of Hero Medium Mobile */


/* Hero Small Mobile */

@media (max-width: 480px) {

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-image-wrap {
    aspect-ratio: 1 / 1.15;
  }

}

/** end of Hero */

/* Food Showcase */

.food-showcase {
  position: relative;

  width: 100%;
  padding: 10rem 0;

  overflow: hidden;

  background: var(--color-white);
}

.food-showcase-container {
  width: min(120rem, calc(100% - 4.8rem));
  margin: 0 auto;
}


/* Food Showcase Header */

.food-showcase-header {
  max-width: 65rem;
  margin-bottom: 5rem;
}

.food-showcase-eyebrow {
  display: inline-flex;
  align-items: center;

  margin-bottom: 1.4rem;
  padding: 0.8rem 1.5rem;

  border: 0.15rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-pink);
  color: var(--color-black);

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.food-showcase-title {
  margin-bottom: 1.4rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: clamp(4.6rem, 6vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
}

.food-showcase-text {
  max-width: 52rem;

  color: rgba(17, 17, 17, 0.72);

  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.65;
}

/** end of Food Showcase Header */


/* Food Showcase Grid */

.food-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 27rem);

  gap: 2rem;
}

.food-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  border: 0.2rem solid var(--color-black);
  border-radius: 2rem;

  background: var(--color-blue);

  box-shadow: 0.35rem 0.35rem 0 var(--color-black);
}

.food-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.food-card-image-wrap {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}

.food-card-image-wrap::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.58) 0%,
    rgba(17, 17, 17, 0.12) 38%,
    transparent 62%
  );

  pointer-events: none;
}

.food-card-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.food-card:hover .food-card-image {
  transform: scale(1.04);
}

.food-card-content {
  position: absolute;
  z-index: 2;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 2rem;
}

.food-card-title {
  color: var(--color-white);

  font-family: "Fredoka", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.1;

  text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.25);
}

.food-card-large .food-card-content {
  padding: 2.8rem;
}

.food-card-large .food-card-title {
  font-size: 3.2rem;
}

/** end of Food Showcase Grid */


/* Food Showcase Action */

.food-showcase-action {
  margin-top: 4rem;

  display: flex;
  justify-content: center;
}

.food-showcase-btn {
  min-height: 5.4rem;
  padding: 0 3.2rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0.2rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-pink);
  color: var(--color-black);

  box-shadow: 0.25rem 0.25rem 0 var(--color-black);

  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03rem;
  text-transform: uppercase;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.food-showcase-btn:hover {
  background: var(--color-blue);

  transform: translate(0.1rem, 0.1rem);

  box-shadow: 0.12rem 0.12rem 0 var(--color-black);
}

/** end of Food Showcase Action */


/* Food Showcase Tablet */

@media (max-width: 900px) {

  .food-showcase {
    padding: 8rem 0;
  }

  .food-showcase-container {
    width: calc(100% - 4rem);
  }

  .food-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 40rem 25rem 25rem;
  }

  .food-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

}

/** end of Food Showcase Tablet */


/* Food Showcase Mobile */

@media (max-width: 768px) {

  .food-showcase {
    padding: 6.5rem 0;
  }

  .food-showcase-container {
    width: calc(100% - 3.2rem);
  }

  .food-showcase-header {
    margin-bottom: 3.5rem;
  }

  .food-showcase-eyebrow {
    margin-bottom: 1.2rem;

    font-size: 1.2rem;
  }

  .food-showcase-title {
    margin-bottom: 1.2rem;

    font-size: 4.8rem;
  }

  .food-showcase-text {
    font-size: 1.7rem;
    line-height: 1.6;
  }

  .food-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 34rem 20rem 20rem;

    gap: 1.4rem;
  }

  .food-card {
    border-radius: 1.6rem;

    box-shadow: 0.25rem 0.25rem 0 var(--color-black);
  }

  .food-card-large {
    grid-column: 1 / -1;
  }

  .food-card-content {
    padding: 1.5rem;
  }

  .food-card-title {
    font-size: 1.8rem;
  }

  .food-card-large .food-card-content {
    padding: 2rem;
  }

  .food-card-large .food-card-title {
    font-size: 2.7rem;
  }

  .food-showcase-action {
    margin-top: 3.2rem;
  }

  .food-showcase-btn {
    min-height: 5.2rem;
    padding: 0 2.8rem;
  }

}

/** end of Food Showcase Mobile */


/* Food Showcase Small Mobile */

@media (max-width: 480px) {

  .food-showcase {
    padding: 5.5rem 0;
  }

  .food-showcase-container {
    width: calc(100% - 2.8rem);
  }

  .food-showcase-title {
    font-size: 4.4rem;
  }

  .food-showcase-grid {
    grid-template-rows: 30rem 17rem 17rem;

    gap: 1.2rem;
  }

  .food-card-title {
    font-size: 1.5rem;
  }

  .food-card-large .food-card-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .food-showcase-btn {
    width: 100%;
  }

}

/** end of Food Showcase Small Mobile */

/** end of Food Showcase */

/* Reviews */

.reviews {
  position: relative;

  width: 100%;
  padding: 10rem 0;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07) 25%,
      transparent 25%
    ),
    linear-gradient(
      315deg,
      rgba(255, 255, 255, 0.07) 25%,
      transparent 25%
    ),
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 25%,
      transparent 25%
    ),
    linear-gradient(
      225deg,
      rgba(255, 255, 255, 0.04) 25%,
      transparent 25%
    ),
    var(--color-pink);

  background-size: 3.6rem 3.6rem;
}

.reviews-container {
  width: min(120rem, calc(100% - 4.8rem));
  margin: 0 auto;
}


/* Reviews Header */

.reviews-header {
  max-width: 70rem;
  margin: 0 auto 5rem;

  text-align: center;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.6rem;
  padding: 0.8rem 1.5rem;

  border: 0.15rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-blue);
  color: var(--color-black);

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.reviews-title {
  margin-bottom: 1rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: clamp(5rem, 7vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
}

.reviews-text {
  color: rgba(17, 17, 17, 0.75);

  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Fredoka", sans-serif;
}

/** end of Reviews Header */


/* Reviews Grid */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 2rem;
}

/** end of Reviews Grid */


/* Review Card */

.review-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 27rem;
  padding: 3rem;

  border: 0.2rem solid var(--color-black);
  border-radius: 2rem;

  background: var(--color-white);

  box-shadow: 0.3rem 0.3rem 0 var(--color-black);
}

.review-card::before {
  content: "“";

  position: absolute;
  top: 1.6rem;
  right: 2.4rem;

  color: rgba(248, 90, 170, 0.16);

  font-family: Georgia, serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;

  pointer-events: none;
}

.review-stars {
  position: relative;
  z-index: 2;

  margin-bottom: 2rem;

  color: var(--color-pink);

  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.15rem;
}

/* Review Quote */

.review-quote {
  position: relative;
  z-index: 2;

  margin-bottom: 2.5rem;
  padding-left: 1.6rem;

  border-left: 0.3rem solid var(--color-pink);

  color: rgba(17, 17, 17, 0.82);

  font-family: "Fredoka", sans-serif;
  font-size: 1.75rem;
  font-weight: 450;
  line-height: 1.65;
}

/** end of Review Quote */

.review-name {
  position: relative;
  z-index: 2;

  margin-top: auto;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

.review-name::before {
  content: "—";

  margin-right: 0.6rem;

  color: var(--color-pink);
}

/** end of Review Card */


/* Reviews Action */

.reviews-action {
  margin-top: 4rem;

  display: flex;
  justify-content: center;
}

.reviews-btn {
  min-height: 5.4rem;
  padding: 0 3.2rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0.2rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-blue);
  color: var(--color-black);

  box-shadow: 0.22rem 0.22rem 0 var(--color-black);

  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03rem;
  text-transform: uppercase;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.reviews-btn:hover {
  background: var(--color-white);

  transform: translate(0.08rem, 0.08rem);

  box-shadow: 0.12rem 0.12rem 0 var(--color-black);
}

/** end of Reviews Action */


/* Reviews Tablet */

@media (max-width: 900px) {

  .reviews {
    padding: 8rem 0;
  }

  .reviews-container {
    width: calc(100% - 4rem);
  }

  .review-card {
    padding: 2.6rem;
  }

}

/** end of Reviews Tablet */


/* Reviews Mobile */

@media (max-width: 768px) {

  .reviews {
    padding: 6.5rem 0;
  }

  .reviews-container {
    width: calc(100% - 3.2rem);
  }


  /* Reviews Mobile Header */

  .reviews-header {
    margin-bottom: 3.5rem;
  }

  .reviews-eyebrow {
    margin-bottom: 1.3rem;

    font-size: 1.2rem;
  }

  .reviews-title {
    margin-bottom: 1rem;

    font-size: 5rem;
  }

  .reviews-text {
    font-size: 1.7rem;
  }

  /** end of Reviews Mobile Header */


  /* Reviews Mobile Grid */

  .reviews-grid {
    grid-template-columns: 1fr;

    gap: 1.6rem;
  }

  /** end of Reviews Mobile Grid */


  /* Reviews Mobile Card */

  .review-card {
    min-height: 0;
    padding: 2.4rem;

    border-radius: 1.6rem;

    box-shadow: 0.25rem 0.25rem 0 var(--color-black);
  }

  .review-card::before {
    top: 1.2rem;
    right: 1.8rem;

    font-size: 7rem;
  }

  .review-stars {
    margin-bottom: 1.6rem;

    font-size: 1.8rem;
  }

  .review-quote {
    margin-bottom: 2rem;

    font-size: 1.65rem;
    line-height: 1.65;
  }

  .review-name {
    font-size: 1.6rem;
  }

  /** end of Reviews Mobile Card */


  /* Reviews Mobile Action */

  .reviews-action {
    margin-top: 3.2rem;
  }

  /** end of Reviews Mobile Action */

}

/** end of Reviews Mobile */


/* Reviews Small Mobile */

@media (max-width: 480px) {

  .reviews {
    padding: 5.5rem 0;
  }

  .reviews-container {
    width: calc(100% - 2.8rem);
  }

  .reviews-title {
    font-size: 4.5rem;
  }

  .review-card {
    padding: 2.2rem;
  }

  .review-quote {
    font-size: 1.6rem;
  }

  .reviews-btn {
    width: 100%;
  }

}

/** end of Reviews Small Mobile */

/** end of Reviews */

/* Locations */

.locations {
  position: relative;

  width: 100%;
  padding: 10rem 0;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.16) 25%,
      transparent 25%
    ),
    linear-gradient(
      315deg,
      rgba(255, 255, 255, 0.16) 25%,
      transparent 25%
    ),
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.09) 25%,
      transparent 25%
    ),
    linear-gradient(
      225deg,
      rgba(255, 255, 255, 0.09) 25%,
      transparent 25%
    ),
    var(--color-blue);

  background-size: 3.6rem 3.6rem;
}

.locations-container {
  width: min(120rem, calc(100% - 4.8rem));
  margin: 0 auto;
}


/* Locations Header */

.locations-header {
  max-width: 65rem;
  margin: 0 auto 5rem;

  text-align: center;
}

.locations-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.6rem;
  padding: 0.8rem 1.5rem;

  border: 0.15rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-pink);
  color: var(--color-black);

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.locations-title {
  margin-bottom: 1rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: clamp(5rem, 7vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
}

.locations-text {
  color: rgba(17, 17, 17, 0.72);

  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}

/** end of Locations Header */


/* Locations Grid */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 2.4rem;
}

/** end of Locations Grid */


/* Location Card */

.location-card {
  position: relative;

  overflow: hidden;

  border: 0.2rem solid var(--color-black);
  border-radius: 2.2rem;

  background: var(--color-white);

  box-shadow: 0.35rem 0.35rem 0 var(--color-black);
}

.location-content {
  padding: 3.4rem;
}


/* Location Number */

.location-number {
  display: inline-block;

  margin-bottom: 1.8rem;

  color: rgba(17, 17, 17, 0.5);

  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-transform: uppercase;
}

/** end of Location Number */


/* Location Name */

.location-name {
  margin-bottom: 1.4rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

/** end of Location Name */


/* Location Address */

.location-address {
  margin-bottom: 3rem;

  color: rgba(17, 17, 17, 0.78);

  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

/** end of Location Address */


/* Location Details */

.location-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1.6rem;

  margin-bottom: 3rem;
}

.location-detail {
  padding: 1.6rem;

  border-radius: 1.2rem;

  background: rgba(7, 24, 44, 0.06);
}

.location-detail-label {
  display: block;

  margin-bottom: 0.7rem;

  color: rgba(17, 17, 17, 0.5);

  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  line-height: 1;
  text-transform: uppercase;
}

.location-detail-value {
  display: block;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
}

.location-phone {
  transition: color 0.2s ease;
}

.location-phone:hover {
  color: var(--color-pink-dark);
}

/** end of Location Details */


/* Location Actions */

.location-actions {
  display: flex;
  align-items: center;

  gap: 1.2rem;
}

.location-btn {
  min-height: 5rem;
  padding: 0 2.2rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0.2rem solid var(--color-black);
  border-radius: 999rem;

  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.location-btn-primary {
  background: var(--color-pink);
  color: var(--color-black);

  box-shadow: 0.22rem 0.22rem 0 var(--color-black);
}

.location-btn-secondary {
  background: var(--color-blue);
  color: var(--color-black);
}

.location-btn-primary:hover,
.location-btn-secondary:hover {
  background: var(--color-white);

  transform: translate(0.08rem, 0.08rem);

  box-shadow: 0.12rem 0.12rem 0 var(--color-black);
}

/** end of Location Actions */


/* Locations Tablet */

@media (max-width: 900px) {

  .locations {
    padding: 8rem 0;
  }

  .locations-container {
    width: calc(100% - 4rem);
  }

  .locations-grid {
    gap: 1.8rem;
  }

  .location-content {
    padding: 2.8rem;
  }

}

/** end of Locations Tablet */


/* Locations Mobile */

@media (max-width: 768px) {

  .locations {
    padding: 6.5rem 0;
  }

  .locations-container {
    width: calc(100% - 3.2rem);
  }


  /* Locations Mobile Header */

  .locations-header {
    margin-bottom: 3.5rem;
  }

  .locations-eyebrow {
    margin-bottom: 1.3rem;

    font-size: 1.2rem;
  }

  .locations-title {
    margin-bottom: 1rem;

    font-size: 5rem;
  }

  .locations-text {
    font-size: 1.7rem;
  }

  /** end of Locations Mobile Header */


  /* Locations Mobile Grid */

  .locations-grid {
    grid-template-columns: 1fr;

    gap: 1.6rem;
  }

  /** end of Locations Mobile Grid */


  /* Location Mobile Card */

  .location-card {
    border-radius: 1.7rem;

    box-shadow: 0.25rem 0.25rem 0 var(--color-black);
  }

  .location-content {
    padding: 2.4rem;
  }

  .location-number {
    margin-bottom: 1.5rem;
  }

  .location-name {
    margin-bottom: 1.2rem;

    font-size: 2.8rem;
  }

  .location-address {
    margin-bottom: 2.4rem;

    font-size: 1.7rem;
  }

  /** end of Location Mobile Card */


  /* Location Mobile Details */

  .location-details {
    margin-bottom: 2.4rem;

    gap: 1rem;
  }

  .location-detail {
    padding: 1.4rem;
  }

  .location-detail-value {
    font-size: 1.45rem;
  }

  /** end of Location Mobile Details */


  /* Location Mobile Actions */

  .location-actions {
    gap: 1rem;
  }

  .location-btn {
    flex: 1;

    min-height: 4.8rem;
    padding: 0 1.4rem;

    font-size: 1.4rem;
  }

  /** end of Location Mobile Actions */

}

/** end of Locations Mobile */


/* Locations Small Mobile */

@media (max-width: 480px) {

  .locations {
    padding: 5.5rem 0;
  }

  .locations-container {
    width: calc(100% - 2.8rem);
  }

  .locations-title {
    font-size: 4.5rem;
  }

  .location-content {
    padding: 2.2rem;
  }

  .location-name {
    font-size: 2.6rem;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-btn {
    width: 100%;
  }

}

/** end of Locations Small Mobile */

/** end of Locations */

/* Social */

.social {
  position: relative;

  width: 100%;
  padding: 10rem 0;

  overflow: hidden;

  background: var(--color-white);
}

.social-container {
  width: min(120rem, calc(100% - 4.8rem));
  margin: 0 auto;
}


/* Social Header */

.social-header {
  max-width: 65rem;
  margin: 0 auto 5rem;

  text-align: center;
}

.social-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.6rem;
  padding: 0.8rem 1.5rem;

  border: 0.15rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-pink);
  color: var(--color-black);

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.social-title {
  margin-bottom: 1rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: clamp(5rem, 7vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
}

.social-text {
  color: rgba(17, 17, 17, 0.72);

  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}

/** end of Social Header */


/* Social Links */

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1.8rem;

  max-width: 95rem;
  margin: 0 auto;
}

.social-link {
  position: relative;

  min-height: 11rem;
  padding: 2.4rem 6rem 2.4rem 2.6rem;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  border: 0.2rem solid var(--color-black);
  border-radius: 2rem;

  color: var(--color-black);

  box-shadow: 0.3rem 0.3rem 0 var(--color-black);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.social-link:hover {
  transform: translate(0.1rem, 0.1rem);

  box-shadow: 0.15rem 0.15rem 0 var(--color-black);
}

.social-link-platform {
  margin-bottom: 0.5rem;

  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  line-height: 1;
  text-transform: uppercase;

  opacity: 0.55;
}

.social-link-name {
  font-family: "Fredoka", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
}

.social-link-arrow {
  position: absolute;
  top: 50%;
  right: 2.4rem;

  width: 4.2rem;
  height: 4.2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0.15rem solid var(--color-black);
  border-radius: 50%;

  background: var(--color-white);

  font-size: 2rem;
  font-weight: 700;
  line-height: 1;

  transform: translateY(-50%);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.social-link:hover .social-link-arrow {
  background: var(--color-blue);

  transform: translate(0.2rem, -50%);
}

/** end of Social Links */


/* Social Platform Colors */

.social-link-facebook,
.social-link-instagram,
.social-link-tiktok {
  background: var(--color-blue);
}

/* Social Link Hover */

.social-link:hover {
  background: var(--color-pink);

  transform: translate(0.1rem, 0.1rem);

  box-shadow: 0.15rem 0.15rem 0 var(--color-black);
}

.social-link:hover .social-link-arrow {
  background: var(--color-white);

  transform: translate(0.2rem, -50%);
}

/** end of Social Link Hover */

/** end of Social Platform Colors */


/* Social Tablet */

@media (max-width: 900px) {

  .social {
    padding: 8rem 0;
  }

  .social-container {
    width: calc(100% - 4rem);
  }

}

/** end of Social Tablet */


/* Social Mobile */

@media (max-width: 768px) {

  .social {
    padding: 6.5rem 0;
  }

  .social-container {
    width: calc(100% - 3.2rem);
  }


  /* Social Mobile Header */

  .social-header {
    margin-bottom: 3.5rem;
  }

  .social-eyebrow {
    margin-bottom: 1.3rem;

    font-size: 1.2rem;
  }

  .social-title {
    margin-bottom: 1rem;

    font-size: 5rem;
  }

  .social-text {
    font-size: 1.7rem;
  }

  /** end of Social Mobile Header */


  /* Social Mobile Links */

  .social-links {
    grid-template-columns: 1fr;

    gap: 1.4rem;
  }

  .social-link {
    min-height: 10rem;
    padding: 2.2rem 5.8rem 2.2rem 2.2rem;

    border-radius: 1.7rem;

    box-shadow: 0.25rem 0.25rem 0 var(--color-black);
  }

  .social-link-name {
    font-size: 2.1rem;
  }

  .social-link-arrow {
    right: 2rem;

    width: 3.8rem;
    height: 3.8rem;
  }

  /** end of Social Mobile Links */

}

/** end of Social Mobile */


/* Social Small Mobile */

@media (max-width: 480px) {

  .social {
    padding: 5.5rem 0;
  }

  .social-container {
    width: calc(100% - 2.8rem);
  }

  .social-title {
    font-size: 4.5rem;
  }

  .social-link {
    min-height: 9rem;
    padding: 2rem 5.2rem 2rem 2rem;
  }

  .social-link-name {
    font-size: 2rem;
  }

  .social-link-arrow {
    right: 1.6rem;

    width: 3.5rem;
    height: 3.5rem;
  }

}

/** end of Social Small Mobile */

/** end of Social */

/* Footer */

.site-footer {
  position: relative;

  width: 100%;
  padding: 8rem 0 2.4rem;

  overflow: hidden;

  background: var(--color-blue);

  border-top: 0.25rem solid var(--color-black);
}

.footer-container {
  width: min(120rem, calc(100% - 4.8rem));
  margin: 0 auto;
}


/* Footer Main */

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1.5fr 0.8fr;

  gap: 6rem;

  padding-bottom: 6rem;
}

/** end of Footer Main */


/* Footer Brand */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: 1rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.footer-tagline {
  margin-bottom: 2.6rem;

  color: rgba(17, 17, 17, 0.72);

  font-family: "Fredoka", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-menu-btn {
  min-height: 5rem;
  padding: 0 2.4rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0.2rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-pink);
  color: var(--color-black);

  box-shadow: 0.22rem 0.22rem 0 var(--color-black);

  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.footer-menu-btn:hover {
  background: var(--color-white);

  transform: translate(0.08rem, 0.08rem);

  box-shadow: 0.12rem 0.12rem 0 var(--color-black);
}

/** end of Footer Brand */


/* Footer Locations */

.footer-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column-title {
  margin-bottom: 1.6rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.footer-address {
  margin-bottom: 1.4rem;

  color: rgba(17, 17, 17, 0.72);

  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.footer-phone {
  margin-bottom: 1.2rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;

  transition: opacity 0.2s ease;
}

.footer-phone:hover {
  opacity: 0.65;
}

.footer-hours {
  color: rgba(17, 17, 17, 0.62);

  font-family: "Fredoka", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

/** end of Footer Locations */


/* Footer Social */

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 1rem;
}

.footer-social-link {
  color: rgba(17, 17, 17, 0.75);

  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-social-link:hover {
  color: var(--color-pink);

  transform: translateX(0.3rem);
}

/** end of Footer Social */


/* Footer Bottom */

.footer-bottom {
  padding-top: 2.4rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 0.1rem solid rgba(17, 17, 17, 0.18);
}

.footer-copyright {
  color: rgba(17, 17, 17, 0.55);

  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-top {
  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-top:hover {
  color: var(--color-pink);

  transform: translateY(-0.2rem);
}

/** end of Footer Bottom */


/* Footer Tablet */

@media (max-width: 900px) {

  .site-footer {
    padding: 7rem 0 2.4rem;
  }

  .footer-container {
    width: calc(100% - 4rem);
  }

  .footer-main {
    grid-template-columns: 1fr 1.5fr;

    gap: 5rem;
  }

  .footer-social {
    grid-column: 1 / -1;
  }

  .footer-social-links {
    flex-direction: row;
    flex-wrap: wrap;

    gap: 1.6rem 2.4rem;
  }

}

/** end of Footer Tablet */


/* Footer Mobile */

@media (max-width: 768px) {

  .site-footer {
    padding: 6rem 0 2.2rem;
  }

  .footer-container {
    width: calc(100% - 3.2rem);
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 4rem;

    padding-bottom: 4.5rem;
  }


  /* Footer Mobile Brand */

  .footer-brand {
    align-items: center;

    text-align: center;
  }

  .footer-logo {
    font-size: 3.5rem;
  }

  .footer-tagline {
    font-size: 1.6rem;
  }

  /** end of Footer Mobile Brand */


  /* Footer Mobile Locations */

  .footer-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 2rem;
  }

  .footer-column-title {
    font-size: 1.7rem;
  }

  .footer-address {
    font-size: 1.45rem;
  }

  /** end of Footer Mobile Locations */


  /* Footer Mobile Social */

  .footer-social {
    grid-column: auto;

    align-items: flex-start;
  }

  .footer-social .footer-column-title {
    align-self: auto;

    text-align: left;
  }

  /** end of Footer Mobile Social */


  /* Footer Mobile Bottom */

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;

    gap: 1.6rem;
  }

  /** end of Footer Mobile Bottom */

}

/** end of Footer Mobile */


/* Footer Small Mobile */

@media (max-width: 480px) {

  .site-footer {
    padding: 5.5rem 0 2rem;
  }

  .footer-container {
    width: calc(100% - 2.8rem);
  }

  .footer-main {
    gap: 3.5rem;
  }

  .footer-logo {
    font-size: 3.2rem;
  }

  .footer-locations {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .footer-social-links {
    flex-direction: column;

    gap: 1.2rem;
  }

}

/** end of Footer Small Mobile */

/** end of Footer */

/* Menu Page */


/* Menu Hero */

.menu-hero-01 {
  position: relative;

  width: 100%;
  padding: 9rem 0 8rem;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.16) 25%,
      transparent 25%
    ),
    linear-gradient(
      315deg,
      rgba(255, 255, 255, 0.16) 25%,
      transparent 25%
    ),
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.09) 25%,
      transparent 25%
    ),
    linear-gradient(
      225deg,
      rgba(255, 255, 255, 0.09) 25%,
      transparent 25%
    ),
    var(--color-blue);

  background-size: 3.6rem 3.6rem;

  border-bottom: 0.2rem solid var(--color-black);
}

.menu-hero-container-01 {
  width: min(100rem, calc(100% - 4.8rem));
  margin: 0 auto;

  text-align: center;
}


/* Menu Hero Typography */

.menu-eyebrow-01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.8rem;
  padding: 0.8rem 1.6rem;

  border: 0.15rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-pink);
  color: var(--color-black);

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.menu-title-01 {
  margin-bottom: 1.8rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: clamp(5.5rem, 8vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05rem;
}

.menu-intro-01 {
  max-width: 58rem;
  margin: 0 auto;

  color: rgba(17, 17, 17, 0.75);

  font-family: "Fredoka", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.55;
}

/** end of Menu Hero */


/* Menu Content */

.menu-content-01 {
  width: 100%;
  padding: 10rem 0;

  background: var(--color-white);
}

.menu-content-container-01 {
  width: min(110rem, calc(100% - 4.8rem));
  margin: 0 auto;
}


/* Menu Content Header */

.menu-header-01 {
  max-width: 70rem;
  margin: 0 auto 5.5rem;

  text-align: center;
}

.menu-section-eyebrow-01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;

  border: 0.15rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-pink);
  color: var(--color-black);

  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.menu-section-title-01 {
  margin-bottom: 1rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: clamp(4.5rem, 6vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
}

.menu-section-text-01 {
  color: rgba(17, 17, 17, 0.68);

  font-family: "Fredoka", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.55;
}

/** end of Menu Content Header */


/* Menu Images */

.menu-images-01 {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 3rem;
}

.menu-image-card-01 {
  width: min(100%, 85rem);
  margin: 0;

  overflow: hidden;

  border: 0.2rem solid var(--color-black);
  border-radius: 2rem;

  background: var(--color-white);

  box-shadow: 0.35rem 0.35rem 0 var(--color-black);
}

.menu-image-01 {
  display: block;

  width: 100%;
  height: auto;
}

/** end of Menu Images */


/* Menu Note */

.menu-note-01 {
  max-width: 70rem;
  margin: 4.5rem auto 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1rem;

  text-align: center;
}

.menu-note-mark-01 {
  flex-shrink: 0;

  color: var(--color-pink);

  font-size: 1.6rem;
}

.menu-note-text-01 {
  color: rgba(17, 17, 17, 0.55);

  font-family: "Fredoka", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}

/** end of Menu Note */


/* Menu CTA */

.menu-cta-01 {
  width: 100%;
  padding: 9rem 0;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 25%,
      transparent 25%
    ),
    linear-gradient(
      315deg,
      rgba(255, 255, 255, 0.08) 25%,
      transparent 25%
    ),
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%
    ),
    linear-gradient(
      225deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%
    ),
    var(--color-pink);

  background-size: 3.6rem 3.6rem;

  border-top: 0.2rem solid var(--color-black);
}

.menu-cta-container-01 {
  width: min(80rem, calc(100% - 4.8rem));
  margin: 0 auto;

  text-align: center;
}

.menu-cta-eyebrow-01 {
  display: inline-block;

  margin-bottom: 1.5rem;

  color: rgba(17, 17, 17, 0.6);

  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  line-height: 1;
  text-transform: uppercase;
}

.menu-cta-title-01 {
  margin-bottom: 1rem;

  color: var(--color-black);

  font-family: "Fredoka", sans-serif;
  font-size: clamp(5rem, 7vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
}

.menu-cta-text-01 {
  margin-bottom: 2.8rem;

  color: rgba(17, 17, 17, 0.72);

  font-family: "Fredoka", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
}

.menu-cta-button-01 {
  min-height: 5.4rem;
  padding: 0 3.2rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0.2rem solid var(--color-black);
  border-radius: 999rem;

  background: var(--color-blue);
  color: var(--color-black);

  box-shadow: 0.3rem 0.3rem 0 var(--color-black);

  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.menu-cta-button-01:hover {
  background: var(--color-white);

  transform: translate(0.1rem, 0.1rem);

  box-shadow: 0.15rem 0.15rem 0 var(--color-black);
}

/** end of Menu CTA */


/* Menu Tablet */

@media (max-width: 900px) {

  .menu-hero-01 {
    padding: 8rem 0 7rem;
  }

  .menu-hero-container-01 {
    width: calc(100% - 4rem);
  }

  .menu-content-01 {
    padding: 8rem 0;
  }

  .menu-content-container-01 {
    width: calc(100% - 4rem);
  }

  .menu-image-card-01 {
    width: 100%;
  }

  .menu-cta-01 {
    padding: 8rem 0;
  }

}

/** end of Menu Tablet */


/* Menu Mobile */

@media (max-width: 768px) {

  .menu-hero-01 {
    padding: 6rem 0 5.5rem;
  }

  .menu-hero-container-01 {
    width: calc(100% - 3.2rem);
  }


  /* Menu Mobile Hero */

  .menu-eyebrow-01 {
    margin-bottom: 1.4rem;

    font-size: 1.2rem;
  }

  .menu-title-01 {
    margin-bottom: 1.5rem;

    font-size: 5rem;
  }

  .menu-intro-01 {
    font-size: 1.7rem;
  }

  /** end of Menu Mobile Hero */


  /* Menu Mobile Content */

  .menu-content-01 {
    padding: 6.5rem 0;
  }

  .menu-content-container-01 {
    width: calc(100% - 3.2rem);
  }

  .menu-header-01 {
    margin-bottom: 3.5rem;
  }

  .menu-section-eyebrow-01 {
    margin-bottom: 1.3rem;

    font-size: 1.2rem;
  }

  .menu-section-title-01 {
    margin-bottom: 1rem;

    font-size: 4.7rem;
  }

  .menu-section-text-01 {
    font-size: 1.6rem;
  }

  /** end of Menu Mobile Content */


  /* Menu Mobile Images */

  .menu-images-01 {
    gap: 2rem;
  }

  .menu-image-card-01 {
    border-radius: 1.6rem;

    box-shadow: 0.25rem 0.25rem 0 var(--color-black);
  }

  /** end of Menu Mobile Images */


  /* Menu Mobile Note */

  .menu-note-01 {
    margin-top: 3.2rem;

    align-items: flex-start;
  }

  .menu-note-text-01 {
    font-size: 1.35rem;
  }

  /** end of Menu Mobile Note */


  /* Menu Mobile CTA */

  .menu-cta-01 {
    padding: 6.5rem 0;
  }

  .menu-cta-container-01 {
    width: calc(100% - 3.2rem);
  }

  .menu-cta-title-01 {
    font-size: 5rem;
  }

  .menu-cta-text-01 {
    font-size: 1.6rem;
  }

  /** end of Menu Mobile CTA */

}

/** end of Menu Mobile */


/* Menu Small Mobile */

@media (max-width: 480px) {

  .menu-hero-01 {
    padding: 5.5rem 0 5rem;
  }

  .menu-hero-container-01 {
    width: calc(100% - 2.8rem);
  }

  .menu-title-01 {
    font-size: 4.4rem;
  }

  .menu-intro-01 {
    font-size: 1.6rem;
  }

  .menu-content-01 {
    padding: 5.5rem 0;
  }

  .menu-content-container-01 {
    width: calc(100% - 2.8rem);
  }

  .menu-section-title-01 {
    font-size: 4.3rem;
  }

  .menu-image-card-01 {
    border-radius: 1.4rem;
  }

  .menu-note-01 {
    gap: 0.7rem;
  }

  .menu-cta-01 {
    padding: 5.5rem 0;
  }

  .menu-cta-container-01 {
    width: calc(100% - 2.8rem);
  }

  .menu-cta-title-01 {
    font-size: 4.4rem;
  }

  .menu-cta-button-01 {
    width: 100%;
  }

}

/** end of Menu Small Mobile */

/** end of Menu Page */