:root {
  --wine: #5b0007;
  --wine-2: #2a0507;
  --gold: #d5a64a;
  --gold-soft: #f4d98b;
  --cream: #fff8ee;
  --ink: #231515;
  --muted: #725f5c;
  --line: rgba(91, 0, 7, 0.14);
  --shadow: 0 24px 70px rgba(42, 5, 7, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img,
video {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(42, 5, 7, 0.92), rgba(42, 5, 7, 0.62));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(213, 166, 74, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.btn.primary {
  color: #2c0909;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 34px rgba(213, 166, 74, 0.32);
}

.btn.ghost {
  color: var(--gold-soft);
  border: 1px solid rgba(213, 166, 74, 0.55);
}

.nav-toggle {
  display: none;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 22px;
}

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  padding: 120px 22px 72px;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 5, 7, 0.94), rgba(91, 0, 7, 0.73), rgba(42, 5, 7, 0.55));
}

.hero-content {
  position: relative;
  width: min(960px, 100%);
  text-align: center;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

h1 {
  margin: 18px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
}

.tagline {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
}

.hero-lead {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0;
}

.hero-badges span,
.cta-points span {
  border: 1px solid rgba(213, 166, 74, 0.45);
  background: rgba(255, 248, 238, 0.08);
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.split,
.reserve,
.contact,
.contact-pro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section h2 {
  margin: 0 0 18px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.feature-grid,
.benefit-grid,
.zone-grid,
.plans,
.info-grid,
.contact-grid,
.services-grid {
  display: grid;
  gap: 18px;
}

.feature-grid,
.benefit-grid,
.plans,
.contact-grid,
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.zone,
.plan,
.contact-grid article,
.info-grid article,
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(42, 5, 7, 0.08);
}

.card-mark {
  color: var(--gold);
  font-size: 28px;
}

.card h3,
.zone h3,
.plan h3,
.info-grid h3,
.contact-grid h3,
.service-card h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 21px;
}

.services-band {
  background:
    linear-gradient(180deg, #fff8ee 0%, #ffffff 52%, #fff8ee 100%);
}

.services-band .section-head p {
  color: var(--muted);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
}

.service-icon,
.zone-icon,
.plan-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: #2c0909;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 50%;
  font-weight: 900;
  font-size: 22px;
}

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

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-points span {
  padding: 7px 10px;
  color: var(--wine);
  background: rgba(213, 166, 74, 0.14);
  border: 1px solid rgba(213, 166, 74, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.contact-pro {
  background:
    linear-gradient(90deg, rgba(255, 248, 238, 0.96), rgba(255, 248, 238, 0.82)),
    radial-gradient(circle at 80% 20%, rgba(213, 166, 74, 0.22), transparent 34%);
}

.contact-intro {
  max-width: 620px;
}

.contact-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-highlight {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(42, 5, 7, 0.08);
}

.contact-highlight strong,
.contact-highlight span {
  display: block;
}

.contact-highlight strong {
  color: var(--wine);
  font-size: 20px;
}

.contact-highlight span {
  margin-top: 6px;
  color: var(--muted);
}

.contact-panel {
  overflow: hidden;
  border: 1px solid rgba(91, 0, 7, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-method {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-method:nth-child(2n) {
  border-right: 0;
}

.contact-method span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #2c0909;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 50%;
  font-weight: 900;
}

.contact-method h3 {
  margin: 0 0 6px;
  color: var(--wine);
  font-size: 17px;
}

.contact-method a,
.contact-method p {
  display: block;
  margin: 3px 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-method small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 22px;
  background: linear-gradient(135deg, var(--wine-2), var(--wine));
}

.btn.outline {
  color: var(--gold-soft);
  border: 1px solid rgba(213, 166, 74, 0.52);
  background: transparent;
}

.contact-map {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.compact {
  min-height: 210px;
}

.dark-band {
  color: #fff;
  background: radial-gradient(circle at 50% 0, rgba(213, 166, 74, 0.18), transparent 38%), linear-gradient(135deg, var(--wine-2), var(--wine));
}

.dark-band h2,
.dark-band h3 {
  color: var(--gold-soft);
}

.dark-band p {
  color: rgba(255, 255, 255, 0.86);
}

.dark-band .info-grid article,
.dark-band .form-panel {
  background: rgba(255, 248, 238, 0.07);
  border: 1px solid rgba(213, 166, 74, 0.22);
}

.reservation-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.reservation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(244, 217, 139, 0.16), transparent 38%);
}

.reservation-card > * {
  position: relative;
}

.form-top {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(213, 166, 74, 0.22);
}

.form-top span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #2c0909;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 50%;
  font-weight: 900;
}

.form-top h3 {
  margin: 0 0 4px;
  color: var(--gold-soft);
  font-size: 26px;
}

.form-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.wide-copy {
  max-width: 1000px;
  margin: 0 auto 34px;
  text-align: center;
}

.blush-band {
  background: linear-gradient(180deg, #fff8ee, #f8eee2);
}

.zone ul,
.plan ul {
  padding-left: 20px;
}

.zone li,
.plan li {
  margin: 7px 0;
}

.zone {
  display: flex;
  flex-direction: column;
}

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

.zone strong {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: var(--wine);
  font-size: 14px;
}

.plan {
  position: relative;
}

.plan.featured {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 12px;
  color: #2c0909;
  background: var(--gold);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 900;
}

.plan strong,
.price-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 46px;
  color: var(--wine);
  border: 1px solid rgba(213, 166, 74, 0.55);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(244, 217, 139, 0.35), rgba(213, 166, 74, 0.18));
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.price-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(213, 166, 74, 0.24);
}

.note {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0;
  padding: 18px 20px;
}

summary {
  color: var(--wine);
  cursor: pointer;
  font-weight: 900;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.form-panel label,
.login-card label {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  color: inherit;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(91, 0, 7, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(213, 166, 74, 0.18);
  transform: translateY(-1px);
}

.dark-band input,
.dark-band select,
.dark-band textarea {
  border-color: rgba(213, 166, 74, 0.28);
  background: rgba(255, 255, 255, 0.98);
}

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

.submit-whatsapp {
  width: 100%;
  margin-top: 6px;
  font-size: 16px;
}

.form-note {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.flash {
  max-width: 1100px;
  margin: 22px auto;
  padding: 14px 18px;
  border-radius: 8px;
  background: #e8f6ed;
  color: #164323;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.flash.error {
  background: #fde7e7;
  color: #701313;
}

.flash a {
  font-weight: 900;
  text-decoration: underline;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--wine-2);
}

footer a,
footer p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--wine-2), var(--wine));
}

.login-card {
  width: min(440px, 100%);
  padding: 32px;
  border-radius: 8px;
  background: #fff8ee;
  box-shadow: var(--shadow);
}

.login-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-layout aside {
  padding: 24px;
  color: #fff;
  background: var(--wine-2);
}

.admin-layout aside img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin-bottom: 18px;
}

