:root {
  --moss: #53644a;
  --moss-dark: #384233;
  --brown: #8a5b44;
  --sand: #efe7dc;
  --cream: #fbf8f2;
  --ink: #221913;
  --line: rgba(34, 25, 19, 0.12);
  --shadow: 0 24px 60px rgba(56, 66, 51, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(138, 91, 68, 0.14), transparent 34%),
    linear-gradient(180deg, #f7f1e7 0%, var(--cream) 52%, #f4ede2 100%);
}

a {
  color: inherit;
}

.booking-shell {
  min-height: 100vh;
  padding: 40px 20px;
}

.booking-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 520px);
  gap: 32px;
  align-items: start;
}

.booking-copy,
.booking-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.92);
  box-shadow: var(--shadow);
}

.booking-copy {
  padding: 40px;
}

.booking-card {
  padding: 32px;
}

.eyebrow,
.summary-label {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
}

h1,
.summary-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  max-width: 12ch;
}

.intro {
  max-width: 58ch;
  margin: 18px 0 0;
  line-height: 1.75;
  color: rgba(34, 25, 19, 0.82);
}

.summary-card {
  margin-top: 32px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(83, 100, 74, 0.12), rgba(138, 91, 68, 0.08));
  border: 1px solid rgba(83, 100, 74, 0.16);
}

.summary-price {
  margin: 14px 0 6px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--moss-dark);
}

.summary-meta {
  margin: 0;
  line-height: 1.7;
  color: rgba(34, 25, 19, 0.82);
}

.summary-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  line-height: 1.7;
}

.booking-links {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.text-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--moss-dark);
}

.booking-form-page {
  display: grid;
  gap: 16px;
}

.booking-form-page label {
  display: grid;
  gap: 8px;
}

.booking-form-page span {
  min-height: 1.4em;
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-form-page input,
.booking-form-page select,
.booking-form-page textarea {
  width: 100%;
  border: 1px solid rgba(34, 25, 19, 0.16);
  border-radius: 16px;
  background: #fffdf8;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

.booking-form-page textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-form-page input:focus,
.booking-form-page select:focus,
.booking-form-page textarea:focus {
  outline: 2px solid rgba(83, 100, 74, 0.2);
  border-color: rgba(83, 100, 74, 0.45);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--moss) 0%, var(--moss-dark) 100%);
  cursor: pointer;
}

.button-secondary {
  margin-top: 12px;
  background: transparent;
  color: var(--moss-dark);
  border: 1px solid rgba(83, 100, 74, 0.26);
}

.paypal-button {
  background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
}

.payment-choice {
  margin: 18px 0 12px;
  font-weight: 700;
}

.payment-buttons {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.status-card {
  border-radius: 20px;
  padding: 24px;
  line-height: 1.7;
}

.status-card.success {
  background: rgba(83, 100, 74, 0.1);
  border: 1px solid rgba(83, 100, 74, 0.22);
}

.status-card.error {
  margin-bottom: 18px;
  background: rgba(138, 91, 68, 0.12);
  border: 1px solid rgba(138, 91, 68, 0.26);
}

.status-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.honey-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 920px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-copy,
  .booking-card {
    padding: 28px;
  }
}
