:root {
  --ink: #2a1b18;
  --muted: #75625a;
  --paper: #fbf6eb;
  --clay: #b83338;
  --maize: #f2a332;
  --leaf: #158443;
  --rose: #cf2f82;
  --black: #130f0d;
  --cream: #fffaf0;
  --line: rgba(36, 23, 19, 0.14);
  --shadow: 0 24px 70px rgba(42, 27, 24, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(251, 246, 235, 0.9), rgba(251, 246, 235, 0.96)),
    url("assets/verdemar-real/verdemar-facebook-04.jpg") center top / cover fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 163, 50, 0.16), transparent 32%),
    radial-gradient(circle at 80% 16%, rgba(207, 47, 130, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.86), rgba(251, 246, 235, 0.96));
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 248, 239, 0.2);
  color: var(--cream);
  background: rgba(19, 15, 13, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 250, 240, 0.45);
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.site-nav a {
  color: rgba(255, 250, 240, 0.82);
}

.site-nav a:hover {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 750;
  font-family: inherit;
  cursor: pointer;
}

.nav-cta {
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--maize), #ffd37a);
  border: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(110px, 15vw, 180px) clamp(18px, 5vw, 72px) clamp(44px, 5vw, 78px);
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(19, 15, 13, 0.96), rgba(42, 27, 24, 0.52) 44%, rgba(19, 15, 13, 0.2)),
    linear-gradient(0deg, rgba(19, 15, 13, 0.86), rgba(19, 15, 13, 0.1) 52%),
    url("assets/verdemar-real/verdemar-facebook-01.jpg") center/cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(19, 15, 13, 0.98), rgba(19, 15, 13, 0.9) 45%, rgba(19, 15, 13, 0.18) 78%),
    linear-gradient(0deg, rgba(19, 15, 13, 0.92), transparent 56%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 6;
  height: 32%;
  background: linear-gradient(0deg, rgba(19, 15, 13, 0.96), transparent);
}

.hero-photo {
  position: absolute;
  z-index: 2;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  filter: saturate(1.06) contrast(1.03);
  animation: heroFloat 9s ease-in-out infinite;
  transition: transform 700ms ease, filter 700ms ease, opacity 700ms ease;
  will-change: transform;
}

.hero-photo:nth-child(2) {
  animation-delay: -1.4s;
}

.hero-photo:nth-child(3) {
  animation-delay: -2.8s;
}

.hero-photo:nth-child(4) {
  animation-delay: -4.2s;
}

.hero-photo:nth-child(5) {
  animation-delay: -5.6s;
}

.hero-photo:nth-child(6) {
  animation-delay: -7s;
}

@keyframes heroFloat {
  0%,
  100% {
    filter: saturate(1.06) contrast(1.03);
  }

  50% {
    filter: saturate(1.16) contrast(1.07);
  }
}

.hero-photo-main {
  right: clamp(42px, 7vw, 118px);
  top: clamp(92px, 11vw, 150px);
  width: min(43vw, 620px);
  aspect-ratio: 1 / 1;
  transform: rotate(-2deg);
}

.hero-photo-plate {
  right: clamp(280px, 32vw, 520px);
  top: clamp(190px, 23vw, 310px);
  width: min(23vw, 330px);
  aspect-ratio: 1 / 1;
  transform: rotate(4deg);
}

.hero-photo-round-a {
  right: clamp(38px, 7vw, 120px);
  bottom: clamp(110px, 12vw, 185px);
  width: min(22vw, 300px);
  aspect-ratio: 1 / 1;
  transform: rotate(5deg);
}

.hero-photo-round-b {
  right: clamp(260px, 30vw, 470px);
  bottom: clamp(72px, 8vw, 120px);
  width: min(18vw, 260px);
  aspect-ratio: 1 / 1;
  transform: rotate(-5deg);
}

.hero-photo-wide {
  right: clamp(150px, 19vw, 310px);
  top: clamp(48px, 7vw, 86px);
  width: min(22vw, 320px);
  aspect-ratio: 1 / 1;
  transform: rotate(7deg);
}

