:root{
  --paper:#f4efe9;
  --ink:#0e0e0e;
  --stone:#6e6e6e;
  --accent:#c89145;
  --accent-strong:#b87e2f;
  --card:#ffffff;
  --ring:rgba(200,145,69,0.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(200,145,69,.08), transparent 60%) var(--paper);
  color:var(--ink);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  line-height:1.45;
}

.wrap{ max-width:880px; margin:0 auto; padding:28px 18px 72px; }

header{ display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:18px; gap:16px; }
.brand{ display:flex; align-items:center; gap:14px; }

.sun{ width:56px;height:56px;border-radius:50%; background:var(--accent); box-shadow:0 6px 24px rgba(200,145,69,.35) inset, 0 2px 0 rgba(255,255,255,.45); }

h1{ margin:0; font-family:"Playfair Display", serif; font-weight:800; letter-spacing:.5px; font-size: clamp(28px, 5vw, 52px); line-height:1; }
.subtitle{ color:var(--stone); font-size:14px; margin-top:6px; }

.cards{ display:grid; grid-template-columns:1fr; gap:18px; }
@media (min-width:780px){ .cards{ grid-template-columns:1fr 1fr; } }

.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:20px;
  border:1px solid rgba(14,14,14,.06);
  box-shadow:0 1px 0 rgba(14,14,14,.05), 0 10px 30px rgba(14,14,14,.06);
}

.card h2{ font-family:"Playfair Display", serif; font-size: clamp(20px, 2.6vw, 28px); margin:0 0 4px 0; letter-spacing:.2px; }
.card p{ margin:0 0 16px 0; color:var(--stone); }

.grid{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:14px;
  align-items:end;
  padding:10px 0 4px;
  border-top:1px dashed rgba(14,14,14,.12);
  border-bottom:1px dashed rgba(14,14,14,.12);
  margin:8px 0 16px;
}

.row{ display:contents; }

label{ display:block; font-weight:700; margin-bottom:6px; }

.price{ font-weight:700; color:var(--ink); }

/* selects with visible chevron */
.select-chev{
  appearance:none;
  background:var(--paper);
  border:1.5px solid rgba(14,14,14,.15);
  border-radius:12px;
  padding:12px 44px 12px 14px;
  font-size:16px;
  outline:none;
  min-width:160px;
  transition: box-shadow .15s ease, border-color .15s ease, transform .06s ease;
  position:relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'%3E%3Cpath fill='%23111111' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position: right 10px center;
}
.select-chev:focus{ border-color:var(--accent); box-shadow:0 0 0 6px var(--ring); }
.select-chev:active{ transform:scale(.995); }

.field-hint{ font-size:12px; color:var(--stone); margin-top:6px; }

/* inputs */
.details-form{ display:grid; grid-template-columns:1fr; gap:10px; margin:6px 0 8px; }
.details-form .field input{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1.5px solid rgba(14,14,14,.15);
  background:#fffaf3;
  font-size:16px;
}
.details-form .field input:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 6px var(--ring); }

/* total box */
.total{
  display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  padding:14px 16px;
  background:linear-gradient(180deg, rgba(200,145,69,.08), rgba(200,145,69,.03));
  border:1px solid rgba(200,145,69,.35);
  border-radius:14px; font-weight:700;
}
.total .amount{ font-size: clamp(22px, 3.4vw, 28px); font-family:"Playfair Display", serif; }
.muted{ color:var(--stone); font-weight:500; }

.cta{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; background:var(--accent); color:#fff; text-decoration:none;
  border-radius:14px; font-weight:700;
  transition: transform .05s ease, filter .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 22px rgba(200,145,69,.35);
}
.cta:hover{ filter:brightness(1.05) saturate(1.05) }
.cta:active{ transform: translateY(1px) }

.cta.outline{ background:transparent; color:var(--ink); border:2px solid var(--accent); box-shadow:none; }
.cta.outline:hover{ filter:brightness(1.02); }

.pay-actions{ display:grid; gap:10px; grid-template-columns:1fr; margin-top:8px; }
@media (min-width:480px){ .pay-actions{ grid-template-columns:1fr 1fr; } }

.helper{ font-size:13px; color:var(--stone); margin-top:10px; }
.helper.strong{ color:#4a4a4a; }

footer{ margin-top:26px; color:var(--stone); font-size:13px; text-align:center; }
footer a{ color:inherit; font-weight:600; text-decoration:underline; }

.pill{ display:inline-block; font-weight:700; background:var(--ink); color:#fff; padding:3px 8px; border-radius:999px; font-size:12px; margin-left:8px; }

.breakdown{ margin:8px 0 0; font-size:14px; color:var(--stone); }

/* Poster */
.poster{ margin:32px auto 0; text-align:center; }
.poster img{ max-width:100%; height:auto; border-radius:12px; box-shadow:0 8px 24px rgba(0,0,0,0.15); }

/* Adult info bits */
.label-line{ display:flex; align-items:center; gap:8px; margin-bottom:6px; }
.info-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px;height:22px; border-radius:50%;
  border:1.5px solid rgba(14,14,14,.45); background:#fff;
  font-weight:700; font-size:12px; line-height:1; color:var(--ink); cursor:pointer;
}
.info-btn[aria-expanded="true"]{ border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }

.info-panel{
  background:#fff; border:1px solid rgba(14,14,14,.12); border-radius:12px;
  padding:10px 12px; margin-top:10px; color:var(--stone);
}

/* two small fields side by side */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.field-label{ display:block; font-size:12px; color:var(--stone); margin:0 0 4px 2px; }
