/* Rocha Club website style */

.rocha-site {
  --rocha-color-primary: #E6AA4A;
  --rocha-color-primary-dark: #C78B2F;
  --rocha-color-primary-soft: #F7E3BC;

  --rocha-color-text: #17181C;
  --rocha-color-text-muted: #6C6B67;
  --rocha-color-background: #F4F1EA;
  --rocha-color-surface: #FFFFFF;
  --rocha-color-surface-warm: #EEE8DC;
  --rocha-color-border: #DDD3C5;

  --rocha-color-dark: #101116;
  --rocha-color-dark-soft: #191B22;

  --rocha-shadow-small: 0 10px 26px rgba(0, 0, 0, 0.07);
  --rocha-shadow-medium: 0 18px 46px rgba(0, 0, 0, 0.12);
  --rocha-shadow-large: 0 28px 80px rgba(0, 0, 0, 0.18);

  --rocha-radius-small: 14px;
  --rocha-radius-medium: 24px;
  --rocha-radius-large: 36px;

  --rocha-container-width: 1200px;
  --rocha-font-heading: "Cormorant Garamond", serif;
  --rocha-font-body: "Manrope", sans-serif;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--rocha-color-background);
  color: var(--rocha-color-text);
  font-family: var(--rocha-font-body);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.rocha-site,
.rocha-site * {
  box-sizing: border-box;
}

.rocha-site * {
  margin: 0;
  padding: 0;
}

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

.rocha-site a {
  color: inherit;
  text-decoration: none;
}

.rocha-site button,
.rocha-site input,
.rocha-site select,
.rocha-site textarea {
  font: inherit;
}

.rocha-site button {
  border: 0;
  background: none;
  cursor: pointer;
}

.rocha-container {
  width: min(100% - 2rem, var(--rocha-container-width));
  margin-inline: auto;
}

.rocha-section {
  padding: 6rem 0;
}

.rocha-section-heading {
  max-width: 760px;
}

.rocha-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--rocha-color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rocha-section-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.rocha-title-large,
.rocha-title-medium,
.rocha-title-small {
  font-family: var(--rocha-font-heading);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: inherit;
}

.rocha-title-large {
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 700;
}

.rocha-title-medium {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  font-weight: 700;
}

.rocha-title-small {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 700;
}

.rocha-lead {
  color: var(--rocha-color-text-muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  max-width: 700px;
}

.rocha-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.rocha-button:hover {
  transform: translateY(-2px);
}

.rocha-button-primary {
  background: var(--rocha-color-primary);
  color: var(--rocha-color-dark);
  box-shadow: 0 12px 26px rgba(230, 170, 74, 0.28);
}

.rocha-button-primary:hover {
  background: var(--rocha-color-primary-dark);
  color: #FFFFFF;
}

.rocha-button-light-outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
}

.rocha-button-dark-outline {
  border: 1px solid var(--rocha-color-border);
  background: #FFFFFF;
  color: var(--rocha-color-text);
}

/* Header */

.rocha-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 17, 22, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.rocha-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.rocha-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.rocha-brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.rocha-brand-mark::before,
.rocha-brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.rocha-brand-mark::before {
  inset: 0;
  background: var(--rocha-color-primary);
  transform: translate(-7px, -4px);
}

.rocha-brand-mark::after {
  inset: 0;
  border: 4px solid #FFFFFF;
}

.rocha-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.rocha-brand-name {
  color: #FFFFFF;
  font-family: var(--rocha-font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.rocha-brand-subtitle {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.rocha-navigation {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.rocha-navigation-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.rocha-navigation-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.rocha-navigation-link:hover {
  color: var(--rocha-color-primary);
}

.rocha-mobile-navigation-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #FFFFFF;
}

.rocha-mobile-navigation {
  display: none;
  background: var(--rocha-color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rocha-mobile-navigation.is-open {
  display: block;
}

.rocha-mobile-navigation-inner {
  width: min(100% - 2rem, var(--rocha-container-width));
  margin-inline: auto;
  padding: 0.65rem 0 1rem;
}

.rocha-mobile-navigation-inner a {
  display: block;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero */

.rocha-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6.25rem 0 5.25rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 170, 74, 0.22), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(230, 170, 74, 0.12), transparent 26%),
    linear-gradient(135deg, #101116 0%, #171920 46%, #0D0E12 100%);
  color: #FFFFFF;
}

.rocha-hero::before {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -130px;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(230, 170, 74, 0.14);
  filter: blur(22px);
}

.rocha-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.rocha-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rocha-hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rocha-color-primary);
}

.rocha-hero-title span {
  color: var(--rocha-color-primary);
}

.rocha-hero-text {
  max-width: 650px;
  margin: 1.35rem 0 2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.rocha-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.rocha-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.rocha-hero-highlight {
  min-width: 160px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.rocha-hero-highlight strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #FFFFFF;
  font-size: 0.94rem;
}

.rocha-hero-highlight span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
}

.rocha-hero-visual-card {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--rocha-shadow-large);
  backdrop-filter: blur(14px);
}

.rocha-hero-image {
  min-height: 560px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  border-radius: 26px;
  overflow: hidden;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.44)),
    var(--rocha-hero-image, url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80")) center / cover;
}

