:root {
  --ink: #161616;
  --muted: #626262;
  --line: #e7e2da;
  --paper: #fffdf8;
  --soft: #f5f1ea;
  --accent: #1f7a8c;
  --accent-2: #d89a38;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Bitter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
}

.button,
.nav a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: 640px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(40px, 7vw, 96px);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.lead {
  max-width: 660px;
  margin-bottom: 0;
  color: #3b3b3b;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

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

.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

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

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(420px, calc(100% - 48px));
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.hero-badge img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.section {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.photo-grid img:first-child {
  height: 520px;
  grid-row: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: start;
  background: var(--soft);
}

.contact-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
}

.index-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.index-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.index-card.raco-card {
  border-color: rgba(80, 44, 30, 0.2);
  background: #fff8f0;
  color: #502c1e;
}

.index-card.raco-card strong {
  color: #2f7769;
}

body.raco {
  --ink: #502c1e;
  --muted: #705748;
  --line: rgba(80, 44, 30, 0.16);
  --paper: #edd2b7;
  --soft: #f8eadb;
  --accent: #64a394;
  --accent-2: #d96e4b;
  background-color: #edd2b7;
  background-image:
    linear-gradient(rgba(237, 210, 183, 0.9), rgba(237, 210, 183, 0.9)),
    url("assets/raco-patrones.svg");
  background-size: auto, 420px 420px;
  background-attachment: scroll, fixed;
}

body.raco .topbar {
  background: rgba(237, 210, 183, 0.9);
}

body.raco h1,
body.raco h2 {
  font-family: "Chocolate and Vanilla", Bitter, Georgia, serif;
  color: #502c1e;
}

body.raco .hero {
  position: relative;
  overflow: hidden;
}

body.raco .hero::before,
body.raco .hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 138px;
  height: 82px;
  border: 2px solid rgba(217, 110, 75, 0.28);
  border-radius: 50%;
  transform: rotate(-26deg);
  pointer-events: none;
}

body.raco .hero::before {
  left: clamp(18px, 4vw, 56px);
  top: 112px;
}

body.raco .hero::after {
  left: 39%;
  bottom: 42px;
  border-color: rgba(100, 163, 148, 0.3);
  transform: rotate(24deg);
}

body.raco .hero-copy,
body.raco .hero-media {
  z-index: 1;
}

body.raco .button,
body.raco .nav a.button {
  border-color: #502c1e;
  background: #502c1e;
}

body.raco .button.secondary {
  color: #502c1e;
  background: rgba(255, 253, 248, 0.28);
}

body.raco .eyebrow {
  color: #2f7769;
}

body.raco .hero-copy {
  background:
    linear-gradient(rgba(237, 210, 183, 0.9), rgba(237, 210, 183, 0.9)),
    url("assets/raco-patrones.svg") center / 520px 520px;
}

body.raco .brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.raco .brand-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(80, 44, 30, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.52);
  color: #502c1e;
  font-size: 0.78rem;
  font-weight: 800;
}

body.raco .brand-strip span:nth-child(2) {
  background: rgba(100, 163, 148, 0.2);
}

body.raco .brand-strip span:nth-child(3) {
  background: #502c1e;
  color: #fff8f0;
}

body.raco .brand-strip span:nth-child(4) {
  background: rgba(217, 110, 75, 0.22);
}

body.raco .hero-badge {
  background: rgba(248, 234, 219, 0.92);
}

body.raco .raco-logo-stage {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(145deg, rgba(80, 44, 30, 0.96), rgba(80, 44, 30, 0.82)),
    url("assets/raco-patrones.svg") center / 520px 520px;
}

body.raco .raco-logo-stage > img {
  width: min(760px, 92%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.18));
}

body.raco .brand-scene {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(44px, 7vw, 82px) clamp(18px, 4vw, 56px);
  background: #fff8f0;
  border-bottom: 1px solid var(--line);
}

body.raco .brand-pattern {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 32px;
  align-items: center;
  padding: clamp(42px, 7vw, 76px) clamp(18px, 4vw, 56px);
  color: #fff8f0;
  background:
    linear-gradient(130deg, rgba(80, 44, 30, 0.95), rgba(80, 44, 30, 0.78)),
    url("assets/raco-patrones.svg") center / 460px 460px;
  border-bottom: 1px solid rgba(80, 44, 30, 0.18);
}

