/* RG Hendricks Concrete — Recruiting Application Site
   Adapted from kmb-deploy/css/styles.css.
   :root, geometry and components follow recruiting/DESIGN-TOKENS.md
   plus Cole's build overrides (black header, square progress markers,
   white-on-gold buttons, Black Forest photo hero). */

html, body {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ---- Brand (brand book, authoritative) ---- */
  --brand-primary:      #19331E;
  --brand-primary-dark: #102113;
  --brand-secondary:    #999999;
  --brand-light:        #E8EBE8;

  /* ---- CTA ---- */
  --cta-primary:        #A6832E;
  --cta-primary-hover:  #C7A42F;
  --cta-text:           #FFFFFF;

  /* ---- Neutrals ---- */
  --white:              #FFFFFF;
  --bg-light:           #F5F5F5;
  --text-dark:          #000000;
  --text-medium:        #4D4D4D;
  --text-light:         #757575;
  --border-light:       #E0E0E0;
  --border-medium:      #C7C7C7;

  /* ---- Structural ---- */
  --header-bg:          #000000;
  --footer-bg:          #19331E;

  /* ---- Functional ---- */
  --success:            #19331E;
  --error:              #B00020;

  /* ---- Type ---- */
  --font-heading: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --heading-stretch: 125%;
  --body-stretch:    100%;

  /* ---- Geometry ---- */
  --radius:        0;
  --max-content:   700px;
  --gutter-mobile: 20px;

  /* ---- Shadows: use sparingly ---- */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
}

body {
  font-family: var(--font-body);
  font-stretch: var(--body-stretch);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--bg-light);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ========== Header ========== */
header {
  background: var(--header-bg);
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
}

.header-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.header-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-phone svg {
  stroke: var(--white);
  flex-shrink: 0;
}

.header-phone:hover {
  text-decoration: underline;
}

/* ========== Layout ========== */
.app-container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.page-container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 20px 60px;
}

.noscript-note {
  background: var(--brand-light);
  border-left: 3px solid var(--cta-primary);
  color: var(--text-dark);
  padding: 16px 20px;
  max-width: var(--max-content);
  margin: 20px auto 0;
  font-size: 16px;
}

.noscript-note a {
  color: var(--brand-primary);
  font-weight: 600;
}

/* ========== Hero (Black Forest ground + darkened photo) ========== */
.hero {
  background-color: var(--brand-primary);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 40% 50%;
  color: var(--white);
  text-align: center;
  padding: 48px 24px 44px;
}

/* Art direction: a 16:9 crop for the wide hero box, a 3:4 crop for the tall
   one at <=640px. Each crop is already framed on the work, so the position
   stays near centre. Overlay is 72% on all three. */
body.page-finisher .hero {
  background-image:
    linear-gradient(rgba(25,51,30,0.72), rgba(25,51,30,0.72)),
    url('/img/hero-finisher-wide.jpg');
  background-position: 50% 50%;
}

body.page-foreman .hero {
  background-image:
    linear-gradient(rgba(25,51,30,0.72), rgba(25,51,30,0.72)),
    url('/img/hero-foreman-wide.jpg');
  background-position: 50% 42%;
}

body.page-root .hero {
  background-image:
    linear-gradient(rgba(25,51,30,0.72), rgba(25,51,30,0.72)),
    url('/img/hero-root-wide.jpg');
  background-position: 50% 50%;
  padding: 64px 24px 58px;
}

.hero-bug {
  height: 56px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-stretch: 100%;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}

.hero h1 .position-title {
  display: block;
  font-size: 40px;
  line-height: 1.1;
  margin-top: 4px;
}

body.page-root .hero h1 {
  font-size: 40px;
}

.hero-lede {
  color: var(--white);
  font-size: 17px;
  max-width: 34em;
  margin: 18px auto 0;
}

/* Three pills — square, thin white outline, inline SVG icon. */
.position-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.detail-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--white);
}

.detail-item svg {
  stroke: var(--white);
  flex-shrink: 0;
}

/* ========== Progress bar — four square markers ========== */
.form-progress {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 84px;
}

