section {
  padding: 80px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  font-family: "Amiri", serif;
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #e52020;
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--maroon-deep);
  line-height: 1.2;
  font-weight: 700;
}

.section-title em {
  color: var(--orange);
  font-style: italic;
}

.section-subtitle {
  margin-top: 0.6rem;
  color: var(--text-mid);
  font-size: 1rem;
  font-style: italic;
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.ornament-line::before,
.ornament-line::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.ornament-line::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.ornament-diamond {
  color: var(--gold);
  font-size: 1rem;
}

#about {
  background: #7d0a0a;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF4444' fill-opacity='0.05'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v-2h-2z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

#about .section-title {
  color: var(--gold-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-wrap {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.about-img-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1.5px solid rgba(201, 162, 74, 0.35);
  border-radius: 4px;
  pointer-events: none;
}

.about-mini-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.about-mini-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 3px;
}

.about-text .section-header {
  text-align: left;
}

.about-story {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--cream-dark);
}

.about-story p {
  margin-bottom: 1.2rem;
}

.about-story strong {
  color: var(--gold-light);
  font-weight: 600;
}

.about-features {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--cream-darker);
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(201, 162, 74, 0.15);
}

.about-feat .icon {
  color: var(--gold);
}

#specialties {
  background: var(--cream);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.spec-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(107, 26, 26, 0.1);
  transition: all 0.35s ease;
  position: relative;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(107, 26, 26, 0.15);
  border-color: rgba(196, 104, 26, 0.3);
}

.spec-card.featured {
  border: 2px solid var(--gold);
}

.spec-card.featured::before {
  content: "SIGNATURE";
  position: absolute;
  top: 14px;
  right: 0;
  background: var(--maroon);
  color: var(--gold-light);
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 4px 12px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
}

.spec-img-wrap {
  overflow: hidden;
  height: 210px;
}

.spec-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.spec-card:hover .spec-img {
  transform: scale(1.06);
}

.spec-body {
  padding: 1.4rem;
}

.spec-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--maroon-deep);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.spec-desc {
  font-size: 0.95rem;
  color: #5a3030;
  line-height: 1.6;
}

.spec-footer {
  padding: 0 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--kbc-red);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

#menu {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
}

#menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(160, 16, 16, 0.4) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#menu .section-title {
  color: var(--gold-light);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 3px;
  overflow: hidden;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.menu-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--cream-deeper);
  cursor: pointer;
  font-family: "Crimson Pro", serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  border-right: 1px solid rgba(201, 162, 74, 0.3);
}

.menu-tab:last-child {
  border-right: none;
}

.menu-tab.active {
  background: var(--maroon);
  color: var(--gold-light);
}

.menu-panel {
  display: none;
  position: relative;
  z-index: 1;
}

.menu-panel.active {
  display: block;
}

.menu-section-title {
  font-family: "Amiri", serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 162, 74, 0.2);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  margin-bottom: 2.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 3px;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: rgba(245, 237, 216, 0.55);
  font-style: italic;
}

.menu-item-tag {
  font-size: 0.7rem;
  background: rgba(196, 104, 26, 0.2);
  color: var(--orange-bright);
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid rgba(196, 104, 26, 0.3);
  white-space: nowrap;
  align-self: flex-start;
}

#gallery {
  background: #0f0202;
  padding-bottom: 60px;
}

#achievements {
  background: linear-gradient(135deg, #fff2ef 0%, #fff8f6 100%);
  position: relative;
  overflow: hidden;
}

#achievements::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 20% 20%,
    rgba(201, 162, 74, 0.12),
    transparent 60%
  );
  pointer-events: none;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.achievement-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(160, 16, 16, 0.1);
  box-shadow: 0 16px 30px rgba(120, 8, 8, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.achievement-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.achievement-card--link:focus {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(120, 8, 8, 0.18);
}

.achievement-media {
  position: relative;
  overflow: hidden;
}

.achievement-img,
.achievement-video {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.achievement-card:hover .achievement-img,
.achievement-card:hover .achievement-video {
  transform: scale(1.05);
}

.achievement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 10, 10, 0.78) 0%,
    rgba(26, 10, 10, 0.15) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.achievement-card:hover .achievement-overlay {
  opacity: 1;
}

.achievement-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(245, 205, 106, 0.5);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(120, 8, 8, 0.55);
}

