:root {
  --cream: #f2ece4;
  --cream-deep: #e7ddd2;
  --orange: #c83010;
  --orange-dark: #8f260f;
  --text: #261712;
  --line: rgba(38, 23, 18, 0.16);
  --shadow: 0 24px 80px rgba(86, 35, 18, 0.18);
  --frame-width: min(1320px, calc(100% - 32px));
  --section-width: min(1400px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 11px 16px;
  background: var(--orange-dark);
  color: var(--cream);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 42px;
  z-index: 25;
  background: rgba(242, 236, 228, 0.88);
  border-bottom: 1px solid rgba(38, 23, 18, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.nav,
.hero-inner,
.section {
  width: var(--section-width);
  margin: 0 auto;
}

.nav {
  width: calc(100% - 40px);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0;
  height: 110px;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
  min-width: 0;
}

.nav-side-main {
  justify-content: flex-start;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  height: 100%;
  width: clamp(260px, 24vw, 380px);
  align-self: stretch;
  overflow: hidden;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo::after {
  display: none;
}

.nav-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-action-button::after {
  display: none;
}

.nav-whatsapp {
  background: var(--orange);
  color: var(--cream);
}

.nav-whatsapp:hover {
  background: var(--orange-dark);
}

.nav-maps {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(38, 23, 18, 0.18);
}

.nav-maps:hover {
  background: rgba(38, 23, 18, 0.06);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(72vh - 104px);
  background: linear-gradient(180deg, var(--cream) 0%, #efe4d8 100%);
}

.hero-slider,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: cover;
  animation: hero-carousel 12s infinite;
}

.slide-1 {
  background-image: url("./assets/img/img-36.jpg");
  background-position: center 62%;
  animation-delay: 0s;
}

.slide-2 {
  background-image: url("./assets/img/img-63.jpg");
  background-position: center 58%;
  animation-delay: 4s;
}

.slide-3 {
  background-image: url("./assets/img/img-3.jpg");
  background-position: center 56%;
  animation-delay: 8s;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(38, 23, 18, 0.72) 0%, rgba(38, 23, 18, 0.42) 42%, rgba(38, 23, 18, 0.24) 100%),
    linear-gradient(180deg, rgba(38, 23, 18, 0.14) 0%, rgba(38, 23, 18, 0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  min-height: calc(72vh - 104px);
  padding: 74px 0 58px;
  width: var(--frame-width);
}

.kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cream);
}

.kicker-light {
  color: rgba(242, 236, 228, 0.78);
}

h1,
h2,
h3 {
  font-family: "Archivo Black", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.95;
}

h1 {
  max-width: 8.8em;
  font-size: clamp(2.4rem, 5.7vw, 5.25rem);
}

h2 {
  font-size: clamp(1.72rem, 3.24vw, 3.24rem);
}

h3 {
  font-size: 1.02rem;
}

.hero-text,
.card p,
.split-layout p,
.contact-block p {
  font-size: 0.86rem;
  line-height: 1.7;
}

.hero-copy {
  color: var(--cream);
}

.hero-text {
  max-width: 34rem;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  color: var(--cream);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  background: rgba(242, 236, 228, 0.14);
  border: 1px solid rgba(242, 236, 228, 0.48);
  color: var(--cream);
}

.section {
  padding: 68px 0;
}

.section-light {
  background: var(--cream);
}

.section-accent {
  background: var(--orange);
  color: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.menu-kicker {
  color: var(--orange-dark);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flavor-card {
  overflow: hidden;
  border: 1px solid rgba(38, 23, 18, 0.28);
  border-radius: 16px;
  background: #f7f0e7;
  box-shadow: 0 12px 28px rgba(86, 35, 18, 0.1);
}

.flavor-card-category {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(145deg, rgba(200, 48, 16, 0.14) 0%, rgba(200, 48, 16, 0.04) 100%),
    #f7f0e7;
}

.flavor-card-category-brand {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f2ece4;
}

.flavor-card-category-brand::before {
  content:
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.\A"
    "UNO DE MIGA.";
  position: absolute;
  inset: -8px;
  color: rgba(200, 48, 16, 0.72);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 2.15vw, 2.85rem);
  line-height: 0.8;
  letter-spacing: 0;
  white-space: pre-wrap;
  word-break: break-word;
  opacity: 1;
  z-index: 0;
}

.flavor-card-category-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(242, 236, 228, 0.12) 0%, rgba(242, 236, 228, 0.28) 100%);
  z-index: 1;
}

.flavor-image {
  aspect-ratio: 1.45 / 0.9;
  padding: 12px 12px 0;
}

.flavor-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.flavor-body {
  padding: 12px 14px 16px;
  min-width: 0;
}

.flavor-card-category .flavor-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 24px 20px;
  position: relative;
  z-index: 3;
}

.flavor-card-category-brand .flavor-body {
  min-height: 280px;
  justify-content: flex-end;
  color: var(--orange-dark);
}

.flavor-card-category-brand .office-size,
.flavor-card-category-brand .flavor-body h3,
.flavor-card-category-brand .flavor-body p {
  background: rgba(242, 236, 228, 0.92);
  width: fit-content;
  max-width: 92%;
  padding-inline: 8px;
}

.flavor-card-category-brand .office-size {
  padding-top: 4px;
  padding-bottom: 2px;
}

.flavor-card-category-brand .flavor-body h3 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.flavor-card-category-brand .flavor-body p {
  padding-top: 4px;
  padding-bottom: 6px;
}

.flavor-card-category-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(200, 48, 16, 0.18) 0%, rgba(200, 48, 16, 0.02) 34%, transparent 58%),
    linear-gradient(145deg, rgba(143, 38, 15, 0.16) 0%, rgba(200, 48, 16, 0.08) 46%, rgba(242, 236, 228, 0.9) 100%),
    #f4ede5;
  border-color: rgba(143, 38, 15, 0.24);
}