.rocha-floating-card {
  width: min(100%, 290px);
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rocha-color-dark);
  box-shadow: var(--rocha-shadow-medium);
}

.rocha-floating-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.rocha-floating-card span {
  color: var(--rocha-color-text-muted);
  font-size: 0.88rem;
}

/* Intro */

.rocha-intro-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.65rem;
}

.rocha-intro-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--rocha-color-border);
  border-radius: 30px;
  background: var(--rocha-color-surface);
  box-shadow: var(--rocha-shadow-medium);
}

.rocha-intro-item {
  padding: 1.1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #FFFFFF, #FAF7F0);
}

.rocha-intro-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.rocha-intro-item span {
  color: var(--rocha-color-text-muted);
  font-size: 0.92rem;
}

/* About */

.rocha-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.rocha-about-visual-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: end;
}

.rocha-image-panel {
  min-height: 530px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.16)),
    var(--rocha-panel-image, url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1000&q=80")) center / cover;
  box-shadow: var(--rocha-shadow-medium);
  overflow: hidden;
}

.rocha-image-panel-small {
  min-height: 320px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.16)),
    var(--rocha-panel-image-small, url("https://images.unsplash.com/photo-1515238152791-8216bfdf89a7?auto=format&fit=crop&w=900&q=80")) center / cover;
  box-shadow: var(--rocha-shadow-medium);
  overflow: hidden;
}

.rocha-about-mini-card {
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--rocha-color-border);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: var(--rocha-shadow-small);
}

.rocha-about-mini-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.rocha-about-mini-card span,
.rocha-about-content p {
  color: var(--rocha-color-text-muted);
}

.rocha-about-content p {
  margin-bottom: 1rem;
}

.rocha-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.rocha-feature-card {
  padding: 1.25rem;
  border: 1px solid var(--rocha-color-border);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: var(--rocha-shadow-small);
}

.rocha-feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 16px;
  background: var(--rocha-color-primary-soft);
  color: var(--rocha-color-dark);
  font-size: 1.15rem;
}

.rocha-feature-card p {
  color: var(--rocha-color-text-muted);
  font-size: 0.93rem;
}

/* Dark section */

.rocha-dark-section {
  position: relative;
  overflow: hidden;
  background: var(--rocha-color-dark);
  color: #FFFFFF;
}

.rocha-dark-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: rgba(230, 170, 74, 0.09);
  filter: blur(10px);
}

.rocha-dark-section .rocha-section-label {
  color: var(--rocha-color-primary);
}

.rocha-dark-section .rocha-lead {
  color: rgba(255, 255, 255, 0.7);
}

.rocha-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.rocha-experience-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  box-shadow: var(--rocha-shadow-medium);
}

.rocha-experience-image {
  height: 250px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.22)),
    var(--rocha-card-image) center / cover;
}

.rocha-experience-body {
  padding: 1.45rem;
}

.rocha-experience-body p {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
}

/* Restaurant */

.rocha-restaurant-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: stretch;
}

.rocha-restaurant-content {
  padding: 2.1rem;
  border: 1px solid var(--rocha-color-border);
  border-radius: 30px;
  background: #FFFFFF;
  box-shadow: var(--rocha-shadow-medium);
}

.rocha-restaurant-content p {
  margin-bottom: 1rem;
  color: var(--rocha-color-text-muted);
}

.rocha-check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.55rem 0 2rem;
}

.rocha-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 800;
}

.rocha-check-item i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--rocha-color-primary-soft);
  color: var(--rocha-color-dark);
  font-style: normal;
}

.rocha-check-item span {
  color: var(--rocha-color-text-muted);
  font-weight: 500;
}

.rocha-restaurant-image {
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16,17,22,0.14), rgba(16,17,22,0.58)),
    var(--rocha-restaurant-image, url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1200&q=80")) center / cover;
  box-shadow: var(--rocha-shadow-large);
  overflow: hidden;
}

/* Gallery */

.rocha-gallery-section {
  background: linear-gradient(180deg, #F8F5EF 0%, #EFE8DC 100%);
}

.rocha-gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 1rem;
  margin-top: 2rem;
}

.rocha-gallery-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.24)),
    var(--rocha-gallery-image) center / cover;
  box-shadow: var(--rocha-shadow-small);
}

.rocha-gallery-item-large {
  grid-row: span 2;
  min-height: 520px;
}

.rocha-gallery-item::after {
  content: attr(data-label);
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--rocha-color-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Events */

.rocha-events-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2.45rem;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--rocha-color-primary) 0%, #F1C675 100%);
  box-shadow: var(--rocha-shadow-large);
}

.rocha-events-box .rocha-section-label {
  color: rgba(23, 24, 28, 0.72);
}

.rocha-events-box p {
  max-width: 660px;
  color: rgba(23, 24, 28, 0.72);
}

.rocha-events-panel {
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 26px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
}

.rocha-events-panel ul {
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.rocha-events-panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(23,24,28,0.12);
  font-weight: 800;
}

.rocha-events-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

/* Contact */