.admin-layout aside a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.admin-main {
  padding: 34px;
  overflow-x: auto;
}

.admin-main h1 {
  color: var(--wine);
  font-size: 42px;
}

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

.admin-cards article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-cards span {
  color: var(--wine);
  font-size: 34px;
  font-weight: 900;
}

.editor-form textarea {
  min-height: 620px;
  font-family: Consolas, "Courier New", monospace;
}

.content-manager {
  display: grid;
  gap: 16px;
}

.content-manager > .btn {
  width: min(320px, 100%);
}

.editor-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(42, 5, 7, 0.06);
}

.editor-section .editor-section {
  margin: 12px;
  background: #fffaf3;
  box-shadow: none;
}

.editor-section summary {
  padding: 16px 18px;
  color: var(--wine);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.editor-list > summary {
  color: #7b5211;
}

.editor-field {
  display: grid;
  gap: 8px;
  padding: 12px 18px 18px;
  font-weight: 800;
}

.editor-field span {
  color: var(--wine);
}

.editor-field input,
.editor-field textarea {
  background: #fff;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

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

th {
  color: var(--wine);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 980px) {
  .feature-grid,
  .benefit-grid,
  .plans,
  .services-grid,
  .contact-grid,
  .info-grid,
  .zone-grid,
  .split,
  .reserve,
  .contact,
  .contact-pro,
  footer,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .plan.featured {
    transform: none;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(42, 5, 7, 0.98);
    flex-direction: column;
    align-items: stretch;
  }

  .site-header nav.open,
  .nav-toggle {
    display: flex;
  }

  .nav-toggle {
    align-items: center;
    justify-content: center;
  }

  .admin-layout aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  .hero-logo {
    width: 118px;
    height: 118px;
  }

  .form-row,
  .admin-cards,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method {
    border-right: 0;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
