:root {
  --bg: #fff8f0;
  --bg-soft: rgba(255, 157, 138, 0.18);
  --bg-strong: #ff9d8a;
  --surface: #fff8f0;
  --surface-alt: rgba(255, 157, 138, 0.12);
  --text: #2b101c;
  --text-soft: #840843;
  --muted: rgba(132, 8, 67, 0.72);
  --primary: #cd473b;
  --primary-dark: #840843;
  --secondary: #ff9d8a;
  --accent: #ff9d8a;
  --line: rgba(43, 16, 28, 0.14);
  --shadow: 0 18px 45px rgba(43, 16, 28, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 157, 138, 0.24);
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.section-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--surface);
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  margin: 0 auto;
  position: relative;
  transition: all 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span::after {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  background: linear-gradient(180deg, rgba(255, 157, 138, 0.2), rgba(255, 248, 240, 0.8));
  padding: 70px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary-dark);
  background: rgba(255, 157, 138, 0.2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.72rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-copy h1 .highlight {
  color: var(--primary-dark);
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin: 20px 0 30px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--surface);
  box-shadow: 0 16px 22px rgba(132, 8, 67, 0.2);
}

.btn-secondary {
  border-color: rgba(132, 8, 67, 0.25);
  background: rgba(255, 248, 240, 0.6);
  color: var(--text);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat-box {
  min-width: 125px;
  background: rgba(255, 248, 240, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
}

.stat-box strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.1;
}

.stat-box span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.feature-card {
  position: absolute;
  background: rgba(255, 248, 240, 0.88);
  border: 1px solid rgba(43, 16, 28, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.feature-card.top {
  right: 30px;
  top: 0;
  width: 180px;
}

.feature-card.bottom {
  left: 0;
  bottom: 24px;
  width: 215px;
}

.feature-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
}

.feature-card .label {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--text);
}

.hero-image-main {
  position: absolute;
  inset: 40px 60px 40px 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(43, 16, 28, 0.22);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid,
.chef-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.about-image,
.chef-visual {
  border-radius: 28px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: var(--shadow);
}

.about-image img,
.chef-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h3,
.chef-copy h3,
.contact-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.about-copy p,
.chef-copy p,
.contact-card p,
.contact-list li,
.card-info p {
  color: var(--text-soft);
}

.points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.points li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 157, 138, 0.24);
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.chef-section {
  background: linear-gradient(180deg, var(--surface-alt), rgba(255, 248, 240, 0.6));
}

.chef-copy {
  padding-left: 10px;
}

.signature {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--primary-dark);
  font-size: 1.6rem;
  font-style: italic;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 310px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card .caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(43, 16, 28, 0.62);
  color: var(--surface);
  backdrop-filter: blur(4px);
}

.gallery-card .caption span {
  font-weight: 700;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(255, 157, 138, 0.24), rgba(132, 8, 67, 0.1));
  border: 1px solid rgba(132, 8, 67, 0.18);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-banner h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.cta-banner p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.page-hero {
  padding: 72px 0 30px;
  background: linear-gradient(180deg, rgba(255, 157, 138, 0.2), rgba(255, 248, 240, 0.7));
}

.page-hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-inner h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-hero-inner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.menu-card,
.contact-card,
.gallery-item {
  background: rgba(255, 248, 240, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-card {
  padding: 28px;
}

.card-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-dark);
  background: rgba(255, 157, 138, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.card-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(43, 16, 28, 0.12);
  padding-bottom: 11px;
  color: var(--text-soft);
}

.card-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.card-list strong {
  color: var(--text);
}

.card-list span {
  font-weight: 700;
  color: var(--primary-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-item .caption {
  padding: 16px 18px 18px;
}

.gallery-item .caption h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.contact-grid {
  gap: 24px;
}

.contact-card {
  padding: 30px;
}

.contact-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 157, 138, 0.2);
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.contact-list a {
  color: var(--primary-dark);
  font-weight: 600;
}

.footer {
  padding: 24px 0 42px;
  text-align: center;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.7);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1000;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #32d35a, #1ab453);
  color: var(--surface);
  box-shadow: 0 18px 30px rgba(29, 177, 80, 0.35);
  font-size: 1.8rem;
}

@media (max-width: 880px) {
  .hero-grid,
  .about-grid,
  .chef-grid,
  .menu-layout,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
  }

  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px;
    background: rgba(255, 248, 240, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 8px;
    width: 100%;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-image-main {
    inset: 32px 0 20px 0;
  }

  .feature-card.top {
    right: 12px;
    top: 0;
    width: 140px;
  }

  .feature-card.bottom {
    left: 10px;
    bottom: 0;
    width: 170px;
  }

  .gallery-preview,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
  }
}