.hero-photo-small {
  right: clamp(12px, 2vw, 44px);
  top: clamp(270px, 31vw, 390px);
  width: min(17vw, 230px);
  aspect-ratio: 1 / 1;
  transform: rotate(-7deg);
}

.hero-content {
  position: relative;
  z-index: 8;
  max-width: 720px;
  transform: translateY(-34px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.9vw, 76px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.94;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-content p {
  max-width: 690px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.38;
}

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

.button.primary {
  border: 0;
  color: var(--ink);
  background: linear-gradient(135deg, var(--maize), #ffd37a);
}

.button.secondary {
  border-color: currentColor;
  color: inherit;
  background: rgba(255, 250, 240, 0.08);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 72px);
  width: min(310px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  background: rgba(19, 15, 13, 0.72);
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: var(--maize);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.hero-card p {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.75);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intro-band div {
  padding: 28px clamp(18px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.concept-section {
  background: rgba(255, 250, 240, 0.96);
}

.seo-section {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(19, 15, 13, 0.94), rgba(42, 27, 24, 0.88)),
    url("assets/verdemar-real/verdemar-facebook-02.jpg") center/cover;
}

.seo-section .section-heading > p:last-child {
  color: rgba(255, 250, 240, 0.78);
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
}

.seo-keywords span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 250, 240, 0.88);
  background: rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(12px);
}

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

.concept-grid article {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.concept-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concept-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

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

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-heading > p:last-child,
.split-section > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.menu-tabs {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.menu-tab-group {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.menu-tab-group > span {
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.menu-tab-group > div {
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
  overflow-x: auto;
}

.tab {
  min-height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.tab.active {
  border-color: var(--leaf);
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), #0f6334);
}

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

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(36, 23, 19, 0.08);
  cursor: zoom-in;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.dish-card:hover,
.dish-card:focus-visible {
  border-color: rgba(184, 51, 56, 0.35);
  box-shadow: 0 18px 44px rgba(36, 23, 19, 0.14);
  transform: translateY(-3px);
}

.dish-card:focus-visible,
.gallery-grid figure:focus-visible {
  outline: 3px solid var(--maize);
  outline-offset: 4px;
}

.dish-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.empty-menu {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.dish-content {
  padding: 18px;
}

.dish-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.dish-top h3 {
  line-height: 1.12;
}

.price {
  color: var(--clay);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.dish-content p {
  min-height: 52px;
  color: var(--muted);
  line-height: 1.45;
}

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

.tag {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--leaf);
  background: rgba(21, 132, 67, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.gallery-section {
  background: var(--black);
  color: var(--cream);
}

.gallery-page {
  min-height: calc(100vh - 86px);
}

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

.gallery-grid figure {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  cursor: zoom-in;
}

.gallery-grid .wide {
  grid-column: span 1;
}

.gallery-grid .tall {
  grid-row: span 1;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 300ms ease, opacity 300ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--cream);
  background: rgba(19, 15, 13, 0.7);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-grid figure:hover figcaption,
.gallery-grid figure:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

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

.experience-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.experience-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--clay);
  font-weight: 900;
}

.experience-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  padding: clamp(54px, 8vw, 95px) clamp(18px, 5vw, 72px);
  color: var(--cream);
  background:
    linear-gradient(110deg, rgba(42, 27, 24, 0.94), rgba(42, 27, 24, 0.66)),
    url("assets/verdemar-real/verdemar-facebook-01.jpg") center/cover;
}

.contact-copy {
  max-width: 700px;
}

.contact-copy p {
  color: rgba(255, 250, 240, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.contact-panel {
  align-self: end;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  padding: 24px;
  background: rgba(19, 15, 13, 0.66);
  backdrop-filter: blur(14px);
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.reservation-modal.open {
  display: flex;
}

.reservation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 16, 0.72);
  backdrop-filter: blur(10px);
}

.reservation-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.photo-lightbox.open {
  display: flex;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 12, 10, 0.82);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  width: min(1120px, 100%);
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  color: var(--cream);
  background: var(--black);
  box-shadow: var(--shadow);
}

.lightbox-panel img {
  width: 100%;
  height: min(78vh, 760px);
  object-fit: contain;
  background: #050403;
}

.lightbox-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 38px);
}

.lightbox-copy h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 54px);
}

.lightbox-copy p {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.6;
}

.lightbox-meta {
  margin: 0;
  color: var(--maize) !important;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.36);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(19, 15, 13, 0.74);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.reservation-copy {
  max-width: 590px;
  padding-right: 42px;
}

.reservation-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.reservation-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.reservation-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

.reservation-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 23, 19, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

.reservation-form textarea {
  resize: vertical;
}

.payment-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  border: 1px solid rgba(21, 132, 67, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(21, 132, 67, 0.08);
}

.payment-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-preview strong {
  color: var(--leaf);
  font-size: 24px;
}

.payment-preview p {
  width: 100%;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: 3px solid rgba(242, 163, 50, 0.45);
  border-color: var(--maize);
}

.form-submit {
  justify-self: start;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: -6px 0 0;
  font-size: 14px;
}

.reservation-success {
  margin-top: 24px;
  border: 1px solid rgba(21, 132, 67, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: rgba(21, 132, 67, 0.08);
}

.success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--rose));
  font-size: 26px;
  font-weight: 900;
}

.reservation-success h3 {
  margin-top: 16px;
}

.reservation-success p {
  color: var(--muted);
  line-height: 1.55;
}

dl {
  margin: 0;
}

.contact-panel div + div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

dt {
  margin-bottom: 6px;
  color: var(--maize);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

dd {
  margin: 0;
  color: rgba(255, 250, 240, 0.9);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 240, 0.74);
  background: var(--black);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}

.mobile-reserve {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0 20px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--maize), #ffd37a);
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.about-section,
.experiences-section,
.reviews-section,
.reservation-page {
  background: var(--cream);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  font-weight: 850;
}

.social-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  font-weight: 950;
}

