/* Candado Golf — design tokens + layout (Elementor-mappable) */

:root {
  --cg-color-ink: #06150e;
  --cg-color-ink-soft: rgba(6, 21, 14, 0.8);
  --cg-color-gold: #e2c386;
  --cg-color-white: #ffffff;
  --cg-color-white-60: rgba(255, 255, 255, 0.6);
  --cg-color-white-80: rgba(255, 255, 255, 0.8);
  --cg-color-white-15: rgba(255, 255, 255, 0.15);
  --cg-color-white-05: rgba(255, 255, 255, 0.05);
  --cg-color-muted: #6b7280;
  --cg-color-surface: #f7f5f2;
  --cg-color-surface-2: #ece8e1;
  --cg-font-display: "Hanken Grotesk", system-ui, sans-serif;
  --cg-font-body: "Manrope", system-ui, sans-serif;
  --cg-container: 1232px;
  --cg-gutter: 24px;
  --cg-section-y: 200px;
  --cg-radius: 8px;
  --cg-header-h: 80px;
  --cg-eyebrow: #725b29;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--cg-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--cg-color-ink);
  background: var(--cg-color-white);
  -webkit-font-smoothing: antialiased;
}

body.cg-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text,
.cg-skip-link {
  position: absolute;
  left: -9999px;
}

.cg-skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 10000;
  background: #fff;
  padding: 8px 12px;
}

.cg-container {
  width: min(100% - (var(--cg-gutter) * 2), var(--cg-container));
  margin-inline: auto;
}

.cg-section {
  padding-block: var(--cg-section-y);
}

.cg-section--flush {
  padding-block: 0;
}

.cg-section--dark {
  background: var(--cg-color-ink);
  color: var(--cg-color-white);
}

.cg-eyebrow {
  font-family: var(--cg-font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 6.4px;
  text-transform: uppercase;
  color: var(--cg-eyebrow);
}

.cg-section--dark .cg-eyebrow {
  color: var(--cg-color-gold);
}

.cg-heading {
  font-family: var(--cg-font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cg-heading--xl {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.cg-heading--lg {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.15;
}

.cg-heading--md {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.cg-heading em,
.cg-heading i {
  font-style: italic;
  font-weight: 300;
}

.cg-divider {
  width: 96px;
  height: 1px;
  background: var(--cg-color-gold);
  border: 0;
  margin: 24px 0;
}

.cg-divider--center {
  margin-inline: auto;
}

.cg-text {
  color: var(--cg-color-ink-soft);
  max-width: 36rem;
}

.cg-section--dark .cg-text {
  color: var(--cg-color-white-80);
}

.cg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 48px;
  border-radius: var(--cg-radius);
  border: 1px solid transparent;
  font-family: var(--cg-font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.cg-btn--solid {
  background: var(--cg-color-white);
  color: var(--cg-color-ink);
}

.cg-btn--solid:hover {
  background: var(--cg-color-gold);
}

.cg-btn--ghost {
  background: transparent;
  color: var(--cg-color-ink);
  border-color: var(--cg-color-ink);
}

.cg-section--dark .cg-btn--ghost {
  color: var(--cg-color-white);
  border-color: var(--cg-color-white-15);
}

.cg-btn--ghost:hover {
  border-color: var(--cg-color-gold);
  color: var(--cg-color-gold);
}

.cg-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--cg-font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cg-link:hover {
  color: var(--cg-color-gold);
}

/* Header */
.cg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cg-color-white);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  min-height: var(--cg-header-h);
}

.cg-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--cg-header-h);
  max-width: 1440px;
  padding-inline: 40px;
  width: 100%;
}

.cg-nav__brand img {
  width: 194px;
  height: 45px;
  object-fit: contain;
}

.cg-nav__list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.cg-nav__list a {
  font-family: var(--cg-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cg-color-ink);
}

.cg-nav__list a:hover {
  color: var(--cg-color-gold);
}

.cg-nav__cta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cg-nav__reserve {
  font-family: var(--cg-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(6, 21, 14, 0.25);
  padding-bottom: 4px;
}

.cg-nav__toggle {
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.cg-nav__toggle-bars,
.cg-nav__toggle-bars::before,
.cg-nav__toggle-bars::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cg-color-ink);
  position: relative;
}

.cg-nav__toggle-bars::before,
.cg-nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.cg-nav__toggle-bars::before { top: -6px; }
.cg-nav__toggle-bars::after { top: 6px; }

.cg-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cg-color-ink);
  color: var(--cg-color-white);
  padding: 48px 96px;
}