.progress-number {
  width: 36px;
  height: 36px;
  background: var(--border-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.25s ease, color 0.25s ease;
}

.progress-step.active .progress-number {
  background: var(--cta-primary);
  color: var(--white);
}

.progress-step.completed .progress-number {
  background-color: var(--brand-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 17px;
  color: transparent;
}

.progress-step span {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
}

.progress-step.active span {
  color: var(--brand-primary);
}

.progress-step.completed span {
  color: var(--brand-primary);
}

.progress-line {
  flex: 1 1 auto;
  max-width: 48px;
  height: 3px;
  background: var(--border-light);
  margin: 17px 4px 0;
  transition: background 0.25s ease;
}

.progress-line.completed {
  background: var(--brand-primary);
}

/* ========== Form container ========== */
.form-container {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.form-container > form {
  padding: 40px 36px;
}

/* Step 1's hero runs edge to edge inside the container. */
.form-container .hero {
  margin: -40px -36px 32px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* ========== Step 1 content ========== */
.welcome-content h2 {
  font-family: var(--font-heading);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.welcome-content > p {
  color: var(--text-medium);
  margin-bottom: 26px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--cta-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.check-icon svg {
  stroke: var(--white);
}

/* ========== Step headers ========== */
.step-header {
  margin-bottom: 28px;
}

.step-header h2 {
  font-family: var(--font-heading);
  font-stretch: 100%;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-header p {
  color: var(--text-medium);
  font-size: 16px;
}

/* ========== Question cards ========== */
.question-card {
  background: var(--brand-light);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--cta-primary);
  padding: 24px;
  margin-bottom: 18px;
}

/* The card whose answer fired the gate, flagged on return from the DQ screen. */
.question-card.card-flagged {
  border-left-color: var(--error);
}

.card-flag {
  color: var(--error);
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}

/* Question groups are fieldsets; the legend is styled exactly as the h3 was. */
.question-card fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.question-card legend,
.question-card h3 {
  display: block;
  width: 100%;
  padding: 0;
  font-family: var(--font-heading);
  font-stretch: 100%;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.question-card:last-of-type {
  margin-bottom: 0;
}

.question-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 10px;
}


.question-card legend + .question-note,
.question-card h3 + .question-note {
  margin-top: -8px;
}

.question-note {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 14px;
}

.question-intro {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 14px;
}

.question-card .card-split {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* ========== Options (radio) ========== */
.option-grid {
  display: grid;
  gap: 10px;
}

.option-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.option-item {
  position: relative;
}

.option-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-item label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  min-height: 56px;
  border: 2px solid var(--border-medium);
  background: var(--white);
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-dark);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.option-item label:hover {
  border-color: var(--brand-primary);
  background: rgba(25,51,30,0.04);
}

.option-item input:checked + label {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 600;
}

.option-item input:focus-visible + label,
.checkbox-item input:focus-visible + label {
  outline: none;
  box-shadow: 0 0 0 3px rgba(25,51,30,0.35);
}

.option-item .tick,
.checkbox-item .tick {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0;
}

/* Two-option cards run as a 2-up grid at every width, so Step 2 stays short
   on a phone. The tick stacks above the label so it never crowds wrapped
   text, and its row is reserved when unchecked so selecting shifts nothing. */
.option-grid.cols-2 label {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 16px 14px;
  gap: 6px;
}

.option-item input:checked + label .tick {
  opacity: 1;
}

.option-item .tick svg,
.checkbox-item .tick svg {
  stroke: var(--white);
}

/* ========== Checkboxes ========== */
.checkbox-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-item {
  position: relative;
}

.checkbox-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-item label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  min-height: 56px;
  border: 2px solid var(--border-medium);
  background: var(--white);
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-dark);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.checkbox-item label:hover {
  border-color: var(--brand-primary);
  background: rgba(25,51,30,0.04);
}

.checkbox-item input:checked + label {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 600;
}

.checkbox-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white);
}

.checkbox-item input:checked + label .checkbox-icon {
  background: var(--white);
  border-color: var(--white);
}

.checkbox-icon svg {
  stroke: var(--brand-primary);
  opacity: 0;
}

.checkbox-item input:checked + label .checkbox-icon svg {
  opacity: 1;
}

/* ========== Form fields ========== */
.form-group {
  margin-bottom: 18px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-medium);
  font-size: 16px;
  font-family: inherit;
  font-stretch: 100%;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(25,51,30,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 84px;
}

.form-group.is-hidden {
  display: none;
}

.followup {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.required {
  color: var(--error);
}

.optional-tag {
  font-weight: 400;
  color: var(--text-light);
}

/* Inline validation */
.field-error {
  display: none;
  color: var(--error);
  font-size: 14px;
  margin-top: 8px;
}

.field-error.visible {
  display: block;
}

/* One line above the nav: why Continue/Submit is not moving. */
.step-error {
  display: none;
  color: var(--error);
  font-size: 15px;
  font-weight: 600;
  margin-top: 22px;
}

.step-error.visible {
  display: block;
}

.step-error.visible + .form-nav {
  margin-top: 14px;
}

/* SMS consent */
.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.consent-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-item label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-medium);
}

.consent-item label .checkbox-icon {
  margin-top: 2px;
}

.consent-item input:checked + label .checkbox-icon {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.consent-item input:checked + label .checkbox-icon svg {
  opacity: 1;
  stroke: var(--white);
}

.consent-item input:focus-visible + label .checkbox-icon {
  box-shadow: 0 0 0 3px rgba(25,51,30,0.35);
}

.consent-item a {
  color: var(--brand-primary);
  font-weight: 600;
  display: inline-block;
  padding: 12px 4px;
  margin: -12px 0;
}

/* ========== Buttons ========== */
.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-stretch: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--cta-primary);
  color: var(--cta-text);
  flex: 1;
}

.btn-primary:hover {
  background: var(--cta-primary-hover);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-back {
  background: transparent;
  border: 1px solid var(--cta-primary);
  color: var(--cta-primary);
  font-size: 16px;
  padding: 18px 24px;
  flex: 0 0 auto;
  min-width: 120px;
}

.btn-back:hover {
  background: rgba(166,131,46,0.10);
}

.form-note {
  font-size: 15px;
  color: var(--text-medium);
  margin-top: 16px;
}

/* ========== Not-a-fit screen ========== */
.dq-list {
  list-style: none;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dq-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dq-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cta-primary);
  flex-shrink: 0;
  margin-top: 9px;
}

.dq-lead {
  margin-top: 22px;
  margin-bottom: 4px;
  font-weight: 600;
}

.dq-close {
  margin-top: 20px;
  color: var(--text-medium);
}

.dq-alt {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  color: var(--text-medium);
}

.dq-alt.visible {
  display: block;
}

.dq-alt a {
  color: var(--brand-primary);
  font-weight: 600;
}

/* ========== Root page role cards ========== */
.role-cards {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.role-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
}

.role-card h2 {
  font-family: var(--font-heading);
  font-stretch: 100%;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.role-card p {
  color: var(--text-medium);
  margin-bottom: 22px;
}

.role-card .btn {
  width: 100%;
}

/* ========== book-screen / thank-you ========== */
.content-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 40px 36px;
  margin-top: 32px;
}

.content-card h1 {
  font-family: var(--font-heading);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.content-card .lead {
  color: var(--text-medium);
  margin-bottom: 8px;
}

.booking-embed {
  margin-top: 28px;
}

.booking-embed iframe {
  width: 100%;
  min-height: 640px;
  border: none;
  display: block;
}

.skip-line {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  color: var(--text-medium);
  font-size: 16px;
}

.skip-line a,
.content-card a {
  color: var(--brand-primary);
  font-weight: 600;
}

.next-steps {
  list-style: none;
  counter-reset: step;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.next-steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 30px;
  height: 30px;
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.closing-line {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
  color: var(--text-medium);
}

/* ========== Footer ========== */
footer {
  background: var(--footer-bg);
  text-align: center;
  padding: 40px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

footer .footer-logo img {
  height: 36px;
  width: auto;
  margin: 0 auto 18px;
  display: block;
}

footer a {
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  padding: 12px 4px;
  margin: -12px 0;
}

footer a:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .form-container > form {
    padding: 28px 20px;
  }

  .form-container .hero {
    margin: -28px -20px 26px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .app-container {
    padding: 22px 16px 48px;
  }

  .page-container {
    padding: 0 16px 48px;
  }

  .header-logo img {
    height: 30px;
  }

  .header-phone {
    font-size: 15px;
  }

  footer .footer-logo img {
    height: 30px;
  }

  .hero {
    padding: 36px 20px 34px;
    background-position: 35% 50%;
  }

  body.page-finisher .hero {
    background-image:
      linear-gradient(rgba(25,51,30,0.72), rgba(25,51,30,0.72)),
      url('/img/hero-finisher-tall.jpg');
    background-position: 50% 38%;
  }

  body.page-foreman .hero {
    background-image:
      linear-gradient(rgba(25,51,30,0.72), rgba(25,51,30,0.72)),
      url('/img/hero-foreman-tall.jpg');
    background-position: 50% 34%;
  }

  body.page-root .hero {
    background-image:
      linear-gradient(rgba(25,51,30,0.72), rgba(25,51,30,0.72)),
      url('/img/hero-root-tall.jpg');
    background-position: 50% 60%;
    padding: 46px 20px 42px;
  }

  .hero-bug {
    height: 44px;
    margin-bottom: 16px;
  }

  .hero-eyebrow {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero h1 .position-title {
    font-size: 28px;
  }

  body.page-root .hero h1 {
    font-size: 28px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .position-details {
    gap: 8px;
    margin-top: 20px;
  }

  .detail-item {
    font-size: 13px;
    padding: 7px 11px;
  }

  .form-progress {
    margin-bottom: 24px;
  }

  .progress-step {
    width: 62px;
  }

  .progress-number {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .progress-step span {
    font-size: 10px;
  }

  .progress-line {
    max-width: 24px;
    margin-top: 14px;
  }

  .welcome-content h2 {
    font-size: 20px;
  }

  .step-header h2 {
    font-size: 19px;
  }

  .question-card {
    padding: 20px 16px;
    margin-bottom: 14px;
  }

  .option-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .option-grid.cols-2 label {
    padding: 16px 10px;
    line-height: 1.3;
  }

  .option-item label,
  .checkbox-item label {
    padding: 16px 16px;
  }

  .form-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 16px 20px;
  }

  .btn-back {
    min-width: 0;
  }

  .content-card {
    padding: 28px 20px;
    margin-top: 24px;
  }

  .content-card h1 {
    font-size: 24px;
  }

  .role-card {
    padding: 24px 20px;
  }

  .booking-embed iframe {
    min-height: 580px;
  }
}