.profiles-section {
  background: rgba(255, 250, 240, 0.94);
}

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

.profile-grid a {
  display: grid;
  gap: 12px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(36, 23, 19, 0.08);
}

.profile-grid strong {
  font-size: 20px;
}

.profile-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.menu-page-hero {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(19, 15, 13, 0.96), rgba(42, 27, 24, 0.72)),
    url("assets/verdemar-real/verdemar-facebook-01.jpg") center/cover;
}

.menu-page-hero .section-heading > p:last-child {
  color: rgba(255, 250, 240, 0.8);
}

.full-menu-section {
  padding-top: 42px;
}

.full-menu-grid {
  display: grid;
  gap: clamp(38px, 6vw, 76px);
}

.full-menu-category {
  display: grid;
  gap: 18px;
}

.review-sticker {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 18;
  display: grid;
  gap: 2px;
  min-width: 160px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--cream);
  background: rgba(19, 15, 13, 0.88);
  box-shadow: 0 18px 42px rgba(19, 15, 13, 0.28);
  backdrop-filter: blur(14px);
}

.review-sticker span {
  color: var(--maize);
  font-size: 13px;
  letter-spacing: 0;
}

.review-sticker strong {
  font-size: 13px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
}

.gallery-grid figcaption {
  display: grid;
  gap: 3px;
}

.gallery-grid figcaption span {
  font-size: 13px;
  font-weight: 650;
}

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

.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(36, 23, 19, 0.08);
}

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