.cg-mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.cg-mobile-menu__top img {
  filter: brightness(0) invert(1);
}

.cg-mobile-menu__close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

.cg-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cg-mobile-menu__list a {
  font-family: var(--cg-font-display);
  font-size: 40px;
  font-weight: 300;
}

.cg-mobile-menu__meta {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--cg-color-white-15);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--cg-color-white-60);
}

/* Hero home */
.cg-hero {
  position: relative;
  min-height: 100vh;
  min-height: 1069px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 120px;
  background: var(--cg-color-ink);
  color: #fff;
  overflow: hidden;
}

.cg-hero__media {
  position: absolute;
  inset: 0;
}

.cg-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.cg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 14, 0.7) 0%, rgba(6, 21, 14, 0.2) 40%, rgba(6, 21, 14, 0.6) 100%);
}

.cg-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--cg-container));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.cg-hero__copy {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cg-hero__copy .cg-eyebrow {
  color: var(--cg-color-white-60);
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
}

.cg-hero__title {
  font-family: var(--cg-font-display);
  font-size: clamp(3rem, 6.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cg-hero__title em {
  font-style: italic;
  font-weight: 300;
  display: block;
}

.cg-hero__lead {
  color: var(--cg-color-white-80);
  max-width: 36rem;
}

.cg-hero__lead u {
  text-decoration: none;
  border-bottom: 1px solid var(--cg-color-gold);
  color: #fff;
}

.cg-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.cg-hero__awards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cg-award {
  width: 120px;
  min-height: 130px;
  border-radius: 9999px;
  border: 1px solid var(--cg-color-white-15);
  background: var(--cg-color-white-05);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  text-align: center;
}

.cg-award img {
  width: 38px;
  height: auto;
}

.cg-award span {
  font-family: var(--cg-font-display);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cg-color-white-60);
}

.cg-award strong {
  font-size: 24px;
  font-weight: 700;
}

/* Editorial split */
.cg-split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cg-split__media,
.cg-split__copy {
  flex: 1;
  min-width: 0;
}

.cg-split__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--cg-radius);
}

.cg-split__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 490px;
}

.cg-stats {
  display: flex;
  gap: 48px;
  margin-top: 24px;
}

.cg-stats dt {
  font-family: var(--cg-font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cg-color-muted);
  margin-bottom: 8px;
}

.cg-stats dd {
  margin: 0;
  font-family: var(--cg-font-display);
  font-size: 18px;
}

/* Gastronomy */
.cg-center {
  text-align: center;
}

.cg-center .cg-text {
  margin-inline: auto;
}

.cg-gastron__grid {
  display: flex;
  gap: 40px;
  margin-top: 80px;
}

.cg-gastron__col {
  flex: 1;
  min-width: 0;
}

.cg-gastron__col-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
}

.cg-gastron__num {
  font-family: var(--cg-font-display);
  font-size: 28px;
  color: var(--cg-color-gold);
}

.cg-dish {
  margin-bottom: 40px;
}

.cg-dish h4 {
  font-family: var(--cg-font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.cg-dish p {
  color: var(--cg-color-ink-soft);
  font-size: 15px;
}

.cg-section__cta {
  margin-top: 64px;
  text-align: center;
}

/* Catering teaser cards */
.cg-cards {
  display: flex;
  gap: 40px;
  margin-top: 80px;
}

.cg-card {
  flex: 1;
  min-height: 420px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #eeeeec;
  border-radius: var(--cg-radius);
}

.cg-card--dark {
  background: var(--cg-color-ink);
  color: #fff;
}

.cg-card h3 {
  font-family: var(--cg-font-display);
  font-size: 32px;
  font-weight: 400;
}

.cg-card p {
  color: inherit;
  opacity: 0.8;
  max-width: 28rem;
}

.cg-card a {
  margin-top: auto;
  font-family: var(--cg-font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 4px;
}

/* CoverManager / reservas block */
.cg-reservas-block {
  text-align: center;
}

.cg-reservas-block .cg-covermanager {
  margin-top: 48px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cg-color-white-15);
  border-radius: var(--cg-radius);
  padding: 24px;
  min-height: 480px;
}

.cg-covermanager--placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  color: var(--cg-color-white-60);
}

.cg-reservas-block .cg-phone-note {
  margin-top: 32px;
  color: var(--cg-color-white-60);
  font-size: 14px;
}

.cg-reservas-block .cg-phone-note a {
  color: #fff;
  border-bottom: 1px solid var(--cg-color-gold);
}

/* Forms */
.cg-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cg-form__row {
  display: flex;
  gap: 48px;
}

.cg-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.cg-form__field label {
  font-family: var(--cg-font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cg-form__field input,
.cg-form__field select,
.cg-form__field textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(6, 21, 14, 0.25);
  background: transparent;
  color: inherit;
  border-radius: 0;
}

.cg-section--dark .cg-form__field input,
.cg-section--dark .cg-form__field select,
.cg-section--dark .cg-form__field textarea {
  border-bottom-color: var(--cg-color-white-15);
  color: #fff;
}

.cg-form__field textarea {
  min-height: 120px;
  resize: vertical;
}

.cg-form__field input:focus,
.cg-form__field select:focus,
.cg-form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--cg-color-gold);
}

