:root {
  --primary-color: #c9232e;
  --primary-dark: #a71923;
  --accent-color: #f6b51b;

  --heading-color: #252525;
  --text-color: #626262;

  --white: #ffffff;
  --light-background: #fff8f2;
  --border-color: #e7e7e7;
  --footer-color: #201f1f;

  --small-radius: 6px;
  --medium-radius: 12px;
  --large-radius: 24px;

  --section-spacing: 90px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--heading-color);
  line-height: 1.2;
}

img {
  max-width: 100%;
}

a {
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background-color: var(--primary-dark);
  border-radius: var(--small-radius);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   HEADER AND NAVIGATION
======================================== */

.site-header {
  position: relative;
  z-index: 100;
  background-color: var(--primary-color);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.12);
}

.navigation {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.logo {
  color: var(--white);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1px;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: block;
  color: var(--white);
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--small-radius);
}

.nav-links a:not(.nav-button):hover {
  color: var(--accent-color);
}

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 3px;
  left: 14px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 10px;
}

.nav-links .nav-button {
  margin-left: 10px;
  padding: 11px 22px;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius: 999px;
}

.nav-links .nav-button:hover {
  color: var(--primary-dark);
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Visible keyboard navigation */
.logo:focus-visible,
.nav-links a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

/* ========================================
   HOME PAGE HERO
======================================== */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    var(--light-background) 70%,
    #fff0e5 100%
  );
}

/* Decorative food photographs */
.hero-food {
  position: absolute;
  z-index: 1;
  width: 390px;
  height: 520px;
  background-size: cover;
  background-position: center;
  border: 12px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-food-left {
  left: -165px;
  bottom: -80px;
  background-image: url("hero-food1.jpg");
  border-radius: 48% 52% 40% 60%;
  transform: rotate(8deg);
}

.hero-food-right {
  top: -80px;
  right: -165px;
  background-image: url("hero-food2.jpg");
  border-radius: 55% 45% 60% 40%;
  transform: rotate(-8deg);
}

/* Keeps the words above the food photographs */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto 22px;
  color: var(--heading-color);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero-description {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--text-color);
  font-size: 18px;
}

/* Hero buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  color: var(--white);
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(201, 35, 46, 0.2);
}

.button:hover {
  color: var(--white);
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-block;
  padding: 14px 28px;
  color: var(--primary-color);
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.secondary-button:hover {
  color: var(--white);
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Pickup and delivery cards */
.service-options {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 120px;
  padding: 22px;
  color: var(--heading-color);
  background-color: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--primary-color);
  border-radius: var(--medium-radius);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.service-number {
  display: grid;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--primary-color);
  background-color: #ffe9e9;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.service-text {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-text strong {
  color: var(--heading-color);
  font-size: 19px;
}

.service-text small {
  margin-top: 3px;
  color: var(--text-color);
  font-size: 13px;
  line-height: 1.4;
}

.service-arrow {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: bold;
}

.service-card:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.service-card:hover .service-number {
  color: var(--primary-color);
  background-color: var(--white);
}

.service-card:hover strong,
.service-card:hover small,
.service-card:hover .service-arrow {
  color: var(--white);
}

/* ========================================
   WEBSITE FOOTER
======================================== */

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background-color: var(--footer-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
  gap: 55px;
  padding-top: 75px;
  padding-bottom: 65px;
}

/* Footer brand */
.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  text-decoration: none;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-brand > p {
  max-width: 330px;
  margin-bottom: 22px;
  font-size: 14px;
}

.footer-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.footer-menu-link:hover {
  color: var(--white);
  gap: 11px;
}

/* Footer columns */
.footer-column h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 17px;
}

.footer-links {
  list-style: none;
}

.footer-links li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-color);
}

/* Contact information */
.footer-contact {
  font-style: normal;
}

.footer-contact p:not(:last-child) {
  margin-bottom: 14px;
}

/* Opening hours */
.footer-hours p {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-hours span,
.footer-hours strong {
  display: block;
}

.footer-hours span {
  margin-bottom: 3px;
  font-size: 13px;
}

.footer-hours strong {
  color: var(--white);
  font-size: 13px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-content {
  min-height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.footer-bottom p {
  font-size: 12px;
}

/* Footer keyboard focus */
.footer-logo:focus-visible,
.footer-links a:focus-visible,
.footer-contact a:focus-visible,
.footer-menu-link:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

.page-banner {
  background-color: #2b2b2b;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.page-banner p {
  color: #dddddd;
  font-size: 18px;
}

.about-section {
  padding: 90px 0;
}

.about-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image,
.about-content {
  width: 50%;
}

.about-image img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.section-label {
  color: #d35400;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 18px;
}

/* CORE VALUES */

.values-section {
  padding: 110px 0;
  background-color: var(--white);
}

.values-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 55px;
}

.values-heading h2 {
  max-width: 700px;
  margin-top: 8px;
  font-size: 48px;
  line-height: 1.15;
  color: var(--heading-color);
}

.values-heading-text {
  max-width: 480px;
  padding-left: 25px;
  border-left: 3px solid var(--accent-color);
  color: var(--text-color);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  position: relative;
  min-height: 360px;
  padding: 45px 35px;
  overflow: hidden;
  background-color: var(--light-background);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--medium-radius);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow);
}

.value-card-featured {
  color: var(--white);
  background: linear-gradient(
    145deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-color: transparent;
}

.value-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: var(--heading-color);
  font-size: 55px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.08;
}

.value-card-featured .value-number {
  color: var(--white);
  opacity: 0.12;
}

.value-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 35px;
  place-items: center;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 18px;
  font-size: 25px;
}