.experience-card > div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.experience-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.review-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(36, 23, 19, 0.08);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.review-card strong {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.stars {
  color: #d69b21;
  font-size: 18px;
  letter-spacing: 0;
}

.review-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.reservation-inline {
  position: static;
  width: min(980px, 100%);
  max-height: none;
  transform: none;
  box-shadow: var(--shadow);
}

.map-frame {
  width: 100%;
  min-height: 280px;
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .experience-grid,
  .review-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .lightbox-panel img {
    height: min(58vh, 560px);
  }
}

@media (max-width: 720px) {
  .social-links a {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(19, 15, 13, 0.94), rgba(19, 15, 13, 0.62)),
      linear-gradient(0deg, rgba(19, 15, 13, 0.94), transparent 58%);
  }

  .hero-photo-main {
    right: -6vw;
    top: 92px;
    width: min(70vw, 520px);
  }

  .hero-photo-plate {
    right: 42vw;
    top: 210px;
    width: min(34vw, 260px);
  }

  .hero-photo-round-a {
    right: 4vw;
    bottom: 120px;
    width: min(34vw, 260px);
  }

  .hero-photo-round-b {
    right: 42vw;
    bottom: 86px;
    width: min(28vw, 220px);
  }

  .hero-photo-wide,
  .hero-photo-small {
    opacity: 0.65;
  }

  .hero-card {
    position: static;
    margin-top: 28px;
  }

  .intro-band,
  .concept-grid,
  .menu-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

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

  .menu-tab-group > span {
    padding-top: 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 248, 239, 0.18);
    border-radius: 8px;
    padding: 14px;
    background: rgba(21, 18, 16, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    min-height: 720px;
    padding-top: 96px;
  }

  .hero-photo {
    opacity: 0.52;
  }

  .hero-photo-main {
    right: -28vw;
    top: 76px;
    width: 94vw;
  }

  .hero-photo-plate {
    right: 44vw;
    top: 236px;
    width: 42vw;
  }

  .hero-photo-round-a {
    right: -6vw;
    bottom: 132px;
    width: 46vw;
  }

  .hero-photo-round-b {
    right: 48vw;
    bottom: 104px;
    width: 36vw;
  }

  .hero-photo-wide,
  .hero-photo-small {
    display: none;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .review-sticker {
    right: 12px;
    bottom: 74px;
    min-width: 136px;
    padding: 10px 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-grid figure {
    margin-bottom: 14px;
  }

  .dish-content p {
    min-height: auto;
  }

  .mobile-reserve {
    display: inline-flex;
  }
}

/* 2026 navigation redesign */
.home-clean {
  background: #080706;
}

.home-clean::before {
  display: none;
}

.cinematic-hero {
  position: relative;
  min-height: calc(100vh - 87px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(120px, 18vw, 220px) clamp(20px, 7vw, 110px) clamp(72px, 9vw, 120px);
  color: var(--cream);
  background: #050403;
}

.cinematic-hero-image,
.cinematic-hero-shade {
  position: absolute;
  inset: 0;
}

.cinematic-hero-image {
  background: var(--setting-bg, url("assets/verdemar-real/verdemar-facebook-01.jpg")) center 48% / cover no-repeat;
  animation: cinematicZoom 22s ease-in-out infinite;
  will-change: transform;
}

.cinematic-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.54) 46%, rgba(5, 4, 3, 0.25) 72%, rgba(5, 4, 3, 0.88) 100%),
    linear-gradient(0deg, rgba(5, 4, 3, 0.96), transparent 58%);
  box-shadow: inset 0 0 120px 30px #050403;
}

@keyframes cinematicZoom {
  0%, 100% { transform: scale(1.025); }
  50% { transform: scale(1.14); }
}

.cinematic-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cinematic-hero h1,
.page-visual-hero h1,
.oven-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(50px, 7vw, 104px);
  line-height: 0.94;
}

.cinematic-hero-content > p:last-of-type,
.page-visual-hero p,
.oven-content p {
  max-width: 630px;
  color: rgba(255, 250, 240, 0.8);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.hero-actions-clean {
  margin-top: 30px;
}

.hero-actions-clean .button {
  min-width: 150px;
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 250, 240, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-scroll span {
  color: var(--maize);
  font-size: 22px;
}

.home-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 5vw, 70px);
  color: var(--cream);
  background: #080706;
}

.home-intro h2 {
  max-width: 920px;
}

.home-intro > p:last-of-type {
  max-width: 790px;
  color: rgba(255, 250, 240, 0.68);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.home-intro > p a {
  color: var(--maize);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.home-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 36px;
}

.home-intro-links a {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.3);
  font-weight: 800;
}

.page-visual-hero,
.oven-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 87px));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(100px, 15vw, 190px) clamp(20px, 7vw, 110px) clamp(60px, 8vw, 110px);
  color: var(--cream);
  background: #080706;
}