.cg-notice {
  margin: 24px 0;
  padding: 16px 20px;
  background: rgba(226, 195, 134, 0.15);
  border-left: 3px solid var(--cg-color-gold);
}

/* Page hero (inner pages) */
.cg-page-hero {
  position: relative;
  min-height: 70vh;
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: var(--cg-color-ink);
  overflow: hidden;
}

.cg-page-hero__media {
  position: absolute;
  inset: 0;
}

.cg-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.cg-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 14, 0.55), rgba(6, 21, 14, 0.75));
}

.cg-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cg-page-hero--plain {
  min-height: auto;
  background: #fff;
  color: var(--cg-color-ink);
  padding-top: 96px;
}

.cg-page-hero--plain .cg-page-hero__content {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Carta */
.cg-gallery-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  cursor: grab;
}

.cg-gallery-scroll.is-dragging {
  cursor: grabbing;
}

.cg-gallery-scroll img {
  flex: 0 0 auto;
  width: min(450px, 70vw);
  height: 600px;
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: 0;
}

.cg-gallery-scroll img:nth-child(even) {
  width: min(600px, 80vw);
}

.cg-menu-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.cg-menu-block__aside {
  flex: 0 0 384px;
}

.cg-menu-block__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cg-menu-item {
  font-family: var(--cg-font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(6, 21, 14, 0.08);
}

.cg-menu-block--reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.cg-menu-block--reverse .cg-menu-block__aside {
  text-align: right;
}

.cg-menu-block--reverse .cg-divider {
  margin-left: auto;
}

.cg-arroces-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 96px;
  max-width: 770px;
  margin: 64px auto 0;
  justify-content: space-between;
}

.cg-arroces-grid li {
  flex: 0 0 calc(50% - 48px);
  padding-block: 20px;
  border-bottom: 1px solid var(--cg-color-white-15);
  font-family: var(--cg-font-display);
  font-size: 16px;
}

.cg-commitment {
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
  color: var(--cg-color-ink-soft);
}

/* Nosotros */
.cg-philosophy {
  display: flex;
  gap: 40px;
}

.cg-philosophy__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cg-philosophy__item img {
  width: 32px;
  height: auto;
}