.flavor-card-category-premium::before {
  content:
    "DE LA CASA\A"
    "DE LA CASA\A"
    "DE LA CASA\A"
    "DE LA CASA\A"
    "DE LA CASA\A"
    "DE LA CASA\A"
    "DE LA CASA.";
  position: absolute;
  inset: -4px 0 0 0;
  color: rgba(143, 38, 15, 0.16);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.45rem, 1.75vw, 2.2rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
  white-space: pre-wrap;
  z-index: 0;
}

.flavor-card-category-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 237, 229, 0.22) 0%, rgba(244, 237, 229, 0.44) 100%);
  z-index: 1;
}

.flavor-card-category-premium .flavor-body {
  min-height: 240px;
  justify-content: flex-end;
  color: var(--orange-dark);
}

.flavor-card-category-premium .office-size,
.flavor-card-category-premium .flavor-body h3,
.flavor-card-category-premium .flavor-body p {
  background: rgba(244, 237, 229, 0.9);
  width: fit-content;
  max-width: 92%;
  padding-inline: 8px;
}

.flavor-card-category-premium .office-size {
  padding-top: 4px;
  padding-bottom: 2px;
}

.flavor-card-category-premium .flavor-body h3 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.flavor-card-category-premium .flavor-body p {
  padding-top: 4px;
  padding-bottom: 6px;
}

.flavor-body h3 {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--text);
  overflow-wrap: anywhere;
}

.flavor-body p {
  min-height: 44px;
  margin: 8px 0 12px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(38, 23, 18, 0.82);
  overflow-wrap: anywhere;
}

.flavor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flavor-link:hover {
  background: var(--orange-dark);
}

.flavor-price {
  margin: 12px 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--orange-dark);
  align-self: flex-end;
  text-align: right;
}

.flavor-card-category .flavor-body p {
  min-height: 0;
  max-width: 18rem;
}

.office-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.office-copy {
  position: sticky;
  top: 160px;
}

.office-text {
  max-width: 32rem;
  margin: 18px 0 0;
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(38, 23, 18, 0.82);
}

