@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-medium-italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ivory: #f5f1e9;
  --paper: #fffdf8;
  --stone: #d9d0c2;
  --ink: #29302e;
  --ink-soft: #59615e;
  --teal: #319f9d;
  --teal-deep: #176a69;
  --teal-pale: #d9efec;
  --clay: #af765e;
  --line: rgba(41, 48, 46, 0.16);
  --shadow: 0 24px 60px rgba(31, 50, 45, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection,
*::selection {
  color: var(--paper);
  background: var(--teal-deep);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input {
  font: inherit;
}

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

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--ivory);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ivory);
  border-radius: 10px;
  background: var(--teal-deep);
}

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

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

.shell {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(245, 241, 233, 0.91);
  backdrop-filter: blur(18px);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(38, 53, 49, 0.06);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 174px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.button):hover {
  color: var(--teal-deep);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--teal-deep);
  box-shadow: 0 11px 26px rgba(23, 106, 105, 0.18);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 240ms var(--ease), background-color 240ms ease, box-shadow 240ms ease;
}

.button:hover {
  background: #105c5b;
  box-shadow: 0 15px 32px rgba(23, 106, 105, 0.24);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  color: var(--teal-deep);
  border-color: rgba(23, 106, 105, 0.52);
  background: var(--paper);
}

.hero {
  min-height: calc(100svh - 80px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 70px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 1.07fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  max-width: 12ch;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(64px, 7vw, 104px);
}

.hero h1 em {
  color: var(--teal-deep);
  font-weight: 500;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

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

.open-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.open-strip strong {
  color: var(--teal-deep);
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.hero-main-photo {
  position: absolute;
  inset: 0 58px 40px 60px;
  overflow: hidden;
  border-radius: 48% 48% 16px 16px;
  box-shadow: var(--shadow);
}

.hero-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 43, 39, 0.32), transparent 38%);
}

.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 190px;
  height: 250px;
  overflow: hidden;
  border: 8px solid var(--ivory);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(27, 43, 39, 0.18);
}

.hero-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 72px;
  z-index: 3;
  width: 170px;
  padding: 20px 18px;
  color: white;
  background: var(--teal-deep);
  border-radius: 14px;
  box-shadow: 0 17px 36px rgba(23, 106, 105, 0.24);
}

.hero-note strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.hero-note span {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.45;
}

.marquee {
  overflow: hidden;
  padding: 22px 0;
  color: white;
  background: var(--teal-deep);
}

.marquee-inner {
  width: max-content;
  display: flex;
  gap: 38px;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  animation: drift 32s linear infinite;
}

.marquee-inner span::after {
  content: "◆";
  margin-left: 38px;
  color: #9dd7d2;
  font-size: 9px;
  vertical-align: middle;
}

@keyframes drift {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(92px, 11vw, 154px) 0;
}

.section.paper {
  background: var(--paper);
}

.section.teal {
  color: #f7fffd;
  background: var(--teal-deep);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 54px;
}

.section-title {
  max-width: 13ch;
  font-size: clamp(48px, 5.5vw, 78px);
}

.section-head p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.teal .section-head p {
  color: #c7e4e0;
}

.intentions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.intention {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 24px 26px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 260ms ease, color 260ms ease;
}

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

.intention:hover {
  color: var(--paper);
  background: var(--teal-deep);
}

.intention svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--teal-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.intention:hover svg {
  stroke: #aee3de;
}

.intention h3 {
  margin: 0;
  max-width: 9ch;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
  line-height: 1.02;
}

.intention span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
}

.intention:hover span {
  color: #c7e4e0;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 26px;
}

.signature-main {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 16px;
}

.signature-main img,
.signature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.signature-main:hover img,
.signature-thumb:hover img {
  transform: scale(1.025);
}

.signature-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 90px 38px 35px;
  color: white;
  background: linear-gradient(to top, rgba(21, 39, 36, 0.9), transparent);
}

.signature-overlay h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4vw, 62px);
  font-weight: 400;
  line-height: 0.98;
}

.signature-overlay p {
  max-width: 520px;
  margin: 14px 0 20px;
  color: #e0efec;
}

.signature-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.signature-list {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 26px;
}

.signature-thumb {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 16px;
}

.signature-thumb .signature-overlay {
  padding: 70px 28px 26px;
}

.signature-thumb .signature-overlay h3 {
  font-size: 38px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.story-images {
  position: relative;
  min-height: 680px;
}

.story-image-large {
  position: absolute;
  inset: 0 88px 70px 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.story-image-large img,
.story-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  height: 310px;
  overflow: hidden;
  border: 10px solid var(--paper);
  border-radius: 16px;
}

.story-copy .section-title {
  max-width: 10ch;
}

.story-copy > p {
  max-width: 600px;
  margin: 28px 0 34px;
  color: var(--ink-soft);
  font-size: 18px;
}

.promise-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.promise-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.promise-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--teal-deep);
  stroke-width: 1.5;
}