body.raco .brand-pattern h2 {
  color: #fff8f0;
}

body.raco .brand-pattern .eyebrow {
  color: #edd2b7;
}

body.raco .brand-pattern p {
  color: rgba(255, 248, 240, 0.86);
}

body.raco .pattern-sample {
  display: flex;
  min-width: 0;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(237, 210, 183, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(rgba(100, 163, 148, 0.78), rgba(100, 163, 148, 0.78)),
    url("assets/raco-patrones.svg") center / 360px 360px;
  box-shadow: inset 0 0 0 12px rgba(237, 210, 183, 0.08);
}

body.raco .pattern-sample span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 248, 240, 0.34);
  border-radius: 999px;
  background: rgba(80, 44, 30, 0.7);
  color: #fff8f0;
  font-weight: 900;
}

body.raco .brand-scene-copy {
  max-width: 660px;
}

body.raco .character-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.raco .character-feature {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(80, 44, 30, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(237, 210, 183, 0.82), rgba(237, 210, 183, 0.82)),
    url("assets/raco-patrones.svg") center / 280px 280px;
  overflow: hidden;
}

body.raco .character-feature h3,
body.raco .character-feature p {
  margin-bottom: 0;
}

body.raco .character-feature p {
  color: #705748;
  font-size: 0.92rem;
}

body.raco .character-feature img {
  display: block;
  width: 100%;
  height: 185px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.45);
}

body.raco .character-art {
  position: relative;
  min-height: 320px;
  margin: 0;
  border: 1px solid rgba(80, 44, 30, 0.18);
  border-radius: 8px;
  background: #edd2b7;
  overflow: hidden;
}

body.raco .character-art img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  padding: 28px;
}

body.raco .card,
body.raco .contact-panel,
body.raco .index-card {
  background: #fff8f0;
}

body.raco .card {
  border-top: 5px solid #64a394;
  border-radius: 8px;
}

body.raco .card:nth-child(2) {
  border-top-color: #d96e4b;
}

body.raco .card:nth-child(3) {
  border-top-color: #502c1e;
}

body.raco .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #64a394;
  color: #fff8f0;
  font-size: 0.72rem;
  font-weight: 900;
}

body.raco .cake-mark {
  background: #d96e4b;
}

body.raco .craft-mark {
  background: #502c1e;
}

body.raco .photo-grid img {
  border: 1px solid rgba(80, 44, 30, 0.18);
}

body.raco .event-photo-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

body.raco .event-photo-grid img,
body.raco .event-photo-grid img:first-child {
  height: clamp(320px, 42vw, 560px);
  grid-row: auto;
}

body.raco .menu-section {
  background: #fff8f0;
  border-bottom: 1px solid var(--line);
}

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

body.raco .menu-block,
body.raco .booking-option {
  border: 1px solid rgba(80, 44, 30, 0.16);
  border-radius: 8px;
  background: #edd2b7;
}

body.raco .menu-block {
  padding: 18px;
}

body.raco .menu-block h3 {
  margin-bottom: 14px;
}

body.raco .menu-block p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(80, 44, 30, 0.12);
  color: #705748;
  font-size: 0.9rem;
}

body.raco .menu-block p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

body.raco .menu-block strong {
  flex: 0 0 auto;
  color: #502c1e;
}

body.raco .booking-section {
  background:
    linear-gradient(rgba(248, 234, 219, 0.9), rgba(248, 234, 219, 0.9)),
    url("assets/raco-patrones.svg") center / 420px 420px;
  border-bottom: 1px solid var(--line);
}

body.raco .booking-option {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  transition: transform 160ms ease, background 160ms ease;
}

body.raco .booking-option:hover {
  transform: translateY(-2px);
  background: #f8eadb;
}

body.raco .booking-option span {
  color: #2f7769;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.raco .booking-option strong {
  color: #502c1e;
  font-size: 1.25rem;
}

body.raco .booking-option em {
  color: #d96e4b;
  font-style: normal;
  font-weight: 900;
}

body.raco .booking-wizard {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: start;
}