.cg-bento {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.cg-bento__main {
  flex: 2;
  position: relative;
  min-height: 800px;
}

.cg-bento__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cg-bento__main span {
  position: absolute;
  left: 48px;
  bottom: 48px;
  color: #fff;
  font-family: var(--cg-font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.cg-bento__side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cg-bento__side img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.cg-bento__panel {
  flex: 1;
  background: var(--cg-color-ink);
  color: #fff;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Contact */
.cg-contact-grid {
  display: flex;
  gap: 32px;
  margin-bottom: 80px;
}

.cg-contact-grid img {
  flex: 1;
  width: 50%;
  height: 444px;
  object-fit: cover;
}

.cg-contact-layout {
  display: flex;
  gap: 136px;
}

.cg-contact-info,
.cg-contact-form-wrap {
  flex: 1;
}

.cg-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.cg-contact-line {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cg-contact-line strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cg-color-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.cg-contact-box {
  margin-top: 48px;
  background: var(--cg-color-surface);
  padding: 40px;
}

.cg-contact-form-wrap {
  background: var(--cg-color-white);
  border: 1px solid rgba(6, 21, 14, 0.08);
  padding: 64px;
}

.cg-map {
  margin-top: 48px;
  width: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.cg-hours {
  display: flex;
  justify-content: center;
  gap: 96px;
  text-align: center;
  margin-top: 40px;
}

.cg-hours strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cg-color-muted);
  margin-bottom: 16px;
}

/* Catering compact */
.cg-notice-card {
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 80px;
  background: var(--cg-color-surface);
  text-align: center;
}

.cg-portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.cg-portfolio-bento {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.cg-portfolio-bento__main {
  flex: 2;
}

.cg-portfolio-bento__main img {
  width: 100%;
  height: 454px;
  object-fit: cover;
}

.cg-portfolio-bento__caption {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 14px;
  color: var(--cg-color-muted);
}

.cg-portfolio-bento__panel {
  flex: 1;
  background: var(--cg-color-ink);
  color: #fff;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.cg-portfolio-row {
  display: flex;
  gap: 40px;
}

.cg-portfolio-row figure {
  flex: 1;
  margin: 0;
}

.cg-portfolio-row img {
  width: 100%;
  height: 384px;
  object-fit: cover;
}

.cg-portfolio-row figcaption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--cg-color-muted);
}

.cg-mosaic {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.cg-mosaic img {
  flex: 0 0 calc(25% - 30px);
  width: calc(25% - 30px);
  aspect-ratio: 1;
  object-fit: cover;
}

.cg-icons-row {
  display: flex;
  gap: 48px;
  text-align: center;
}

.cg-icons-row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cg-icons-row img {
  width: 28px;
  height: auto;
}

/* Footer */
.cg-footer {
  border-top: 1px solid rgba(6, 21, 14, 0.08);
  padding-top: 97px;
  padding-bottom: 49px;
}

.cg-footer__grid {
  display: flex;
  gap: 40px;
}

.cg-footer__brand {
  flex: 0 0 490px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cg-footer__tagline {
  max-width: 24rem;
  color: var(--cg-color-ink-soft);
}

.cg-footer__social {
  display: flex;
  gap: 32px;
}

.cg-footer__social a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cg-footer__col {
  flex: 0 0 172px;
}

.cg-footer__col--wide {
  flex: 1;
}

.cg-footer__col h5 {
  font-family: var(--cg-font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cg-footer__col li + li {
  margin-top: 16px;
}

.cg-footer__col a,
.cg-footer__col p {
  color: var(--cg-color-ink-soft);
  font-size: 15px;
}

.cg-footer__bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(6, 21, 14, 0.1);
}

.cg-footer__bottom p {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cg-color-muted);
}

/* Reservas layout */
.cg-reservas-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.cg-reservas-layout__aside {
  flex: 0 0 347px;
}

.cg-reservas-layout__widget {
  flex: 1;
  background: var(--cg-color-surface);
  padding: 48px;
  min-height: 640px;
}

.cg-gift {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cg-gift__copy,
.cg-gift__media {
  flex: 1;
}

.cg-gift__media {
  position: relative;
}

.cg-gift__media img {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.cg-gift__badge {
  position: absolute;
  left: 0;
  bottom: 24px;
  background: #fff;
  padding: 32px 40px;
  max-width: 280px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1100px) {
  .cg-nav__list {
    display: none;
  }

  .cg-split,
  .cg-gastron__grid,
  .cg-cards,
  .cg-menu-block,
  .cg-menu-block--reverse,
  .cg-philosophy,
  .cg-bento,
  .cg-contact-layout,
  .cg-contact-grid,
  .cg-footer__grid,
  .cg-reservas-layout,
  .cg-gift,
  .cg-portfolio-bento,
  .cg-portfolio-row,
  .cg-icons-row,
  .cg-hours,
  .cg-form__row {
    flex-direction: column;
  }

  .cg-menu-block--reverse {
    text-align: left;
  }

  .cg-menu-block--reverse .cg-menu-block__aside,
  .cg-menu-block--reverse .cg-divider {
    text-align: left;
    margin-left: 0;
  }

  .cg-menu-block__aside,
  .cg-footer__brand,
  .cg-reservas-layout__aside {
    flex-basis: auto;
    width: 100%;
  }

  .cg-hero__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cg-hero__awards {
    flex-direction: row;
  }

  .cg-mosaic img {
    flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }

  .cg-arroces-grid li {
    flex-basis: 100%;
  }

  .cg-bento__main {
    min-height: 480px;
  }

  .cg-contact-grid img {
    width: 100%;
  }

  .cg-mobile-menu {
    padding: 32px 24px;
  }

  .cg-mobile-menu__list a {
    font-size: 28px;
  }

  .cg-nav {
    padding-inline: 24px;
  }

  .cg-card,
  .cg-contact-form-wrap,
  .cg-bento__panel,
  .cg-notice-card {
    padding: 40px 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --cg-section-y: 96px;
  }

  .cg-nav__brand img {
    width: 140px;
    height: auto;
  }

  .cg-nav__reserve {
    display: none;
  }

  .cg-gallery-scroll img {
    height: 420px;
  }

  .cg-mosaic img {
    flex-basis: 100%;
    width: 100%;
  }
}
