/* Fırın Ustası — Fırın & Pastane */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bm-cream: #f7efe3;
  --bm-brown: #5c3d2e;
  --bm-gold: #c9a24b;
  --bm-gold-dark: #a8843a;
  --bm-white: #fffdf9;
  --bm-text: #3d2a1f;
  --bm-text-light: #6b5244;
  --bm-shadow: rgba(92, 61, 46, 0.12);
  --bm-radius: 16px;
  --bm-radius-sm: 10px;
  --bm-font-serif: Georgia, "Times New Roman", serif;
  --bm-font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --bm-transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bm-font-sans);
  background: var(--bm-cream);
  color: var(--bm-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--bm-brown);
  text-decoration: none;
  transition: color var(--bm-transition);
}

a:hover {
  color: var(--bm-gold);
}

.bm-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.bm-header {
  background: var(--bm-white);
  border-bottom: 2px solid rgba(201, 162, 75, 0.25);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.bm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bm-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bm-logo__icon {
  width: 48px;
  height: 48px;
  background: var(--bm-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bm-gold);
  font-size: 1.4rem;
}

.bm-logo__text {
  font-family: var(--bm-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bm-brown);
  line-height: 1.2;
}

.bm-logo__tagline {
  font-size: 0.75rem;
  color: var(--bm-text-light);
  font-family: var(--bm-font-sans);
  font-weight: 400;
}

.bm-header__contact {
  text-align: right;
  font-size: 0.85rem;
  color: var(--bm-text-light);
}

.bm-header__contact a {
  color: var(--bm-brown);
  font-weight: 600;
}

/* Hero */
.bm-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.bm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 61, 46, 0.82) 0%, rgba(92, 61, 46, 0.45) 100%);
  z-index: 1;
}

.bm-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  color: var(--bm-white);
}

.bm-hero__badge {
  display: inline-block;
  background: var(--bm-gold);
  color: var(--bm-brown);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bm-hero__title {
  font-family: var(--bm-font-serif);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 600px;
}

.bm-hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 520px;
  margin-bottom: 32px;
}

.bm-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--bm-transition);
  font-family: var(--bm-font-sans);
}

.bm-btn--primary {
  background: var(--bm-gold);
  color: var(--bm-brown);
}

.bm-btn--primary:hover {
  background: var(--bm-gold-dark);
  color: var(--bm-white);
  transform: translateY(-2px);
}

.bm-btn--outline {
  background: transparent;
  color: var(--bm-white);
  border: 2px solid var(--bm-white);
}

.bm-btn--outline:hover {
  background: var(--bm-white);
  color: var(--bm-brown);
}

.bm-btn--brown {
  background: var(--bm-brown);
  color: var(--bm-white);
}

.bm-btn--brown:hover {
  background: var(--bm-gold-dark);
}

.bm-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Sections */
.bm-section {
  padding: 72px 0;
}

.bm-section--alt {
  background: var(--bm-white);
}

