.ib-booking {
	--ib-ink: #2b2622;
	--ib-paper: #f6f1ea;
	--ib-paper-deep: #efe6d8;
	--ib-clay: #a5583c;
	--ib-moss-deep: #3f4a37;
	--ib-line: #d9cdb9;
	--ib-white: #fffdf9;
	max-width: 760px;
	margin: 0 auto;
	background: var(--ib-white);
	border: 1px solid var(--ib-line);
	border-radius: 4px;
	padding: 40px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--ib-ink);
	box-sizing: border-box;
}
.ib-booking *, .ib-booking *::before, .ib-booking *::after { box-sizing: border-box; }

.ib-progress { display: flex; align-items: center; margin-bottom: 32px; }
.ib-step-dot {
	width: 30px; height: 30px; border-radius: 50%;
	background: var(--ib-paper-deep); color: #8a8172;
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.ib-step-dot.active { background: var(--ib-clay); color: #fff; }
.ib-step-dot.done { background: var(--ib-moss-deep); color: #fff; }
.ib-step-line { flex: 1; height: 1px; background: var(--ib-line); margin: 0 6px; }

.ib-step-title { font-size: 20px; margin: 0 0 20px; color: var(--ib-moss-deep); }
.ib-step-title-sub { margin-top: 32px; font-size: 17px; }

.ib-package-grid, .ib-meeting-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 560px) { .ib-package-grid, .ib-meeting-grid, .ib-datetime-grid, .ib-form-row { grid-template-columns: 1fr !important; } }

.ib-package-card, .ib-meeting-card {
	text-align: left; background: var(--ib-paper); border: 1px solid var(--ib-line);
	border-radius: 3px; padding: 18px; cursor: pointer; display: flex; flex-direction: column; gap: 6px;
	font-family: inherit; transition: border-color .15s ease, background .15s ease;
}
.ib-package-card:hover, .ib-meeting-card:hover { border-color: var(--ib-clay); }
.ib-package-card.selected, .ib-meeting-card.selected {
	border-color: var(--ib-clay); background: #fbeee7; box-shadow: 0 0 0 1px var(--ib-clay);
}
.ib-package-name, .ib-meeting-name { font-weight: 600; font-size: 15.5px; color: var(--ib-moss-deep); }
.ib-package-price { color: var(--ib-clay); font-weight: 600; font-size: 15px; }
.ib-package-meta { font-size: 13px; color: #736b5e; }
.ib-package-desc { font-size: 13.5px; color: #544c43; margin-top: 4px; }
.ib-meeting-desc { font-size: 13.5px; color: #544c43; }

.ib-datetime-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 28px; margin-bottom: 8px; }
.ib-booking label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: #736b5e; margin-bottom: 8px; }
.ib-booking input[type="text"], .ib-booking input[type="email"], .ib-booking input[type="tel"], .ib-booking input[type="date"], .ib-booking select, .ib-booking textarea {
	width: 100%; padding: 11px 13px; border: 1px solid var(--ib-line); border-radius: 3px;
	font-family: inherit; font-size: 15px; background: var(--ib-white); color: var(--ib-ink);
}
.ib-booking input:focus, .ib-booking select:focus, .ib-booking textarea:focus {
	outline: none; border-color: var(--ib-clay); box-shadow: 0 0 0 3px rgba(165,88,60,.12);
}

.ib-slots { display: flex; flex-wrap: wrap; gap: 8px; min-height: 46px; }
.ib-slot-btn {
	padding: 9px 14px; border: 1px solid var(--ib-line); border-radius: 3px; background: var(--ib-paper);
	font-size: 14px; cursor: pointer; font-family: inherit;
}
.ib-slot-btn:hover { border-color: var(--ib-clay); }
.ib-slot-btn.selected { background: var(--ib-clay); color: #fff; border-color: var(--ib-clay); }
.ib-hint { font-size: 13.5px; color: #8a8172; margin: 6px 0 0; }

.ib-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.ib-form-field { margin-bottom: 18px; }
.ib-postcode-row { display: flex; gap: 8px; }
.ib-postcode-row input { flex: 1; }

.ib-choice-group { display: flex; flex-direction: column; gap: 8px; }
.ib-choice { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ib-ink); }
.ib-choice input { width: auto; }

.ib-step-actions { display: flex; justify-content: space-between; margin-top: 28px; gap: 12px; }
.ib-btn {
	font-family: inherit; font-size: 15px; font-weight: 500; border-radius: 3px; padding: 12px 24px;
	cursor: pointer; border: 1px solid transparent;
}
.ib-btn-primary { background: var(--ib-clay); color: #fff; margin-left: auto; }
.ib-btn-primary:hover { background: #8f4830; }
.ib-btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.ib-btn-ghost { background: transparent; color: var(--ib-moss-deep); border-color: var(--ib-moss-deep); }
.ib-btn-ghost:hover { background: var(--ib-moss-deep); color: #fff; }
.ib-btn-small { padding: 10px 14px; font-size: 13.5px; background: var(--ib-paper-deep); border-color: var(--ib-line); color: var(--ib-ink); white-space: nowrap; }

.ib-review { background: var(--ib-paper); border: 1px solid var(--ib-line); border-radius: 3px; padding: 20px; margin-bottom: 20px; }
.ib-review dl { display: grid; grid-template-columns: 140px 1fr; gap: 8px 12px; margin: 0; }
.ib-review dt { font-weight: 600; color: #736b5e; font-size: 13.5px; }
.ib-review dd { margin: 0; font-size: 14.5px; }

.ib-note-box {
	background: var(--ib-moss-deep); color: #e7e0d1; border-radius: 3px; padding: 16px 18px;
	font-size: 14px; line-height: 1.5; margin-bottom: 8px;
}

.ib-form-message { font-size: 14px; color: #a5583c; min-height: 20px; margin-top: 12px; }
.ib-form-message.ib-success-msg { color: #3f4a37; }

.ib-success { text-align: center; padding: 20px 0; }