body.raco .booking-main,
body.raco .booking-summary {
  border: 1px solid rgba(80, 44, 30, 0.16);
  border-radius: 8px;
  background: #fff8f0;
}

body.raco .booking-main {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

body.raco .booking-field {
  display: grid;
  gap: 8px;
  color: #502c1e;
  font-weight: 900;
}

body.raco .booking-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(80, 44, 30, 0.22);
  border-radius: 6px;
  background: #fffdf8;
  color: #502c1e;
  font: inherit;
}

body.raco .booking-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.raco .booking-step {
  display: grid;
  gap: 12px;
}

body.raco .booking-step-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  color: #502c1e;
}

body.raco .booking-step-head span {
  font-weight: 900;
}

body.raco .booking-step-head small {
  color: #705748;
  text-align: right;
}

body.raco .slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.raco .slot-option,
body.raco .segmented button {
  min-height: 96px;
  border: 1px solid rgba(80, 44, 30, 0.2);
  border-radius: 6px;
  background: #edd2b7;
  color: #502c1e;
  cursor: pointer;
  font: inherit;
}

body.raco .slot-option {
  display: grid;
  gap: 5px;
  padding: 14px;
  text-align: left;
}

body.raco .slot-option span {
  font-weight: 900;
}

body.raco .slot-option small {
  color: #705748;
}

body.raco .slot-option strong {
  color: #2f7769;
  font-size: 1.15rem;
}

body.raco .slot-option.is-active,
body.raco .segmented button.is-active {
  border-color: #502c1e;
  background: #502c1e;
  color: #fff8f0;
}

body.raco .slot-option.is-active small,
body.raco .slot-option.is-active strong {
  color: #fff8f0;
}

body.raco .segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.raco .segmented button {
  min-height: 56px;
  padding: 10px 14px;
  font-weight: 900;
}

body.raco .extra-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(80, 44, 30, 0.14);
  border-radius: 6px;
  background: #edd2b7;
  color: #502c1e;
}

body.raco .extra-row input {
  width: 18px;
  height: 18px;
  accent-color: #502c1e;
}

body.raco .extra-row strong {
  color: #2f7769;
}

body.raco .extra-quantity-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

body.raco .quantity-control {
  display: grid;
  grid-template-columns: 34px 32px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(80, 44, 30, 0.18);
  border-radius: 6px;
  background: #fff8f0;
}

body.raco .quantity-control button {
  width: 34px;
  height: 34px;
  border: 0;
  background: #502c1e;
  color: #fff8f0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

body.raco .quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

body.raco .quantity-control strong {
  text-align: center;
  color: #502c1e;
}

body.raco .booking-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px;
  border: 1px dashed rgba(80, 44, 30, 0.24);
  border-radius: 6px;
  color: #705748;
}

body.raco .booking-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  padding: 22px;
}

body.raco .booking-summary h3 {
  margin-bottom: 0;
  color: #502c1e;
  font-size: 1.55rem;
}

body.raco .booking-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

body.raco .booking-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(80, 44, 30, 0.12);
}

body.raco .booking-summary dt {
  color: #705748;
}

body.raco .booking-summary dd {
  margin: 0;
  color: #502c1e;
  font-weight: 900;
  text-align: right;
}

body.raco .booking-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #64a394;
  color: #fff8f0;
}

body.raco .booking-total strong {
  font-size: 1.7rem;
}

body.raco .booking-note {
  margin-bottom: 0;
  color: #705748;
  font-size: 0.92rem;
}

body.raco .booking-disabled {
  width: 100%;
  border-color: rgba(80, 44, 30, 0.2);
  background: rgba(80, 44, 30, 0.42);
  cursor: not-allowed;
}

body.raco [data-paycomet-button] {
  width: 100%;
}

body.raco [data-paycomet-button]:disabled {
  opacity: 0.64;
  cursor: wait;
}

body.raco .booking-status {
  min-height: 22px;
  margin-bottom: 0;
  color: #2f7769;
  font-size: 0.92rem;
  font-weight: 900;
}

body.raco .booking-summary .button.secondary {
  width: 100%;
}

body.raco .extras-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.raco .extras-category-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(80, 44, 30, 0.16);
  border-radius: 10px;
  background: #fff8f0;
}

body.raco .extras-category-card h3,
body.raco .extras-category-card p {
  margin: 0;
}

