/* ================================================
   SHENNY'S - PILI PILI CRISPY FRIED CHICKEN
   Main Stylesheet
   ================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background:rgb(255, 165, 30);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header--scrolled {
  background: rgba(255, 165, 30, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}

.header__logo-link {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 200px;
  border-radius: 50%;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f5a623;
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  color: #f5a623;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-link--cta {
  background: #f5a623;
  color: #1a1a1a;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  border: 2px solid #3d3d3d;
}

.header__nav-link--cta::after {
  display: none;
}

.header__nav-link--cta:hover {
  background: #e8941a;
  color: #1a1a1a;
  transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #f5a623 0%, #e8541e 45%, #c0392b 100%);
  overflow-x: hidden;
  overflow-y: visible;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 200, 50, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  flex: 1;
  width: 100%;
}

.hero__subtitle {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 10rem;
  margin-bottom: 0;
  line-height: 1.4;
  animation: heroFadeDown 0.8s ease-out both;
}

.hero__order-btn {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  background: #f5a623;
  padding: 0.85rem 2.5rem;
  border: 3px solid #1a1a1a;
  margin-top: 1.25rem;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  animation: heroFadeUp 0.6s ease-out 0.4s both;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 3;
  position: relative;
}

.hero__order-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  flex: 1;
  align-items: flex-start;
  position: relative;
  margin-top: -1rem;
}

.hero__chicken-img {
  width: 100%;
  max-width: 900px;
  object-fit: contain;
  filter: drop-shadow(0 15px 50px rgba(0, 0, 0, 0.35));
  animation: heroJerk 0.6s ease-out 0.3s both;
}

.hero__halal-badge {
  position: absolute;
  right: 6%;
  bottom: 15%;
  width: 160px;
  height: 160px;
  object-fit: contain;
  z-index: 4;
  animation: heroFadeIn 0.8s ease-out 0.6s both;
}

.hero__address-bar {
  width: 100%;
  background: #1a1a1a;
  padding: 1rem 1rem;
  text-align: center;
}

.hero__address {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  color: #f5a623;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroFadeUp 0.6s ease-out 0.5s both;
}

/* Hero animations */
@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroJerk {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  40% {
    opacity: 1;
    transform: translateX(15px);
  }
  60% {
    transform: translateX(-8px);
  }
  80% {
    transform: translateX(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
   OUR MENU SECTION
   ================================================ */
.menu {
  background: linear-gradient(180deg, #f5a623 0%, #f7c948 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.menu__heading {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 165, 30, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
}

.menu__combos {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.menu__combo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
}

.menu__combo-img-wrapper {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.menu__combo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: plateSpin 10s linear infinite;
}

@keyframes plateSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.menu__combo-price {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(255, 165, 30, 0.95);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.menu__combo-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  text-align: center;
}

/* ================================================
   PILI PILI FRIES SECTION
   ================================================ */
.fries {
  background: #fff;
  padding: 4rem 1.5rem;
}

.fries__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.fries__info {
  flex: 1;
}

.fries__heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.fries__price-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.fries__price-row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.fries__size {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  min-width: 100px;
}

.fries__price {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 165, 30, 0.95);
}

.fries__cta {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  padding: 0.65rem 1.5rem;
  transition: all 0.3s ease;
}

.fries__cta:hover {
  background: #1a1a1a;
  color: #fff;
}

.fries__img-wrapper {
  flex: 1;
  max-width: 400px;
}

.fries__img {
  width: 100%;
  object-fit: contain;
}

/* ================================================
   OUR STORY SECTION
   ================================================ */
.story {
  display: flex;
  min-height: 550px;
  background: #1a1a1a;
}

.story__content {
  flex: 1.2;
  padding: 4rem 3rem;
  color: #fff;
}

.story__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.story__header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story__illustration {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.story__eyebrow {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #f5a623;
  margin-bottom: 0.25rem;
}

.story__heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.story__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}

.story__text {
  max-width: 550px;
}

.story__text p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.story__text p:last-child {
  margin-bottom: 0;
}

.story__image {
  flex: 0.8;
  position: relative;
  overflow: hidden;
}

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

/* ================================================
   FIND US SECTION
   ================================================ */
.find-us {
  background: #1a1a1a;
  padding: 4rem 1.5rem;
}

.find-us__box {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  min-height: 420px;
}

.find-us__map {
  flex: 1.2;
  position: relative;
  min-height: 420px;
}

.find-us__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.find-us__info {
  flex: 1;
  background: rgba(255, 165, 30, 0.95);
  color: #fff;
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.find-us__heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.find-us__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.find-us__name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.find-us__contact {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.find-us__contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.3s ease;
}

.find-us__contact a:hover {
  opacity: 0.8;
}

.find-us__hours {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.find-us__hours-label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.find-us__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.find-us__btn {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.65rem 1.4rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.find-us__btn--directions {
  background: transparent;
  color: #fff;
}

.find-us__btn--directions:hover {
  background: #fff;
  color: #1a1a1a;
}

.find-us__btn--order {
  background: #1a1a1a;
  color: #f5a623;
  border-color: #1a1a1a;
}

.find-us__btn--order:hover {
  background: #333;
  border-color: #333;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq {
  background: #fdf0d5;
  padding: 4rem 1.5rem;
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq__heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 0.75rem;
}

.faq__subheading {
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.faq__category {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.15);
}

.faq__category-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 165, 30, 0.95);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.faq__item {
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  padding-bottom: 0.5rem;
}

.faq__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq__question h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.faq__icon {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 165, 30, 0.95);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 600px;
  padding-bottom: 0.75rem;
}

.faq__answer p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.faq__answer ul {
  margin-top: 0.25rem;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.faq__answer li {
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.faq__answer a {
  color: rgba(255, 165, 30, 0.95);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__answer a:hover {
  color: #e8541e;
}

/* ================================================
   TAGLINE BANNER SECTION
   ================================================ */
.tagline {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.tagline__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.tagline__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.tagline__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
}

.tagline__text {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
}

.tagline__line {
  display: block;
  font-size: clamp(3rem, 10vw, 6rem);
  background: linear-gradient(180deg, #f5a623 0%, #e8541e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   MARQUEE SECTION
   ================================================ */
.marquee {
  background: rgba(255, 165, 30, 0.95);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
}

.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 20s linear infinite;
}

.marquee__track span {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================================================
   EMAIL SIGNUP SECTION
   ================================================ */
.signup {
  background: #fdf0d5;
  padding: 3rem 1.5rem 2.5rem;
}

.signup__tagline {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.signup__label {
  display: block;
  font-size: 0.75rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.signup__form-row {
  display: flex;
  gap: 0;
  max-width: 600px;
}

.signup__input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  border: 1px solid #ccc;
  border-right: none;
  background: #fff;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s ease;
}

.signup__input::placeholder {
  color: #999;
}

.signup__input:focus {
  border-color: #f5a623;
}

.signup__btn {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup__btn:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #fdf0d5;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer__content {
  max-width: 600px;
  margin: 0 auto;
}

.footer__phone,
.footer__email {
  font-size: 0.85rem;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.footer__phone a {
  color: #e8941a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__email a {
  color: #8a7a5a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__phone a:hover,
.footer__email a:hover {
  color: rgba(255, 165, 30, 0.95);
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.footer__socials a {
  transition: opacity 0.3s ease;
}

.footer__socials a:hover {
  opacity: 0.7;
}

.footer__socials a[aria-label="Instagram"] {
  color: #e1306c;
}

.footer__socials a[aria-label="Facebook"] {
  color: #1877f2;
}

.footer__socials a[aria-label="TikTok"] {
  color: #1a1a1a;
}

.footer__copy {
  font-size: 0.75rem;
  color: #666;
}

.footer__copy a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__copy a:hover {
  color: rgba(255, 165, 30, 0.95);
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 768px) {
  /* FAQ mobile */
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .faq__category {
    padding: 1rem;
  }

  /* Header mobile */
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 140px;
    left: 0;
    width: 100%;
    background: #f5a623;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__nav-link--cta {
    text-align: center;
    width: 100%;
  }

  /* Fries */
  .fries__content {
    flex-direction: column;
    text-align: center;
  }

  .fries__info {
    order: 1;
  }

  .fries__img-wrapper {
    order: 2;
    max-width: 300px;
  }

  .fries__price-row {
    justify-content: center;
  }

  .fries__size {
    min-width: auto;
  }

  /* Story */
  .story {
    flex-direction: column;
  }

  .story__content {
    padding: 3rem 2rem;
  }

  .story__image {
    min-height: 300px;
  }

  /* Find us */
  .find-us__box {
    flex-direction: column;
    min-height: auto;
  }

  .find-us__map {
    min-height: 300px;
  }

  .find-us__info {
    padding: 2rem 1.5rem;
  }

  .find-us__actions {
    flex-direction: column;
  }

  .find-us__btn {
    width: 100%;
    text-align: center;
  }

  /* Hero adjustments */
  .hero__halal-badge {
    width: 120px;
    height: 120px;
    right: 2%;
    bottom: 16%;
  }

  .hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-top: 4rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .header__inner {
    padding: 0.5rem 1rem;
  }

  .hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-top: 10rem;
  }

  .hero__halal-badge {
    width: 80px;
    height: 80px;
    right: 2%;
    bottom: 14%;
  }

  .menu {
    padding: 3rem 1rem;
  }

  .menu__combos {
    gap: 1.5rem;
  }

  .menu__combo-item {
    width: 160px;
  }

  .menu__combo-img-wrapper {
    width: 180px;
    height: 180px;
  }

  .story__header {
    flex-direction: column;
    gap: 1rem;
  }

  .story__content {
    padding: 2.5rem 1.5rem;
  }

  .story__logo {
    width: 60px;
    height: 60px;
  }

  .tagline__line {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .signup__form-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .signup__input {
    border-right: 1px solid #ccc;
  }

  .signup__btn {
    width: 100%;
  }

  .hero__halal-badge {
    width: 55px;
    height: 55px;
  }
}