.promise-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.promise-list span {
  color: var(--ink-soft);
  font-size: 13px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.gallery a:first-child {
  grid-row: 1 / 3;
}

.gallery a:nth-child(4) {
  grid-column: 2 / 4;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 300ms ease;
}

.gallery a:hover img {
  transform: scale(1.035);
  filter: saturate(0.9);
}

.gallery-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(27, 43, 39, 0.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  text-decoration: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.visit-copy .section-title {
  max-width: 9ch;
}

.visit-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.visit-fact {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.visit-fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.visit-fact span {
  color: #c7e4e0;
  font-size: 12px;
}

.visit-photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 50% 50% 16px 16px;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  padding: 70px 0 110px;
  color: var(--ink-soft);
  background: #e9e3d9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 20px;
}

.footer h2 {
  margin: 0 0 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.footer p,
.footer a {
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.fine-print {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.mobile-bar {
  display: none;
}

/* Cardápio */
.page-hero {
  padding: 96px 0 70px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 60px;
}

.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(68px, 8vw, 112px);
}

.page-hero p {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.menu-toolbar-wrap {
  position: sticky;
  top: 80px;
  z-index: 50;
  padding: 14px 0;
  border-block: 1px solid var(--line);
  background: rgba(245, 241, 233, 0.94);
  backdrop-filter: blur(16px);
}

.menu-toolbar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}

.menu-toolbar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: white;
  border-color: var(--teal-deep);
  background: var(--teal-deep);
}

.menu-content {
  padding: 72px 0 130px;
}

.menu-group {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 60px;
  padding: 65px 0;
  border-bottom: 1px solid var(--line);
}

.menu-group:first-child {
  padding-top: 0;
}

.menu-group[hidden] {
  display: none;
}

.menu-group-head {
  position: sticky;
  top: 168px;
  align-self: start;
}

.menu-group h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.3vw, 62px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.menu-group-head > p {
  max-width: 300px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.menu-items {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

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

.menu-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.1;
}

.menu-item p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.menu-item-meta {
  min-width: 120px;
  text-align: right;
}

.menu-item-price {
  display: block;
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.menu-item-duration,
.menu-item-badge {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 12px;
}

.menu-item-badge {
  color: var(--clay);
  font-weight: 600;
}

.menu-item-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 600;
}

.menu-note {
  margin-top: 52px;
  padding: 28px;
  border-radius: 14px;
  color: #cde5e1;
  background: var(--teal-deep);
  font-size: 13px;
}

.menu-note strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 760px); }

  .nav-links a:not(.button) { display: none; }
  .hero { min-height: auto; }
  .hero-grid,
  .story-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 660px; }
  .intentions { grid-template-columns: 1fr 1fr; }
  .intention:nth-child(2) { border-right: 0; }
  .intention:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .signature-grid { grid-template-columns: 1fr; }
  .signature-list { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .story-grid { gap: 60px; }
  .story-images { min-height: 640px; order: 2; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 260px 300px; }
  .gallery a:first-child { grid-row: 1; grid-column: 1 / 3; }
  .gallery a:nth-child(4) { grid-column: 1 / 3; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-photo { min-height: 560px; }
  .menu-group { grid-template-columns: 1fr; gap: 34px; }
  .menu-group-head { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / 3; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 28px); }
  body { font-size: 15px; padding-bottom: 74px; }
  .nav { min-height: 68px; }
  .brand img { width: 144px; }
  .nav .button { display: none; }
  .hero { padding: 48px 0 68px; }
  .hero h1 { font-size: clamp(55px, 17vw, 76px); max-width: 8ch; }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 52px; }
  .open-strip { display: grid; gap: 4px; }
  .hero-visual { min-height: 500px; margin-top: 12px; }
  .hero-main-photo { inset: 0 20px 42px 22px; border-radius: 44% 44% 14px 14px; }
  .hero-side-photo { width: 128px; height: 176px; border-width: 6px; }
  .hero-note { bottom: 28px; width: 144px; padding: 16px; }
  .hero-note strong { font-size: 25px; }
  .marquee { padding: 17px 0; }
  .marquee-inner { font-size: 23px; }
  .section { padding: 84px 0; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-title { font-size: clamp(45px, 14vw, 61px); }
  .section-head p { margin-top: 20px; }
  .intentions { grid-template-columns: 1fr; }
  .intention,
  .intention:nth-child(2) { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .signature-main { min-height: 540px; }
  .signature-overlay { padding: 90px 22px 24px; }
  .signature-overlay h3 { font-size: 45px; }
  .signature-list { grid-template-columns: 1fr; }
  .signature-thumb { min-height: 360px; }
  .story-images { min-height: 500px; }
  .story-image-large { inset: 0 46px 55px 0; }
  .story-image-small { width: 155px; height: 220px; border-width: 7px; }
  .story-copy > p { font-size: 16px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 230px 260px; gap: 8px; }
  .visit-facts { grid-template-columns: 1fr; }
  .visit-photo { min-height: 430px; }
  .footer { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > :first-child { grid-column: auto; }
  .mobile-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 150;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8px;
    padding: 9px max(10px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(16px);
  }
  .mobile-bar .button { min-height: 48px; padding: 0 12px; font-size: 12px; }
  .page-hero { padding: 66px 0 48px; }
  .page-hero h1 { font-size: clamp(58px, 18vw, 82px); }
  .page-hero p { font-size: 15px; }
  .menu-toolbar-wrap { top: 68px; }
  .menu-content { padding-top: 50px; }
  .menu-group { padding: 52px 0; }
  .menu-item { grid-template-columns: 1fr; gap: 13px; padding: 25px 0; }
  .menu-item-meta { text-align: left; }
  .menu-item-price { font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