.rocha-contact-section {
  background: var(--rocha-color-dark);
  color: #FFFFFF;
}

.rocha-contact-section .rocha-section-label,
.rocha-contact-section .rocha-title-medium {
  color: #FFFFFF;
}

.rocha-contact-section .rocha-lead {
  color: rgba(255,255,255,0.72);
}

.rocha-contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
  align-items: start;
}

.rocha-contact-info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.rocha-info-card {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
}

.rocha-info-card strong {
  display: block;
  margin-bottom: 0.28rem;
}

.rocha-info-card span,
.rocha-info-card a {
  color: rgba(255,255,255,0.72);
}

.rocha-booking-card {
  padding: 2rem;
  border-radius: 30px;
  background: #FFFFFF;
  color: var(--rocha-color-dark);
  box-shadow: var(--rocha-shadow-large);
}

.rocha-booking-card p {
  margin-bottom: 1.2rem;
  color: var(--rocha-color-text-muted);
}

.rocha-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.rocha-form-group-full {
  grid-column: 1 / -1;
}

.rocha-form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
  font-weight: 850;
}

.rocha-form-control {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--rocha-color-border);
  border-radius: 17px;
  background: #FFFFFF;
  color: var(--rocha-color-dark);
}

.rocha-form-control:focus {
  outline: none;
  border-color: var(--rocha-color-primary-dark);
  box-shadow: 0 0 0 4px rgba(230,170,74,0.16);
}

textarea.rocha-form-control {
  min-height: 132px;
  resize: vertical;
}

.rocha-booking-note {
  margin-top: 0.95rem;
  color: var(--rocha-color-text-muted);
  font-size: 0.82rem;
}

/* Footer */

.rocha-footer {
  padding: 1.25rem 0 2rem;
  background: #0B0C10;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.rocha-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.rocha-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.rocha-footer-links a:hover {
  color: var(--rocha-color-primary);
}

/* Responsive */

@media (max-width: 1100px) {
  .rocha-hero-grid,
  .rocha-about-grid,
  .rocha-restaurant-grid,
  .rocha-events-box,
  .rocha-contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .rocha-gallery-item-large {
    grid-row: auto;
    min-height: 330px;
  }

  .rocha-restaurant-image {
    min-height: 470px;
  }
}

@media (max-width: 860px) {
  .rocha-navigation-list,
  .rocha-navigation > .rocha-button {
    display: none;
  }

  .rocha-mobile-navigation-button {
    display: inline-flex;
  }

  .rocha-intro-box,
  .rocha-feature-grid,
  .rocha-card-grid,
  .rocha-form-grid {
    grid-template-columns: 1fr;
  }

  .rocha-about-visual-grid {
    grid-template-columns: 1fr;
  }

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

  .rocha-hero-image {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .rocha-section {
    padding: 4.4rem 0;
  }

  .rocha-header-inner {
    min-height: 74px;
  }

  .rocha-brand-mark {
    width: 44px;
    height: 44px;
  }

  .rocha-brand-name {
    font-size: 1.68rem;
  }

  .rocha-brand-subtitle {
    font-size: 0.64rem;
  }

  .rocha-hero {
    padding: 4.8rem 0 4rem;
  }

  .rocha-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .rocha-hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rocha-intro-strip {
    margin-top: -1rem;
  }

  .rocha-events-box,
  .rocha-booking-card,
  .rocha-restaurant-content {
    padding: 1.4rem;
  }

  .rocha-restaurant-image {
    min-height: 380px;
    padding: 1.4rem;
  }

  .rocha-events-panel li {
    flex-direction: column;
    gap: 0.15rem;
  }

  .rocha-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Header contrast fix */

.rocha-header,
.rocha-header .rocha-brand-name,
.rocha-header .rocha-brand-subtitle,
.rocha-header .rocha-navigation-link,
.rocha-header .rocha-mobile-navigation-button {
  color: #FFFFFF !important;
}

.rocha-header .rocha-navigation-link:hover {
  color: var(--rocha-color-primary) !important;
}

.rocha-header .rocha-button-primary {
  color: var(--rocha-color-dark) !important;
}

.rocha-header .rocha-button-primary:hover {
  color: #FFFFFF !important;
}


/* Serate cards */

.rocha-card-top {
  position: relative;
}

.rocha-day-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rocha-color-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}


/* Contact section without form */

.rocha-contact-simple-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
  align-items: stretch;
}

.rocha-contact-main-card {
  padding: 2rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(230, 170, 74, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.rocha-contact-main-card p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.rocha-contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.rocha-contact-detail-card {
  padding: 1.25rem;
  border-radius: 24px;
  background: #FFFFFF;
  color: var(--rocha-color-dark);
  box-shadow: var(--rocha-shadow-medium);
}

.rocha-contact-detail-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.rocha-contact-detail-card span,
.rocha-contact-detail-card a {
  color: var(--rocha-color-text-muted);
}

.rocha-contact-detail-card-large {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .rocha-contact-simple-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .rocha-contact-card-grid {
    grid-template-columns: 1fr;
  }

  .rocha-contact-main-card {
    padding: 1.4rem;
  }
}
