:root {
  --piola-red: #b94034;
  --piola-red-dark: #7f2a24;
  --tomato: #d8755c;
  --ink: #17231f;
  --espresso: #2d211a;
  --olive: #68765f;
  --deep-green: #173f35;
  --deep-green-dark: #0f2f27;
  --sage: #9db7a7;
  --sage-soft: #dbe7df;
  --mint: #cfe8df;
  --peach: #f3c2aa;
  --peach-soft: #fae2d4;
  --cream: #f7efe2;
  --paper: #fffaf1;
  --mist: #ece3d5;
  --line: rgba(23, 63, 53, 0.16);
  --muted: #746d63;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 63, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

body::selection {
  background: var(--sage);
  color: var(--deep-green-dark);
}

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

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

button,
input {
  font: inherit;
}

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  transform: translateX(-50%);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta,
.button,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  min-width: 132px;
  padding: 0 18px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--deep-green);
}

.header-cta svg,
.button svg,
.inline-link svg,
.craft-list svg,
.experience-grid svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/ig-DYhjq7BkRzW.jpg");
  background-position: center 42%;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.82) 0%, rgba(18, 12, 9, 0.58) 44%, rgba(18, 12, 9, 0.14) 100%),
    linear-gradient(0deg, rgba(18, 12, 9, 0.42) 0%, rgba(18, 12, 9, 0.04) 56%);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 168px 0 150px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--peach-soft);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
}

.button-primary {
  background: var(--deep-green);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(23, 63, 53, 0.26);
}

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

.button-light {
  background: rgba(255, 250, 241, 0.94);
  color: var(--deep-green);
}

.button-ifood {
  display: none;
  border: 1px solid rgba(23, 63, 53, 0.14);
  background: var(--peach-soft);
  color: var(--deep-green);
  box-shadow: 0 14px 28px rgba(23, 63, 53, 0.14);
}

.button-ifood:hover {
  background: var(--peach);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-facts {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(108px, 1fr));
  width: min(620px, calc(100% - 40px));
  border: 1px solid rgba(219, 231, 223, 0.22);
  background: rgba(17, 39, 33, 0.66);
  backdrop-filter: blur(12px);
}

.hero-facts div {
  min-width: 0;
  padding: 18px 18px 19px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.hero-facts span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.origin-section,
.visual-story,
.craft-section,
.menu-section,
.experience-section,
.reservation-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.origin-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  padding: 92px 0 84px;
}

.section-copy h2,
.visual-heading h2,
.craft-copy h2,
.menu-head h2,
.experience-section h2,
.reservation-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.section-copy p:last-child,
.craft-copy > p,
.reservation-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

.origin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.origin-grid article {
  min-height: 265px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.origin-grid span {
  color: var(--piola-red);
  font-size: 12px;
  font-weight: 900;
}

.origin-grid h3 {
  margin: 88px 0 14px;
  font-size: 24px;
  font-weight: 900;
}

.origin-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.visual-story {
  padding: 26px 0 96px;
}

.visual-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}

.visual-heading .section-kicker {
  align-self: start;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 270px;
  gap: 16px;
}

.photo-mosaic figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.photo-mosaic .photo-large {
  grid-row: span 2;
}

.photo-mosaic figure:nth-child(4) {
  grid-column: span 2;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-mosaic figure:hover img {
  transform: scale(1.04);
}

.photo-mosaic figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 70px;
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.craft-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.craft-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--espresso);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.craft-list svg {
  color: var(--deep-green);
  margin-top: 2px;
}

.menu-section {
  padding: 96px 0 84px;
}

.menu-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.inline-link {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--deep-green);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(45, 33, 26, 0.08);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.menu-card:first-child img {
  object-position: center bottom;
}

.menu-card div {
  padding: 18px 18px 22px;
}

.menu-card p {
  margin: 0 0 8px;
  color: var(--piola-red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card h3 {
  min-height: 58px;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
}

.menu-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

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

.experience-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--cream);
}

.experience-grid svg {
  width: 22px;
  height: 22px;
  color: var(--deep-green);
}

.experience-grid h3 {
  margin: 42px 0 12px;
  font-size: 18px;
  font-weight: 900;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  min-height: 440px;
  margin-bottom: 80px;
  background: var(--deep-green);
  color: var(--white);
}

.reservation-media {
  min-height: 440px;
}