.bm-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.bm-section__label {
  display: inline-block;
  color: var(--bm-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.bm-section__title {
  font-family: var(--bm-font-serif);
  font-size: 2.2rem;
  color: var(--bm-brown);
  margin-bottom: 12px;
}

.bm-section__desc {
  color: var(--bm-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* Specials */
.bm-specials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bm-special {
  background: var(--bm-white);
  border-radius: var(--bm-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--bm-shadow);
  transition: transform var(--bm-transition);
}

.bm-special:hover {
  transform: translateY(-4px);
}

.bm-special__img {
  height: 180px;
  overflow: hidden;
}

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

.bm-special__body {
  padding: 20px;
}

.bm-special__tag {
  font-size: 0.75rem;
  color: var(--bm-gold);
  font-weight: 700;
  text-transform: uppercase;
}

.bm-special__name {
  font-family: var(--bm-font-serif);
  font-size: 1.2rem;
  color: var(--bm-brown);
  margin: 6px 0;
}

.bm-special__price {
  font-weight: 700;
  color: var(--bm-gold-dark);
  font-size: 1.1rem;
}

/* Category cards */
.bm-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bm-category {
  background: var(--bm-white);
  border-radius: var(--bm-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 16px var(--bm-shadow);
  transition: all var(--bm-transition);
  border: 2px solid transparent;
}

.bm-category:hover {
  border-color: var(--bm-gold);
  transform: translateY(-3px);
}

.bm-category__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.bm-category__title {
  font-family: var(--bm-font-serif);
  font-size: 1.15rem;
  color: var(--bm-brown);
  margin-bottom: 8px;
}

.bm-category__desc {
  font-size: 0.85rem;
  color: var(--bm-text-light);
}

/* Story */
.bm-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bm-story__img {
  border-radius: var(--bm-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--bm-shadow);
}

.bm-story__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.bm-story__text h2 {
  font-family: var(--bm-font-serif);
  font-size: 2rem;
  color: var(--bm-brown);
  margin-bottom: 16px;
}

.bm-story__text p {
  color: var(--bm-text-light);
  margin-bottom: 16px;
}

.bm-story__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.bm-stat__num {
  font-family: var(--bm-font-serif);
  font-size: 2rem;
  color: var(--bm-gold);
  font-weight: 700;
}

.bm-stat__label {
  font-size: 0.85rem;
  color: var(--bm-text-light);
}

/* Gallery */
.bm-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bm-gallery__item {
  border-radius: var(--bm-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.bm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bm-gallery__item:hover img {
  transform: scale(1.05);
}

/* Reviews */
.bm-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bm-review {
  background: var(--bm-white);
  border-radius: var(--bm-radius);
  padding: 28px;
  box-shadow: 0 4px 16px var(--bm-shadow);
}

.bm-review__stars {
  color: var(--bm-gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.bm-review__text {
  font-style: italic;
  color: var(--bm-text-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.bm-review__author {
  font-weight: 700;
  color: var(--bm-brown);
  font-size: 0.9rem;
}

/* Hours CTA */
.bm-hours-cta {
  background: var(--bm-brown);
  color: var(--bm-white);
  border-radius: var(--bm-radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.bm-hours-cta h2 {
  font-family: var(--bm-font-serif);
  font-size: 2rem;
  margin-bottom: 12px;
}

.bm-hours-cta p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.bm-hours-table {
  width: 100%;
}

.bm-hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bm-hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
}

.bm-hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

/* Page hero (subpages) */
.bm-page-hero {
  background: var(--bm-brown);
  color: var(--bm-white);
  padding: 56px 0;
  text-align: center;
}

.bm-page-hero h1 {
  font-family: var(--bm-font-serif);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.bm-page-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
}

/* Product filter */
.bm-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bm-filter__btn {
  padding: 10px 24px;
  border-radius: 24px;
  border: 2px solid var(--bm-brown);
  background: transparent;
  color: var(--bm-brown);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--bm-font-sans);
  font-size: 0.9rem;
  transition: all var(--bm-transition);
}

.bm-filter__btn:hover,
.bm-filter__btn.bm-filter__btn--active {
  background: var(--bm-brown);
  color: var(--bm-white);
}

/* Products grid */
.bm-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bm-product {
  background: var(--bm-white);
  border-radius: var(--bm-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--bm-shadow);
  transition: opacity var(--bm-transition), transform var(--bm-transition);
}

.bm-product.bm-hidden {
  display: none;
}

.bm-product:hover {
  transform: translateY(-3px);
}

.bm-product__img {
  height: 200px;
  overflow: hidden;
}

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

.bm-product__body {
  padding: 20px;
}

.bm-product__cat {
  font-size: 0.75rem;
  color: var(--bm-gold);
  font-weight: 700;
  text-transform: uppercase;
}

.bm-product__name {
  font-family: var(--bm-font-serif);
  font-size: 1.15rem;
  color: var(--bm-brown);
  margin: 6px 0 8px;
}

.bm-product__desc {
  font-size: 0.85rem;
  color: var(--bm-text-light);
  margin-bottom: 12px;
}

.bm-product__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bm-gold-dark);
}

/* About page */
.bm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.bm-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bm-value {
  background: var(--bm-white);
  border-radius: var(--bm-radius);
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 16px var(--bm-shadow);
}

.bm-value__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.bm-value__title {
  font-family: var(--bm-font-serif);
  color: var(--bm-brown);
  margin-bottom: 8px;
}

.bm-value__text {
  font-size: 0.9rem;
  color: var(--bm-text-light);
}

.bm-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.bm-team__card {
  background: var(--bm-white);
  border-radius: var(--bm-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--bm-shadow);
}

.bm-team__card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.bm-team__info {
  padding: 24px;
}

.bm-team__name {
  font-family: var(--bm-font-serif);
  font-size: 1.2rem;
  color: var(--bm-brown);
}

.bm-team__role {
  color: var(--bm-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Contact */
.bm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.bm-contact-info {
  background: var(--bm-white);
  border-radius: var(--bm-radius);
  padding: 32px;
  box-shadow: 0 4px 16px var(--bm-shadow);
}

.bm-contact-info h3 {
  font-family: var(--bm-font-serif);
  color: var(--bm-brown);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.bm-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.bm-contact-item__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.bm-contact-item__label {
  font-size: 0.8rem;
  color: var(--bm-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bm-contact-item__value {
  font-weight: 600;
  color: var(--bm-brown);
}

.bm-form {
  background: var(--bm-white);
  border-radius: var(--bm-radius);
  padding: 32px;
  box-shadow: 0 4px 16px var(--bm-shadow);
}

.bm-form h3 {
  font-family: var(--bm-font-serif);
  color: var(--bm-brown);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.bm-form__group {
  margin-bottom: 18px;
}

.bm-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bm-brown);
  margin-bottom: 6px;
}

.bm-form__input,
.bm-form__textarea,
.bm-form__select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(92, 61, 46, 0.15);
  border-radius: var(--bm-radius-sm);
  font-family: var(--bm-font-sans);
  font-size: 0.95rem;
  background: var(--bm-cream);
  color: var(--bm-text);
  transition: border-color var(--bm-transition);
}

.bm-form__input:focus,
.bm-form__textarea:focus,
.bm-form__select:focus {
  outline: none;
  border-color: var(--bm-gold);
}

.bm-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.bm-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--bm-text-light);
}

.bm-form__checkbox input {
  margin-top: 3px;
}

.bm-form__msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--bm-radius-sm);
  font-size: 0.9rem;
  display: none;
}

.bm-form__msg--success {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}

.bm-map {
  margin-top: 48px;
  border-radius: var(--bm-radius);
  overflow: hidden;
  height: 300px;
  background: var(--bm-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bm-white);
  font-size: 0.95rem;
}

/* Privacy */
.bm-privacy {
  max-width: 800px;
  margin: 0 auto;
}

.bm-privacy h2 {
  font-family: var(--bm-font-serif);
  color: var(--bm-brown);
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.bm-privacy h3 {
  color: var(--bm-brown);
  font-size: 1.1rem;
  margin: 20px 0 8px;
}

.bm-privacy p,
.bm-privacy li {
  color: var(--bm-text-light);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.bm-privacy ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* Footer */
.bm-footer {
  background: var(--bm-brown);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 24px;
  margin-top: auto;
}

.bm-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.bm-footer__brand {
  font-family: var(--bm-font-serif);
  font-size: 1.4rem;
  color: var(--bm-white);
  margin-bottom: 12px;
}

.bm-footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
}

.bm-footer h4 {
  color: var(--bm-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.bm-footer ul {
  list-style: none;
}

.bm-footer li {
  margin-bottom: 8px;
}

.bm-footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

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

.bm-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* Cookie banner */
.bm-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bm-brown);
  color: var(--bm-white);
  padding: 20px 24px;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.bm-cookie.bm-cookie--visible {
  transform: translateY(0);
}

.bm-cookie__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bm-cookie__text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 280px;
}

.bm-cookie__text a {
  color: var(--bm-gold);
  text-decoration: underline;
}

.bm-cookie__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.bm-cookie__btn {
  padding: 10px 24px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--bm-font-sans);
  font-size: 0.85rem;
  transition: all var(--bm-transition);
}

.bm-cookie__btn--accept {
  background: var(--bm-gold);
  color: var(--bm-brown);
}

.bm-cookie__btn--accept:hover {
  background: var(--bm-gold-dark);
  color: var(--bm-white);
}

.bm-cookie__btn--decline {
  background: transparent;
  color: var(--bm-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.bm-cookie__btn--decline:hover {
  border-color: var(--bm-white);
}

/* Radial FAB Menu */
.bm-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
}

.bm-fab__toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bm-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(92, 61, 46, 0.35);
  transition: all var(--bm-transition);
  position: relative;
  z-index: 2;
}

.bm-fab__toggle:hover {
  background: var(--bm-gold-dark);
  transform: scale(1.05);
}

.bm-fab__toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.bm-fab__toggle-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bm-brown);
  position: absolute;
  left: 1px;
  transition: all var(--bm-transition);
}

.bm-fab__toggle-icon span:nth-child(1) {
  top: 4px;
}

.bm-fab__toggle-icon span:nth-child(2) {
  top: 11px;
}

.bm-fab__toggle-icon span:nth-child(3) {
  top: 18px;
}

.bm-fab.bm-fab--open .bm-fab__toggle-icon span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.bm-fab.bm-fab--open .bm-fab__toggle-icon span:nth-child(2) {
  opacity: 0;
}

.bm-fab.bm-fab--open .bm-fab__toggle-icon span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.bm-fab__menu {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 0;
  height: 0;
  pointer-events: none;
}

.bm-fab.bm-fab--open .bm-fab__menu {
  pointer-events: auto;
}

.bm-fab__link {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bm-brown);
  color: var(--bm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 3px 12px rgba(92, 61, 46, 0.3);
  opacity: 0;
  transform: scale(0);
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  white-space: nowrap;
  padding: 4px;
}

.bm-fab__link:hover {
  background: var(--bm-gold);
  color: var(--bm-brown);
}

.bm-fab.bm-fab--open .bm-fab__link {
  opacity: 1;
  transform: scale(1);
}

.bm-fab.bm-fab--open .bm-fab__link:nth-child(1) {
  transform: translate(-10px, -100px) scale(1);
  transition-delay: 0.05s;
}

.bm-fab.bm-fab--open .bm-fab__link:nth-child(2) {
  transform: translate(-75px, -75px) scale(1);
  transition-delay: 0.1s;
}

.bm-fab.bm-fab--open .bm-fab__link:nth-child(3) {
  transform: translate(-100px, -10px) scale(1);
  transition-delay: 0.15s;
}

.bm-fab.bm-fab--open .bm-fab__link:nth-child(4) {
  transform: translate(-90px, 50px) scale(1);
  transition-delay: 0.2s;
}

.bm-fab__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(92, 61, 46, 0.3);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--bm-transition);
}

.bm-fab__backdrop.bm-fab__backdrop--visible {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive — 1024px */
@media (max-width: 1024px) {
  .bm-hero__title {
    font-size: 2.4rem;
  }

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

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

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

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

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

  .bm-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Responsive — 768px */
@media (max-width: 768px) {
  .bm-header__contact {
    display: none;
  }

  .bm-hero {
    min-height: 420px;
  }

  .bm-hero__title {
    font-size: 2rem;
  }

  .bm-section {
    padding: 48px 0;
  }

  .bm-section__title {
    font-size: 1.8rem;
  }

  .bm-story {
    grid-template-columns: 1fr;
  }

  .bm-story__img img {
    height: 280px;
  }

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

  .bm-reviews {
    grid-template-columns: 1fr;
  }

  .bm-hours-cta {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .bm-about-grid,
  .bm-contact-grid {
    grid-template-columns: 1fr;
  }

  .bm-team {
    grid-template-columns: 1fr;
  }

  .bm-footer__grid {
    grid-template-columns: 1fr;
  }

  .bm-specials {
    grid-template-columns: 1fr;
  }

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

  .bm-products {
    grid-template-columns: 1fr;
  }

  .bm-values {
    grid-template-columns: 1fr;
  }

  .bm-fab.bm-fab--open .bm-fab__link:nth-child(1) {
    transform: translate(-5px, -85px) scale(1);
  }

  .bm-fab.bm-fab--open .bm-fab__link:nth-child(2) {
    transform: translate(-60px, -60px) scale(1);
  }

  .bm-fab.bm-fab--open .bm-fab__link:nth-child(3) {
    transform: translate(-85px, -5px) scale(1);
  }

  .bm-fab.bm-fab--open .bm-fab__link:nth-child(4) {
    transform: translate(-75px, 45px) scale(1);
  }
}

/* Responsive — 480px */
@media (max-width: 480px) {
  .bm-container {
    padding: 0 16px;
  }

  .bm-logo__text {
    font-size: 1.2rem;
  }

  .bm-hero__title {
    font-size: 1.65rem;
  }

  .bm-hero__subtitle {
    font-size: 1rem;
  }

  .bm-hero__actions {
    flex-direction: column;
  }

  .bm-btn {
    text-align: center;
    width: 100%;
  }

  .bm-categories {
    grid-template-columns: 1fr;
  }

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

  .bm-filter__btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .bm-cookie__inner {
    flex-direction: column;
    text-align: center;
  }

  .bm-fab {
    bottom: 16px;
    right: 16px;
  }

  .bm-page-hero h1 {
    font-size: 1.8rem;
  }

  .bm-story__stats {
    flex-direction: column;
    gap: 16px;
  }
}