.page-visual-about {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.22)),
    linear-gradient(0deg, rgba(8, 7, 6, 0.92), transparent 65%),
    var(--setting-bg, url("assets/verdemar-real/verdemar-facebook-04.jpg")) center / cover;
  animation: backgroundZoom 22s ease-in-out infinite;
}

.page-visual-hero > div,
.oven-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.story-section,
.experience-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(70px, 10vw, 140px) clamp(20px, 7vw, 110px);
  background: var(--cream);
}

.story-copy p,
.experience-detail p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.values-band,
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #15100e;
}

.values-band article,
.included-grid article {
  min-height: 260px;
  padding: clamp(30px, 5vw, 70px);
  border-right: 1px solid rgba(255, 250, 240, 0.13);
  color: var(--cream);
}

.values-band span,
.included-grid span {
  color: var(--maize);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.values-band h3,
.included-grid h3 {
  margin-top: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.values-band p,
.included-grid p {
  color: rgba(255, 250, 240, 0.62);
  line-height: 1.6;
}

.page-cta {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 7vw, 110px);
  text-align: center;
  background: var(--paper);
}

.oven-hero {
  min-height: calc(100vh - 87px);
}

.oven-background {
  position: absolute;
  inset: -4%;
  background: var(--setting-bg, url("assets/verdemar-real/verdemar-facebook-04.jpg")) center / cover;
  filter: saturate(1.2) contrast(1.12) brightness(0.62);
  animation: ovenMove 18s ease-in-out infinite alternate;
}

.oven-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.2)), linear-gradient(0deg, rgba(8, 7, 6, 0.82), transparent 62%);
  box-shadow: inset 0 0 100px #080706;
}

@keyframes ovenMove {
  from { transform: scale(1.04) translate3d(-1%, 0, 0); }
  to { transform: scale(1.13) translate3d(2%, -1%, 0); }
}

.experience-detail aside {
  align-self: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.experience-detail aside span,
.experience-detail aside small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-detail aside strong {
  display: block;
  margin: 12px 0;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 500;
}

.included-section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 7vw, 110px);
  color: var(--cream);
  background: #15100e;
}

.included-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.included-grid article {
  padding: 26px;
}

.included-grid h3 {
  font-size: 25px;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(500px, 1.28fr);
  min-height: calc(100vh - 87px);
  background: var(--paper);
}

.reservation-side {
  display: grid;
  align-content: space-between;
  gap: 50px;
  padding: clamp(70px, 9vw, 130px) clamp(28px, 6vw, 90px);
  color: var(--cream);
  background:
    linear-gradient(0deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.48)),
    var(--setting-bg, url("assets/verdemar-real/verdemar-facebook-05.jpg")) center / cover;
}

.reservation-side h1 {
  font-size: clamp(48px, 6vw, 86px);
}

.reservation-side p,
.reservation-side dd {
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.55;
}

.reservation-layout .reservation-inline {
  width: auto;
  min-width: 0;
  align-self: center;
  margin: clamp(20px, 5vw, 72px);
  box-shadow: none;
}

.reservation-layout .reservation-form,
.reservation-layout .form-grid,
.reservation-layout .payment-preview {
  min-width: 0;
}

.menu-page-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94), rgba(8, 7, 6, 0.35)),
    url("assets/verdemar-real/verdemar-facebook-05.jpg") center / cover;
  animation: backgroundZoom 22s ease-in-out infinite;
}

@keyframes backgroundZoom {
  0%, 100% { background-size: cover, cover, 100% auto; }
  50% { background-size: cover, cover, 112% auto; }
}

@keyframes backgroundZoomMobile {
  0%, 100% { background-size: cover, cover, auto 100%; }
  50% { background-size: cover, cover, auto 112%; }
}

.social-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}

