:root {
  --wine: #721f2b;
  --wine-dark: #4d121c;
  --coral: #df6f61;
  --cream: #f7f0e6;
  --paper: #fffaf2;
  --chocolate: #321c1a;
  --muted: #715e58;
  --gold: #d9a85d;
  --line: rgba(50, 28, 26, 0.17);
  --serif: "Gloock", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--chocolate);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--wine);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(100% - 48px, 1240px);
  min-height: 104px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  color: var(--paper);
  background: var(--wine);
  border-radius: 50% 48% 45% 52%;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  transform: rotate(-5deg);
}

.brand-name {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 0.9;
}

.brand-name strong {
  display: block;
  margin-top: 7px;
  color: var(--wine);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.nav-order) {
  position: relative;
}

.main-nav > a:not(.nav-order)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.nav-order {
  padding: 13px 19px;
  color: white;
  background: var(--wine);
  border: 1px solid var(--wine);
  transition: color 180ms ease, background 180ms ease;
}

.nav-order:hover {
  color: var(--wine);
  background: transparent;
}

.menu-toggle {
  display: none;
  padding: 10px;
  background: none;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px;
  background: var(--chocolate);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  width: min(100% - 48px, 1240px);
  min-height: 680px;
  margin: 0 auto;
  padding: 70px 0 78px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 52%;
  left: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(114, 31, 43, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding-left: 3vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 23px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 37px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 570px;
  margin-bottom: 25px;
  font-size: clamp(64px, 6.7vw, 101px);
  line-height: 0.9;
}

h1 em,
h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-text {
  max-width: 485px;
  margin-bottom: 33px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 30px rgba(50, 28, 26, 0.13);
}

.button-primary {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}

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

.text-link {
  padding-bottom: 5px;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.text-link:hover {
  color: var(--coral);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 45px;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
}

.heart {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  color: var(--wine);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 5% 0 7%;
}

.image-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 48% 48% 8px 8px;
  box-shadow: 28px 34px 0 var(--cream);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(114, 31, 43, 0.02), rgba(50, 28, 26, 0.25));
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transition: transform 900ms cubic-bezier(.2,.75,.25,1);
}

.image-frame:hover img {
  transform: scale(1.035);
}

.round-seal {
  position: absolute;
  right: 0;
  bottom: -28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  color: white;
  background: var(--wine);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 14px 40px rgba(50, 28, 26, 0.22);
}

.round-seal span {
  position: absolute;
  top: 23px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.round-seal strong {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
}

.flourish {
  position: absolute;
  color: var(--gold);
  font-size: 24px;
}

.flourish-one {
  top: 7%;
  left: 1%;
}

.flourish-two {
  right: 12%;
  bottom: -24px;
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 23px max(24px, calc((100% - 1160px) / 2));
  color: white;
  background: var(--wine);
}

.trust-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
}

.trust-strip span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
}

.section {
  padding: 110px max(24px, calc((100% - 1160px) / 2));
}

.story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10vw;
  align-items: end;
}

.section-heading h2,
.offer-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 75px);
  line-height: 1.02;
}

.story-copy {
  padding-bottom: 6px;
}

.story-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.story-copy .text-link {
  display: inline-block;
  margin-top: 12px;
}

.dark {
  color: var(--chocolate);
}

.menu-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8vw;
  color: white;
  background: var(--wine-dark);
  overflow: hidden;
}

.menu-section::after {
  content: "CARDÁPIO";
  position: absolute;
  right: -45px;
  bottom: -32px;
  color: rgba(255,255,255,0.035);
  font-family: var(--serif);
  font-size: 150px;
  letter-spacing: 0.03em;
}

.eyebrow.light {
  color: var(--gold);
}

.menu-intro {
  position: relative;
  z-index: 1;
  align-self: center;
}

.menu-intro h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(43px, 4.7vw, 66px);
  font-weight: 400;
  line-height: 1.02;
}

.menu-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 31px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.button-cream {
  color: var(--wine-dark);
  background: var(--cream);
  border-color: var(--cream);
}

.menu-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.menu-card {
  min-height: 310px;
  padding: 42px 25px;
  text-align: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.13);
}