body.raco .extras-category-card h3 {
  display: inline;
  color: #502c1e;
}

body.raco .extras-category-card p {
  margin-top: 5px;
  color: #705748;
  font-size: 0.92rem;
}

body.raco .extras-category-icon {
  margin-right: 8px;
  font-size: 1.45rem;
}

body.raco .extras-category-card .button {
  width: 100%;
}

body.raco .extras-category-selection {
  min-height: 20px;
  color: #2f7769 !important;
  font-weight: 800;
}

body.raco .summary-edit {
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f7769;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

body.raco .extras-modal[hidden] {
  display: none;
}

body.raco .extras-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

body.raco .extras-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 22, 16, 0.62);
  backdrop-filter: blur(4px);
}

body.raco .extras-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: min(720px, 100%);
  height: min(780px, calc(100vh - 36px));
  max-height: min(780px, calc(100vh - 36px));
  overflow: hidden;
  border: 1px solid rgba(80, 44, 30, 0.2);
  border-radius: 16px;
  background: #fff8f0;
  box-shadow: 0 28px 80px rgba(36, 22, 16, 0.32);
}

body.raco .extras-panel-head,
body.raco .extras-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

body.raco .extras-panel-head {
  border-bottom: 1px solid rgba(80, 44, 30, 0.12);
}

body.raco .extras-panel-head h3,
body.raco .extras-panel-head p {
  margin: 0;
}

body.raco .extras-panel-head h3 {
  color: #502c1e;
  font-size: 1.55rem;
}

body.raco .extras-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #edd2b7;
  color: #502c1e;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.raco .beverage-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 20px;
  overflow: auto;
}

body.raco .beverage-product {
  display: grid;
  grid-template-rows: 150px minmax(94px, auto) auto;
  gap: 10px;
  align-items: stretch;
  min-width: 0;
  padding: 10px;
  border: 2px solid rgba(80, 44, 30, 0.1);
  border-radius: 14px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.raco .beverage-product:hover {
  transform: translateY(-2px);
}

body.raco .beverage-product.is-selected {
  border-color: #2f7769;
  box-shadow: 0 8px 24px rgba(47, 119, 105, 0.18);
}

body.raco .beverage-product.is-disabled {
  opacity: 0.58;
}

body.raco .beverage-copy h4,
body.raco .beverage-copy p {
  margin: 0;
}

body.raco .beverage-copy h4 {
  color: #502c1e;
  font-size: 0.93rem;
  line-height: 1.2;
}

body.raco .beverage-copy p {
  color: #705748;
  font-size: 0.82rem;
}

body.raco .beverage-copy small {
  display: block;
  margin-bottom: 4px;
  color: #2f7769;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.raco .beverage-image {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  border-radius: 10px;
  background: #f8eadb;
}

body.raco .beverage-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

body.raco .beverage-image span {
  font-size: 2.3rem;
}

body.raco .beverage-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.raco .beverage-price {
  color: #2f7769;
  white-space: nowrap;
}

body.raco .beverage-tools {
  display: grid;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(80, 44, 30, 0.1);
  background: #fff8f0;
}

body.raco .beverage-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(80, 44, 30, 0.2);
  border-radius: 10px;
  background: #fff;
  color: #502c1e;
  font: inherit;
}

body.raco .beverage-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

body.raco .beverage-filters::-webkit-scrollbar {
  display: none;
}