.footer-contact-links a {
  color: rgba(255, 250, 240, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.social-icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 50%;
  color: var(--cream);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-icon-link:hover {
  transform: translateY(-3px);
  border-color: var(--maize);
  background: rgba(255, 250, 240, 0.08);
}

.social-icon-wide {
  width: auto;
  padding: 0 16px;
  border-radius: 22px;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #25d366;
  color: #082e18;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.contact-hero {
  min-height: calc(100vh - 87px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: #090807;
  color: var(--cream);
}

.contact-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.contact-hero h1 {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.96;
}

.contact-hero p,
.contact-hero address,
.contact-hero span {
  max-width: 650px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 17px;
  font-style: normal;
  line-height: 1.65;
}

.contact-hero iframe {
  width: 100%;
  min-height: 620px;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(1.04);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--cream);
}

.contact-actions a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-right: 1px solid rgba(34, 24, 19, 0.14);
}

.contact-actions span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

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

.full-menu-section .dish-image {
  aspect-ratio: 1 / 1;
  height: auto;
}

.full-menu-section .dish-content {
  padding: 14px;
}

.full-menu-section .dish-top {
  align-items: start;
}

.full-menu-section .dish-top h3 {
  font-size: 17px;
}

.full-menu-section .dish-content p {
  min-height: 0;
  font-size: 13px;
}

.gallery-page {
  padding-top: clamp(70px, 9vw, 120px);
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-hero-image,
  .oven-background,
  .page-visual-about,
  .menu-page-hero {
    animation: none;
  }
}

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

  .contact-hero iframe {
    min-height: 480px;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-section,
  .experience-detail,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .values-band,
  .included-grid,
  .full-menu-section .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-side {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }
  .page-visual-about,
  .menu-page-hero {
    animation-name: backgroundZoomMobile;
  }

  .site-footer {
    gap: 18px;
  }

  .social-footer {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
  .cinematic-hero {
    min-height: calc(100svh - 73px);
    align-items: end;
    padding-bottom: 100px;
  }

  .cinematic-hero-image {
    background-position: 54% center;
  }

  .cinematic-hero h1,
  .page-visual-hero h1,
  .oven-hero h1 {
    font-size: 48px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-actions-clean .button {
    width: auto;
    min-width: 130px;
  }

  .values-band,
  .included-grid,
  .full-menu-section .menu-grid {
    grid-template-columns: 1fr;
  }

  .reservation-layout .reservation-inline {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .review-sticker {
    display: none;
  }
}

/* Verdemar visual system */
:root {
  --ink: #073c35;
  --muted: #55716c;
  --paper: #f4faf6;
  --clay: #087f8c;
  --maize: #a7d7c5;
  --leaf: #0b6b57;
  --rose: #45b8b0;
  --black: #042b29;
  --cream: #ffffff;
  --line: rgba(7, 60, 53, 0.14);
  --shadow: 0 30px 80px rgba(3, 47, 43, 0.18);
}

body {
  color: var(--ink);
  background: #f4faf6;
}

body::before {
  background:
    radial-gradient(circle at 15% 15%, rgba(69, 184, 176, 0.12), transparent 30%),
    radial-gradient(circle at 85% 5%, rgba(27, 154, 112, 0.12), transparent 32%),
    linear-gradient(145deg, #fff, #f1f8f4);
}

.site-header {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(3, 43, 41, 0.93);
}

.brand-logo {
  width: 54px;
  height: 54px;
  border: 0;
  background: #fff;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.brand small {
  color: rgba(255, 255, 255, 0.6);
}

.nav-reserve {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 10px 17px;
}

.button.primary {
  color: #fff;
  background: #0b6b57;
}

.button.secondary {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.eyebrow {
  color: #159b84;
  letter-spacing: 0.2em;
}

.vm-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(120px, 18vw, 220px) clamp(22px, 6vw, 90px) clamp(72px, 8vw, 110px);
  color: #fff;
  background: #042b29;
}

.vm-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 43, 41, 0.98) 0%, rgba(3, 43, 41, 0.72) 48%, rgba(3, 43, 41, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 43, 41, 0.82), transparent 52%),
    url("assets/verdemar-real/verdemar-facebook-01.jpg") center / cover;
}

.vm-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.vm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.vm-hero h1 {
  max-width: 800px;
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8.3vw, 126px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.vm-hero-content > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.6;
}

.vm-hero .hero-actions {
  margin-top: 32px;
}

.vm-hero .button.primary {
  color: #073c35;
  background: #b9ead4;
}

.vm-hero .button.secondary {
  color: #fff;
}

.vm-hero-note {
  position: absolute;
  right: clamp(22px, 5vw, 80px);
  bottom: clamp(66px, 7vw, 96px);
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 250px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.vm-hero-note span {
  color: #b9ead4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vm-hero-note strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.vm-manifesto {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(320px, 1.4fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
  padding: clamp(90px, 12vw, 180px) clamp(22px, 6vw, 90px);
  background: #fff;
}

.vm-manifesto h2,
.vm-chef h2,
.vm-location h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.vm-manifesto-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 20px;
  margin-top: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 800;
}

.vm-feature-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, minmax(330px, 42vw));
  gap: 2px;
  background: #fff;
}