.value-card-featured .value-icon {
  color: var(--primary-dark);
  background-color: var(--accent-color);
}

.value-card h3 {
  margin-bottom: 15px;
  color: var(--heading-color);
  font-size: 28px;
}

.value-card-featured h3 {
  color: var(--white);
}

.value-card p {
  color: var(--text-color);
  line-height: 1.8;
}

.value-card-featured p {
  color: rgba(255, 255, 255, 0.85);
}

.value-line {
  position: absolute;
  right: 35px;
  bottom: 30px;
  left: 35px;
  height: 3px;
  background-color: var(--accent-color);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-card:hover .value-line {
  transform: scaleX(1);
}


.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 38px;
}



/* Menu section */

.section-description {
  max-width: 600px;
  margin: 12px auto 0;
  color: #666666;
}

/* MENU MEALS SECTION */

.menu-section {
  padding: 110px 0;
  background-color: var(--light-background);
  scroll-margin-top: 90px;
}

.menu-section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.menu-section-heading h2 {
  margin-top: 8px;
  color: var(--heading-color);
  font-size: 48px;
  line-height: 1.15;
}

.menu-section-description {
  max-width: 520px;
  padding-left: 25px;
  color: var(--text-color);
  border-left: 3px solid var(--accent-color);
  line-height: 1.8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--medium-radius);
  box-shadow: 0 12px 35px rgba(40, 20, 20, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(40, 20, 20, 0.14);
}

.menu-card-image {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.06);
}

.meal-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 13px;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.meal-badge-yellow {
  color: var(--primary-dark);
  background-color: var(--accent-color);
}

.menu-card-content {
  padding: 30px;
}

.meal-category {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.meal-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.meal-heading h3 {
  color: var(--heading-color);
  font-size: 24px;
  line-height: 1.25;
}

.price {
  flex-shrink: 0;
  padding: 6px 10px;
  color: var(--primary-color);
  background-color: rgba(177, 8, 19, 0.08);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
}

.menu-card-content > p:not(.meal-category) {
  min-height: 84px;
  color: var(--text-color);
  line-height: 1.7;
}

.meal-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
}

.meal-link span {
  transition: transform 0.3s ease;
}

.meal-link:hover {
  color: var(--primary-dark);
}

.meal-link:hover span {
  transform: translateX(5px);
}
 

/* CONTACT INFORMATION AND FORM */

.contact-section {
  padding: 110px 0;
  background-color: var(--light-background);
  scroll-margin-top: 90px;
}

.contact-section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.contact-section-heading h2 {
  max-width: 680px;
  margin-top: 8px;
  color: var(--heading-color);
  font-size: 48px;
  line-height: 1.15;
}

.contact-section-heading > p {
  max-width: 520px;
  padding-left: 25px;
  color: var(--text-color);
  border-left: 3px solid var(--accent-color);
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 35px;
}

.contact-information {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 28px;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--medium-radius);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateX(7px);
  box-shadow: 0 14px 35px rgba(40, 20, 20, 0.09);
}

.contact-item-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.contact-item-label {
  margin-bottom: 4px;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-item h3 {
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 21px;
}

.contact-item p,
.contact-item address {
  color: var(--text-color);
  font-style: normal;
  line-height: 1.7;
}

.contact-item a {
  color: var(--text-color);
  font-weight: 700;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact-hours p + p {
  margin-top: 7px;
}

.contact-hours strong {
  color: var(--heading-color);
  font-size: 13px;
}

.contact-form-wrapper {
  padding: 48px;
  background-color: var(--white);
  border-top: 6px solid var(--primary-color);
  border-radius: var(--large-radius);
  box-shadow: 0 20px 50px rgba(40, 20, 20, 0.1);
}

.contact-form-heading {
  margin-bottom: 32px;
}

.contact-form-label {
  margin-bottom: 7px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form-heading h2 {
  margin-bottom: 12px;
  color: var(--heading-color);
  font-size: 36px;
}

.contact-form-heading > p:last-child {
  color: var(--text-color);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 9px;
}

.form-group label {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--heading-color);
  background-color: var(--light-background);
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: var(--small-radius);
  font: inherit;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 145px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(177, 8, 19, 0.1);
}

.form-button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-button span {
  margin-left: 7px;
}

.form-notice {
  color: var(--text-color);
  font-size: 12px;
  line-height: 1.6;
}

/* ========================================
   POPULAR MEALS
======================================== */

.popular-meals {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.popular-meals .section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.popular-meals .section-heading h2 {
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: clamp(34px, 4vw, 48px);
}

.popular-meals .section-description {
  color: var(--text-color);
}

.featured-meals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.featured-meal-card {
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--medium-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.featured-meal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* Image area */
.featured-meal-image {
  position: relative;
  overflow: hidden;
}

.featured-meal-image img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-meal-card:hover .featured-meal-image img {
  transform: scale(1.06);
}

/* Label displayed over the picture */
.meal-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 13px;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}

/* Card content */
.featured-meal-content {
  padding: 24px;
}

.featured-meal-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.featured-meal-heading h3 {
  color: var(--heading-color);
  font-size: 21px;
}

.featured-meal-heading > span {
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 800;
}

.featured-meal-content p {
  margin-bottom: 18px;
  color: var(--text-color);
  font-size: 14px;
}

.meal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.meal-link:hover {
  color: var(--primary-dark);
  gap: 11px;
}

.popular-meals-action {
  margin-top: 45px;
  text-align: center;
}

/* ========================================
   HOW IT WORKS
======================================== */

.how-it-works {
  padding: var(--section-spacing) 0;
  background-color: var(--light-background);
}

.how-it-works .section-heading {
  max-width: 680px;
  margin: 0 auto 55px;
  text-align: center;
}

.how-it-works .section-heading h2 {
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: clamp(34px, 4vw, 48px);
}

/* Three-step layout */
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
}

/* Connecting line behind the cards */
.steps-grid::before {
  content: "";
  position: absolute;
  top: 76px;
  right: 16%;
  left: 16%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    var(--primary-color) 0,
    var(--primary-color) 9px,
    transparent 9px,
    transparent 17px
  );
  opacity: 0.3;
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 34px 28px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--medium-radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.step-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

/* Small number in the corner */
.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(201, 35, 46, 0.2);
  font-size: 28px;
  font-weight: 900;
}

/* Circular icon */
.step-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 23px;
  display: grid;
  place-items: center;
  background-color: #ffe9e9;
  border: 2px solid rgba(201, 35, 46, 0.15);
  border-radius: 50%;
}