body.raco .beverage-filters button {
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(80, 44, 30, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #502c1e;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

body.raco .beverage-filters button.is-active {
  border-color: #502c1e;
  background: #502c1e;
  color: #fff8f0;
}

body.raco .beverage-empty {
  grid-column: 1 / -1;
  padding: 30px 16px;
  text-align: center;
  color: #705748;
}

@media (min-width: 800px) {
  body.raco .extras-panel {
    width: min(980px, calc(100vw - 64px));
    height: min(760px, calc(100vh - 48px));
    max-height: min(760px, calc(100vh - 48px));
  }

  body.raco .beverage-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.raco .beverage-product {
    grid-template-rows: 108px minmax(66px, auto) auto;
    padding: 9px;
  }

  body.raco .beverage-copy p {
    display: none;
  }

  body.raco .beverage-copy h4 {
    font-size: 0.82rem;
  }

  body.raco .beverage-buy {
    gap: 6px;
  }

  body.raco .beverage-product .quantity-control button {
    width: 34px;
    height: 34px;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.raco .extras-panel-footer {
  border-top: 1px solid rgba(80, 44, 30, 0.12);
  background: #f8eadb;
}

body.raco .extras-panel-footer div {
  display: grid;
  color: #705748;
}

body.raco .extras-panel-footer strong {
  color: #502c1e;
  font-size: 1.35rem;
}

body.raco .facilities-section {
  background: #fff8f0;
}

body.raco .facilities-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.raco .facilities-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(80, 44, 30, 0.14);
  border-radius: 12px;
  background: #f8eadb;
  color: #502c1e;
}

body.raco .facilities-list li > span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #64a394;
  color: #fff;
  font-weight: 800;
}

body.raco .facilities-list strong {
  line-height: 1.35;
}

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

body.raco .event-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #64a394;
  font-size: 1.55rem;
}

body.raco .event-card h3,
body.raco .event-card p {
  margin: 0;
}

body.raco .event-card h3 {
  color: #502c1e;
}

body.raco .event-card p {
  margin-top: 5px;
  color: #705748;
}

body.raco .events-section {
  background:
    linear-gradient(rgba(248, 234, 219, 0.94), rgba(248, 234, 219, 0.94)),
    url("assets/raco-patrones.svg") center / 420px 420px;
}

body.raco .event-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(80, 44, 30, 0.15);
  border-radius: 14px;
  background: #fff8f0;
}

body.raco .event-card .button {
  grid-column: 1 / -1;
  width: 100%;
}

body.raco .event-status {
  margin-bottom: 5px !important;
  color: #2f7769 !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.raco .pricing-section {
  background: #fff8f0;
  border-bottom: 1px solid var(--line);
}

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

body.raco .pricing-card {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(80, 44, 30, 0.16);
  border-radius: 8px;
  background: #edd2b7;
}

body.raco .pricing-card span {
  color: #2f7769;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.raco .pricing-card h3 {
  color: #502c1e;
}

body.raco .pricing-card p,
body.raco .pricing-card em {
  margin: 0;
  color: #705748;
}

body.raco .pricing-card strong {
  color: #502c1e;
}

body.raco .pricing-card em {
  font-style: normal;
  font-weight: 900;
}

body.raco .faq-section {
  background: #fff8f0;
  border-bottom: 1px solid var(--line);
}

body.raco .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.raco .faq-item {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(80, 44, 30, 0.16);
  border-radius: 8px;
  background: #edd2b7;
}

body.raco .faq-item h3 {
  margin-bottom: 10px;
  color: #502c1e;
}

body.raco .faq-item p {
  margin-bottom: 0;
  color: #705748;
}

body.raco .tardeo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: center;
  color: #fff8f0;
  background:
    linear-gradient(135deg, rgba(80, 44, 30, 0.96), rgba(80, 44, 30, 0.84)),
    url("assets/raco-patrones.svg") center / 480px 480px;
  border-bottom: 1px solid rgba(80, 44, 30, 0.18);
}

body.raco .tardeo-section h2 {
  color: #fff8f0;
}

body.raco .tardeo-section .eyebrow {
  color: #edd2b7;
}

body.raco .tardeo-section p {
  color: rgba(255, 248, 240, 0.86);
}

body.raco .tardeo-section .button {
  border-color: #edd2b7;
  background: #edd2b7;
  color: #502c1e;
}

body.raco .tardeo-section .button.secondary {
  background: transparent;
  color: #fff8f0;
}

body.raco .tardeo-copy {
  max-width: 720px;
}

body.raco .tardeo-panel {
  display: grid;
  gap: 12px;
}

body.raco .tardeo-photo {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(237, 210, 183, 0.22);
  border-radius: 8px;
}

body.raco .tardeo-panel article {
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(237, 210, 183, 0.22);
  border-radius: 8px;
  background: rgba(248, 234, 219, 0.1);
}

body.raco .tardeo-panel span {
  display: block;
  margin-bottom: 8px;
  color: #64a394;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.raco .tardeo-panel strong {
  color: #fff8f0;
  font-size: 1.22rem;
}