.office-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.office-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(38, 23, 18, 0.12);
  background: rgba(200, 48, 16, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.office-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(38, 23, 18, 0.16);
  background: #f7f0e7;
  box-shadow: 0 16px 36px rgba(86, 35, 18, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.office-card-accent {
  grid-column: 1 / span 4;
  margin-top: 20px;
}

.office-card-offset {
  grid-column: 5 / span 4;
  margin-top: 64px;
}

.office-grid .office-card:last-child {
  grid-column: 9 / span 4;
  margin-top: 0;
}

.office-card-image {
  aspect-ratio: 1 / 1.12;
}

.office-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.office-size {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.office-card-body h3 {
  font-size: 1.2rem;
  color: var(--text);
}

.office-card-body p {
  margin: 10px 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(38, 23, 18, 0.82);
}

.office-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  margin-top: 16px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-link:hover {
  background: var(--orange-dark);
}

.catering-cta {
  display: grid;
  grid-template-columns: 1.14fr 1.6fr;
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(200, 48, 16, 0.08) 0%, rgba(200, 48, 16, 0.02) 100%);
  border: 1px solid rgba(38, 23, 18, 0.12);
  box-shadow: 0 16px 40px rgba(86, 35, 18, 0.08);
}

.catering-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  justify-content: space-between;
}

.catering-copy h2 {
  max-width: 10.5ch;
}

.catering-text {
  max-width: 39rem;
  margin: 14px 0 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(38, 23, 18, 0.82);
}

.catering-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: stretch;
  overflow: hidden;
  padding-bottom: 0;
  height: 100%;
}

.catering-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  min-height: 0;
  height: 100%;
  box-shadow: 0 12px 28px rgba(86, 35, 18, 0.12);
}

.catering-shot-large {
  min-height: 0;
  height: 100%;
}

.catering-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catering-shot-large img {
  object-position: center 56%;
}

.catering-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 38rem;
  padding: 14px;
  border-radius: 24px;
  background: var(--orange);
  color: var(--cream);
  margin-top: 18px;
}

.catering-label {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.28rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.catering-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(242, 236, 228, 0.88);
}

.catering-panel .button.primary {
  align-self: flex-start;
  background: var(--cream);
  color: var(--orange-dark);
}

.catering-panel .button.primary:hover {
  background: #fff7ee;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  width: 100%;
  max-width: none;
}

.contact-shell {
  width: min(1600px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.contact-copy {
  max-width: 40rem;
}

.contact-text {
  margin: 20px 0 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(242, 236, 228, 0.88);
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-button-primary {
  background: var(--cream);
  color: var(--orange-dark);
}

.contact-button-primary:hover {
  background: #fff7ee;
}

.contact-button-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242, 236, 228, 0.42);
}

.contact-button-secondary:hover {
  background: rgba(242, 236, 228, 0.08);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(242, 236, 228, 0.28);
}

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(242, 236, 228, 0.18);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 236, 228, 0.72);
}

.contact-item-inline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-item-inline .contact-label {
  margin-bottom: 0;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: var(--cream);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(0.82rem, 1.05vw, 1.08rem);
  line-height: 1.08;
  text-transform: uppercase;
  max-width: 28ch;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.floating-whatsapp-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.floating-whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.floating-maps {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #1f1f1f;
  box-shadow: 0 14px 30px rgba(31, 31, 31, 0.18);
}

.floating-maps:hover {
  transform: translateY(-2px);
}

.floating-maps-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.floating-maps-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1280px) {
  :root {
    --frame-width: min(1320px, calc(100% - 28px));
    --section-width: min(1400px, calc(100% - 32px));
  }

  .nav {
    height: 132px;
    font-size: 1.22rem;
    gap: 18px;
  }

  .nav-side {
    gap: 18px;
  }

  .nav-logo img {
    width: 100%;
  }

  .section {
    padding: 42px 0;
  }

  .office-layout,
  .catering-cta,
  .contact-shell {
    gap: 20px;
  }
}