.step-icon span {
  font-size: 37px;
  line-height: 1;
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--heading-color);
  font-size: 22px;
}

.step-card p {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 14px;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.step-link:hover {
  color: var(--primary-dark);
  gap: 11px;
}

/* ========================================
   WHY CHOOSE SAVORY BITES
======================================== */

.why-choose-us {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 75px;
}

/* Restaurant image */
.why-choose-image {
  position: relative;
}

.why-choose-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 130px;
  height: 130px;
  background-color: var(--accent-color);
  border-radius: var(--large-radius);
}

.why-choose-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: var(--large-radius);
  box-shadow: var(--shadow);
}

/* Small card over the image */
.experience-card {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 35px;
  min-width: 190px;
  padding: 20px 24px;
  color: var(--white);
  background-color: var(--primary-color);
  border: 6px solid var(--white);
  border-radius: var(--medium-radius);
  box-shadow: var(--shadow);
}

.experience-card strong,
.experience-card span {
  display: block;
}

.experience-card strong {
  color: var(--white);
  font-size: 26px;
  line-height: 1.1;
}

.experience-card span {
  margin-top: 5px;
  font-size: 13px;
}

/* Written content */
.why-choose-content h2 {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-size: clamp(34px, 4vw, 50px);
}

.why-choose-introduction {
  margin-bottom: 34px;
  color: var(--text-color);
  font-size: 16px;
}

/* Reasons */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 30px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.reason-number {
  display: grid;
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--primary-color);
  background-color: #ffe9e9;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.reason-item h3 {
  margin-bottom: 6px;
  color: var(--heading-color);
  font-size: 18px;
}

.reason-item p {
  color: var(--text-color);
  font-size: 13px;
}

/* Buttons beneath the reasons */
.why-choose-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--primary-dark);
  gap: 11px;
}

/* ========================================
   HOME PAGE CALL TO ACTION
======================================== */

.home-cta {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
  background-color: var(--primary-color);
}

/* Decorative background circles */
.home-cta::before,
.home-cta::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.home-cta::before {
  top: -180px;
  left: -130px;
  width: 380px;
  height: 380px;
}

.home-cta::after {
  right: -170px;
  bottom: -230px;
  width: 500px;
  height: 500px;
}

.home-cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 70px;
}