body.gala {
  --accent: #2f90a8;
  --accent-2: #ecb33f;
}

body.gala h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

body.wild {
  --ink: #050505;
  --muted: #6f6b62;
  --line: rgba(5, 5, 5, 0.12);
  --paper: #fffaf2;
  --soft: #f3eee3;
  --accent: #f5b400;
  --accent-2: #5f5f5f;
  background: var(--paper);
  overflow-x: hidden;
}

body.wild .wild-topbar {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.9);
  color: #fff;
}

body.wild .wild-brand img {
  border-radius: 50%;
}

body.wild .wild-brand small {
  color: rgba(255, 255, 255, 0.68);
}

body.wild .wild-nav a:not(.button) {
  color: rgba(255, 255, 255, 0.78);
}

body.wild .wild-topbar .button {
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
}

body.wild .button {
  border-color: #050505;
  background: #050505;
  color: #fff;
}

body.wild .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.wild-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.wild-hero-image {
  position: absolute;
  inset: 0;
}

.wild-hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 44%, rgba(5, 5, 5, 0.24) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0) 46%);
}

.wild-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.wild-hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-width: 100%;
  padding: clamp(42px, 7vw, 96px);
}

.wild-hero-logo {
  width: clamp(118px, 17vw, 190px);
  aspect-ratio: 1;
  margin-bottom: 28px;
  border-radius: 50%;
  box-shadow: 0 22px 80px rgba(245, 180, 0, 0.18);
}

body.wild .wild-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(4rem, 11vw, 8.8rem);
  font-weight: 950;
  text-transform: uppercase;
}

body.wild .wild-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.wild-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.wild-hero-points span {
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid rgba(245, 180, 0, 0.42);
  border-radius: 6px;
  background: rgba(245, 180, 0, 0.12);
  color: #ffe09a;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wild-brandbook,
.wild-faq {
  background: #fffaf2;
}

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

.brandbook-logo,
.brandbook-panel {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.brandbook-logo {
  display: grid;
  place-items: center;
  background: #050505;
}

.brandbook-logo img {
  width: min(78%, 360px);
  border-radius: 50%;
}

.brandbook-panel h3,
.wild-service-grid h3 {
  font-size: 1.25rem;
}

.brandbook-panel p {
  color: var(--muted);
}

.swatches {
  display: grid;
  gap: 10px;
}

.swatches span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
}

.swatches span::before {
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 6px;
  background: var(--swatch);
  content: "";
}

.swatches b,
.swatches small {
  display: block;
}

.swatches small {
  color: var(--muted);
}

.wild-services {
  background: #050505;
  color: #fff;
}

.wild-services .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

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

.wild-service-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.wild-service-grid span {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
}

.wild-service-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.wild-gallery-section {
  background: #f3eee3;
}

.wild-bridge,
.gala-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: center;
}

.wild-bridge {
  background: #fffaf2;
}

.wild-bridge p,
.gala-bridge p {
  max-width: 680px;
  color: var(--muted);
}

.bridge-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.bridge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.12);
}

.bridge-card img {
  width: min(180px, 58vw);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
}

.bridge-card span {
  font-size: 1.2rem;
  font-weight: 900;
}

.bridge-card small {
  color: var(--muted);
}

.wild-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 12px;
}

.wild-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.wild-gallery img:first-child {
  grid-row: span 2;
}

.wild-gallery img:last-child {
  grid-column: span 2;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.wild-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 30px;
  align-items: start;
  background: var(--accent);
}

.wild-contact .eyebrow {
  color: #050505;
}

.wild-contact p {
  max-width: 650px;
  color: rgba(5, 5, 5, 0.72);
}

.wild-contact .button.secondary {
  border-color: #050505;
  background: transparent;
  color: #050505;
}

.wild-contact-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.wild-contact-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.12);
}

.wild-contact-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.wild-contact-card span {
  text-align: right;
  color: rgba(5, 5, 5, 0.72);
}

.wild-footer {
  background: #050505;
  color: #fff;
}

.wild-manual-page {
  background: #fffaf2;
}

.manual-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(48px, 8vw, 100px) clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.82)),
    url("assets/gala-photo-03.jpg") center / cover;
}