@keyframes hero-carousel {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }

  8% {
    opacity: 1;
  }

  30% {
    opacity: 1;
    transform: scale(1.06);
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  :root {
    --frame-width: min(980px, calc(100% - 24px));
    --section-width: min(1120px, calc(100% - 28px));
  }

  .hero-inner,
  .split-layout,
  .office-layout,
  .catering-cta,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 36px;
    gap: 16px;
  }

  .section {
    padding: 36px 0;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(38, 23, 18, 0.44) 0%, rgba(38, 23, 18, 0.56) 100%);
  }

  .nav {
    grid-template-columns: auto minmax(0, 1fr);
    height: 112px;
    font-size: 0.98rem;
    gap: 14px;
  }

  .nav-side {
    gap: 14px;
    justify-content: flex-end;
  }

  .nav-actions {
    display: none;
  }

  .nav-logo {
    width: clamp(180px, 28vw, 250px);
  }

  .nav-logo img {
    width: 100%;
  }

  .floating-whatsapp,
  .floating-maps {
    display: inline-flex;
  }

  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flavor-image {
    aspect-ratio: 1.6 / 0.95;
  }

  .flavor-body h3 {
    font-size: 1.08rem;
  }

  .flavor-body p {
    min-height: 0;
  }

  .office-copy {
    position: static;
  }

  .office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .office-card-accent,
  .office-card-offset {
    margin-top: 0;
  }

  .office-card-accent,
  .office-card-offset,
  .office-grid .office-card:last-child {
    grid-column: auto;
  }

  .office-grid .office-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) 1.05fr;
    align-items: stretch;
  }

  .office-grid .office-card:last-child .office-card-image {
    aspect-ratio: auto;
    height: 100%;
  }

  .office-points {
    margin-bottom: 0;
  }

  .catering-gallery {
    order: 2;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(38, 23, 18, 0.22) transparent;
  }

  .catering-gallery::-webkit-scrollbar {
    height: 6px;
  }

  .catering-gallery::-webkit-scrollbar-thumb {
    background: rgba(38, 23, 18, 0.22);
    border-radius: 999px;
  }

  .catering-shot,
  .catering-shot-large {
    min-height: 240px;
    scroll-snap-align: start;
  }

  .catering-copy {
    display: contents;
  }

  .catering-text {
    margin-bottom: 0;
  }

  .catering-panel {
    order: 3;
    margin-top: 10px;
  }

  .contact-details {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(242, 236, 228, 0.24);
    padding-top: 18px;
  }
}