.cta-label {
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.home-cta-content h2 {
  max-width: 700px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.home-cta-content > p:not(.cta-label) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.home-cta-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.cta-primary-button,
.cta-secondary-button {
  display: inline-block;
  padding: 14px 26px;
  border: 2px solid var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cta-primary-button {
  color: var(--primary-color);
  background-color: var(--white);
}

.cta-primary-button:hover {
  color: var(--primary-dark);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.cta-secondary-button {
  color: var(--white);
  background-color: transparent;
}

.cta-secondary-button:hover {
  color: var(--primary-color);
  background-color: var(--white);
  transform: translateY(-2px);
}

/* Opening-hours card */
.opening-hours {
  padding: 30px;
  color: var(--heading-color);
  background-color: var(--white);
  border-radius: var(--medium-radius);
  box-shadow: 0 16px 35px rgba(86, 0, 7, 0.2);
}

.opening-hours-label {
  margin-bottom: 7px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.opening-hours h3 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-size: 23px;
}

.opening-time {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
}

.opening-time span {
  color: var(--text-color);
}

.opening-time strong {
  color: var(--heading-color);
  text-align: right;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.location-link:hover {
  color: var(--primary-dark);
  gap: 11px;
}

/* Keyboard focus */
.cta-primary-button:focus-visible,
.cta-secondary-button:focus-visible,
.location-link:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

.about-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(97, 4, 12, 0.92) 0%,
      rgba(157, 15, 27, 0.83) 52%,
      rgba(37, 12, 14, 0.56) 100%
    ),
    url("hero-food3.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Decorative glow */
.about-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 40px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.breadcrumb li,
.breadcrumb a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-color);
}

.breadcrumb li[aria-current="page"] {
  color: var(--accent-color);
}

/* Hero writing */
.about-hero-label {
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.about-hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.about-hero h1 span {
  color: var(--accent-color);
}

.about-hero-description {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.about-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  color: var(--primary-dark);
  background-color: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.about-hero-link:hover {
  color: var(--primary-dark);
  background-color: var(--accent-color);
  gap: 13px;
  transform: translateY(-2px);
}

.about-hero-link:focus-visible,
.breadcrumb a:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

/* ========================================
   ABOUT PAGE — OUR STORY
======================================== */

.story-section {
  padding: 110px 0;
  background-color: var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 90px;
}

/* Photograph composition */
.story-visual {
  position: relative;
  min-height: 650px;
}

.story-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 570px;
  overflow: hidden;
  border-radius: var(--large-radius);
  box-shadow: var(--shadow);
}

.story-main-image img,
.story-food-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-food-image {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 260px;
  overflow: hidden;
  background-color: var(--white);
  border: 8px solid var(--white);
  border-radius: var(--medium-radius);
  box-shadow: var(--shadow);
}

/* Red information card */
.story-badge {
  position: absolute;
  z-index: 3;
  top: 55px;
  right: -20px;
  min-width: 160px;
  padding: 17px 21px;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: var(--medium-radius);
  box-shadow: 0 15px 30px rgba(111, 7, 15, 0.23);
}

.story-badge strong,
.story-badge span {
  display: block;
}

.story-badge strong {
  color: var(--white);
  font-size: 25px;
  line-height: 1;
}

.story-badge span {
  margin-top: 5px;
  font-size: 12px;
}

/* Yellow shape behind the photograph */
.story-decoration {
  position: absolute;
  z-index: 0;
  bottom: 28px;
  left: -25px;
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

/* Written content */
.story-content h2 {
  max-width: 660px;
  margin-bottom: 22px;
  color: var(--heading-color);
  font-size: clamp(36px, 4.5vw, 54px);
  letter-spacing: -1.3px;
}

.story-content > p {
  margin-bottom: 17px;
  color: var(--text-color);
}

.story-introduction {
  color: var(--heading-color) !important;
  font-size: 18px;
  font-weight: 600;
}

/* Quotation */
.story-quote {
  position: relative;
  margin: 30px 0;
  padding: 23px 25px 23px 30px;
  background-color: var(--light-background);
  border-left: 5px solid var(--primary-color);
  border-radius: 0 var(--medium-radius) var(--medium-radius) 0;
}

.story-quote p {
  margin-bottom: 7px;
  color: var(--heading-color);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.story-quote cite {
  color: var(--primary-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Three promises */
.story-promises {
  display: grid;
  gap: 17px;
}

.story-promise {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.story-promise > span {
  display: grid;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--primary-color);
  background-color: #ffe9e9;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.story-promise strong,
.story-promise small {
  display: block;
}

.story-promise strong {
  color: var(--heading-color);
  font-size: 16px;
}

.story-promise small {
  margin-top: 2px;
  color: var(--text-color);
  font-size: 13px;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}

/* MISSION AND VISION */

.mission-section {
  padding: 110px 0;
  background-color: var(--light-background);
}

.mission-heading {
  max-width: 680px;
  margin: 0 auto 55px;
  text-align: center;
}

.mission-heading h2 {
  margin: 8px 0 16px;
  font-size: 48px;
  line-height: 1.15;
  color: var(--heading-color);
}

.mission-heading > p:last-child {
  color: var(--text-color);
  line-height: 1.8;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.mission-card {
  position: relative;
  min-height: 390px;
  padding: 55px 48px;
  border-radius: var(--large-radius);
  overflow: hidden;
}

.mission-card-red {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}

.mission-card-light {
  color: var(--text-color);
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--box-shadow);
}

.mission-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.1;
}

.mission-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 50%;
  font-size: 25px;
}

.mission-card-red .mission-icon {
  color: var(--primary-dark);
  background-color: var(--accent-color);
}

.mission-card-light .mission-icon {
  color: var(--white);
  background-color: var(--primary-color);
}

.mission-card-label {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mission-card-red .mission-card-label {
  color: var(--accent-color);
}

.mission-card-light .mission-card-label {
  color: var(--primary-color);
}

.mission-card h3 {
  max-width: 440px;
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1.25;
}

.mission-card-red h3 {
  color: var(--white);
}

.mission-card > p:last-child {
  max-width: 500px;
  line-height: 1.8;
}

.mission-card-red > p:last-child {
  color: rgba(255, 255, 255, 0.86);
}

/* ABOUT PAGE CALL TO ACTION */

.about-cta {
  padding: 110px 0;
  background:
    linear-gradient(
      100deg,
      rgba(128, 5, 13, 0.96),
      rgba(177, 8, 19, 0.88)
    ),
    url("restaurant-interior.jpg") center / cover no-repeat;
}

.about-cta-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 85px;
}

.about-cta-content {
  max-width: 650px;
}

.about-cta-label {
  margin-bottom: 15px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-cta-content h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 52px;
  line-height: 1.12;
}

.about-cta-content > p:not(.about-cta-label) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.8;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 35px;
}

.button-yellow {
  color: var(--primary-dark);
  background-color: var(--accent-color);
}

.button-yellow:hover {
  color: var(--primary-dark);
  background-color: var(--white);
}

.button-outline-light {
  color: var(--white);
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.button-outline-light:hover {
  color: var(--primary-dark);
  background-color: var(--white);
  border-color: var(--white);
}

.about-cta-details {
  padding: 15px 40px;
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: var(--large-radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.about-detail {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
}

.about-detail + .about-detail {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-detail-number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--primary-color);
  background-color: var(--light-background);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.about-detail small {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.about-detail strong {
  display: block;
  margin-bottom: 3px;
  color: var(--heading-color);
  font-size: 18px;
}

.about-detail p {
  color: var(--text-color);
  font-size: 14px;
}

/* MENU PAGE HERO */

.menu-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(93, 3, 9, 0.97) 0%,
      rgba(132, 5, 13, 0.9) 45%,
      rgba(132, 5, 13, 0.35) 100%
    ),
    url("hero-food2.jpg");
}

.menu-hero::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  content: "";
  border: 65px solid rgba(255, 196, 0, 0.16);
  border-radius: 50%;
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 85px;
  padding-bottom: 85px;
}

.menu-breadcrumb {
  margin-bottom: 45px;
}

.menu-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.menu-breadcrumb a,
.menu-breadcrumb li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.menu-breadcrumb a:hover {
  color: var(--accent-color);
}

.menu-breadcrumb li[aria-current="page"] {
  color: var(--accent-color);
  font-weight: 700;
}

.menu-hero-label {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 64px;
  line-height: 1.05;
}

.menu-hero h1 span {
  display: block;
  color: var(--accent-color);
}

.menu-hero-description {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.menu-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 14px 20px;
  color: var(--primary-dark);
  background-color: var(--accent-color);
  border-radius: var(--small-radius);
  font-weight: 800;
}

.menu-hero-link:hover {
  color: var(--primary-dark);
  background-color: var(--white);
  transform: translateY(-3px);
}

.menu-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 720px;
  margin-top: 45px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.menu-hero-feature {
  min-width: 190px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.menu-hero-feature:first-child {
  padding-left: 0;
  border-left: 0;
}

.menu-hero-feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 17px;
}

.menu-hero-feature span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* ADDITIONAL MENU OPTIONS */

.menu-extras {
  padding: 110px 0;
  background-color: var(--white);
}

.extras-heading {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.extras-heading h2 {
  margin: 8px 0 16px;
  color: var(--heading-color);
  font-size: 48px;
  line-height: 1.15;
}

.extras-heading > p:last-child {
  color: var(--text-color);
  line-height: 1.8;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 25px;
}

.extras-card {
  padding: 38px 30px;
  background-color: var(--light-background);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--medium-radius);
}

.extras-card-featured {
  color: var(--white);
  background: linear-gradient(
    145deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-color: transparent;
  transform: translateY(-16px);
  box-shadow: 0 22px 45px rgba(116, 5, 13, 0.2);
}

.extras-card-heading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 30px;
}

.extras-number {
  display: grid;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.extras-card-featured .extras-number {
  color: var(--primary-dark);
  background-color: var(--accent-color);
}

.extras-card-heading p {
  margin-bottom: 3px;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.extras-card-featured .extras-card-heading p {
  color: var(--accent-color);
}

.extras-card-heading h3 {
  color: var(--heading-color);
  font-size: 27px;
}

.extras-card-featured .extras-card-heading h3 {
  color: var(--white);
}

.extras-list {
  padding: 0;
  list-style: none;
}

.extras-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
}

.extras-list li + li {
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.extras-card-featured .extras-list li + li {
  border-color: rgba(255, 255, 255, 0.22);
}

.extras-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
  font-size: 16px;
}

.extras-card-featured .extras-list strong {
  color: var(--white);
}

.extras-list small {
  display: block;
  color: var(--text-color);
  line-height: 1.5;
}

.extras-card-featured .extras-list small {
  color: rgba(255, 255, 255, 0.7);
}

.extras-list li > span {
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
}

.extras-card-featured .extras-list li > span {
  color: var(--accent-color);
}

.menu-price-note {
  margin-top: 35px;
  color: var(--text-color);
  font-size: 13px;
  text-align: center;
}

/* MENU PAGE CALL TO ACTION */

.menu-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    linear-gradient(
      100deg,
      rgba(111, 3, 11, 0.97),
      rgba(177, 8, 19, 0.86)
    ),
    url("food-service.jpg") center / cover no-repeat;
}

.menu-cta::before {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 260px;
  height: 260px;
  content: "";
  border: 55px solid rgba(255, 196, 0, 0.11);
  border-radius: 50%;
}

.menu-cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 85px;
}

.menu-cta-content {
  max-width: 650px;
}

.menu-cta-label {
  margin-bottom: 15px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-cta-content h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 52px;
  line-height: 1.12;
}

.menu-cta-content > p:not(.menu-cta-label) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.8;
}

.menu-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 35px;
}

.menu-cta-card {
  padding: 35px 40px;
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: var(--large-radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.menu-cta-card-label {
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.menu-cta-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  padding: 25px 0;
}

.menu-cta-detail + .menu-cta-detail {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-cta-detail > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--primary-color);
  background-color: var(--light-background);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.menu-cta-detail small {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.menu-cta-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 17px;
}

.menu-cta-detail strong a {
  color: inherit;
}

.menu-cta-detail strong a:hover {
  color: var(--primary-color);
}

.menu-cta-detail p {
  color: var(--text-color);
  font-size: 14px;
}

/* CONTACT PAGE HERO */

.contact-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(91, 3, 10, 0.97) 0%,
      rgba(137, 5, 14, 0.88) 52%,
      rgba(137, 5, 14, 0.3) 100%
    ),
    url("restaurant-interior.jpg") center / cover no-repeat;
}

.contact-hero::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  content: "";
  border: 70px solid rgba(255, 196, 0, 0.14);
  border-radius: 50%;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 85px;
  padding-bottom: 85px;
}

.contact-breadcrumb {
  margin-bottom: 45px;
}

.contact-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.contact-breadcrumb a,
.contact-breadcrumb li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact-breadcrumb a:hover {
  color: var(--accent-color);
}

.contact-breadcrumb li[aria-current="page"] {
  color: var(--accent-color);
  font-weight: 700;
}

.contact-hero-label {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 68px;
  line-height: 1.05;
}

.contact-hero h1 span {
  display: block;
  color: var(--accent-color);
}

.contact-hero-description {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.contact-phone-link:hover {
  color: var(--accent-color);
}

.contact-phone-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--primary-dark);
  background-color: var(--white);
  border-radius: 50%;
  font-size: 21px;
}

.contact-phone-link small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-phone-link strong {
  display: block;
  color: inherit;
  font-size: 16px;
}

/* CONTACT PAGE FAQ */

.contact-faq {
  padding: 110px 0;
  background-color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 85px;
}

.faq-introduction {
  position: sticky;
  top: 120px;
}

.faq-introduction h2 {
  max-width: 510px;
  margin: 8px 0 18px;
  color: var(--heading-color);
  font-size: 48px;
  line-height: 1.15;
}

.faq-introduction > p:not(.section-label) {
  max-width: 500px;
  color: var(--text-color);
  line-height: 1.8;
}

.faq-help-card {
  margin-top: 35px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(
    145deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: var(--medium-radius);
}

.faq-help-card > p {
  margin-bottom: 7px;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.faq-help-card h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 22px;
}

.faq-help-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

.faq-help-card a:hover {
  color: var(--accent-color);
}

.faq-list {
  display: grid;
  gap: 15px;
}

.faq-item {
  overflow: hidden;
  background-color: var(--light-background);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--medium-radius);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 28px;
  color: var(--heading-color);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  display: grid;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item[open] {
  background-color: var(--white);
  border-color: rgba(177, 8, 19, 0.25);
  box-shadow: 0 14px 35px rgba(40, 20, 20, 0.08);
}

.faq-item[open] summary {
  color: var(--primary-color);
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 75px 25px 28px;
}

.faq-answer p {
  color: var(--text-color);
  line-height: 1.8;
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: -3px;
}

/* RESTAURANT LOCATION */

.location-section {
  padding: 110px 0;
  background-color: var(--light-background);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 85px;
}

.location-image {
  position: relative;
  min-height: 650px;
}

.location-image::before {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 150px;
  height: 150px;
  content: "";
  background-color: var(--accent-color);
  border-radius: var(--medium-radius);
}

.location-image::after {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 190px;
  height: 190px;
  content: "";
  border: 25px solid rgba(177, 8, 19, 0.12);
  border-radius: 50%;
}

.location-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: var(--large-radius);
  box-shadow: 0 25px 60px rgba(40, 20, 20, 0.17);
}

.location-image-label {
  position: absolute;
  z-index: 2;
  right: -25px;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 23px;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: var(--small-radius);
  box-shadow: 0 15px 35px rgba(40, 20, 20, 0.2);
}

.location-image-label span {
  color: var(--accent-color);
  font-size: 20px;
}

.location-image-label p {
  font-weight: 800;
}

.location-content h2 {
  max-width: 590px;
  margin: 8px 0 20px;
  color: var(--heading-color);
  font-size: 48px;
  line-height: 1.15;
}

.location-introduction {
  max-width: 580px;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.8;
}

.location-details {
  margin-top: 35px;
}

.location-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
}

.location-detail + .location-detail {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.location-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.location-detail small {
  display: block;
  margin-bottom: 3px;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.location-detail strong {
  display: block;
  margin-bottom: 3px;
  color: var(--heading-color);
  font-size: 17px;
}

.location-detail p {
  color: var(--text-color);
  font-size: 14px;
}

.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.portfolio-location-note {
  max-width: 560px;
  margin-top: 25px;
  padding-top: 18px;
  color: var(--text-color);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  line-height: 1.6;
}


/* ========================================
   TABLET: 900PX AND BELOW
======================================== */

@media screen and (max-width: 900px) {
  .navigation {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Hero */
  .hero {
    min-height: 700px;
  }

  .hero-content {
    max-width: 720px;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .hero-food {
    width: 300px;
    height: 420px;
    opacity: 0.32;
  }

  .hero-food-left {
    left: -170px;
  }

  .hero-food-right {
    right: -170px;
  }

  /* Popular meals */
  .featured-meals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-meal-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
    justify-self: center;
  }

  /* How it works */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .step-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 15px);
    justify-self: center;
  }

  /* Why choose us */
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .why-choose-image {
    width: 85%;
    margin: 0 auto;
  }

  .why-choose-image img {
    height: 500px;
  }

  .why-choose-content {
    max-width: 750px;
    margin: 0 auto;
  }

  .experience-card {
    right: -25px;
  }

  /* CTA */
  .home-cta-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .home-cta-content {
    max-width: 750px;
  }

  .opening-hours {
    max-width: 550px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }

  /* Existing pages */
  .about-layout {
    gap: 35px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-image img {
    height: 400px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .about-hero {
    min-height: 520px;
    background-position: center;
  }

  .about-hero h1 {
    max-width: 700px;
  }

  .story-section {
  padding: 85px 0;
}

.story-layout {
  grid-template-columns: 1fr;
  gap: 65px;
}

.story-visual {
  width: 85%;
  min-height: 600px;
  margin: 0 auto;
}

.story-main-image {
  height: 520px;
}

.story-food-image {
  height: 235px;
}

.story-content {
  max-width: 760px;
  margin: 0 auto;
}

.mission-section {
  padding: 85px 0;
}

.mission-grid {
  grid-template-columns: 1fr;
}

.mission-card {
  min-height: auto;
}

.values-section {
  padding: 85px 0;
}

.values-heading {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 25px;
}

.values-heading-text {
  max-width: 650px;
}

.values-grid {
  grid-template-columns: repeat(2, 1fr);
}

.value-card:last-child {
  grid-column: 1 / -1;
}

.about-cta {
  padding: 85px 0;
}

.about-cta-container {
  grid-template-columns: 1fr;
  gap: 50px;
}

.about-cta-content {
  max-width: 720px;
}

.about-cta-details {
  max-width: 650px;
}

.menu-hero {
  min-height: 620px;
}

.menu-hero h1 {
  max-width: 700px;
  font-size: 54px;
}

.menu-hero-description {
  max-width: 580px;
}

.menu-section {
  padding: 85px 0;
}

.menu-section-heading {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 25px;
}

.menu-section-description {
  max-width: 680px;
}

.menu-grid {
  grid-template-columns: repeat(2, 1fr);
}

.menu-extras {
  padding: 85px 0;
}

.extras-grid {
  grid-template-columns: repeat(2, 1fr);
}

.extras-card-featured {
  transform: none;
}

.extras-card:last-child {
  grid-column: 1 / -1;
}

.menu-cta {
  padding: 85px 0;
}

.menu-cta-layout {
  grid-template-columns: 1fr;
  gap: 50px;
}

.menu-cta-content {
  max-width: 720px;
}

.menu-cta-card {
  max-width: 650px;
}

.contact-hero {
  min-height: 600px;
}

.contact-hero h1 {
  max-width: 680px;
  font-size: 56px;
}

.contact-hero-description {
  max-width: 570px;
}

.contact-section {
  padding: 85px 0;
}

.contact-section-heading {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 25px;
}

.contact-section-heading > p {
  max-width: 680px;
}

.contact-layout {
  grid-template-columns: 1fr;
  gap: 45px;
}

.contact-information {
  grid-template-columns: repeat(2, 1fr);
}

.contact-form-wrapper {
  max-width: 760px;
}

.contact-faq {
  padding: 85px 0;
}

.faq-layout {
  grid-template-columns: 1fr;
  gap: 50px;
}

.faq-introduction {
  position: static;
}

.faq-introduction > p:not(.section-label) {
  max-width: 650px;
}

.faq-help-card {
  max-width: 520px;
}

.location-section {
  padding: 85px 0;
}

.location-layout {
  grid-template-columns: 1fr;
  gap: 60px;
}

.location-image {
  width: 85%;
  min-height: 560px;
  margin: 0 auto;
}

.location-image img {
  height: 560px;
}

.location-content {
  max-width: 720px;
  margin: 0 auto;
}

}

/* ========================================
   MOBILE: 600PX AND BELOW
======================================== */

@media screen and (max-width: 600px) {
  .container {
    width: 92%;
  }

  /* Header */
  .navigation {
    padding: 15px 0;
  }

  .logo {
    font-size: 25px;
  }

  .nav-links {
    gap: 5px;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .nav-links a.active::after {
    right: 9px;
    left: 9px;
  }

  .nav-links .nav-button {
    margin-left: 0;
    padding: 9px 15px;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-content {
    width: 92%;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-food {
    width: 210px;
    height: 280px;
    opacity: 0.16;
    border-width: 7px;
  }

  .hero-food-left {
    left: -140px;
    bottom: 40px;
  }

  .hero-food-right {
    top: 30px;
    right: -140px;
  }

  .hero-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 38px;
  }

  .button,
  .secondary-button {
    width: 100%;
    max-width: 280px;
    padding: 13px 22px;
    text-align: center;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 105px;
    padding: 18px;
  }

  /* Popular meals */
  .popular-meals {
    padding: 65px 0;
  }

  .popular-meals .section-heading {
    margin-bottom: 35px;
  }

  .featured-meals-grid {
    grid-template-columns: 1fr;
  }

  .featured-meal-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .featured-meal-image img {
    height: 240px;
  }

  /* How it works */
  .how-it-works {
    padding: 65px 0;
  }

  .how-it-works .section-heading {
    margin-bottom: 35px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  /* Why choose */
  .why-choose-us {
    padding: 65px 0;
  }

  .why-choose-layout {
    gap: 45px;
  }

  .why-choose-image {
    width: 100%;
  }

  .why-choose-image::before {
    top: -12px;
    left: -8px;
    width: 90px;
    height: 90px;
  }

  .why-choose-image img {
    height: 390px;
  }

  .experience-card {
    right: 12px;
    bottom: 15px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-choose-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  /* CTA */
  .home-cta {
    padding: 65px 0;
  }

  .home-cta-content {
    text-align: center;
  }

  .home-cta-content h2 {
    font-size: 38px;
  }

  .home-cta-actions {
    flex-direction: column;
  }

  .cta-primary-button,
  .cta-secondary-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .opening-hours {
    width: 100%;
    padding: 25px 20px;
  }

  .opening-time {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 55px;
    padding-bottom: 45px;
  }

  .footer-bottom-content {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .about-hero {
    min-height: 500px;

    background-image:
      linear-gradient(rgba(97, 4, 12, 0.9), rgba(97, 4, 12, 0.86)),
      url("hero-food3.jpg");

    background-position: center;
  }

  .about-hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .breadcrumb {
    margin-bottom: 32px;
  }

  .about-hero h1 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .about-hero-description {
    font-size: 16px;
  }

  .about-hero::after {
    right: -240px;
    bottom: -250px;
  }

  /* Existing pages */
  .page-banner {
    padding: 55px 0;
  }

  .page-banner h1 {
    font-size: 34px;
  }

  .about-section,
  .values-section {
    padding: 60px 0;
  }

  .about-layout,
  .values-grid {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-section {
    background-attachment: scroll;
  }

  .story-section {
  padding: 65px 0;
}

.story-layout {
  gap: 45px;
}

.story-visual {
  width: 100%;
  min-height: 475px;
}

.story-main-image {
  width: 90%;
  height: 410px;
  border-radius: var(--medium-radius);
}

.story-food-image {
  width: 48%;
  height: 175px;
  border-width: 5px;
}

.story-badge {
  top: 25px;
  right: 0;
  min-width: 135px;
  padding: 14px 17px;
}

.story-badge strong {
  font-size: 21px;
}

.story-decoration {
  bottom: 18px;
  left: -8px;
  width: 100px;
  height: 100px;
}

.story-content h2 {
  font-size: 36px;
}

.story-introduction {
  font-size: 16px;
}

.story-actions {
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.mission-section {
  padding: 65px 0;
}

.mission-heading {
  margin-bottom: 38px;
}

.mission-heading h2 {
  font-size: 36px;
}

.mission-card {
  padding: 42px 28px;
  border-radius: var(--medium-radius);
}

.mission-card h3 {
  font-size: 27px;
}

.mission-number {
  right: 20px;
  font-size: 70px;
}

.values-section {
  padding: 65px 0;
}

.values-heading {
  margin-bottom: 38px;
}

.values-heading h2 {
  font-size: 36px;
}

.values-heading-text {
  padding-left: 18px;
}

.values-grid {
  grid-template-columns: 1fr;
}

.value-card,
.value-card:last-child {
  grid-column: auto;
}

.value-card {
  min-height: 330px;
  padding: 38px 28px;
}

.about-cta {
  padding: 65px 0;
}

.about-cta-content h2 {
  font-size: 38px;
}

.about-cta-actions {
  align-items: flex-start;
  flex-direction: column;
}

.about-cta-actions .button {
  width: 100%;
  text-align: center;
}

.about-cta-details {
  padding: 8px 25px;
  border-radius: var(--medium-radius);
}

.about-detail {
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 24px 0;
}

.about-detail-number {
  width: 42px;
  height: 42px;
}

.menu-hero {
  min-height: 680px;
  background-position: 62% center;
}

.menu-hero-content {
  padding-top: 70px;
  padding-bottom: 70px;
}

.menu-breadcrumb {
  margin-bottom: 35px;
}

.menu-hero h1 {
  font-size: 42px;
}

.menu-hero-description {
  font-size: 16px;
}

.menu-hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 35px;
  padding-bottom: 0;
}

.menu-hero-feature,
.menu-hero-feature:first-child {
  padding: 0 0 0 18px;
  border-top: 0;
  border-left: 3px solid var(--accent-color);
}

.menu-section {
  padding: 65px 0;
}

.menu-section-heading {
  margin-bottom: 38px;
}

.menu-section-heading h2 {
  font-size: 36px;
}

.menu-section-description {
  padding-left: 18px;
}

.menu-grid {
  grid-template-columns: 1fr;
}

.menu-card-image {
  height: 250px;
}

.menu-card-content {
  padding: 26px;
}

.menu-card-content > p:not(.meal-category) {
  min-height: auto;
}

.menu-extras {
  padding: 65px 0;
}

.extras-heading {
  margin-bottom: 38px;
}

.extras-heading h2 {
  font-size: 36px;
}

.extras-grid {
  grid-template-columns: 1fr;
}

.extras-card,
.extras-card:last-child {
  grid-column: auto;
}

.extras-card {
  padding: 32px 24px;
}

.extras-list li {
  gap: 12px;
}

.menu-cta {
  padding: 65px 0;
}

.menu-cta-content h2 {
  font-size: 38px;
}

.menu-cta-actions {
  align-items: flex-start;
  flex-direction: column;
}

.menu-cta-actions .button {
  width: 100%;
  text-align: center;
}

.menu-cta-card {
  padding: 28px 24px;
  border-radius: var(--medium-radius);
}

.menu-cta-detail {
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.menu-cta-detail > span {
  width: 40px;
  height: 40px;
}

.contact-hero {
  min-height: 650px;
  background-position: 65% center;
}

.contact-hero-content {
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact-breadcrumb {
  margin-bottom: 35px;
}

.contact-hero h1 {
  font-size: 44px;
}

.contact-hero-description {
  font-size: 16px;
}

.contact-hero-actions {
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
}

.contact-hero-actions .button {
  width: 100%;
  text-align: center;
}

.contact-section {
  padding: 65px 0;
}

.contact-section-heading {
  margin-bottom: 38px;
}

.contact-section-heading h2 {
  font-size: 36px;
}

.contact-section-heading > p {
  padding-left: 18px;
}

.contact-information {
  grid-template-columns: 1fr;
}

.contact-item {
  padding: 25px 22px;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-hours p {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.contact-form-wrapper {
  padding: 35px 24px;
  border-radius: var(--medium-radius);
}

.contact-form-heading h2 {
  font-size: 31px;
}

.form-row {
  grid-template-columns: 1fr;
}

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-faq {
  padding: 65px 0;
}

.faq-layout {
  gap: 38px;
}

.faq-introduction h2 {
  font-size: 36px;
}

.faq-help-card {
  padding: 25px 22px;
}

.faq-item summary {
  padding: 21px 20px;
  font-size: 15px;
}

.faq-item summary span {
  width: 31px;
  height: 31px;
}

.faq-answer {
  padding: 0 20px 22px;
}

.location-section {
  padding: 110px 0;
  overflow: hidden;
  background-color: var(--light-background);
}

.location-layout {
  gap: 45px;
}

.location-image {
  width: 100%;
  min-height: 430px;
}

.location-image::before {
  top: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
}

.location-image img {
  height: 430px;
  border-radius: var(--medium-radius);
}

.location-image-label {
  right: 12px;
  bottom: 20px;
}

.location-content h2 {
  font-size: 36px;
}

.location-actions {
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.location-actions .button {
  width: 100%;
  text-align: center;
}

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