.achievement-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin: 0;
}

.achievement-meta {
  color: rgba(255, 248, 248, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

#gallery .section-title {
  color: var(--gold-light);
}

.achievement-detail {
  background: linear-gradient(135deg, #fff2ef 0%, #fff8f6 100%);
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.achievement-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 20% 20%,
    rgba(201, 162, 74, 0.12),
    transparent 60%
  );
  pointer-events: none;
}

.achievement-detail__hero {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.achievement-detail__back {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--maroon-deep);
  font-weight: 600;
}

.achievement-detail__back:hover {
  color: var(--orange);
}

.achievement-detail__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7c2a0a;
  border: 1px solid rgba(124, 42, 10, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 222, 196, 0.7);
  margin-bottom: 0.8rem;
}

.achievement-detail__hero h1 {
  font-family: "Playfair Display", serif;
  color: var(--maroon-deep);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 0.8rem;
}

.achievement-detail__lead {
  color: var(--text-mid);
  font-style: italic;
  margin: 0;
}

.achievement-detail__grid {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.achievement-detail__media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(120, 8, 8, 0.2);
  display: block;
}

.achievement-detail__body {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(160, 16, 16, 0.12);
  border-radius: 16px;
  padding: 2rem;
  line-height: 1.8;
  color: #3a0b0b;
  box-shadow: 0 16px 30px rgba(120, 8, 8, 0.08);
}

.achievement-detail__body p {
  margin: 0 0 1rem;
}

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

@media (max-width: 900px) {
  .achievement-detail__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .achievement-detail {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .achievement-detail__body {
    padding: 1.5rem;
  }
}

#gallery .section-label {
  color: var(--gold);
}

#gallery .ornament-line::before,
#gallery .ornament-line::after {
  background: linear-gradient(to right, transparent, var(--gold));
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 10, 10, 0.75) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--cream);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 1px;
}

#reviews {
  background: #a01010;
  position: relative;
  overflow: hidden;
}

#reviews::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 3%;
  font-family: "Playfair Display", serif;
  font-size: 20rem;
  color: rgba(201, 162, 74, 0.05);
  line-height: 1;
  pointer-events: none;
}

#reviews .section-title {
  color: var(--gold-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 4px;
  padding: 1.8rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1.05rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.review-location {
  font-size: 0.8rem;
  color: rgba(245, 237, 216, 0.55);
}

#delivery {
  background: linear-gradient(180deg, #fff6f1 0%, #fffafa 100%);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.delivery-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid rgba(107, 26, 26, 0.12);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.delivery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(232, 184, 75, 0.18),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.delivery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 104, 26, 0.35);
  box-shadow: 0 18px 34px rgba(107, 26, 26, 0.12);
}

.delivery-card:hover::before {
  opacity: 1;
}

.delivery-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.delivery-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff8f2;
  border: 1px solid rgba(232, 184, 75, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-logo {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  display: block;
}

.delivery-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--maroon-deep);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.delivery-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--maroon);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Crimson Pro", serif;
  transition: background 0.3s ease;
}

.delivery-card:hover .delivery-cta {
  background: var(--maroon-light);
}

.delivery-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.delivery-card:hover .delivery-arrow {
  transform: translateX(4px);
}

#contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  background: #7d0a0a;
  border-radius: 4px;
  padding: 2.5rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-info-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(196, 104, 26, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-logo-big {
  font-family: "Amiri", serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-tagline {
  font-size: 0.85rem;
  color: var(--cream-deeper);
  letter-spacing: 2px;
  font-style: italic;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.contact-detail .icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail .info {
  flex: 1;
}

.contact-detail .label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-detail .val {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.4;
}

.contact-hours-note {
  opacity: 0.6;
  font-size: 0.85rem;
}

.contact-btns {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-call {
  background: var(--orange);
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 2px;
  font-family: "Crimson Pro", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.btn-call:hover {
  background: var(--orange-bright);
}

.btn-wa {
  background: #25d366;
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 2px;
  font-family: "Crimson Pro", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.btn-wa:hover {
  background: #1fb855;
}

.map-section {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.enquiry-form {
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid rgba(107, 26, 26, 0.1);
}

.enquiry-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--maroon-deep);
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0.8rem;
}

.form-field label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 10px 14px;
  border: 1.5px solid rgba(107, 26, 26, 0.2);
  border-radius: 2px;
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  background: var(--kbc-red);
  color: var(--cream);
  padding: 12px 28px;
  border: none;
  border-radius: 2px;
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--kbc-red-bright);
}

.shop-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 240px;
  overflow: hidden;
}

.shop-strip-item {
  position: relative;
  overflow: hidden;
}

.shop-strip-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.shop-strip-item:hover .shop-strip-img {
  transform: scale(1.06);
}

.shop-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(100, 8, 8, 0.85) 0%,
    transparent 100%
  );
  padding: 1rem;
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

footer {
  background: #0f0202;
  color: var(--cream-deeper);
  text-align: center;
  padding: 2.5rem 5%;
  border-top: 3px solid var(--kbc-red);
}

.footer-logo {
  font-family: "Amiri", serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-size: 0.85rem;
  color: rgba(245, 237, 216, 0.5);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(245, 237, 216, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 237, 216, 0.35);
  margin-top: 1rem;
}

.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.float-wa {
  background: #25d366;
  color: white;
  animation: pulse-green 2s infinite;
}

.float-call {
  background: var(--orange);
  color: white;
}

.float-btn:hover {
  transform: scale(1.1);
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .shop-strip {
    grid-template-columns: 1fr 1fr;
  }
  .shop-strip-item:last-child {
    display: none;
  }
}

@media (max-width: 700px) {
  nav {
    padding: 0 4%;
    height: 60px;
  }
  .nav-logo-img {
    height: 40px;
    width: 40px;
  }
  .nav-logo-text .name {
    font-size: 0.95rem;
  }
  .nav-logo-text .tagline {
    display: none;
  }
  .mobile-menu {
    top: 60px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 60px 4%;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .shop-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .shop-strip-item:last-child {
    display: block;
  }
  .shop-strip-img {
    height: 200px;
  }
  .delivery-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
  }
  .delivery-card {
    min-width: 240px;
    scroll-snap-align: start;
  }
  .achievements-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scroll-snap-type: x mandatory;
  }
  .achievement-card {
    min-width: 240px;
    scroll-snap-align: start;
  }
  .achievement-overlay {
    opacity: 1;
  }
}

@media (max-width: 380px) {
  .nav-logo-text .name {
    font-size: 0.82rem;
  }
  .nav-logo-img {
    height: 34px;
    width: 34px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .menu-tabs {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .menu-tab {
    min-width: 45%;
  }
  .contact-btns {
    flex-direction: column;
  }
  .btn-call,
  .btn-wa {
    width: 100%;
    justify-content: center;
  }
  .achievement-card {
    min-width: 220px;
  }
}

.footer-delivery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0.6rem 0 1.2rem;
  flex-wrap: wrap;
}

.footer-delivery a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 74, 0.2);
  transition: all 0.25s ease;
}

.footer-delivery img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.75;
  transition: all 0.25s ease;
}

.footer-delivery a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-delivery a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.footer-delivery a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.footer-logo-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.8rem;
  display: block;
  border: 3px solid rgba(232, 184, 75, 0.4);
  box-shadow: 0 4px 20px rgba(204, 27, 27, 0.35);
}