.manual-cover h1 {
  color: #fff;
  text-transform: uppercase;
}

.manual-cover .lead {
  color: rgba(255, 255, 255, 0.82);
}

.manual-cover-logo {
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid rgba(245, 180, 0, 0.32);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.62);
}

.manual-cover-logo img {
  width: min(360px, 72vw);
  border-radius: 50%;
  box-shadow: 0 28px 90px rgba(245, 180, 0, 0.24);
}

.manual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.manual-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(245, 180, 0, 0.36);
  border-radius: 6px;
  color: #ffe09a;
  font-size: 0.82rem;
  font-weight: 800;
}

.manual-section {
  border-bottom: 1px solid var(--line);
}

.manual-intro,
.type-system,
.application-system {
  background: #fffaf2;
}

.manual-pillars,
.logo-system,
.manual-swatches,
.type-grid,
.usage-grid,
.applications-grid {
  display: grid;
  gap: 16px;
}

.manual-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.manual-pillars article,
.type-grid article,
.usage-grid article,
.social-preview,
.doc-preview {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.manual-pillars span,
.type-grid span,
.doc-preview span,
.social-header span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manual-pillars strong,
.type-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.manual-pillars p,
.type-grid p,
.usage-grid li,
.social-preview p,
.doc-preview p {
  color: var(--muted);
}

.logo-rules,
.usage-system {
  background: #f3eee3;
}

.logo-system {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-stage,
.clearspace-card {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.logo-stage {
  display: grid;
  place-items: center;
  gap: 18px;
}

.logo-stage img {
  width: min(245px, 68%);
  border-radius: 50%;
}

.logo-stage span {
  font-weight: 900;
}

.logo-stage-dark {
  color: #fff;
  background: #050505;
}

.logo-stage-light {
  background: #fffaf2;
}

.clearspace-demo {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin-bottom: 20px;
  border: 2px dashed rgba(245, 180, 0, 0.78);
  border-radius: 8px;
  background: #050505;
}

.clearspace-demo img {
  width: min(150px, 52%);
  border-radius: 50%;
}

.color-system {
  color: #fff;
  background: #050505;
}

.color-system .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.manual-swatches {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manual-swatches article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--tone);
  color: var(--text);
}

.manual-swatches strong {
  font-size: 1.25rem;
}

.manual-swatches span {
  font-weight: 900;
}

.manual-swatches small {
  opacity: 0.78;
}

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

.type-grid article:first-child strong {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 950;
  line-height: 0.9;
}

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

.usage-grid h3 {
  font-size: 1.5rem;
}

.usage-grid ul {
  margin: 0;
  padding-left: 20px;
}

.usage-grid li + li {
  margin-top: 10px;
}

.usage-ok {
  border-top: 6px solid #f5b400;
}

.usage-bad {
  border-top: 6px solid #5f5f5f;
}

.applications-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: stretch;
}

.poster-preview {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
  color: #fff;
}

.poster-preview > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  opacity: 0.62;
}

.poster-preview div {
  position: absolute;
  inset: auto 24px 24px 24px;
}

.poster-preview div img,
.social-header img,
.doc-preview img {
  width: 70px;
  border-radius: 50%;
}

.poster-preview strong,
.social-preview strong {
  display: block;
  margin-top: 16px;
  font-size: 2rem;
  line-height: 1;
}

.poster-preview span {
  display: block;
  margin-top: 8px;
  color: #ffe09a;
  font-weight: 900;
  text-transform: uppercase;
}

.social-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #050505;
  color: #fff;
}

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

.social-preview p {
  color: rgba(255, 255, 255, 0.68);
}