@media (max-width: 720px) {
  :root {
    --frame-width: min(720px, calc(100% - 20px));
    --section-width: min(760px, calc(100% - 20px));
  }

  .topbar {
    position: relative;
    top: auto;
    font-size: 0.62rem;
    padding: 10px 12px;
  }

  .site-header {
    top: 0;
  }

  .nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    font-size: 0.72rem;
    padding: 0 10px;
    height: 96px;
    align-items: center;
  }

  .nav-side {
    gap: 14px;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-side::-webkit-scrollbar {
    display: none;
  }

  .nav-side a {
    flex: 0 0 auto;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    line-height: 1;
  }

  .nav-logo img {
    width: 100%;
    height: 100%;
  }

  .nav-logo {
    position: static;
    width: clamp(130px, 28vw, 190px);
    height: 88px;
    justify-self: start;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 32px 0 30px;
  }

  .hero-copy h1 {
    max-width: 9.5em;
    font-size: clamp(2.4rem, 11vw, 4.2rem);
  }

  .hero-text {
    max-width: 24rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .flavor-grid {
    grid-template-columns: 1fr;
  }

  .flavor-card {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: stretch;
    border-radius: 22px;
    min-height: 100%;
  }

  .flavor-card-category {
    display: block;
  }

  .office-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .office-copy {
    max-width: 100%;
  }

  .office-points {
    gap: 8px;
  }

  .office-points span {
    min-height: 34px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .flavor-image {
    aspect-ratio: 1.35 / 1;
    padding: 0;
    height: 100%;
  }

  .flavor-image img {
    height: 100%;
    border-radius: 0;
  }

  .flavor-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: flex-start;
  }

  .flavor-card-category .flavor-body {
    padding: 18px 18px 20px;
  }

  .flavor-card-category-brand .flavor-body {
    min-height: 0;
  }

  .flavor-card-category-brand {
    background:
      linear-gradient(145deg, rgba(200, 48, 16, 0.14) 0%, rgba(200, 48, 16, 0.04) 100%),
      #f7f0e7;
  }

  .flavor-card-category-premium {
    background:
      linear-gradient(145deg, rgba(143, 38, 15, 0.14) 0%, rgba(200, 48, 16, 0.05) 100%),
      #f7f0e7;
  }

  .flavor-card-category-brand::before,
  .flavor-card-category-brand::after,
  .flavor-card-category-premium::before,
  .flavor-card-category-premium::after {
    display: none;
  }

  .flavor-card-category-brand .office-size,
  .flavor-card-category-brand .flavor-body h3,
  .flavor-card-category-brand .flavor-body p,
  .flavor-card-category-premium .office-size,
  .flavor-card-category-premium .flavor-body h3,
  .flavor-card-category-premium .flavor-body p {
    background: transparent;
    max-width: 100%;
    padding-inline: 0;
  }

  .flavor-card-category-premium .flavor-body {
    min-height: 0;
  }

  .flavor-body h3 {
    font-size: 1.08rem;
    line-height: 0.98;
  }

  .flavor-body p {
    font-size: 0.8rem;
    margin: 8px 0 0;
    line-height: 1.4;
  }

  .flavor-price {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .office-card-image {
    aspect-ratio: 1.35 / 1;
  }

  .office-card,
  .office-grid .office-card:last-child {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: stretch;
  }

  .office-grid .office-card:last-child {
    grid-column: auto;
  }

  .office-card-image,
  .office-grid .office-card:last-child .office-card-image {
    aspect-ratio: auto;
    height: 100%;
    order: 1;
  }

  .office-card-body {
    padding: 14px 16px;
    text-align: left;
    align-items: flex-start;
    order: 2;
  }

  .office-card-body h3 {
    font-size: 1.25rem;
    line-height: 0.98;
  }

  .office-card-body p {
    font-size: 0.86rem;
    margin-top: 8px;
  }

  .office-link {
    margin-top: 14px;
  }

  .office-copy h2,
  .catering-copy h2 {
    max-width: 8em;
  }

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

  .catering-shot,
  .catering-shot-large {
    min-height: 220px;
  }

  .contact-copy h2 {
    max-width: 7em;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .contact-text {
    font-size: 0.98rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-item a,
  .contact-item p {
    font-size: 1.1rem;
    line-height: 1.04;
  }

  .floating-whatsapp {
    display: inline-flex;
  }

  .floating-maps {
    display: inline-flex;
  }

  .section {
    padding: 32px 0;
  }
}

@media (max-width: 560px) {
  :root {
    --frame-width: calc(100% - 18px);
    --section-width: calc(100% - 18px);
  }

  .topbar {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 9px 10px;
  }

  .nav {
    gap: 6px;
    padding: 0 8px;
    height: 82px;
  }

  .nav-side {
    gap: 6px;
    text-align: left;
  }

  .nav-side a {
    padding-bottom: 1px;
    font-size: 0.68rem;
    letter-spacing: 0.015em;
  }

  .nav-logo img {
    width: 100%;
    height: 100%;
  }

  .nav-logo {
    width: 118px;
    height: 74px;
  }

  .hero-inner {
    padding: 27px 0 26px;
  }

  .section {
    padding: 27px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-text {
    font-size: 0.92rem;
  }

  .section-heading h2,
  .office-copy h2,
  .catering-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .flavor-card {
    grid-template-columns: 55% 45%;
    border-radius: 18px;
  }

  .flavor-card-category {
    grid-template-columns: 1fr;
  }

  .flavor-image {
    aspect-ratio: 1.25 / 1;
    padding: 0;
    height: 100%;
  }

  .flavor-body {
    padding: 16px;
  }

  .flavor-card-category .flavor-body {
    padding: 16px;
  }

  .flavor-card-category-brand .flavor-body {
    min-height: 0;
  }

  .flavor-card-category-premium .flavor-body {
    min-height: 0;
  }

  .flavor-body h3 {
    font-size: 0.92rem;
    line-height: 0.98;
  }

  .flavor-body p {
    font-size: 0.71rem;
    line-height: 1.3;
  }

  .flavor-body .office-size {
    font-size: 0.64rem;
  }

  .flavor-price {
    margin-top: 12px;
    font-size: 0.8rem;
  }

  .office-card-body,
  .catering-panel {
    padding: 16px;
  }

  .office-card,
  .office-grid .office-card:last-child {
    grid-template-columns: 55% 45%;
  }

  .office-card {
    border-radius: 18px;
  }

  .office-card-image,
  .office-grid .office-card:last-child .office-card-image {
    aspect-ratio: 1.25 / 1;
  }

  .office-size {
    font-size: 0.7rem;
  }

  .office-card-body h3 {
    font-size: 0.98rem;
  }

  .office-card-body p {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .office-link {
    width: 100%;
    justify-content: center;
    min-height: 30px;
    margin-top: 12px;
    font-size: 0.64rem;
    padding: 0 10px;
  }

  .catering-copy {
    display: contents;
  }

  .catering-text {
    margin-bottom: 0;
  }

  .catering-gallery {
    order: 2;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .catering-gallery::-webkit-scrollbar {
    height: 6px;
  }

  .catering-gallery::-webkit-scrollbar-thumb {
    background: rgba(38, 23, 18, 0.22);
    border-radius: 999px;
  }

  .catering-shot,
  .catering-shot-large {
    min-height: 180px;
    grid-row: auto;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .catering-panel {
    order: 3;
    margin-top: 18px;
  }

  .contact-item a,
  .contact-item p {
    font-size: 0.98rem;
  }
}

@media (max-width: 460px) {
  .flavor-card {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .flavor-image {
    aspect-ratio: 1.2 / 1;
  }

  .flavor-body {
    padding: 14px 13px 15px;
  }

  .flavor-body h3 {
    font-size: 0.9rem;
  }

  .flavor-body p {
    font-size: 0.7rem;
    line-height: 1.28;
  }

  .flavor-body .office-size {
    font-size: 0.62rem;
  }

  .flavor-price {
    font-size: 0.78rem;
  }

  .office-card,
  .office-grid .office-card:last-child {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .office-card-image,
  .office-grid .office-card:last-child .office-card-image {
    aspect-ratio: 1.2 / 1;
  }

  .office-card-body {
    padding: 14px 13px 15px;
  }

  .office-card-body h3 {
    font-size: 0.9rem;
  }

  .office-card-body p {
    font-size: 0.7rem;
    line-height: 1.28;
  }

  .office-link {
    min-height: 30px;
    font-size: 0.62rem;
    padding: 0 10px;
  }
}

@media (max-width: 430px) {
  .office-grid {
    gap: 12px;
  }

  .office-card,
  .office-grid .office-card:last-child {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .office-card-image,
  .office-grid .office-card:last-child .office-card-image {
    aspect-ratio: 1.45 / 0.78;
    height: auto;
    order: 1;
  }

  .office-card-body {
    order: 2;
    padding: 14px 14px 16px;
  }

  .office-card-body h3 {
    font-size: 1rem;
    line-height: 1;
  }

  .office-card-body p {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .office-link {
    min-height: 32px;
    margin-top: 12px;
    font-size: 0.66rem;
  }
}

@media (max-width: 410px) {
  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .flavor-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .flavor-card-category {
    grid-column: 1 / -1;
  }

  .flavor-image {
    aspect-ratio: 1.15 / 0.78;
    height: auto;
  }

  .flavor-body {
    padding: 12px 12px 14px;
  }

  .flavor-card-category .flavor-body {
    padding: 14px 14px 16px;
  }

  .flavor-body h3 {
    font-size: 0.82rem;
    line-height: 1.02;
  }

  .flavor-body p {
    font-size: 0.66rem;
    line-height: 1.25;
    min-height: 0;
  }

  .flavor-body .office-size {
    margin-bottom: 6px;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .flavor-price {
    margin-top: 10px;
    font-size: 0.72rem;
  }
}

@media (max-width: 400px) {
  :root {
    --frame-width: calc(100% - 14px);
    --section-width: calc(100% - 14px);
  }

  .nav {
    gap: 6px;
    height: 72px;
    font-size: 0.62rem;
    padding: 0 6px;
  }

  .nav-side {
    gap: 10px;
  }

  .nav-side a {
    font-size: 0.61rem;
    letter-spacing: 0.02em;
  }

  .nav-logo img {
    width: 100%;
    height: 100%;
  }

  .nav-logo {
    width: 96px;
    height: 62px;
  }
}
