:root {
  --ink: #13231f;
  --muted: #66736f;
  --paper: #fffaf0;
  --shell: #f3ead7;
  --sea: #123f4a;
  --sea-2: #1e6470;
  --olive: #66794a;
  --clay: #b95835;
  --lemon: #f0c64c;
  --line: rgba(19, 35, 31, 0.16);
  --white: #fffefa;
  --shadow: 0 24px 80px rgba(18, 63, 74, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 198, 76, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--paper), #fff8e8);
  color: var(--ink);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  padding-bottom: 112px;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid rgba(19, 35, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 54%, var(--lemon) 0 18%, transparent 19%),
    conic-gradient(from 30deg, var(--sea), var(--olive), var(--clay), var(--sea));
  box-shadow: inset 0 0 0 4px var(--paper);
}

.brand-mark::after {
  content: "P";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a,
.lang-btn {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav a[aria-current="page"],
.lang-btn.active {
  background: var(--sea);
  color: var(--white);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.72);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 104px clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 25, 26, 0.86), rgba(10, 25, 26, 0.38) 48%, rgba(10, 25, 26, 0.18)),
    linear-gradient(0deg, rgba(10, 25, 26, 0.84), rgba(10, 25, 26, 0.04) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(255, 254, 250, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--lemon);
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 18px;
  color: rgba(255, 254, 250, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.local-tags span {
  border: 1px solid rgba(255, 254, 250, 0.24);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 254, 250, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 254, 250, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.source-note {
  max-width: 660px;
  margin: -12px 0 0;
  color: rgba(255, 254, 250, 0.72);
  font-size: 0.9rem;
}

.personal-preview {
  width: min(640px, 100%);
  margin: -8px 0 24px;
  border-left: 3px solid var(--lemon);
  padding: 12px 16px;
  background: rgba(255, 254, 250, 0.11);
  color: rgba(255, 254, 250, 0.86);
  font-size: 0.96rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  background: var(--lemon);
  color: #332812;
}

.btn.secondary {
  border-color: rgba(255, 254, 250, 0.5);
  color: var(--white);
}

.btn.dark {
  background: var(--sea);
  color: var(--white);
}

.preview-pill {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 44px;
  max-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 254, 250, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.12);
  color: rgba(255, 254, 250, 0.86);
  font-size: 0.82rem;
  backdrop-filter: blur(12px);
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro-band {
  padding-block: clamp(34px, 5vw, 58px);
  background: var(--sea);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.intro-copy h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
}

.owner-note,
.menu-callout {
  border: 1px solid rgba(255, 254, 250, 0.18);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 30px);
  background: rgba(255, 254, 250, 0.08);
  color: rgba(255, 254, 250, 0.82);
}

.note-label {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--lemon);
  color: #332812;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section.no-top-padding {
  padding-top: 0;
}

.section.sea {
  background: var(--sea);
  color: var(--white);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.kicker {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.sea .lead {
  color: rgba(255, 254, 250, 0.78);
}

.story-note {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sea);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.table-section {
  background:
    linear-gradient(90deg, rgba(19, 35, 31, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(19, 35, 31, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.experience-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(19, 35, 31, 0.08);
}

.experience-card.featured {
  background:
    linear-gradient(135deg, rgba(18, 63, 74, 0.94), rgba(18, 63, 74, 0.72)),
    url("assets/coastal-octopus-table.png") center / cover;
  color: var(--white);
}

.experience-card h3,
.pairing-card h3,
.timeline-step h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.experience-card p {
  color: var(--muted);
}

.experience-card.featured p {
  color: rgba(255, 254, 250, 0.8);
}

.experience-number {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--clay);
  font-weight: 900;
}

.featured .experience-number {
  color: var(--lemon);
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(19, 35, 31, 0.08);
}

.proof-strip h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.compact-proof {
  margin-bottom: clamp(28px, 5vw, 52px);
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-tags span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(18, 63, 74, 0.2);
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff8e8;
  color: var(--sea);
  font-size: 0.88rem;
  font-weight: 900;
}

.moment-list {
  display: grid;
  gap: 12px;
}

.moment {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.moment b {
  display: block;
  margin-bottom: 5px;
  color: var(--sea);
}

.highlight {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.highlight b {
  display: block;
  margin-bottom: 8px;
  color: var(--sea);
}

.menu-hero,
.visit-hero {
  padding-top: 128px;
  background:
    linear-gradient(135deg, rgba(18, 63, 74, 0.94), rgba(102, 121, 74, 0.86)),
    url("assets/coastal-octopus-table.png") center / cover;
  color: var(--white);
}

.page-title {
  width: min(900px, 100%);
  min-width: 0;
}

.page-title h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.menu-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.menu-tabs {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 10px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.tab.active {
  background: var(--sea);
  color: var(--white);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dish-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dish-card h3 {
  margin-bottom: 8px;
  color: var(--sea);
  font-size: 1.25rem;
}

.dish-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 8px;
}

.dish-head h3 {
  margin-bottom: 0;
}

.dish-head span {
  color: var(--clay);
  font-weight: 900;
  white-space: nowrap;
}

.dish-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.dish-meta {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.pairing-grid {
  display: grid;
  gap: 14px;
}

.pairing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(19, 35, 31, 0.07);
}

.pairing-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(18, 63, 74, 0.94), rgba(102, 121, 74, 0.86)),
    url("assets/coastal-octopus-table.png") center / cover;
  color: var(--white);
}

.menu-callout h2 {
  margin-bottom: 0;
}

.menu-callout p {
  margin-bottom: 0;
  color: rgba(255, 254, 250, 0.82);
  font-size: 1.14rem;
}

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

.visitor-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.08);
  border: 1px solid rgba(255, 254, 250, 0.16);
}

.visitor-card h3 {
  font-size: 1.25rem;
}

.tourist-needs {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1.2fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.tourist-needs h2 {
  margin-bottom: 0;
}

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

.needs-grid article {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.needs-grid b {
  display: block;
  margin-bottom: 8px;
  color: var(--sea);
}

.route-timeline {
  position: relative;
}

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

.timeline-step {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 64px;
  border-bottom: 2px solid var(--lemon);
  color: var(--clay);
  font-weight: 900;
}

.timeline-step p {
  color: var(--muted);
}

.map-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 24px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-placeholder {
  min-height: 280px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 63, 74, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(18, 63, 74, 0.13) 1px, transparent 1px),
    radial-gradient(circle at 58% 46%, var(--clay) 0 9px, transparent 10px),
    linear-gradient(135deg, #e8dcc5, #cbd8c8);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.map-embed {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  background: #d8dfd6;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--sea);
  font-weight: 900;
  text-decoration: none;
}

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

.info-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-list b {
  display: block;
  color: var(--sea);
}

.bottom-actions {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: calc(100vw - 32px);
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(19, 35, 31, 0.13);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 16px 50px rgba(19, 35, 31, 0.18);
  backdrop-filter: blur(18px);
}

.bottom-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--sea);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.bottom-actions a.primary {
  background: var(--sea);
  color: var(--white);
}

.footer {
  padding: 30px clamp(18px, 5vw, 72px);
  background: #0f2c31;
  color: rgba(255, 254, 250, 0.72);
  font-size: 0.9rem;
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

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

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

[data-lang="pt"] .en,
[data-lang="en"] .pt {
  display: none;
}

@media (max-width: 920px) {
  .topbar {
    align-items: center;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 92px;
  }

  .menu-hero,
  .visit-hero {
    padding-top: 108px;
  }

  .page-title h1 {
    font-size: clamp(2.35rem, 11.5vw, 4.4rem);
    line-height: 0.98;
  }

  .preview-pill {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }

  .split,
  .intro-grid,
  .proof-strip,
  .tourist-needs,
  .menu-layout,
  .map-card,
  .menu-story,
  .menu-callout,
  .route-panel {
    grid-template-columns: 1fr;
  }

  .highlights,
  .visitor-grid,
  .needs-grid,
  .menu-panel.active,
  .experience-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    position: static;
    grid-template-columns: 1fr;
  }

  .bottom-actions {
    display: grid;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .topbar {
    gap: 8px;
    padding: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 0.94rem;
  }

  .brand-word {
    font-size: 1rem;
  }

  .brand-mark {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }

  .brand span:last-child {
    max-width: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
  }

  .hero,
  .section {
    padding-inline: 16px;
    max-width: 100vw;
  }

  .hero-content,
  .page-title,
  .section-inner {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 3.75rem);
    line-height: 0.92;
  }

  .page-title h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .section h2,
  .proof-strip h2 {
    font-size: clamp(1.95rem, 8.8vw, 2.65rem);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .source-note {
    font-size: 0.82rem;
  }

  .button-row .btn {
    width: 100%;
  }

  .lang-switch {
    flex: 0 0 auto;
  }

  .lang-btn {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.82rem;
  }

  .bottom-actions {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: calc(100vw - 20px);
    gap: 6px;
    padding: 7px;
    border-radius: 28px;
  }

  .bottom-actions a {
    min-height: 40px;
    font-size: 0.78rem;
  }
}