.vm-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(25px, 4vw, 58px);
  color: #fff;
  background: #0b6b57;
}

.vm-feature-large {
  grid-row: span 2;
}

.vm-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.vm-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 43, 41, 0.9), transparent 65%);
}

.vm-feature:hover img {
  transform: scale(1.035);
}

.vm-feature > *:not(img) {
  position: relative;
  z-index: 2;
}

.vm-feature span {
  margin-bottom: 12px;
  color: #b9ead4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vm-feature h3 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4.6vw, 70px);
  font-weight: 400;
  line-height: 1;
}

.vm-feature-blue {
  justify-content: space-between;
  background: #087f8c;
}

.vm-feature-blue::after {
  display: none;
}

.vm-feature-blue h3 {
  font-size: clamp(30px, 3.4vw, 52px);
}

.vm-feature-blue strong {
  align-self: start;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.vm-chef {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: #dff1e8;
}

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

.vm-chef-copy {
  align-self: center;
  padding: clamp(50px, 8vw, 130px);
}

.vm-chef-copy p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.vm-location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 10vw, 160px);
  padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 90px);
  color: #fff;
  background: #042b29;
}

.vm-location > div:first-child > p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.7;
}

.vm-location-actions {
  display: grid;
  align-content: center;
}

.vm-location-actions a {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vm-location-actions span {
  color: #75cab1;
  font-size: 11px;
}

.vm-location-actions strong {
  font-family: Georgia, serif;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 400;
}

.site-footer {
  color: #fff;
  background: #031f1e;
}

.site-footer a {
  color: #b9ead4;
}

.whatsapp-float {
  color: #073c35;
  background: #b9ead4;
}

.whatsapp-float[hidden] {
  display: none;
}

.page-visual-hero,
.oven-hero,
.menu-page-hero,
.contact-hero,
.reservation-side {
  background-color: #063f3b;
}

.values-band,
.included-section,
.contact-actions,
.reservation-dialog {
  background: #fff;
}

@media (max-width: 900px) {
  .vm-hero-note {
    display: none;
  }

  .vm-manifesto,
  .vm-chef,
  .vm-location {
    grid-template-columns: 1fr;
  }

  .vm-feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .vm-feature-large {
    grid-row: auto;
  }

  .vm-feature {
    min-height: 470px;
  }

  .vm-chef-image {
    height: 70vw;
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .vm-hero {
    min-height: calc(100svh - 72px);
  }

  .vm-hero h1 {
    font-size: clamp(54px, 18vw, 78px);
  }

  .vm-manifesto,
  .vm-chef-copy,
  .vm-location {
    padding: 72px 20px;
  }

  .vm-manifesto h2,
  .vm-chef h2,
  .vm-location h2 {
    font-size: 46px;
  }

  .vm-feature {
    min-height: 390px;
  }
}

/* Verdemar-only imagery for reservation and experience pages. */
.reservation-side {
  background:
    linear-gradient(145deg, rgba(3, 38, 35, 0.9), rgba(4, 70, 78, 0.56)),
    url("assets/verdemar-real/verdemar-facebook-01.jpg") center / cover;
}

.oven-background {
  background:
    linear-gradient(145deg, rgba(3, 38, 35, 0.42), rgba(4, 70, 78, 0.22)),
    var(--setting-bg, url("assets/verdemar-real/verdemar-facebook-03.jpg")) center / cover;
}
