:root {
  --dark: #111111;
  --text: #202020;
  --muted: #666666;
  --paper: #fffaf0;
  --white: #ffffff;
  --line: #e8e2d6;
  --yellow: #f5b700;
  --green: #25d366;
  --red: #b42318;
  --shadow: 0 18px 54px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 5vw, 56px);
  background: rgba(255, 250, 240, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
.site-nav,
.header-actions,
.button-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--yellow);
  border-radius: 8px;
}

.site-nav {
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a.active {
  color: #9b6900;
  font-weight: 800;
}

.header-actions {
  gap: 10px;
}

.menu-toggle {
  display: none;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.button.primary {
  color: var(--dark);
  background: var(--yellow);
}

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

.button.whatsapp {
  color: var(--dark);
  background: var(--green);
}

.button.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 90px clamp(18px, 5vw, 68px);
  color: var(--white);
  overflow: hidden;
}

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

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

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46) 46%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 8vw, 6.6rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
}

.hero p {
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.section,
.page-hero,
.cta-band {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 68px);
}

.page-hero {
  background: var(--dark);
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

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

.card-grid.two,
.contact-layout,
.booking-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card,
.booking-form,
.booking-info {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.05);
}

.info-card.large {
  min-height: 190px;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: #875b00;
  background: #fff1bb;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.dark-section {
  color: var(--white);
  background: #17211f;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.feature-grid div {
  padding: 22px;
  background: #17211f;
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid span,
.info-card p,
.booking-info p,
.site-footer p {
  color: var(--muted);
}

.dark-section .feature-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

.narrow {
  max-width: 980px;
}

.list-panel {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.list-panel p {
  margin: 0;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-form {
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid #d8cfbf;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.alert {
  padding: 12px 14px;
  border-radius: 8px;
}

.alert p {
  margin: 0;
}

.alert.error {
  color: var(--red);
  background: #fff0ed;
  border: 1px solid #ffd1c8;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.admin-table th {
  color: var(--dark);
  background: #fff2c0;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.steps p {
  margin-bottom: 10px;
}

.reward-note {
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 68px);
  color: var(--white);
  background: var(--dark);
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer a {
  color: var(--yellow);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--white) !important;
  font-size: 1.2rem;
  font-weight: 900;
}

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

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

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

  .header-actions {
    margin-left: auto;
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .feature-grid,
  .contact-layout,
  .booking-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-actions {
    width: 100%;
  }

  .header-actions .button {
    flex: 1;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48));
  }

  .form-row,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: grid;
  }
}
