:root {
  --cream: #f6efe5;
  --paper: #fbf6ee;
  --terracotta: #bf592f;
  --terracotta-dark: #973f1d;
  --olive: #5e6740;
  --olive-dark: #374028;
  --brown: #4a3328;
  --wine: #6c2e2c;
  --text: #2b211c;
  --muted: #71635c;
  --white: #fffaf4;
  --line: rgba(74, 51, 40, 0.14);
  --shadow: 0 24px 60px rgba(53, 35, 24, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(191, 89, 47, 0.08), transparent 20%),
    radial-gradient(circle at 90% 40%, rgba(94, 103, 64, 0.08), transparent 22%),
    linear-gradient(135deg, var(--paper), var(--cream));
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(74, 51, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 51, 40, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
  z-index: -1;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 145px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 190px;
  max-width: 190px;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--brown);
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.menu a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(74, 51, 40, 0.14);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
}

.btn-outline {
  border-color: rgba(74, 51, 40, 0.22);
  color: var(--brown);
  background: rgba(255, 250, 244, 0.55);
}

.btn-light {
  background: var(--paper);
  color: var(--olive-dark);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--brown);
  width: 24px;
  margin: 0 auto;
}

.hero {
  padding: 40px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  min-height: 620px;
}

.hero-copy {
  padding: 64px 52px;
  background:
    linear-gradient(90deg, rgba(251, 246, 238, 0.95), rgba(251, 246, 238, 0.82)),
    url('https://images.unsplash.com/photo-1523906630133-f6934a1ab2b9?auto=format&fit=crop&w=1200&q=80') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-media img {
  height: 100%;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.script-text {
  font-family: 'Parisienne', cursive;
  font-size: clamp(38px, 6vw, 62px);
  color: var(--brown);
  margin: 20px 0 6px;
}

.hero-copy h1,
.section-header h2,
.story-text h2,
.chef-content h2,
.events-grid h2 {
  font-family: 'Cormorant Garamond', serif;
}

.hero-copy h1 {
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--olive-dark);
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 220px;
  background: rgba(55, 64, 40, 0.94);
  color: var(--paper);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.hero-note span {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 250, 244, 0.9);
}

.story-band,
.featured-dishes,
.chef-section,
.gallery-section,
.events-section {
  padding: 80px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 1.4fr;
  gap: 0;
  background: rgba(255, 250, 244, 0.52);
  border: 1px solid var(--line);
}

.story-image img {
  height: 100%;
}

.story-text {
  padding: 44px 40px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.story-text h2 {
  font-size: 40px;
  line-height: 1;
  color: var(--brown);
  margin: 12px 0 14px;
}

.story-text p,
.section-header p,
.event-card p,
.feature p {
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.story-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.feature h3,
.dish-body h3,
.event-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--brown);
}

.feature h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header h2,
.chef-content h2,
.events-grid h2,
.booking-title h2 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.95;
  color: var(--brown);
}

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

.dish-card,
.event-card {
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(74, 51, 40, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.dish-card:hover,
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.dish-card img {
  height: 240px;
}

.dish-body {
  padding: 24px;
}

.dish-body h3 {
  font-size: 31px;
  margin-bottom: 8px;
}

.dish-body p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 18px;
}

.dish-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--terracotta-dark);
  font-weight: 800;
}

.chef-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chef-image img {
  height: 100%;
}

.chef-content {
  padding: 58px;
  background: linear-gradient(135deg, var(--olive-dark), var(--olive));
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.light,
.chef-content h2,
.booking-title h2 {
  color: var(--paper);
}

.chef-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1.35;
  color: rgba(255, 250, 244, 0.92);
  margin: 18px 0;
}

.chef-signature {
  font-family: 'Parisienne', cursive;
  font-size: 34px;
  color: #ead6b1;
  margin-bottom: 26px;
}

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

.gallery-grid img {
  height: 260px;
  border: 1px solid var(--line);
}

.events-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.event-card {
  padding: 30px;
}

.event-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.booking-strip {
  padding: 28px 0;
  background: linear-gradient(90deg, rgba(108, 46, 44, 0.95), rgba(191, 89, 47, 0.96));
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 2.7fr;
  gap: 18px;
  align-items: center;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr)) minmax(190px, 1fr);
  gap: 12px;
  align-items: end;
}

.booking-control {
  height: 58px;
  background: rgba(255, 250, 244, 0.96);
  color: var(--brown);
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-control span {
  color: var(--terracotta-dark);
  margin-bottom: 4px;
}

.booking-control input,
.booking-control select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--brown);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.booking-form .btn {
  height: 58px;
  border: 0;
  cursor: pointer;
}

.booking-message {
  grid-column: 1 / -1;
  display: none;
  margin-top: 4px;
  padding: 12px 14px;
  background: rgba(255, 250, 244, 0.96);
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.booking-message.show {
  display: block;
}

.footer {
  background: #241913;
  color: rgba(255, 250, 244, 0.82);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr 1.15fr;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 250, 244, 0.12);
}

.footer-logo {
  width: 170px;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
}

.footer h4 {
  color: #ead6b1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer p {
  line-height: 1.85;
  font-size: 14px;
}

.footer-text {
  margin-top: 14px;
  max-width: 270px;
}

.newsletter-form {
  display: flex;
  margin-top: 14px;
}

.newsletter-form input {
  flex: 1;
  height: 44px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 14px;
  outline: none;
}

.newsletter-form button {
  width: 50px;
  border: 0;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  color: rgba(255, 250, 244, 0.55);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .menu {
    gap: 16px;
  }

  .brand-logo {
    width: 155px;
  }

  .story-grid,
  .hero-grid,
  .chef-card,
  .events-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-features,
  .dish-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .story-text {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .hero-copy,
  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    height: 420px;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 125px;
    padding: 10px 0;
  }

  .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 125px;
    left: 20px;
    right: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  .menu.open {
    display: flex;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .nav {
    min-height: 88px;
    padding: 6px 0;
  }

  .brand-logo {
    width: 150px;
    max-width: 150px;
    max-height: none;
  }

  .hero-copy {
    padding: 42px 24px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-media img {
    height: 300px;
  }

  .hero-note {
    right: 16px;
    bottom: 16px;
    max-width: 180px;
    padding: 16px;
  }

  .story-band,
  .featured-dishes,
  .chef-section,
  .gallery-section,
  .events-section {
    padding: 58px 0;
  }

  .story-text,
  .chef-content,
  .event-card {
    padding: 24px;
  }

  .dish-body h3,
  .event-card h3 {
    font-size: 26px;
  }
}


/* Ajuste final do logo: maior e sem corte */
.header { overflow: visible; }
.nav { min-height: 145px; padding-top: 12px; padding-bottom: 12px; }
.brand { align-self: center; overflow: visible; }
.brand-logo { width: 190px !important; height: auto !important; max-width: 190px !important; max-height: none !important; object-fit: contain !important; }
@media (max-width: 900px) {
  .nav { min-height: 125px; }
  .menu { top: 125px; }
  .brand-logo { width: 165px !important; max-width: 165px !important; }
}
@media (max-width: 680px) {
  .nav { min-height: 112px; }
  .menu { top: 112px; }
  .brand-logo { width: 145px !important; max-width: 145px !important; }
}


@media (max-width: 1100px) {
  .booking-form {
    grid-template-columns: 1fr;
  }
}