.menu-card.featured {
  min-height: 360px;
  padding-top: 66px;
  color: var(--chocolate);
  background: var(--cream);
  transform: rotate(1.5deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.cake-icon {
  display: block;
  margin-bottom: 47px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
}

.menu-card p {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-card h3 {
  margin-bottom: 44px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.coming-soon {
  padding-top: 9px;
  border-top: 1px solid currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.65;
}

.daily-offer {
  position: relative;
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.65fr;
  gap: 7vw;
  align-items: center;
  background: var(--cream);
}

.daily-offer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20%;
  width: 1px;
  height: 55px;
  background: var(--line);
}

.offer-badge {
  display: grid;
  place-content: center;
  width: 225px;
  height: 225px;
  color: var(--wine);
  border: 1px solid rgba(114, 31, 43, 0.36);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-8deg);
}

.offer-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.offer-badge strong {
  font-family: var(--serif);
  font-size: 45px;
  font-style: italic;
  font-weight: 400;
}

.offer-copy p:not(.eyebrow) {
  max-width: 545px;
  margin: 25px 0 30px;
  color: var(--muted);
  line-height: 1.75;
}

.offer-quote {
  margin: 0;
  padding-left: 28px;
  color: var(--wine);
  border-left: 1px solid var(--coral);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.45;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: end;
  color: white;
  background: var(--wine);
}

.contact-copy > p:not(.eyebrow) {
  margin: 23px 0 0;
  color: rgba(255,255,255,0.7);
}

.contact-links a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.23);
  transition: padding 180ms ease, color 180ms ease;
}

.contact-links a:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.23);
}

.contact-links a:hover {
  padding-left: 9px;
  color: var(--gold);
}

.contact-links span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.contact-links strong {
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 30px);
  font-weight: 400;
}

.contact-links b {
  font-size: 22px;
  font-weight: 400;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 34px max(24px, calc((100% - 1160px) / 2));
  color: rgba(255,255,255,0.64);
  background: var(--wine-dark);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand .brand-mark {
  width: 39px;
  height: 39px;
  color: var(--wine-dark);
  background: var(--cream);
  font-size: 21px;
}

.footer-brand .brand-name {
  color: white;
  font-size: 17px;
}

.footer-brand .brand-name strong {
  color: var(--gold);
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 15;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) rotate(-4deg);
}

.whatsapp-float svg {
  width: 29px;
  fill: white;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1);
}

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

.hero-copy.reveal {
  transition-delay: 80ms;
}

.hero-visual.reveal {
  transition-delay: 230ms;
}

@media (max-width: 1000px) {
  .site-header {
    min-height: 86px;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(50,28,26,0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 10px;
  }

  .nav-order {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  h1 {
    font-size: clamp(60px, 9vw, 84px);
  }

  .image-frame {
    height: 460px;
  }

  .menu-section {
    grid-template-columns: 1fr;
  }

  .daily-offer {
    grid-template-columns: auto 1fr;
  }

  .offer-quote {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero {
    width: min(100% - 36px, 1240px);
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 0 80px;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(57px, 18vw, 78px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-note {
    margin-top: 34px;
  }

  .hero-visual {
    margin-top: 55px;
    padding: 0 15px 0 0;
  }

  .image-frame {
    height: 410px;
    border-radius: 48% 48% 6px 6px;
    box-shadow: 15px 20px 0 var(--cream);
  }

  .round-seal {
    right: -7px;
    width: 112px;
    height: 112px;
  }

  .round-seal span {
    top: 18px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .story,
  .daily-offer,
  .contact {
    grid-template-columns: 1fr;
  }

  .story {
    gap: 40px;
  }

  .menu-section {
    gap: 58px;
  }

  .menu-preview {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-card,
  .menu-card.featured {
    min-height: 0;
    padding: 35px 24px;
    transform: none;
  }

  .cake-icon {
    margin-bottom: 22px;
  }

  .menu-card h3 {
    margin-bottom: 28px;
  }

  .offer-badge {
    width: 170px;
    height: 170px;
  }

  .offer-badge strong {
    font-size: 37px;
  }

  .daily-offer {
    gap: 48px;
  }

  .contact {
    gap: 45px;
  }

  .contact-links a {
    grid-template-columns: 1fr auto;
  }

  .contact-links span {
    grid-column: 1 / -1;
  }

  .contact-links strong {
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p:last-child {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