.doc-preview {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.doc-preview img {
  margin-bottom: auto;
}

.doc-preview span {
  margin-top: 36px;
  color: #5f5f5f;
}

.doc-preview p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .topbar,
  .nav,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar.is-hidden-mobile {
    transform: translateY(calc(-100% - 12px));
    box-shadow: none;
  }

  .hero,
  .contact,
  .wild-contact,
  .wild-bridge,
  .gala-bridge,
  .brandbook-grid,
  .wild-service-grid,
  .manual-cover,
  .manual-pillars,
  .logo-system,
  .manual-swatches,
  .type-grid,
  .usage-grid,
  .applications-grid,
  body.raco .brand-scene,
  body.raco .brand-pattern,
  body.raco .booking-wizard,
  body.raco .tardeo-section {
    grid-template-columns: 1fr;
  }

  body.raco .character-showcase,
  body.raco .menu-grid,
  body.raco .booking-grid,
  body.raco .booking-contact-grid,
  body.raco .faq-grid,
  body.raco .pricing-grid,
  body.raco .slot-grid {
    grid-template-columns: 1fr;
  }

  body.raco .booking-summary {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  body.raco .hero-copy {
    order: -1;
  }

  body.raco .hero-media {
    order: 0;
  }

  body.raco .raco-logo-stage {
    order: 0;
    min-height: 360px;
    padding: 28px 20px 92px;
  }

  body.raco .raco-logo-stage > img {
    width: min(68vw, 320px);
    max-height: 250px;
  }

  body.raco .raco-logo-stage .hero-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }

  .grid,
  .photo-grid,
  .wild-gallery,
  .index-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img,
  .photo-grid img:first-child,
  .wild-gallery img,
  .wild-gallery img:first-child,
  .wild-gallery img:last-child {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
  }

  .wild-hero {
    min-height: 680px;
  }

  .wild-hero-image::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 54%, rgba(5, 5, 5, 0.28) 100%);
  }
}

@media (max-width: 520px) {
  .hero-copy,
  .wild-hero-copy,
  .section,
  body.raco .brand-scene,
  body.raco .brand-pattern {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.04;
  }

  .lead {
    font-size: 1rem;
  }

  .button,
  .nav a.button {
    padding: 0 16px;
  }

  body.wild .wild-hero h1 {
    font-size: 2.72rem;
  }

  body.wild .wild-hero .lead {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .wild-hero-logo {
    width: 118px;
    margin-bottom: 24px;
  }

  .wild-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wild-hero-points span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 6px;
    text-align: center;
    font-size: 0.66rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  body.wild .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .manual-cover {
    min-height: auto;
  }

  .manual-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .manual-meta span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .manual-cover-logo {
    padding: 20px;
    overflow: hidden;
  }

  .manual-cover-logo img {
    width: min(250px, 100%);
  }

  .manual-section .section-head {
    max-width: 100%;
  }

  .manual-section .section-head h2 {
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .poster-preview strong,
  .social-preview strong {
    font-size: 1.55rem;
  }

  body.wild .button,
  body.wild .nav a.button {
    width: 100%;
  }

  .wild-contact-card div {
    display: grid;
    gap: 4px;
  }

  .wild-contact-card span {
    text-align: left;
  }

  body.raco .pattern-sample {
    min-height: 220px;
    background-size: auto, 300px 300px;
  }

  body.raco .character-feature img {
    height: 210px;
    margin-bottom: 18px;
    transform: scale(1.35);
  }

  body.raco .segmented,
  body.raco .booking-summary dl div,
  body.raco .booking-total {
    grid-template-columns: 1fr;
  }

  body.raco .segmented {
    display: grid;
  }

  body.raco .booking-step-head,
  body.raco .booking-summary dl div,
  body.raco .booking-total {
    align-items: start;
    flex-direction: column;
  }

  body.raco .booking-step-head small,
  body.raco .booking-summary dd {
    text-align: left;
  }

  body.raco .extras-category-grid,
  body.raco .facilities-list,
  body.raco .events-grid {
    grid-template-columns: 1fr;
  }

  body.raco .beverage-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  body.raco .extras-modal {
    align-items: end;
    padding: 0;
  }

  body.raco .extras-panel {
    width: 100%;
    height: 92vh;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }

  body.raco .beverage-product {
    grid-template-rows: 108px minmax(82px, auto) auto;
    gap: 8px;
    padding: 8px;
  }

  body.raco .beverage-copy p {
    display: none;
  }

  body.raco .beverage-copy h4 {
    font-size: 0.8rem;
  }

  body.raco .beverage-buy {
    align-items: stretch;
    flex-direction: column;
  }

  body.raco .beverage-product .quantity-control {
    width: max-content;
  }

  body.raco .extras-panel-footer {
    align-items: stretch;
    flex-direction: column;
  }

  body.raco .extras-panel-footer .button {
    width: 100%;
  }
}