.reservation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-copy {
  display: grid;
  align-content: center;
  padding: 48px 58px;
}

.reservation-copy .section-kicker {
  margin: 0 0 14px;
  color: var(--peach);
}

.reservation-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.reservation-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.reservation-text + .reservation-text {
  margin-top: 10px;
}

.reservation-section .button-primary {
  background: var(--paper);
  color: var(--deep-green);
  box-shadow: none;
}

.reservation-section .button-primary:hover {
  background: var(--peach-soft);
}

.reservation-section .button-dark {
  border: 1px solid rgba(255, 250, 241, 0.18);
  background: rgba(15, 47, 39, 0.78);
  color: var(--white);
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 54px;
  min-height: 52px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  background: var(--deep-green);
  color: var(--white);
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(23, 63, 53, 0.22);
  isolation: isolate;
}

.whatsapp-widget::before,
.whatsapp-widget::after {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(157, 183, 167, 0.42);
  border-radius: inherit;
  content: "";
  animation: whatsapp-pulse 2.8s ease-out infinite;
}

.whatsapp-widget::after {
  animation-delay: 0.55s;
}

.whatsapp-widget:hover {
  background: var(--deep-green-dark);
  transform: translateY(-2px);
}

.whatsapp-widget svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.92);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 98px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.footer span {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
}

.footer nav {
  display: flex;
  gap: 18px;
}

.footer a {
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    max-width: 640px;
    font-size: 60px;
  }

  .hero-facts {
    position: static;
    width: min(100% - 40px, 720px);
    margin: -104px auto 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .hero-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .origin-section,
  .visual-heading,
  .craft-section,
  .experience-section,
  .reservation-section {
    grid-template-columns: 1fr;
  }

  .origin-section,
  .craft-section,
  .menu-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .origin-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .origin-grid article {
    min-height: auto;
  }

  .origin-grid h3 {
    margin-top: 52px;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }

  .photo-mosaic .photo-large,
  .photo-mosaic figure:nth-child(4) {
    grid-column: span 2;
  }

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

  .reservation-copy {
    padding: 44px;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100% - 28px);
    min-height: 68px;
  }

  .brand span {
    font-size: 13px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    min-width: 46px;
    width: 46px;
    padding: 0;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-bg {
    background-position: 56% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 12, 9, 0.88) 0%, rgba(18, 12, 9, 0.54) 100%),
      linear-gradient(0deg, rgba(18, 12, 9, 0.45) 0%, rgba(18, 12, 9, 0.08) 60%);
  }

  .hero-inner,
  .origin-section,
  .visual-story,
  .craft-section,
  .menu-section,
  .experience-section,
  .reservation-section,
  .footer {
    width: calc(100% - 28px);
  }

  .hero-inner {
    padding: 126px 0 150px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero-text {
    max-width: min(100%, 340px);
    font-size: 16px;
    line-height: 1.62;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .contact-row,
  .menu-head,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .inline-link {
    width: 100%;
  }

  .button-ifood {
    display: inline-flex;
  }

  .hero-facts {
    width: calc(100% - 28px);
    margin-top: -112px;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .hero-facts div {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .hero-facts strong {
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-facts span {
    font-size: 9px;
    overflow-wrap: break-word;
  }

  .footer-ifood {
    display: none;
  }

  .section-copy h2,
  .visual-heading h2,
  .craft-copy h2,
  .menu-head h2,
  .experience-section h2,
  .reservation-copy h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section-copy p:last-child,
  .craft-copy > p,
  .reservation-copy > p {
    font-size: 15px;
  }

  .origin-section {
    gap: 36px;
  }

  .photo-mosaic,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-auto-rows: 260px;
  }

  .photo-mosaic .photo-large,
  .photo-mosaic figure:nth-child(4) {
    grid-column: span 1;
  }

  .craft-section {
    gap: 36px;
  }

  .menu-card h3 {
    min-height: auto;
  }

  .experience-section {
    gap: 32px;
    padding-top: 58px;
  }

  .reservation-section {
    margin-bottom: 56px;
  }

  .reservation-media {
    min-height: 300px;
  }

  .reservation-copy {
    padding: 32px 22px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
    min-height: 54px;
    padding: 0;
    font-size: 0;
  }

  .footer {
    justify-content: center;
    padding: 26px 0 34px;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .hero-facts div,
  .hero-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }
}
