:root {
  --stone: #ccbb9e;
  --cream: #e5d5c2;
  --ivory: #f4f1ed;
  --gold: #e2ad29;
  --mint: #65bda7;
  --green: #00b979;
  --bronze: #b27f36;
  --ink: #123d34;
  --muted: #706757;
  --teal: #008b76;
  --teal-dark: #006d5e;
  --terracotta: #f0826f;
  --paper: #fbf8f0;
  --line: rgba(33, 28, 24, 0.14);
  --shadow: 0 24px 80px rgba(29, 23, 18, 0.18);
  --radius: 8px;
}

@font-face {
  font-display: swap;
  font-family: "Black Mango";
  src: url("assets/fonts/BlackMango-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Black Mango";
  font-weight: 500;
  src: url("assets/fonts/BlackMango-Medium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Amellia";
  src: url("assets/fonts/Amellia.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-weight: 500;
  src: url("assets/fonts/Poppins-Medium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-weight: 700;
  src: url("assets/fonts/Poppins-SemiBold.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body,
button,
input {
  letter-spacing: 0;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(244, 241, 237, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 10;
}

.site-header.scrolled {
  background: rgba(244, 241, 237, 0.96);
  box-shadow: 0 10px 30px rgba(33, 28, 24, 0.08);
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 210px;
}

.brand-logo {
  height: 54px;
  object-fit: contain;
  width: 176px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(33, 28, 24, 0.72);
}

.nav-links a:hover,
.social-row a:hover {
  color: var(--teal-dark);
}

.menu-toggle {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(33, 28, 24, 0.08);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 20px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-action,
.btn,
.menu-tab {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.header-tools {
  align-items: center;
  display: flex;
  gap: 12px;
}

.language-switch {
  align-items: center;
  background: rgba(204, 187, 158, 0.5);
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  padding: 4px;
}

.language-switch a {
  border-radius: 6px;
  color: rgba(33, 28, 24, 0.66);
  padding: 8px 10px;
}

.language-switch a.active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 6px 14px rgba(33, 28, 24, 0.08);
}

.header-action {
  background: var(--ink);
  color: white;
}

.btn:hover,
.header-action:hover,
.menu-tab:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: white;
}

.btn-light {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

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

.btn-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  min-height: 88svh;
  overflow: hidden;
  position: relative;
}

.hero-bg,
.hero-overlay,
.contact-bg,
.contact-video {
  inset: 0;
  position: absolute;
}

.hero-bg {
  background: url("assets/images/hero-local-amanecer.webp") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 61, 52, 0.78), rgba(18, 61, 52, 0.42) 45%, rgba(18, 61, 52, 0.08)),
    linear-gradient(0deg, rgba(18, 61, 52, 0.3), rgba(18, 61, 52, 0.1));
}

.hero-content {
  color: white;
  max-width: 730px;
  padding: 18svh clamp(20px, 7vw, 86px) 12svh;
  position: relative;
  z-index: 1;
}

.hero-logo {
  filter: drop-shadow(0 18px 24px rgba(18, 61, 52, 0.34));
  margin-bottom: 22px;
  max-width: min(290px, 70vw);
}

.eyebrow,
.section-kicker,
.dish-card span,
.quick-strip span {
  color: var(--gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(76px, 13vw, 170px);
  font-family: "Amellia", "Black Mango", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  line-height: 0.82;
  margin: 8px 0 26px;
}

.hero-copy {
  font-size: clamp(20px, 3vw, 32px);
  font-family: "Black Mango", Georgia, serif;
  line-height: 1.25;
  margin: 0;
  max-width: 660px;
}

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

.quick-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-strip div {
  padding: 24px clamp(18px, 4vw, 54px);
}

.quick-strip strong {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  font-family: "Black Mango", Georgia, serif;
  font-weight: 400;
  margin-top: 7px;
}

.section {
  padding: clamp(70px, 9vw, 126px) clamp(20px, 6vw, 76px);
  scroll-margin-top: 96px;
}

.split,
.menu-section,
.award-section {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  margin-top: 22px;
}

.copy-block h2,
.section-heading h2,
.menu-copy h2,
.reviews-heading h2,
.award-copy h2,
.formal-contact h2,
.contact-panel h2 {
  font-size: clamp(34px, 5vw, 70px);
  font-family: "Black Mango", Georgia, serif;
  font-weight: 400;
  line-height: 0.96;
  margin: 12px 0 22px;
}

.copy-block p,
.section-heading p,
.menu-copy p,
.reviews-heading p,
.award-copy p,
.contact-copy p,
.contact-panel p {
  color: var(--muted);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
}

.place-video {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.place-video::after {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.place-video video {
  aspect-ratio: 16 / 10;
  display: block;
  height: min(58vw, 620px);
  object-fit: cover;
  width: 100%;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  margin-bottom: 30px;
}

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

.dish-card {
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(33, 28, 24, 0.12);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.dish-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 738px;
}

.dish-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.dish-card::after {
  background: linear-gradient(0deg, rgba(18, 61, 52, 0.76), transparent 60%);
  content: "";
  inset: 0;
  position: absolute;
}

.dish-card div {
  bottom: 0;
  color: white;
  padding: 24px;
  position: absolute;
  z-index: 1;
}

.dish-card h3 {
  font-size: clamp(24px, 3vw, 42px);
  font-family: "Black Mango", Georgia, serif;
  font-weight: 400;
  line-height: 1;
  margin: 8px 0 0;
}

.menu-section {
  align-items: center;
  background: var(--paper);
  border-block: 1px solid var(--line);
  grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 1.22fr);
}

.menu-actions {
  background: rgba(33, 28, 24, 0.06);
  border-radius: var(--radius);
  display: inline-flex;
  gap: 6px;
  margin-top: 26px;
  padding: 6px;
}

.menu-tab {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
}

.menu-tab.active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(33, 28, 24, 0.08);
}

.menu-preview {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 720px;
  overflow: hidden;
}

.menu-preview iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(229, 213, 194, 0.45), rgba(244, 241, 237, 0.96)),
    var(--ivory);
}

.reviews-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
  margin: 14px 0 30px;
}

.reviews-heading h2 {
  margin-bottom: 18px;
}

.rating-card {
  background: var(--paper);
  border: 1px solid rgba(0, 139, 118, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(18, 61, 52, 0.11);
  padding: 26px;
}

.rating-card span,
.rating-card small,
.review-card span,
.tripadvisor-badge span {
  color: var(--muted);
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.rating-card strong {
  color: var(--teal);
  display: block;
  font-family: "Black Mango", Georgia, serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 0.9;
  margin: 10px 0;
}

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

.review-card {
  background: var(--paper);
  border: 1px solid rgba(204, 187, 158, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(18, 61, 52, 0.08);
  color: inherit;
  display: block;
  min-height: 260px;
  padding: 26px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.review-card:hover {
  border-color: rgba(0, 139, 118, 0.36);
  box-shadow: 0 22px 54px rgba(18, 61, 52, 0.14);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.review-card p {
  color: var(--ink);
  font-family: "Black Mango", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  margin: 0 0 24px;
}

.award-section {
  align-items: stretch;
  background: var(--ink);
  color: white;
  grid-template-columns: 1.05fr 0.95fr;
  padding: clamp(20px, 4vw, 56px);
}

.award-media img {
  border-radius: var(--radius);
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.award-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 80px);
}

.award-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.award-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.tripadvisor-badge {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: auto;
  justify-content: center;
  padding: 14px;
  text-align: center;
  width: 168px;
}

.tripadvisor-badge.featured {
  border-color: var(--gold);
  box-shadow: 0 14px 38px rgba(226, 173, 41, 0.26);
}

.tripadvisor-badge img {
  height: auto;
  max-width: 138px;
  object-fit: contain;
  width: 100%;
}

.tripadvisor-badge em {
  color: var(--teal);
  font-family: "Black Mango", Georgia, serif;
  font-size: 34px;
  font-style: normal;
  line-height: 1;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
  padding-top: clamp(44px, 7vw, 82px);
}

.gallery img {
  aspect-ratio: 1 / 1.18;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery img:nth-child(2),
.gallery img:nth-child(5) {
  margin-top: 46px;
}

.contact {
  min-height: 690px;
  padding: clamp(28px, 6vw, 76px);
  overflow: hidden;
  position: relative;
  scroll-margin-top: 96px;
}

.contact-video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact-bg {
  background:
    linear-gradient(90deg, rgba(18, 61, 52, 0.84), rgba(18, 61, 52, 0.38) 55%, rgba(18, 61, 52, 0.16));
}

.contact-panel {
  color: white;
  max-width: 640px;
  padding-top: clamp(70px, 10vw, 130px);
  position: relative;
}

.contact-panel p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.social-row a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.formal-contact {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
}

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

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-method {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(66, 53, 35, 0.07);
  display: grid;
  gap: 6px;
  padding: 18px 20px;
}

.contact-method span {
  color: var(--teal-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.mail-form {
  background: white;
  border: 1px solid rgba(204, 134, 94, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(66, 53, 35, 0.11);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: 500 15px/1.5 "Poppins", Arial, sans-serif;
  min-height: 48px;
  outline: none;
  padding: 12px 14px;
  width: 100%;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 157, 120, 0.14);
}

.form-submit {
  justify-self: start;
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.hidden-field {
  display: none;
}

.form-note.success {
  color: var(--teal-dark);
  font-weight: 700;
}

.form-note.error {
  color: #8c2f1f;
  font-weight: 700;
}

.footer {
  background: var(--ink);
  color: white;
  display: grid;
  font-family: "Poppins", Arial, sans-serif;
  gap: 14px;
  justify-items: center;
  padding: clamp(40px, 7vw, 78px) clamp(20px, 6vw, 76px);
  text-align: center;
}

.footer p {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.footer strong {
  display: block;
  font-family: "Black Mango", Georgia, serif;
  font-size: clamp(34px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  max-width: 980px;
}

.footer span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
}

.thanks-page {
  align-items: center;
  background:
    linear-gradient(110deg, rgba(18, 61, 52, 0.88), rgba(0, 139, 118, 0.52)),
    url("assets/images/hero-local-amanecer.webp") center center / cover no-repeat;
  display: flex;
  min-height: 100svh;
  padding: clamp(24px, 6vw, 72px);
}

.thanks-view {
  color: white;
  max-width: 760px;
}

.thanks-view img {
  margin-bottom: 28px;
  max-width: 260px;
}

.thanks-view h1 {
  font-family: "Black Mango", Georgia, serif;
  font-size: clamp(48px, 10vw, 112px);
  font-weight: 400;
  line-height: 0.98;
  margin: 0 0 22px;
}

.thanks-view p:not(.eyebrow) {
  font-family: "Black Mango", Georgia, serif;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.12;
  margin: 0 0 30px;
  max-width: 680px;
}

@media (max-width: 980px) {
  .site-header {
    gap: 12px;
  }

  .nav-links {
    align-items: stretch;
    background: rgba(251, 248, 240, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(33, 28, 24, 0.14);
    display: grid;
    gap: 0;
    left: 18px;
    opacity: 0;
    padding: 8px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: calc(100% + 10px);
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .nav-links a {
    border-radius: 6px;
    padding: 14px 12px;
  }

  .nav-links a:hover {
    background: rgba(101, 189, 167, 0.14);
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-tools {
    margin-left: auto;
    order: 2;
  }

  .quick-strip,
  .split,
  .menu-section,
  .award-section,
  .formal-contact,
  .reviews-heading,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .dish-card.large {
    grid-column: span 2;
    min-height: 520px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 45px;
    width: 138px;
  }

  .header-action {
    display: none;
  }

  .language-switch {
    font-size: 11px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-top: 23svh;
  }

  .quick-strip {
    display: block;
  }

  .quick-strip div + div {
    border-top: 1px solid var(--line);
  }

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

  .place-video video {
    height: 420px;
  }

  .dish-card,
  .dish-card.large {
    grid-column: auto;
    min-height: 420px;
  }

  .award-badges {
    justify-content: center;
  }

  .tripadvisor-badge {
    width: 144px;
  }

  .tripadvisor-badge img {
    max-width: 116px;
  }

  .section,
  .contact {
    scroll-margin-top: 78px;
  }

  .contact-method strong {
    font-size: 18px;
  }

  .contact-method[href^="mailto"] strong {
    font-size: 15px;
  }

  .menu-preview {
    height: 560px;
  }

  .gallery img:nth-child(2),
  .gallery img:nth-child(5) {
    margin-top: 0;
  }

  .footer {
    justify-items: start;
    text-align: left;
  }
}
