:root {
  --forest-900: #173c36;
  --forest-800: #1e5147;
  --forest-700: #256b5b;
  --forest-600: #2f7866;
  --forest-500: #3d8f78;
  --forest-100: #ddf0ea;
  --sand-50: #f8fbfa;
  --sand-100: #eef4f2;
  --sand-200: #dce9e5;
  --terra-600: #e85f54;
  --ink: #18302b;
  --line: rgba(23, 60, 54, .12);
  --shadow-soft: 0 20px 60px rgba(23, 60, 54, .10);
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: 96px;
  scrollbar-color: var(--forest-600) var(--sand-100);
  scrollbar-width: thin;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--sand-50);
}

button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; color: inherit; }
button { appearance: none; -webkit-appearance: none; }
button, select { cursor: pointer; }
input, textarea, select { caret-color: var(--terra-600); }
input::placeholder, textarea::placeholder { opacity: 1; }
input[type="checkbox"], input[type="radio"], input[type="range"], progress { accent-color: var(--forest-700); }
button:disabled, input:disabled, select:disabled, textarea:disabled { cursor: not-allowed; opacity: .55; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(232,95,84,.32);
  outline-offset: 3px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--forest-900);
  box-shadow: 0 0 0 1000px white inset;
  transition: background-color 9999s ease-out 0s;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { display: none; }
input[type="number"] { appearance: textfield; -moz-appearance: textfield; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { margin: 0; appearance: none; -webkit-appearance: none; }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--sand-100); }
::-webkit-scrollbar-thumb { border: 3px solid var(--sand-100); border-radius: 999px; background: var(--forest-600); }
::-webkit-scrollbar-thumb:hover { background: var(--forest-800); }

::selection { background: #ddf0ea; color: #173c36; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 12px;
  background: white;
  padding: 12px 18px;
  font-weight: 700;
  color: var(--forest-900);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.skip-link:focus { transform: translateY(0); }

.nav-link {
  position: relative;
  border-radius: 6px;
  padding: 10px 0;
  font-size: .94rem;
  font-weight: 600;
  color: rgba(16, 40, 32, .78);
  transition: color .2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--terra-600);
  transition: transform .2s ease;
}

.nav-link:hover { color: var(--forest-900); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--forest-900); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link:focus-visible { outline: 3px solid rgba(232,95,84,.24); outline-offset: 4px; }

.mobile-nav-link {
  border-bottom: 1px solid rgba(31,75,59,.1);
  padding: 15px 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-900);
}
.mobile-nav-link[aria-current="page"] { color: var(--forest-700); }

.mobile-menu { animation: slideDown .2s ease-out; }

.btn-primary,
.btn-secondary,
.btn-light,
.btn-outline-light {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 0 24px;
  font-weight: 700;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn-primary { background: var(--forest-700); color: white; box-shadow: 0 10px 26px rgba(37,107,91,.20); }
.btn-primary:hover { transform: translateY(-2px); background: var(--forest-800); box-shadow: 0 14px 32px rgba(37,107,91,.25); }
.btn-secondary { border: 1px solid rgba(31,75,59,.2); background: white; color: var(--forest-800); }
.btn-secondary:hover { transform: translateY(-2px); border-color: rgba(31,75,59,.38); background: var(--sand-50); }
.btn-light { background: white; color: var(--forest-800); box-shadow: 0 10px 30px rgba(0,0,0,.14); }
.btn-light:hover { transform: translateY(-2px); background: var(--sand-100); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08); color: white; }
.btn-outline-light:hover { transform: translateY(-2px); border-color: white; background: rgba(255,255,255,.14); }
.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-light:focus-visible, .btn-outline-light:focus-visible { outline: 4px solid rgba(232,95,84,.24); outline-offset: 3px; }
.btn-primary svg, .btn-secondary svg, .btn-light svg { width: 18px; height: 18px; }

.hero-grid {
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  background:
    radial-gradient(circle at 82% 18%, rgba(164,222,203,.42), transparent 34%),
    radial-gradient(circle at 14% 88%, rgba(255,186,177,.22), transparent 28%),
    var(--sand-50);
}
.hero-grid.hero-dropdown-open { z-index: 50; }

.hero-blob { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.hero-blob-one { top: 40px; right: -160px; width: 560px; height: 560px; background: rgba(221,240,234,.55); }
.hero-blob-two { bottom: -180px; left: -140px; width: 410px; height: 410px; background: rgba(255,229,224,.45); }

.pip-contour { position: absolute; pointer-events: none; user-select: none; }
.pip-contour-hero { z-index: -1; left: -90px; bottom: -260px; width: clamp(420px, 34vw, 680px); opacity: .035; transform: rotate(-8deg); }
.pip-contour-dark { right: -120px; bottom: -260px; width: clamp(520px, 42vw, 820px); opacity: .055; filter: brightness(0) invert(1); transform: rotate(8deg); }

.brand-strip { position: relative; overflow: hidden; }
.brand-strip::after { content: ''; position: absolute; top: 50%; right: clamp(10px, 2vw, 46px); width: 88px; height: 88px; transform: translateY(-50%) rotate(6deg); background: url('assets/images/pip-outline.png') center / contain no-repeat; opacity: .055; pointer-events: none; }

.pip-surface, .pip-edge { position: relative; isolation: isolate; overflow: hidden; }
.pip-surface::before { content: ''; position: absolute; z-index: -1; left: -140px; bottom: -220px; width: 520px; height: 520px; background: url('assets/images/pip-outline.png') center / contain no-repeat; opacity: .032; transform: rotate(-10deg); pointer-events: none; }
.pip-surface-right::before { right: -120px; left: auto; top: 30px; bottom: auto; opacity: .038; transform: rotate(8deg); }
.pip-edge::after { content: ''; position: absolute; z-index: -1; top: 12%; right: -140px; width: 430px; height: 430px; background: url('assets/images/pip-outline.png') center / contain no-repeat; opacity: .026; transform: rotate(12deg); pointer-events: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  padding: 7px 13px 7px 8px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest-700);
  box-shadow: 0 7px 22px rgba(23,60,54,.06);
}

.eyebrow-dark { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; box-shadow: none; padding-left: 13px; }

.trust-tick { display: inline-flex; align-items: center; gap: 8px; }
.trust-tick svg { width: 20px; height: 20px; padding: 3px; border-radius: 999px; background: var(--forest-100); color: var(--forest-700); stroke-width: 3; }

.search-tab {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px 13px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(23,60,54,.62);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.search-tab.is-active { border-color: rgba(37,107,91,.12); background: white; color: var(--forest-800); box-shadow: 0 5px 16px rgba(23,60,54,.09); }
.search-tab:focus-visible { outline: 3px solid rgba(232,95,84,.24); }

.search-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr) minmax(176px, .82fr); align-items: stretch; }
.search-grid .btn-primary { width: 100%; white-space: nowrap; }
.search-form-dropdown-open { position: relative; z-index: 60; }

.search-field {
  display: flex;
  height: 68px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(31,75,59,.13);
  border-radius: 12px;
  padding: 10px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-field:focus-within { border-color: var(--forest-600); box-shadow: 0 0 0 3px rgba(59,113,92,.12); }
.search-label { display: block; min-height: 14px; margin-bottom: 3px; white-space: nowrap; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(23,60,54,.56); }

.pet-select { position: relative; }
.pet-select.is-open { z-index: 35; border-color: var(--forest-600); box-shadow: 0 0 0 3px rgba(59,113,92,.12); }
.pet-select-trigger { display: flex; width: 100%; min-width: 0; align-items: center; justify-content: space-between; gap: 10px; border-radius: 7px; text-align: left; color: var(--forest-900); }
.pet-select-trigger:focus-visible { outline: none; }
.pet-select-value { display: flex; min-width: 0; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; }
.pet-select-value > svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--terra-600); }
.pet-select-chevron { width: 17px; height: 17px; flex: 0 0 auto; color: rgba(23,60,54,.52); transition: transform .2s ease; }
.pet-select.is-open .pet-select-chevron { transform: rotate(180deg); }

.pet-select-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 11px);
  left: 50%;
  width: max(100%, 240px);
  border: 1px solid rgba(37,107,91,.14);
  border-radius: 17px;
  background: rgba(255,255,255,.98);
  padding: 7px;
  box-shadow: 0 24px 70px rgba(23,60,54,.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: petMenuIn .18s ease-out;
}
.pet-select-menu[hidden] { display: none; }
.pet-select-option { display: grid; width: 100%; min-height: 46px; grid-template-columns: 24px minmax(0,1fr) 20px; align-items: center; gap: 9px; border-radius: 11px; padding: 9px 11px; text-align: left; font-size: .96rem; font-weight: 700; color: var(--forest-900); transition: background .16s ease, color .16s ease; }
.pet-select-option:hover, .pet-select-option:focus-visible { background: var(--forest-100); color: var(--forest-900); outline: none; }
.pet-select-option[aria-selected="true"] { background: var(--forest-800); color: white; }
.pet-select-option[aria-selected="true"]:hover, .pet-select-option[aria-selected="true"]:focus-visible { background: var(--forest-700); color: white; }
.pet-option-icon, .pet-option-check { width: 19px; height: 19px; }
.pet-option-icon { color: var(--terra-600); }
.pet-select-option[aria-selected="true"] .pet-option-icon { color: #ffd0c9; }
.pet-option-check { justify-self: end; opacity: 0; }
.pet-select-option[aria-selected="true"] .pet-option-check { opacity: 1; }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.94);
  border-radius: 34px 132px 34px 34px;
  box-shadow: 0 30px 90px rgba(23,60,54,.17);
}

.hero-image-wrap img { object-position: 58% center; }

.benefit-item { display: flex; align-items: center; gap: 13px; color: var(--forest-800); }
.benefit-item > svg { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 14px; background: var(--forest-100); padding: 10px; color: var(--forest-700); }
.benefit-item span { display: flex; flex-direction: column; line-height: 1.35; }
.benefit-item strong { font-size: .94rem; }
.benefit-item small { margin-top: 2px; color: rgba(31,75,59,.62); }

.section-pad { padding-top: 112px; padding-bottom: 112px; }
.section-title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.09; letter-spacing: -.035em; color: var(--forest-900); }
.section-heading { width: 100%; max-width: none; }
.section-title-wide { width: 100%; max-width: none; text-wrap: balance; }
.section-lead { margin-top: 18px; font-size: 1.08rem; line-height: 1.75; color: rgba(16,40,32,.67); }

.step-line { display: none; }
.step-card { position: relative; z-index: 1; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.88); padding: 34px; box-shadow: 0 14px 42px rgba(23,60,54,.055); backdrop-filter: blur(12px); transition: transform .2s ease, box-shadow .2s ease; }
.step-card::after { content: ''; position: absolute; right: -34px; bottom: -52px; width: 150px; height: 150px; background: url('assets/images/pip-outline.png') center / contain no-repeat; opacity: .035; transform: rotate(8deg); pointer-events: none; }
.step-card:hover { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(23,60,54,.10); }
.step-number { position: absolute; top: 18px; right: 20px; font-family: 'Fraunces', Georgia, serif; font-size: 2.7rem; font-weight: 700; color: rgba(31,75,59,.1); }
.step-icon { display: flex; width: 56px; height: 56px; align-items: center; justify-content: center; border-radius: 17px; background: var(--forest-100); color: var(--forest-700); }
.step-icon svg { width: 27px; height: 27px; }
.step-card h3 { margin-top: 25px; font-family: 'Fraunces', Georgia, serif; font-size: 1.45rem; font-weight: 700; color: var(--forest-900); }
.step-card p { margin-top: 10px; line-height: 1.7; color: rgba(16,40,32,.67); }

.photo-stack { position: relative; padding: 0 0 28px 18px; }
.photo-stack::before { content: ''; position: absolute; inset: 22px 22px 0 0; border-radius: 32px; background: linear-gradient(135deg, #ff8a7d, #e85f54); opacity: .82; transform: rotate(-3deg); }
.main-photo { position: relative; z-index: 1; aspect-ratio: 4 / 3; width: 100%; border: 7px solid rgba(255,255,255,.92); border-radius: 32px; object-fit: cover; box-shadow: 0 25px 70px rgba(0,0,0,.24); }
.photo-caption { position: absolute; z-index: 2; right: 0; bottom: 0; display: flex; max-width: 340px; align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.5); border-radius: 17px; background: rgba(255,255,255,.96); padding: 13px 17px; color: var(--forest-900); box-shadow: 0 14px 40px rgba(0,0,0,.2); }
.photo-caption p { display: flex; flex-direction: column; font-size: .86rem; line-height: 1.35; }
.photo-caption small { margin-top: 3px; color: rgba(16,40,32,.6); }

.dark-check { display: flex; align-items: flex-start; gap: 14px; }
.dark-check > svg { width: 27px; height: 27px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.13); padding: 6px; color: #bdebdc; stroke-width: 3; }
.dark-check span { display: flex; flex-direction: column; }
.dark-check strong { font-size: 1.03rem; color: white; }
.dark-check small { margin-top: 3px; font-size: .92rem; color: rgba(255,255,255,.62); }

.choice-card { position: relative; overflow: hidden; min-height: 310px; border: 1px solid var(--line); border-radius: 26px; padding: 30px; transition: transform .2s ease, box-shadow .2s ease; }
.choice-card:hover { transform: translateY(-5px); }
.choice-card::after { content: ''; position: absolute; right: -42px; bottom: -68px; width: 190px; height: 190px; background: url('assets/images/pip-outline.png') center / contain no-repeat; opacity: .045; transform: rotate(8deg); pointer-events: none; }
.choice-sage { background: #e7f5f0; }
.choice-terra { background: #fff0ed; }
.choice-sand { background: #eef3ff; }
.choice-icon { display: flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 16px; background: rgba(255,255,255,.75); color: var(--forest-700); box-shadow: 0 6px 20px rgba(31,75,59,.08); }
.choice-icon svg { width: 26px; height: 26px; }
.choice-kicker { margin-top: 24px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-700); }
.choice-card h3 { margin-top: 5px; font-family: 'Fraunces', Georgia, serif; font-size: 1.65rem; font-weight: 700; color: var(--forest-900); }
.choice-card > p:not(.choice-kicker) { margin-top: 10px; line-height: 1.65; color: rgba(16,40,32,.67); }
.choice-tag { position: absolute; right: 25px; bottom: 24px; left: 25px; display: inline-flex; width: fit-content; border-radius: 999px; background: rgba(255,255,255,.68); padding: 7px 11px; font-size: .75rem; font-weight: 700; color: var(--forest-700); }

.mascot-halo { position: absolute; inset: 12% 4% 4%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.96) 0 45%, rgba(190,230,217,.84) 46% 68%, transparent 69%); }

.safety-card { display: flex; align-items: flex-start; gap: 13px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.78); padding: 20px; box-shadow: 0 12px 36px rgba(23,60,54,.045); backdrop-filter: blur(10px); }
.safety-card > svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--terra-600); }
.safety-card h3 { font-weight: 700; color: var(--forest-900); }
.safety-card p { margin-top: 3px; font-size: .9rem; line-height: 1.5; color: rgba(16,40,32,.62); }

.feature-line { display: flex; align-items: flex-start; gap: 14px; }
.feature-line > svg { width: 25px; height: 25px; flex: 0 0 auto; color: var(--terra-600); }
.feature-line span { display: flex; flex-direction: column; }
.feature-line strong { color: var(--forest-900); }
.feature-line small { margin-top: 4px; font-size: .92rem; line-height: 1.45; color: rgba(16,40,32,.6); }

.profile-card { display: flex; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 14px 44px rgba(23,60,54,.07); }
.profile-photo { width: 41%; min-height: 310px; object-fit: cover; }
.profile-card h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; font-weight: 700; color: var(--forest-900); }
.profile-location { display: flex; align-items: center; gap: 5px; margin-top: 3px; font-size: .86rem; color: rgba(16,40,32,.6); }
.profile-location svg { width: 14px; height: 14px; }
.verified-badge { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; background: #edf4f0; padding: 6px 9px; font-size: .68rem; font-weight: 700; color: var(--forest-700); }
.verified-badge svg { width: 14px; height: 14px; }
.pet-tag { border-radius: 999px; background: var(--sand-100); padding: 6px 10px; font-size: .74rem; font-weight: 700; color: var(--forest-700); }
.profile-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; border-radius: 7px; font-weight: 700; color: var(--forest-700); }
.profile-link:hover { color: var(--terra-600); }
.profile-link:focus-visible { outline: 3px solid rgba(232,95,84,.24); outline-offset: 4px; }
.profile-link svg { width: 16px; height: 16px; }

.faq-question { display: flex; width: 100%; min-height: 74px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; text-align: left; font-size: 1.05rem; font-weight: 700; color: var(--forest-900); }
.faq-question svg { width: 21px; height: 21px; flex: 0 0 auto; color: var(--terra-600); }
.faq-question:focus-visible { border-radius: 8px; outline: 3px solid rgba(232,95,84,.24); outline-offset: 3px; }
.faq-answer { overflow: hidden; }
.faq-answer p { max-width: 700px; padding: 0 44px 22px 4px; line-height: 1.7; color: rgba(16,40,32,.65); }

.cta-panel { position: relative; background: linear-gradient(125deg, #256b5b, #173c36 58%, #1e5147); box-shadow: 0 26px 80px rgba(23,60,54,.18); }
.cta-panel::before, .cta-panel::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-panel::before { width: 430px; height: 430px; top: -280px; left: -80px; }
.cta-panel::after { width: 300px; height: 300px; right: -80px; bottom: -210px; }
.cta-outline-mark { position: absolute; z-index: 0; right: -35px; bottom: -145px; width: 390px; opacity: .095; filter: brightness(0) invert(1); transform: rotate(-7deg); pointer-events: none; }

.pip-help-card { position: relative; overflow: hidden; border: 1px solid var(--line); }
.pip-help-card::after { content: ''; position: absolute; right: -30px; bottom: -54px; width: 130px; height: 130px; background: url('assets/images/pip-outline.png') center / contain no-repeat; opacity: .03; transform: rotate(8deg); pointer-events: none; }

.footer-title { font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: white; }
.footer-list { margin-top: 17px; display: flex; flex-direction: column; gap: 11px; font-size: .92rem; }
.footer-list a:hover, .footer-list button:hover { color: white; }
.social-button { position: relative; display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: white; transition: background .2s ease; }
.social-button:hover { background: rgba(255,255,255,.1); }
.social-button svg, .social-button img { display: block; width: 18px; height: 18px; }
.social-button::after { content: attr(data-tooltip); position: absolute; z-index: 5; bottom: calc(100% + 10px); left: 50%; width: max-content; max-width: 150px; transform: translate(-50%, 5px); border: 1px solid rgba(23,60,54,.1); border-radius: 8px; background: white; padding: 6px 9px; color: var(--forest-900); font-size: .72rem; font-weight: 700; line-height: 1; opacity: 0; pointer-events: none; box-shadow: 0 10px 28px rgba(0,0,0,.16); transition: opacity .16s ease, transform .16s ease; }
.social-button:hover::after, .social-button:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }

body.login-modal-open { overflow: hidden; }
body.login-modal-open .toast { z-index: 140; }

.login-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.login-modal[hidden] { display: none; }
.login-modal.is-open { opacity: 1; pointer-events: auto; }
.login-modal-backdrop { position: fixed; inset: 0; background: rgba(10,38,33,.68); backdrop-filter: blur(9px); }
.login-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: auto 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 32px;
  background: white;
  box-shadow: 0 40px 110px rgba(5,28,24,.38);
  transform: translateY(18px) scale(.985);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.login-modal.is-open .login-dialog { transform: translateY(0) scale(1); }
.login-modal-close { position: absolute; z-index: 4; top: 16px; right: 16px; display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(23,60,54,.12); border-radius: 50%; background: rgba(255,255,255,.92); color: var(--forest-900); box-shadow: 0 8px 24px rgba(23,60,54,.1); }
.login-modal-close:hover { background: var(--forest-100); }
.login-modal-close svg { width: 20px; height: 20px; }
.login-dialog-grid, .login-page-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr); }

.login-form-panel { padding: 46px 50px 40px; }
.login-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-600); }
.login-title { margin-top: 8px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(2.35rem,4vw,3.25rem); font-weight: 700; line-height: 1.05; letter-spacing: -.035em; color: var(--forest-900); }
.login-intro { max-width: 520px; margin-top: 13px; font-size: .98rem; line-height: 1.65; color: rgba(24,48,43,.66); }
.login-form { margin-top: 27px; }
.login-field + .login-field { margin-top: 18px; }
.login-field > label, .login-label-row label { display: block; font-size: .82rem; font-weight: 700; color: var(--forest-900); }
.login-label-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.login-label-row a { border-radius: 5px; font-size: .76rem; font-weight: 700; color: var(--forest-700); }
.login-label-row a:hover { color: var(--terra-700); text-decoration: underline; text-underline-offset: 3px; }
.login-input-wrap { display: flex; min-height: 56px; align-items: center; gap: 11px; margin-top: 7px; border: 1px solid rgba(23,60,54,.16); border-radius: 14px; background: white; padding: 0 15px; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.login-input-wrap:focus-within { border-color: var(--forest-600); box-shadow: 0 0 0 4px rgba(47,120,102,.12); }
.login-input-wrap > svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--terra-600); }
.login-input-wrap input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; font-size: .95rem; font-weight: 600; color: var(--forest-900); }
.login-input-wrap input::placeholder { font-weight: 400; color: rgba(23,60,54,.38); }
.login-password-toggle { display: flex; width: 36px; height: 36px; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 9px; color: rgba(23,60,54,.58); }
.login-password-toggle:hover { background: var(--sand-100); color: var(--forest-800); }
.login-password-toggle svg { width: 19px; height: 19px; }
.login-field.has-error .login-input-wrap { border-color: var(--terra-600); background: var(--terra-50); box-shadow: 0 0 0 3px rgba(232,95,84,.1); }
.login-error { margin-top: 7px; font-size: .77rem; font-weight: 600; line-height: 1.4; color: var(--terra-700); }
.login-error[hidden] { display: none; }

.login-check { position: relative; display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; cursor: pointer; font-size: .82rem; font-weight: 600; color: rgba(23,60,54,.72); }
.login-check input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.login-check-mark { display: flex; width: 21px; height: 21px; flex: 0 0 auto; align-items: center; justify-content: center; border: 1.5px solid rgba(23,60,54,.28); border-radius: 7px; background: white; color: white; transition: background .16s ease, border-color .16s ease, box-shadow .16s ease; }
.login-check-mark svg { width: 14px; height: 14px; opacity: 0; stroke-width: 3; }
.login-check input:checked + .login-check-mark { border-color: var(--forest-700); background: var(--forest-700); }
.login-check input:checked + .login-check-mark svg { opacity: 1; }
.login-check input:focus-visible + .login-check-mark { box-shadow: 0 0 0 4px rgba(232,95,84,.2); }

.login-submit { width: 100%; min-height: 56px; margin-top: 23px; }
.login-submit[aria-busy="true"] { cursor: wait; }
.login-spinner { width: 19px; height: 19px; animation: loginSpin .8s linear infinite; }
.login-spinner[hidden] { display: none; }
.login-status { margin-top: 12px; border: 1px solid rgba(37,107,91,.13); border-radius: 12px; background: var(--forest-50); padding: 10px 12px; font-size: .8rem; font-weight: 600; line-height: 1.45; color: var(--forest-800); }
.login-status[hidden] { display: none; }
.login-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0 15px; color: rgba(23,60,54,.48); font-size: .74rem; font-weight: 700; }
.login-divider::before, .login-divider::after { content: ''; height: 1px; flex: 1; background: rgba(23,60,54,.11); }
.login-divider span { white-space: nowrap; }
.login-register { width: 100%; min-height: 52px; }
.login-mobile-brand { display: none; }
.register-dialog { width: min(1180px,100%); }
.register-dialog .login-form-panel { padding: 34px 40px 30px; }
.register-dialog .login-title { font-size: clamp(2.2rem,3.4vw,2.8rem); }
.register-dialog .login-intro { margin-top: 10px; }
.register-dialog .register-form { margin-top: 20px; }
.register-dialog .login-submit { margin-top: 18px; }
.register-dialog .login-divider { margin-top: 18px; }
.register-brand-panel { min-height: 690px; }
.onboarding-progress { display: grid; max-width: 520px; grid-template-columns: repeat(3,minmax(0,1fr)); margin-bottom: 22px; list-style: none; }
.onboarding-progress li { position: relative; display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 6px; color: rgba(23,60,54,.45); }
.onboarding-progress li:not(:last-child)::after { content: ''; position: absolute; z-index: 0; top: 15px; left: calc(50% + 18px); width: calc(100% - 36px); height: 2px; background: var(--sand-200); }
.onboarding-progress li.is-complete:not(:last-child)::after { background: var(--forest-500); }
.onboarding-progress li > span { position: relative; z-index: 1; display: flex; width: 32px; height: 32px; align-items: center; justify-content: center; border: 2px solid var(--sand-200); border-radius: 50%; background: white; font-size: .76rem; font-weight: 700; }
.onboarding-progress li > span svg { width: 16px; height: 16px; stroke-width: 3; }
.onboarding-progress li small { overflow: hidden; max-width: 100%; text-overflow: ellipsis; white-space: nowrap; font-size: .68rem; font-weight: 700; }
.onboarding-progress li.is-current { color: var(--forest-800); }
.onboarding-progress li.is-current > span { border-color: var(--forest-700); background: var(--forest-700); color: white; box-shadow: 0 0 0 4px rgba(47,120,102,.11); }
.onboarding-progress li.is-complete { color: var(--forest-700); }
.onboarding-progress li.is-complete > span { border-color: var(--forest-500); background: var(--forest-100); color: var(--forest-700); }
.register-fields-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.register-fields-grid .login-field { margin-top: 0; }
.register-field-help { margin-top: 6px; font-size: .72rem; line-height: 1.4; color: rgba(23,60,54,.52); }
.register-consent .login-check { align-items: flex-start; line-height: 1.5; }
.register-consent .login-check a { font-weight: 700; color: var(--forest-700); text-decoration: underline; text-underline-offset: 2px; }
.register-consent .login-check a:hover { color: var(--terra-700); }
.register-consent.has-error .login-check-mark { border-color: var(--terra-600); background: var(--terra-50); }
.register-check-error { margin-left: 31px; }
.verification-step[hidden] { display: none; }
.verification-title { max-width: 520px; }
.verification-title:focus { outline: 0; }
.verification-form { margin-top: 27px; }
.verification-input-wrap input { text-align: center; font-size: 1.18rem; font-weight: 700; letter-spacing: .28em; font-variant-numeric: tabular-nums; }
.verification-input-wrap input::placeholder { letter-spacing: .28em; }
.verification-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 18px; font-size: .78rem; font-weight: 700; color: var(--forest-700); }
.verification-links button, .verification-links a { border-radius: 6px; text-decoration: underline; text-underline-offset: 3px; }
.verification-links button:hover, .verification-links a:hover { color: var(--terra-700); }
.verification-page-card .login-brand-panel { min-height: 640px; }
.role-choice-step[hidden] { display: none; }
.role-choice-title { max-width: 560px; }
.role-choice-title:focus { outline: 0; }
.role-choice-form { margin-top: 24px; }
.role-options { display: grid; gap: 12px; }
.role-option { position: relative; display: grid; min-height: 82px; cursor: pointer; grid-template-columns: 48px minmax(0,1fr) 28px; align-items: center; gap: 14px; border: 1px solid rgba(23,60,54,.14); border-radius: 16px; background: white; padding: 13px 15px; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease; }
.role-option:hover { transform: translateY(-1px); border-color: rgba(37,107,91,.34); box-shadow: 0 10px 28px rgba(23,60,54,.08); }
.role-option input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.role-option:has(input:focus-visible) { outline: 3px solid rgba(232,95,84,.28); outline-offset: 3px; }
.role-option.is-selected, .role-option:has(input:checked) { border-color: var(--forest-700); background: var(--forest-50); box-shadow: 0 0 0 3px rgba(47,120,102,.1); }
.role-option-icon { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 14px; background: var(--sand-100); color: var(--forest-700); }
.role-option-icon svg { width: 23px; height: 23px; }
.role-option.is-selected .role-option-icon, .role-option:has(input:checked) .role-option-icon { background: var(--forest-700); color: white; }
.role-option-copy { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.role-option-copy strong { font-size: .94rem; color: var(--forest-900); }
.role-option-copy small { font-size: .77rem; line-height: 1.45; color: rgba(23,60,54,.6); }
.role-option-check { display: flex; width: 26px; height: 26px; align-items: center; justify-content: center; border: 1.5px solid rgba(23,60,54,.22); border-radius: 50%; color: transparent; }
.role-option-check svg { width: 15px; height: 15px; stroke-width: 3; }
.role-option.is-selected .role-option-check, .role-option:has(input:checked) .role-option-check { border-color: var(--forest-700); background: var(--forest-700); color: white; }
.role-choice-error { margin-top: 10px; }
.role-choice-actions { display: grid; grid-template-columns: minmax(130px,.7fr) minmax(180px,1.3fr); gap: 12px; margin-top: 22px; }
.role-choice-actions .btn-primary, .role-choice-actions .btn-secondary { width: 100%; min-height: 54px; }
.role-page-card .login-brand-panel { min-height: 680px; }

.login-brand-panel { position: relative; display: flex; min-height: 610px; overflow: hidden; align-items: center; background: linear-gradient(145deg, #256b5b, #173c36 66%, #1e5147); padding: 44px 38px; color: white; }
.login-brand-outline { position: absolute; right: -145px; bottom: -165px; width: 480px; opacity: .075; filter: brightness(0) invert(1); transform: rotate(-7deg); }
.login-brand-panel::before { content: ''; position: absolute; top: -120px; right: -120px; width: 330px; height: 330px; border-radius: 50%; background: rgba(221,240,234,.09); }
.login-brand-content { position: relative; z-index: 1; width: 100%; }
.login-pip-badge { display: flex; width: 150px; height: 150px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(255,255,255,.12); box-shadow: 0 20px 48px rgba(0,0,0,.18); }
.login-pip-badge img { width: 126%; height: 126%; object-fit: contain; }
.login-brand-kicker { margin-top: 27px; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #bdebdc; }
.login-brand-panel h2, .login-brand-panel h3 { margin-top: 10px; font-family: 'Fraunces', Georgia, serif; font-size: 2rem; font-weight: 700; line-height: 1.12; letter-spacing: -.025em; color: white; }
.login-brand-panel ul { display: flex; flex-direction: column; gap: 13px; margin-top: 25px; }
.login-brand-panel li { display: flex; align-items: center; gap: 11px; font-size: .86rem; font-weight: 600; color: rgba(255,255,255,.78); }
.login-brand-panel li svg { width: 21px; height: 21px; flex: 0 0 auto; color: #bdebdc; }

.login-page-body { min-height: 100vh; display: flex; flex-direction: column; }
.login-page-header { position: relative; z-index: 20; }
.login-page-main { position: relative; display: flex; flex: 1; align-items: center; overflow: hidden; padding: 52px 24px; background: var(--sand-50); }
.login-page-shell { position: relative; z-index: 2; width: min(1120px,100%); margin: 0 auto; }
.login-page-card { overflow: hidden; border: 1px solid rgba(23,60,54,.1); border-radius: 34px; background: white; box-shadow: 0 30px 100px rgba(23,60,54,.14); }
.login-page-card .login-brand-panel { min-height: 660px; }
.register-page-shell { width: min(1160px,100%); }
.register-page-card .login-brand-panel { min-height: 720px; }
.login-page-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.login-page-glow-one { top: -180px; right: -130px; width: 520px; height: 520px; background: rgba(164,222,203,.34); }
.login-page-glow-two { bottom: -230px; left: -160px; width: 440px; height: 440px; background: rgba(255,186,177,.22); }
.login-page-outline { position: absolute; left: -150px; bottom: -230px; width: 520px; opacity: .035; transform: rotate(8deg); pointer-events: none; }
.login-page-help { display: flex; align-items: flex-start; justify-content: center; gap: 7px; margin-top: 17px; text-align: center; font-size: .73rem; line-height: 1.45; color: rgba(23,60,54,.52); }
.login-page-help svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--forest-600); }
.login-page-footer { border-top: 1px solid rgba(23,60,54,.09); background: white; }
.login-page-footer a:hover { color: var(--forest-800); }

@keyframes loginSpin { to { transform: rotate(360deg); } }

@media (min-width: 80rem) {
  .section-title-wide {
    white-space: nowrap;
    font-size: clamp(3.2rem, 3.5vw, 4.4rem);
  }

}

.cta-title { text-wrap: balance; }

.cookie-panel {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  max-width: 760px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(31,75,59,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  padding: 15px;
  color: var(--forest-900);
  box-shadow: 0 20px 70px rgba(16,40,32,.23);
  backdrop-filter: blur(16px);
  animation: slideUp .35s ease-out;
}

.cookie-panel[hidden] { display: none; }

.toast {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  width: min(420px, calc(100vw - 36px));
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(31,75,59,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.98);
  padding: 14px;
  color: var(--forest-900);
  box-shadow: 0 18px 55px rgba(16,40,32,.18);
  animation: toastIn .25s ease-out;
}
.cookie-panel:not([hidden]) + .toast { bottom: max(140px, calc(18px + env(safe-area-inset-bottom))); }
.toast[hidden] { display: none; }
.toast-pip { display: flex; width: 52px; height: 52px; flex: 0 0 auto; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(168,91,54,.16); border-radius: 50%; background: var(--sand-100); box-shadow: 0 5px 16px rgba(23,60,54,.1); }
.toast-pip img { width: 100%; height: 100%; object-fit: contain; }
.toast p { display: flex; min-width: 0; flex: 1; flex-direction: column; font-size: .86rem; }
.toast p span { margin-top: 2px; color: rgba(16,40,32,.62); }
.toast > button { display: flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; color: rgba(16,40,32,.6); }
.toast > button:hover { background: var(--sand-100); }
.toast > button svg { width: 18px; height: 18px; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastIn { from { opacity: 0; transform: translate(8px, 12px); } to { opacity: 1; transform: translate(0, 0); } }
@keyframes petMenuIn { from { opacity: 0; transform: translate(-50%, -7px) scale(.985); } to { opacity: 1; transform: translate(-50%, 0) scale(1); } }

@media (min-width: 1024px) {
  .step-line { position: absolute; z-index: 0; top: 62px; right: 15%; left: 15%; display: block; border-top: 2px dashed rgba(37,107,91,.16); }
}

@media (max-width: 1023px) {
  .search-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr) minmax(168px, .82fr); }
}

@media (max-width: 899px) {
  .login-dialog { width: min(600px,100%); }
  .login-dialog-grid, .login-page-grid { grid-template-columns: 1fr; }
  .login-brand-panel { display: none; }
  .login-mobile-brand { display: flex; width: fit-content; align-items: center; gap: 9px; margin-bottom: 18px; border-radius: 999px; background: var(--forest-50); padding: 5px 10px 5px 5px; font-size: .72rem; font-weight: 700; color: var(--forest-700); }
  .login-mobile-brand img { width: 32px; height: 32px; object-fit: contain; }
  .login-page-shell { width: min(620px,100%); }
}

@media (max-width: 767px) {
  .section-pad { padding-top: 72px; padding-bottom: 72px; }
  .search-grid { grid-template-columns: 1fr; }
  .search-field, .search-grid .btn-primary { width: 100%; height: 64px; min-height: 64px; }
  .search-label { min-height: auto; }
  .hero-image-wrap { aspect-ratio: .95 / 1; border-width: 4px; border-radius: 24px 72px 24px 24px; }
  .hero-image-wrap img { object-position: 63% center; }
  .mascot-bubble { transform: scale(.9); transform-origin: bottom left; }
  .pip-contour-hero { left: -180px; bottom: -150px; width: 460px; opacity: .035; }
  .pip-contour-dark { right: -180px; bottom: -130px; width: 500px; opacity: .05; }
  .brand-strip::after { right: -22px; width: 100px; height: 100px; }
  .pip-surface::before { left: -230px; bottom: -160px; width: 440px; height: 440px; }
  .pip-surface-right::before { right: -210px; left: auto; top: 20px; }
  .profile-card { flex-direction: column; }
  .profile-photo { width: 100%; min-height: 220px; max-height: 260px; }
  .cookie-panel { align-items: flex-start; flex-wrap: wrap; }
  .cookie-panel > div:nth-child(2) { min-width: calc(100% - 60px); }
  .cookie-panel > div:last-child { width: 100%; }
  .cookie-panel > div:last-child button { flex: 1; }
  .cookie-panel:not([hidden]) + .toast { bottom: max(228px, calc(18px + env(safe-area-inset-bottom))); }
  .toast { right: 12px; width: calc(100vw - 24px); }
  .toast-pip { width: 48px; height: 48px; }
  .login-modal { align-items: start; padding: 10px; }
  .login-dialog { width: 100%; max-height: none; border-radius: 26px; }
  .login-modal-close { top: 13px; right: 13px; }
  .login-form-panel { padding: 30px 24px 26px; }
  .login-title { font-size: 2.35rem; }
  .login-intro { padding-right: 24px; font-size: .92rem; }
  .login-input-wrap { min-height: 54px; }
  .login-page-main { align-items: flex-start; padding: 28px 16px 38px; }
  .login-page-card { border-radius: 25px; }
  .login-page-footer > div { align-items: flex-start; }
}

@media (max-width: 620px) {
  .register-fields-grid { grid-template-columns: 1fr; }
  .role-choice-actions { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .mascot-bubble { left: -6px; }
  .choice-card { min-height: 325px; }
  .search-tab { padding-right: 8px; padding-left: 8px; font-size: .82rem; }
  .login-label-row { align-items: flex-start; }
  .login-label-row a { max-width: 130px; text-align: right; }
  .login-check { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.sitter-profile-page { position: relative; background: var(--sand-50); }
.profile-page-container { width: min(1680px, 100%); margin: 0 auto; padding-right: 48px; padding-left: 48px; }
.profile-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #f8fbfa 0%, #eef4f2 62%, #e4f1ed 100%); padding: 34px 0 72px; }
.profile-hero::before { content: ''; position: absolute; top: -220px; right: -140px; width: 620px; height: 620px; border-radius: 50%; background: rgba(255,255,255,.54); }
.profile-hero-outline { position: absolute; right: -185px; bottom: -360px; width: 680px; opacity: .025; transform: rotate(-9deg); pointer-events: none; }
.profile-breadcrumb { position: relative; z-index: 1; display: flex; min-height: 44px; align-items: center; gap: 7px; margin-bottom: 28px; font-size: .82rem; font-weight: 600; color: rgba(23,60,54,.58); }
.profile-breadcrumb a { border-radius: 6px; color: var(--forest-700); }
.profile-breadcrumb a:hover { color: var(--terra-600); }
.profile-breadcrumb svg { width: 14px; height: 14px; color: rgba(23,60,54,.32); }
.profile-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr); align-items: center; gap: clamp(42px, 6vw, 96px); }
.profile-cover-wrap { position: relative; padding: 0 22px 24px 0; }
.profile-cover-wrap::before { content: ''; position: absolute; inset: 24px 0 0 30px; border-radius: 32px 76px 32px 32px; background: linear-gradient(145deg, var(--forest-600), var(--forest-900)); opacity: .14; transform: rotate(2deg); }
.profile-cover { position: relative; z-index: 1; aspect-ratio: 1.22 / 1; width: 100%; border: 6px solid rgba(255,255,255,.92); border-radius: 32px 92px 32px 32px; object-fit: cover; object-position: 52% center; box-shadow: 0 28px 75px rgba(23,60,54,.18); }
.profile-photo-note { position: absolute; z-index: 3; right: 0; bottom: 0; display: flex; max-width: 365px; align-items: center; gap: 13px; border: 1px solid rgba(23,60,54,.08); border-radius: 18px; background: rgba(255,255,255,.96); padding: 14px 17px; box-shadow: 0 18px 50px rgba(23,60,54,.16); backdrop-filter: blur(12px); }
.profile-photo-note > svg { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 12px; background: var(--forest-100); padding: 9px; color: var(--forest-700); }
.profile-photo-note span { display: flex; flex-direction: column; }
.profile-photo-note strong { font-size: .88rem; color: var(--forest-900); }
.profile-photo-note small { margin-top: 2px; font-size: .72rem; line-height: 1.35; color: rgba(23,60,54,.6); }
.profile-hero-copy { max-width: 780px; }
.profile-badge-row { display: flex; flex-wrap: wrap; gap: 9px; }
.profile-verified, .profile-member { display: inline-flex; min-height: 34px; align-items: center; gap: 6px; border-radius: 999px; padding: 7px 11px; font-size: .73rem; font-weight: 700; }
.profile-verified { background: var(--forest-100); color: var(--forest-700); }
.profile-member { border: 1px solid var(--line); background: rgba(255,255,255,.68); color: rgba(23,60,54,.7); }
.profile-verified svg, .profile-member svg { width: 16px; height: 16px; }
.profile-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-top: 22px; }
.profile-kicker { margin-bottom: 5px; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terra-600); }
.profile-title-row h1 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(3.4rem, 5.2vw, 5.8rem); font-weight: 700; line-height: .98; letter-spacing: -.045em; color: var(--forest-900); }
.profile-favorite { display: flex; width: 54px; height: 54px; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--forest-700); box-shadow: 0 10px 30px rgba(23,60,54,.08); transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease; }
.profile-favorite:hover { transform: translateY(-2px); border-color: rgba(232,95,84,.36); color: var(--terra-600); }
.profile-favorite[aria-pressed="true"] { border-color: #ffd1ca; background: #fff2ef; color: var(--terra-600); }
.profile-favorite[aria-pressed="true"] svg { fill: currentColor; }
.profile-favorite svg { width: 23px; height: 23px; }
.profile-location-large { display: flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 600; color: rgba(23,60,54,.62); }
.profile-location-large svg { width: 18px; height: 18px; color: var(--terra-600); }
.profile-introduction { max-width: 750px; margin-top: 22px; font-size: 1.16rem; line-height: 1.75; color: rgba(23,60,54,.74); }
.profile-rating-line { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 20px; }
.profile-stars { display: inline-flex; gap: 2px; color: #e7a83e; }
.profile-stars svg { width: 17px; height: 17px; fill: currentColor; }
.profile-rating-line strong { color: var(--forest-900); }
.profile-rating-line a { border-radius: 5px; font-size: .9rem; font-weight: 700; color: var(--forest-700); text-decoration: underline; text-decoration-color: rgba(37,107,91,.28); text-underline-offset: 4px; }
.profile-tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.profile-tag-list > span { display: inline-flex; min-height: 39px; align-items: center; gap: 7px; border: 1px solid rgba(23,60,54,.08); border-radius: 999px; background: rgba(255,255,255,.76); padding: 8px 12px; font-size: .78rem; font-weight: 700; color: var(--forest-700); }
.profile-tag-list > span > svg { width: 17px; height: 17px; color: var(--terra-600); }
.profile-tag-list > .profile-language-tag { gap: 9px; padding-left: 8px; }
.profile-language-flags { display: inline-flex; align-items: center; padding-left: 3px; }
.profile-flag { display: inline-flex; width: 25px; height: 25px; align-items: center; justify-content: center; overflow: hidden; margin-left: -3px; border: 2px solid white; border-radius: 50%; background: white; font-size: 1.02rem; line-height: 1; box-shadow: 0 2px 8px rgba(23,60,54,.11); }
.profile-language-names { white-space: nowrap; }
.profile-quick-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-top: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.profile-quick-facts div { min-width: 0; background: rgba(255,255,255,.82); padding: 15px 17px; }
.profile-quick-facts dt { font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: rgba(23,60,54,.48); }
.profile-quick-facts dd { margin-top: 4px; font-size: .91rem; font-weight: 700; color: var(--forest-900); }

.profile-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: start; gap: 34px; padding-top: 54px; padding-bottom: 90px; }
.profile-main-column { display: flex; min-width: 0; flex-direction: column; gap: 22px; }
.profile-content-card { border: 1px solid var(--line); border-radius: 26px; background: white; padding: clamp(25px, 3vw, 40px); box-shadow: 0 14px 42px rgba(23,60,54,.055); }
.profile-section-heading { display: flex; align-items: center; gap: 14px; }
.profile-section-icon { display: flex; width: 52px; height: 52px; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 16px; background: var(--forest-100); color: var(--forest-700); }
.profile-section-icon svg { width: 25px; height: 25px; }
.profile-section-heading p { margin-bottom: 2px; font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--terra-600); }
.profile-section-heading h2 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.75rem, 2.5vw, 2.25rem); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; color: var(--forest-900); }
.profile-prose { max-width: 900px; margin-top: 25px; font-size: 1rem; line-height: 1.82; color: rgba(23,60,54,.7); }
.profile-prose p + p { margin-top: 15px; }
.profile-pip-tip { display: flex; align-items: center; gap: 17px; margin-top: 25px; border: 1px solid rgba(37,107,91,.1); border-radius: 18px; background: var(--sand-100); padding: 15px 18px; }
.profile-pip-tip img { width: 70px; height: 70px; flex: 0 0 auto; object-fit: contain; }
.profile-pip-tip p { font-size: .88rem; line-height: 1.55; color: rgba(23,60,54,.68); }
.profile-pip-tip strong { display: block; margin-bottom: 2px; color: var(--forest-900); }
.profile-experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 27px; }
.profile-experience-grid article { border: 1px solid var(--line); border-radius: 18px; background: var(--sand-50); padding: 20px; }
.profile-experience-grid article > svg { width: 26px; height: 26px; color: var(--terra-600); }
.profile-experience-grid h3 { margin-top: 15px; font-size: .96rem; font-weight: 700; color: var(--forest-900); }
.profile-experience-grid p { margin-top: 6px; font-size: .83rem; line-height: 1.55; color: rgba(23,60,54,.62); }
.profile-preference-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 22px; }
.profile-preference-row div { border-left: 3px solid var(--forest-500); padding: 3px 0 3px 15px; }
.profile-preference-row div:last-child { border-left-color: var(--sand-300); }
.profile-preference-row span { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(23,60,54,.48); }
.profile-preference-row strong { display: block; margin-top: 4px; font-size: .9rem; color: var(--forest-900); }
.profile-service-list { display: flex; flex-direction: column; margin-top: 25px; }
.profile-service-list article { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); padding: 18px 0; }
.profile-service-list article:first-child { padding-top: 3px; }
.profile-service-icon { display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 14px; background: var(--sand-100); color: var(--forest-700); }
.profile-service-icon svg { width: 21px; height: 21px; }
.profile-service-list h3 { font-size: .98rem; font-weight: 700; color: var(--forest-900); }
.profile-service-list p { margin-top: 4px; font-size: .84rem; line-height: 1.5; color: rgba(23,60,54,.61); }
.profile-service-list article > strong { max-width: 120px; text-align: right; font-size: .94rem; color: var(--forest-700); }
.profile-small-print { display: flex; align-items: flex-start; gap: 8px; margin-top: 17px; font-size: .76rem; line-height: 1.55; color: rgba(23,60,54,.53); }
.profile-small-print svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 1px; }
.profile-availability { display: grid; grid-template-columns: repeat(7, minmax(80px, 1fr)); gap: 8px; margin-top: 27px; }
.profile-availability div { display: flex; min-height: 96px; flex-direction: column; justify-content: space-between; border: 1px solid rgba(37,107,91,.11); border-radius: 15px; background: #edf7f3; padding: 12px 10px; }
.profile-availability span { display: flex; width: 31px; height: 31px; align-items: center; justify-content: center; border-radius: 50%; background: white; font-size: .72rem; font-weight: 700; color: var(--forest-700); }
.profile-availability strong { font-size: .68rem; line-height: 1.35; color: var(--forest-800); }
.profile-availability .is-unavailable { background: var(--sand-50); }
.profile-availability .is-unavailable span { color: rgba(23,60,54,.42); }
.profile-availability .is-unavailable strong { color: rgba(23,60,54,.42); }
.profile-availability-note { margin-top: 15px; font-size: .8rem; line-height: 1.55; color: rgba(23,60,54,.56); }
.profile-reviews-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.profile-review-score { display: flex; flex-direction: column; align-items: flex-end; }
.profile-review-score strong { font-family: 'Fraunces', Georgia, serif; font-size: 2rem; line-height: 1; color: var(--forest-900); }
.profile-review-score span { margin-top: 4px; font-size: .68rem; font-weight: 700; color: rgba(23,60,54,.5); }
.profile-review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 27px; }
.profile-review-list article { border: 1px solid var(--line); border-radius: 19px; background: var(--sand-50); padding: 20px; }
.profile-review-top { display: grid; grid-template-columns: 43px minmax(0, 1fr) auto; align-items: center; gap: 10px; }
.profile-review-avatar { display: flex; width: 43px; height: 43px; align-items: center; justify-content: center; border-radius: 50%; background: var(--forest-100); font-family: 'Fraunces', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--forest-700); }
.profile-review-top h3 { font-size: .84rem; font-weight: 700; color: var(--forest-900); }
.profile-review-top p { margin-top: 2px; font-size: .68rem; color: rgba(23,60,54,.51); }
.profile-review-top .profile-stars svg { width: 13px; height: 13px; }
.profile-review-list blockquote { margin-top: 17px; font-size: .88rem; line-height: 1.68; color: rgba(23,60,54,.68); }

.profile-contact-column { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 18px; }
.profile-contact-card { border: 1px solid var(--line); border-radius: 26px; background: white; padding: 27px; box-shadow: 0 22px 65px rgba(23,60,54,.11); }
.profile-contact-top { display: flex; align-items: center; gap: 13px; }
.profile-contact-avatar { display: block; width: 60px; height: 60px; flex: 0 0 auto; overflow: hidden; border: 3px solid white; border-radius: 50%; box-shadow: 0 0 0 2px var(--forest-100); }
.profile-contact-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 42% center; transform: scale(1.55); }
.profile-contact-top p { font-size: .67rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--terra-600); }
.profile-contact-top h2 { margin-top: 3px; font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; font-weight: 700; line-height: 1.15; color: var(--forest-900); }
.profile-contact-intro { margin-top: 18px; font-size: .9rem; line-height: 1.6; color: rgba(23,60,54,.65); }
.profile-contact-status { display: flex; align-items: center; gap: 10px; margin-top: 17px; border-radius: 13px; background: var(--sand-100); padding: 11px 13px; }
.profile-contact-status > span { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: #3d9d72; box-shadow: 0 0 0 4px rgba(61,157,114,.13); }
.profile-contact-status p { display: flex; flex-direction: column; font-size: .72rem; color: rgba(23,60,54,.56); }
.profile-contact-status strong { font-size: .78rem; color: var(--forest-900); }
.profile-contact-button { width: 100%; min-height: 54px; margin-top: 14px; }
.profile-contact-button + .profile-contact-button { margin-top: 9px; }
.profile-contact-help { display: flex; align-items: flex-start; gap: 8px; margin-top: 16px; font-size: .7rem; line-height: 1.5; color: rgba(23,60,54,.52); }
.profile-contact-help svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--forest-600); }
.profile-safety-card { position: relative; display: grid; grid-template-columns: 85px minmax(0, 1fr); align-items: center; gap: 8px; overflow: hidden; border-radius: 22px; background: linear-gradient(135deg, var(--forest-800), var(--forest-900)); padding: 14px 18px 14px 9px; color: white; box-shadow: 0 16px 42px rgba(23,60,54,.16); }
.profile-safety-card::after { content: ''; position: absolute; right: -50px; bottom: -65px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,.05); }
.profile-safety-card img { position: relative; z-index: 1; width: 85px; height: 85px; object-fit: contain; }
.profile-safety-card div { position: relative; z-index: 1; }
.profile-safety-card p { font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #bdebdc; }
.profile-safety-card h2 { margin-top: 3px; font-family: 'Fraunces', Georgia, serif; font-size: 1.12rem; font-weight: 700; }
.profile-safety-card span { display: block; margin-top: 5px; font-size: .7rem; line-height: 1.45; color: rgba(255,255,255,.66); }
.profile-bottom-cta { position: relative; display: grid; width: min(1584px, calc(100% - 96px)); grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; overflow: hidden; margin: 0 auto 72px; border-radius: 30px; background: linear-gradient(125deg, var(--forest-700), var(--forest-900)); padding: 47px 54px; color: white; box-shadow: 0 24px 70px rgba(23,60,54,.17); }
.profile-bottom-cta > img { position: absolute; right: 20%; bottom: -145px; width: 330px; opacity: .07; filter: brightness(0) invert(1); transform: rotate(-8deg); pointer-events: none; }
.profile-bottom-cta > div, .profile-bottom-cta > a { position: relative; z-index: 1; }
.profile-bottom-cta p { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #bdebdc; }
.profile-bottom-cta h2 { margin-top: 5px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(2rem, 3.3vw, 3.25rem); font-weight: 700; line-height: 1.08; letter-spacing: -.03em; }
.profile-bottom-cta span { display: block; max-width: 720px; margin-top: 10px; line-height: 1.65; color: rgba(255,255,255,.7); }

@media (max-width: 1180px) {
  .profile-page-container { padding-right: 32px; padding-left: 32px; }
  .profile-hero-grid { grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: 42px; }
  .profile-content-grid { grid-template-columns: minmax(0, 1fr) 340px; }
  .profile-availability { grid-template-columns: repeat(4, minmax(80px, 1fr)); }
  .profile-review-list { grid-template-columns: 1fr; }
  .profile-bottom-cta { width: calc(100% - 64px); }
}

@media (max-width: 920px) {
  .profile-hero { padding-bottom: 56px; }
  .profile-hero-grid { grid-template-columns: 1fr; }
  .profile-cover-wrap { width: min(760px, 100%); }
  .profile-hero-copy { max-width: none; }
  .profile-content-grid { grid-template-columns: 1fr; }
  .profile-contact-column { position: static; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); grid-row: 1; }
  .profile-main-column { grid-row: 2; }
  .profile-contact-card, .profile-safety-card { height: 100%; }
  .profile-experience-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .profile-page-container { padding-right: 20px; padding-left: 20px; }
  .profile-hero { padding-top: 18px; padding-bottom: 42px; }
  .profile-breadcrumb { margin-bottom: 17px; }
  .profile-cover-wrap { padding: 0 10px 18px 0; }
  .profile-cover-wrap::before { inset: 18px 0 0 17px; border-radius: 25px 58px 25px 25px; }
  .profile-cover { border-width: 4px; border-radius: 24px 66px 24px 24px; }
  .profile-photo-note { right: 0; max-width: calc(100% - 24px); padding: 11px 13px; }
  .profile-photo-note > svg { width: 34px; height: 34px; }
  .profile-photo-note small { display: none; }
  .profile-title-row { margin-top: 18px; }
  .profile-title-row h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .profile-favorite { width: 50px; height: 50px; }
  .profile-introduction { font-size: 1.05rem; }
  .profile-quick-facts { grid-template-columns: 1fr; }
  .profile-content-grid { gap: 22px; padding-top: 25px; padding-bottom: 58px; }
  .profile-contact-column { display: flex; }
  .profile-content-card { border-radius: 22px; padding: 24px 20px; }
  .profile-experience-grid { grid-template-columns: 1fr; }
  .profile-preference-row { grid-template-columns: 1fr; }
  .profile-availability { grid-template-columns: repeat(2, 1fr); }
  .profile-reviews-heading { align-items: flex-start; }
  .profile-review-score { align-items: flex-end; }
  .profile-review-top { grid-template-columns: 43px minmax(0, 1fr); }
  .profile-review-top .profile-stars { grid-column: 2; }
  .profile-bottom-cta { width: calc(100% - 40px); grid-template-columns: 1fr; gap: 25px; margin-bottom: 48px; border-radius: 24px; padding: 35px 25px; }
  .profile-bottom-cta .btn-light { width: 100%; }
}

@media (max-width: 480px) {
  .profile-breadcrumb a:nth-of-type(2), .profile-breadcrumb a:nth-of-type(2) + svg { display: none; }
  .profile-title-row { gap: 12px; }
  .profile-service-list article { grid-template-columns: 44px minmax(0, 1fr); }
  .profile-service-list article > strong { grid-column: 2; max-width: none; text-align: left; }
  .profile-pip-tip { align-items: flex-start; }
  .profile-pip-tip img { width: 56px; height: 56px; }
  .profile-reviews-heading { flex-direction: column; }
  .profile-review-score { align-items: flex-start; padding-left: 66px; }
  .profile-tag-list > .profile-language-tag { width: 100%; border-radius: 17px; }
  .profile-language-names { white-space: normal; }
}

/* Owner profile */
.owner-profile-hero { background: linear-gradient(135deg, #fbfaf6 0%, #f1f6f2 58%, #e4f1ed 100%); }
.owner-profile-hero::after { content: ''; position: absolute; bottom: -230px; left: -170px; width: 520px; height: 520px; border-radius: 50%; background: rgba(255,255,255,.4); pointer-events: none; }
.owner-profile-page .profile-page-container { position: relative; z-index: 1; }
.owner-profile-cover { object-position: center 53%; }
.owner-cover-wrap::before { background: linear-gradient(145deg, #b86e4f, var(--forest-800)); opacity: .15; }
.owner-photo-note > svg { background: #fff1ec; color: var(--terra-600); }
.owner-request-badge { display: inline-flex; min-height: 34px; align-items: center; gap: 6px; border-radius: 999px; background: #fff0eb; padding: 7px 11px; font-size: .73rem; font-weight: 700; color: #a8453d; }
.owner-request-badge svg { width: 16px; height: 16px; }

.owner-pet-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; margin-top: 27px; }
.owner-pet-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--sand-50); }
.owner-pet-photo { position: relative; height: 205px; overflow: hidden; background: var(--sand-100); }
.owner-pet-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.7); }
.owner-pet-photo-dog img { object-position: 68% 62%; transform-origin: 68% 62%; }
.owner-pet-photo-cat img { object-position: 59% 43%; transform-origin: 59% 43%; }
.owner-pet-card-copy { padding: 21px; }
.owner-pet-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.owner-pet-heading p { font-size: .67rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--terra-600); }
.owner-pet-heading h3 { margin-top: 3px; font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; font-weight: 700; color: var(--forest-900); }
.owner-pet-sex { display: inline-flex; width: 34px; height: 34px; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid rgba(23,60,54,.1); border-radius: 50%; background: var(--sand-100); font-size: 1rem; font-weight: 700; line-height: 1; color: var(--forest-700); }
.owner-pet-sex.is-male { border-color: rgba(70,126,157,.18); background: #e6f1f7; color: #356f8d; }
.owner-pet-sex.is-female { border-color: rgba(174,81,108,.17); background: #f8e7ec; color: #a54e68; }
.owner-pet-heading + p { margin-top: 13px; font-size: .86rem; line-height: 1.63; color: rgba(23,60,54,.66); }
.owner-pet-facts { display: flex; flex-direction: column; gap: 8px; margin-top: 17px; border-top: 1px solid var(--line); padding-top: 15px; }
.owner-pet-facts li { display: flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 600; color: rgba(23,60,54,.67); }
.owner-pet-facts svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--forest-600); }

.owner-request-summary { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 18px; margin-top: 27px; border: 1px solid rgba(232,95,84,.16); border-radius: 18px; background: #fff8f5; padding: 18px 21px; }
.owner-request-summary div { display: flex; flex-direction: column; }
.owner-request-summary div:last-child { text-align: right; }
.owner-request-summary span { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(23,60,54,.47); }
.owner-request-summary strong { margin-top: 3px; font-size: .96rem; color: var(--forest-900); }
.owner-request-summary > svg { width: 21px; color: var(--terra-600); }
.owner-care-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.owner-care-grid article { border: 1px solid var(--line); border-radius: 17px; background: white; padding: 18px; }
.owner-care-grid article > span { display: flex; width: 41px; height: 41px; align-items: center; justify-content: center; border-radius: 13px; background: var(--sand-100); color: var(--forest-700); }
.owner-care-grid article > span svg { width: 20px; height: 20px; }
.owner-care-grid h3 { margin-top: 13px; font-size: .91rem; font-weight: 700; color: var(--forest-900); }
.owner-care-grid p { margin-top: 5px; font-size: .78rem; line-height: 1.55; color: rgba(23,60,54,.62); }

.owner-home-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 27px; }
.owner-home-grid article { border: 1px solid var(--line); border-radius: 18px; background: var(--sand-50); padding: 20px; }
.owner-home-grid article > svg { width: 25px; height: 25px; color: var(--terra-600); }
.owner-home-grid h3 { margin-top: 14px; font-size: .94rem; font-weight: 700; color: var(--forest-900); }
.owner-home-grid p { margin-top: 5px; font-size: .8rem; line-height: 1.55; color: rgba(23,60,54,.62); }
.owner-arrangements { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 27px; }
.owner-arrangements > div { display: grid; grid-template-columns: 46px minmax(0, 1fr); align-items: start; gap: 12px; border: 1px solid var(--line); border-radius: 17px; padding: 17px; }
.owner-arrangements > div > span { display: flex; width: 43px; height: 43px; align-items: center; justify-content: center; border-radius: 13px; background: var(--forest-100); color: var(--forest-700); }
.owner-arrangements svg { width: 20px; height: 20px; }
.owner-arrangements p { font-size: .78rem; line-height: 1.55; color: rgba(23,60,54,.62); }
.owner-arrangements strong { display: block; margin-bottom: 3px; font-size: .86rem; color: var(--forest-900); }
.profile-review-top h3 a { border-radius: 5px; color: inherit; text-decoration: underline; text-decoration-color: rgba(37,107,91,.22); text-underline-offset: 3px; }
.profile-review-top h3 a:hover { color: var(--forest-600); }

.owner-contact-avatar img { object-position: 54% 42%; transform: scale(2.15); }
.owner-contact-date { display: flex; align-items: center; gap: 11px; margin-top: 17px; border: 1px solid rgba(232,95,84,.14); border-radius: 13px; background: #fff8f5; padding: 12px 13px; }
.owner-contact-date > svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--terra-600); }
.owner-contact-date p { display: flex; flex-direction: column; font-size: .72rem; color: rgba(23,60,54,.56); }
.owner-contact-date strong { font-size: .82rem; color: var(--forest-900); }
.owner-bottom-cta { background: linear-gradient(125deg, #386f61, var(--forest-900)); }

@media (max-width: 1180px) {
  .owner-pet-grid { grid-template-columns: 1fr; }
  .owner-pet-card { display: grid; grid-template-columns: 210px minmax(0, 1fr); }
  .owner-pet-photo { height: 100%; min-height: 275px; }
  .owner-care-grid { grid-template-columns: 1fr; }
  .owner-care-grid article { display: grid; grid-template-columns: 41px minmax(0, 1fr); column-gap: 13px; }
  .owner-care-grid h3 { margin-top: 0; }
  .owner-care-grid p { grid-column: 2; }
}

@media (max-width: 700px) {
  .owner-profile-hero::after { width: 350px; height: 350px; }
  .owner-pet-card { display: block; }
  .owner-pet-photo { height: 210px; min-height: 0; }
  .owner-request-summary { grid-template-columns: 1fr; gap: 8px; }
  .owner-request-summary > svg { transform: rotate(90deg); }
  .owner-request-summary div:last-child { text-align: left; }
  .owner-home-grid, .owner-arrangements { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .owner-pet-photo { height: 185px; }
  .owner-pet-card-copy { padding: 18px; }
  .owner-care-grid article { display: block; }
  .owner-care-grid h3 { margin-top: 12px; }
  .owner-care-grid p { grid-column: auto; }
}

.sitters-page { background: var(--sand-50); }
.sitters-container { width: min(1680px, 100%); margin: 0 auto; padding-right: 48px; padding-left: 48px; }
.sitters-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #f8fbfa 0%, #eef6f3 72%, #e5f1ed 100%); padding: 25px 0 46px; }
.sitters-hero::before { content: ''; position: absolute; top: -260px; right: -120px; width: 620px; height: 620px; border-radius: 50%; background: rgba(255,255,255,.52); }
.sitters-hero-pip { position: absolute; right: 5%; bottom: -270px; width: 470px; opacity: .025; transform: rotate(-9deg); pointer-events: none; }
.sitters-breadcrumb { position: relative; z-index: 1; display: flex; min-height: 44px; align-items: center; gap: 7px; margin-bottom: 17px; font-size: .8rem; font-weight: 600; color: rgba(23,60,54,.55); }
.sitters-breadcrumb a { color: var(--forest-700); }
.sitters-breadcrumb svg { width: 14px; height: 14px; color: rgba(23,60,54,.3); }
.sitters-hero-copy { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: end; gap: 45px; }
.sitters-eyebrow, .sitters-results-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terra-600); }
.sitters-hero-copy h1 { max-width: 970px; margin-top: 7px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(3rem, 5.6vw, 5.7rem); font-weight: 700; line-height: 1.01; letter-spacing: -.045em; color: var(--forest-900); }
.sitters-hero-copy > div:first-child > p:last-child { max-width: 780px; margin-top: 17px; font-size: 1.05rem; line-height: 1.7; color: rgba(23,60,54,.67); }
.sitters-pip-note { display: flex; align-items: center; gap: 9px; border: 1px solid rgba(23,60,54,.08); border-radius: 19px; background: rgba(255,255,255,.76); padding: 12px 15px 12px 6px; box-shadow: 0 12px 36px rgba(23,60,54,.07); backdrop-filter: blur(10px); }
.sitters-pip-note img { width: 80px; height: 80px; flex: 0 0 auto; object-fit: contain; }
.sitters-pip-note p { font-size: .76rem; line-height: 1.5; color: rgba(23,60,54,.64); }
.sitters-pip-note strong { display: block; margin-bottom: 2px; font-size: .85rem; color: var(--forest-900); }
.sitters-search { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(220px, 1.15fr) minmax(190px, .85fr) minmax(190px, .85fr) auto; gap: 8px; margin-top: 32px; border: 1px solid var(--line); border-radius: 22px; background: white; padding: 9px; box-shadow: 0 20px 60px rgba(23,60,54,.12); }
.sitters-search-field { position: relative; display: flex; min-width: 0; min-height: 68px; flex-direction: column; justify-content: center; border-radius: 15px; background: var(--sand-50); padding: 10px 15px; }
.sitters-search-field > span:first-child { font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: rgba(23,60,54,.52); }
.sitters-search-field > span:last-child { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.sitters-search-field svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--terra-600); }
.sitters-search-field input, .sitters-search-field select { width: 100%; min-width: 0; border: 0; background: transparent; font-size: .92rem; font-weight: 700; color: var(--forest-900); outline: 0; }
.sitters-search-field select { appearance: none; padding-right: 23px; }
.sitters-search-field .sitters-select-icon { position: absolute; right: 15px; width: 16px; color: var(--forest-600); pointer-events: none; }
.sitters-search-submit { min-height: 68px; padding-right: 25px; padding-left: 25px; }

.sitters-results-section { padding: 52px 0 88px; }
.sitters-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.sitters-toolbar h2 { margin-top: 4px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; color: var(--forest-900); }
.sitters-toolbar > div:first-child > p:last-child { margin-top: 6px; font-size: .82rem; color: rgba(23,60,54,.55); }
.sitters-toolbar-actions { display: flex; align-items: center; gap: 9px; }
.sitters-view-toggle { display: flex; border: 1px solid var(--line); border-radius: 13px; background: white; padding: 4px; }
.sitters-view-toggle button { display: flex; min-height: 40px; align-items: center; gap: 6px; border-radius: 9px; padding: 0 12px; font-size: .78rem; font-weight: 700; color: rgba(23,60,54,.58); }
.sitters-view-toggle button.is-active { background: var(--forest-700); color: white; }
.sitters-view-toggle svg { width: 17px; height: 17px; }
.sitters-sort { position: relative; display: flex; min-width: 210px; min-height: 50px; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-radius: 13px; background: white; padding: 7px 36px 7px 13px; }
.sitters-sort > span { font-size: .61rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(23,60,54,.45); }
.sitters-sort select { appearance: none; border: 0; background: transparent; font-size: .8rem; font-weight: 700; color: var(--forest-900); outline: 0; }
.sitters-sort > svg { position: absolute; right: 12px; width: 17px; color: var(--forest-600); pointer-events: none; }
.sitters-mobile-filter { display: none; min-height: 50px; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 13px; background: white; padding: 0 14px; font-size: .8rem; font-weight: 700; color: var(--forest-800); }
.sitters-mobile-filter svg { width: 18px; height: 18px; }
.sitters-mobile-filter span { display: inline-flex; min-width: 20px; height: 20px; align-items: center; justify-content: center; border-radius: 50%; background: var(--terra-600); font-size: .65rem; color: white; }
.sitters-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); align-items: start; gap: 24px; }
.sitters-filters { position: sticky; top: 102px; overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: white; box-shadow: 0 12px 38px rgba(23,60,54,.055); }
.sitters-filter-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; padding: 22px 22px 18px; }
.sitters-filter-title p { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--terra-600); }
.sitters-filter-title h2 { margin-top: 2px; font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; font-weight: 700; color: var(--forest-900); }
.sitters-filter-title button { border-radius: 6px; font-size: .72rem; font-weight: 700; color: var(--forest-600); text-decoration: underline; text-decoration-color: rgba(37,107,91,.25); text-underline-offset: 3px; }
.sitters-filter-group { border-top: 1px solid var(--line); padding: 18px 22px; }
.sitters-filter-group legend { width: 100%; margin-bottom: 10px; font-size: .76rem; font-weight: 700; color: var(--forest-900); }
.sitters-filter-group label { display: flex; min-height: 42px; cursor: pointer; align-items: center; gap: 9px; font-size: .78rem; color: rgba(23,60,54,.72); }
.sitters-filter-group input { width: 18px; height: 18px; flex: 0 0 auto; }
.sitters-filter-group label > span { display: flex; min-width: 0; flex: 1; align-items: center; gap: 7px; }
.sitters-filter-group label > span svg { width: 17px; height: 17px; color: var(--terra-600); }
.sitters-filter-group label > span b { font-size: 1rem; font-weight: 400; }
.sitters-filter-group label > small { color: rgba(23,60,54,.42); }
.sitters-filter-help { display: flex; align-items: flex-start; gap: 9px; margin: 0 14px 14px; border-radius: 15px; background: var(--sand-100); padding: 13px; }
.sitters-filter-help svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--forest-600); }
.sitters-filter-help p { font-size: .68rem; line-height: 1.45; color: rgba(23,60,54,.59); }
.sitters-filter-help strong { display: block; color: var(--forest-900); }
.sitters-results { display: flex; min-width: 0; flex-direction: column; gap: 17px; }
.sitter-result-card { display: grid; grid-template-columns: minmax(255px, .72fr) minmax(0, 1.28fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 14px 44px rgba(23,60,54,.065); transition: transform .18s ease, box-shadow .18s ease; }
.sitter-result-card:hover { transform: translateY(-2px); box-shadow: 0 20px 58px rgba(23,60,54,.1); }
.sitter-result-photo { position: relative; display: block; min-height: 310px; overflow: hidden; text-align: left; }
.sitter-result-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.sitter-result-card:hover .sitter-result-photo img { transform: scale(1.02); }
.sitter-result-photo > span { position: absolute; right: 13px; bottom: 13px; left: 13px; border: 1px solid rgba(255,255,255,.68); border-radius: 12px; background: rgba(255,255,255,.92); padding: 9px 11px; text-align: center; font-size: .68rem; font-weight: 700; color: var(--forest-800); box-shadow: 0 8px 25px rgba(23,60,54,.14); backdrop-filter: blur(10px); }
.sitter-result-content { display: flex; min-width: 0; flex-direction: column; padding: 23px 25px; }
.sitter-result-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.sitter-result-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.sitter-result-badges span { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; background: var(--sand-100); padding: 5px 8px; font-size: .61rem; font-weight: 700; color: var(--forest-700); }
.sitter-result-badges span.is-available { background: #e9f7ef; color: #23714d; }
.sitter-result-badges svg { width: 13px; height: 13px; }
.sitter-result-top h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.65rem; font-weight: 700; line-height: 1.1; color: var(--forest-900); }
.sitter-result-top h3 :is(a,button) { border-radius: 6px; text-align: left; }
.sitter-result-top > div > p { display: flex; align-items: center; gap: 5px; margin-top: 5px; font-size: .75rem; color: rgba(23,60,54,.55); }
.sitter-result-top > div > p svg { width: 14px; height: 14px; color: var(--terra-600); }
.sitter-card-favorite { display: flex; width: 44px; height: 44px; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest-700); }
.sitter-card-favorite[aria-pressed="true"] { border-color: #ffd1ca; background: #fff2ef; color: var(--terra-600); }
.sitter-card-favorite[aria-pressed="true"] svg { fill: currentColor; }
.sitter-card-favorite svg { width: 20px; height: 20px; }
.sitter-result-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 13px; font-size: .74rem; color: rgba(23,60,54,.52); }
.sitter-result-rating .profile-stars svg { width: 13px; height: 13px; }
.sitter-result-rating strong { color: var(--forest-900); }
.sitter-result-intro { margin-top: 13px; font-size: .87rem; line-height: 1.6; color: rgba(23,60,54,.67); }
.sitter-result-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.sitter-result-tags span { border-radius: 999px; background: var(--sand-100); padding: 6px 9px; font-size: .65rem; font-weight: 700; color: var(--forest-700); }
.sitter-result-bottom { display: grid; grid-template-columns: minmax(100px, 1fr) auto auto; align-items: end; gap: 18px; margin-top: auto; padding-top: 19px; }
.sitter-result-languages { display: flex; align-items: center; padding-left: 3px; }
.sitter-result-languages > span { display: flex; width: 27px; height: 27px; align-items: center; justify-content: center; margin-left: -4px; border: 2px solid white; border-radius: 50%; background: white; font-size: 1.05rem; box-shadow: 0 2px 8px rgba(23,60,54,.11); }
.sitter-result-languages small { margin-left: 6px; font-size: .65rem; font-weight: 700; color: rgba(23,60,54,.52); }
.sitter-result-bottom > p { display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 4px; white-space: nowrap; }
.sitter-result-bottom > p small { grid-column: 1 / -1; font-size: .58rem; font-weight: 700; text-transform: uppercase; color: rgba(23,60,54,.42); }
.sitter-result-bottom > p strong { font-size: 1.12rem; color: var(--forest-900); }
.sitter-result-bottom > p span { font-size: .65rem; color: rgba(23,60,54,.48); }
.sitter-result-bottom .btn-primary { min-height: 46px; padding-right: 16px; padding-left: 16px; font-size: .78rem; }
.sitters-end-note { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 18px; background: var(--sand-100); padding: 13px 18px 13px 10px; }
.sitters-end-note img { width: 64px; height: 64px; flex: 0 0 auto; object-fit: contain; }
.sitters-end-note p { font-size: .78rem; line-height: 1.5; color: rgba(23,60,54,.63); }
.sitters-end-note strong { display: block; color: var(--forest-900); }
.sitters-empty { border: 1px solid var(--line); border-radius: 24px; background: white; padding: 34px 24px; text-align: center; box-shadow: 0 14px 44px rgba(23,60,54,.055); }
.sitters-empty img { width: 105px; height: 105px; margin: 0 auto; object-fit: contain; }
.sitters-empty h3 { margin-top: 7px; font-family: 'Fraunces', Georgia, serif; font-size: 1.65rem; font-weight: 700; color: var(--forest-900); }
.sitters-empty p { margin-top: 7px; font-size: .86rem; color: rgba(23,60,54,.6); }
.sitters-empty .btn-secondary { margin-top: 18px; }
.sitters-map { min-width: 0; }
.sitters-map-surface { position: relative; min-height: 690px; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: #eaf3ee; box-shadow: 0 14px 44px rgba(23,60,54,.065); }
.sitters-map-land { position: absolute; border-radius: 48% 52% 56% 44%; background: #d8e8d8; }
.sitters-map-land-one { top: -12%; right: -5%; width: 68%; height: 73%; transform: rotate(12deg); }
.sitters-map-land-two { bottom: -20%; left: -11%; width: 72%; height: 68%; background: #e5dfc7; transform: rotate(-8deg); }
.sitters-map-water { position: absolute; top: -15%; left: 38%; width: 15%; height: 135%; border-radius: 50%; background: rgba(173,214,217,.68); transform: rotate(19deg); }
.sitters-map-surface::before, .sitters-map-surface::after { content: ''; position: absolute; height: 9px; border-radius: 999px; background: rgba(255,255,255,.75); transform-origin: left center; }
.sitters-map-surface::before { top: 36%; left: 7%; width: 78%; transform: rotate(12deg); }
.sitters-map-surface::after { top: 64%; left: 17%; width: 70%; transform: rotate(-17deg); }
.sitters-map-pin { position: absolute; z-index: 2; display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 8px 16px rgba(23,60,54,.18)); }
.sitters-map-pin > span { display: flex; min-width: 58px; min-height: 42px; align-items: center; justify-content: center; border: 3px solid white; border-radius: 999px; background: var(--forest-700); padding: 0 10px; font-size: .72rem; font-weight: 700; color: white; }
.sitters-map-pin > small { margin-top: 5px; border-radius: 999px; background: rgba(255,255,255,.9); padding: 4px 7px; font-size: .62rem; font-weight: 700; color: var(--forest-900); }
.sitters-map-pin:hover > span { background: var(--terra-600); }
.pin-antwerp { top: 25%; left: 59%; }
.pin-utrecht { top: 14%; left: 72%; }
.pin-vigo { top: 65%; left: 19%; }
.sitters-map-legend { position: absolute; z-index: 2; right: 20px; bottom: 20px; display: flex; max-width: 340px; align-items: flex-start; gap: 10px; border: 1px solid rgba(23,60,54,.09); border-radius: 16px; background: rgba(255,255,255,.94); padding: 14px; box-shadow: 0 12px 34px rgba(23,60,54,.11); }
.sitters-map-legend svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--terra-600); }
.sitters-map-legend p { font-size: .72rem; line-height: 1.45; color: rgba(23,60,54,.61); }
.sitters-map-legend strong { display: block; color: var(--forest-900); }

@media (max-width: 1180px) {
  .sitters-container { padding-right: 32px; padding-left: 32px; }
  .sitters-hero-copy { grid-template-columns: minmax(0, 1fr) 300px; }
  .sitters-search { grid-template-columns: 1fr 1fr 1fr; }
  .sitters-search-submit { grid-column: 1 / -1; min-height: 56px; }
  .sitters-layout { grid-template-columns: 270px minmax(0, 1fr); }
  .sitter-result-card { grid-template-columns: 230px minmax(0, 1fr); }
  .sitter-result-bottom { grid-template-columns: 1fr auto; }
  .sitter-result-bottom .btn-primary { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .sitters-hero-copy { grid-template-columns: 1fr; gap: 22px; }
  .sitters-pip-note { max-width: 470px; }
  .sitters-toolbar { align-items: flex-start; }
  .sitters-toolbar-actions { flex-wrap: wrap; justify-content: flex-end; }
  .sitters-mobile-filter { display: flex; }
  .sitters-layout { grid-template-columns: 1fr; }
  .sitters-filters { position: static; }
  .sitters-filters[hidden] { display: none; }
}

@media (max-width: 700px) {
  .sitters-container { padding-right: 20px; padding-left: 20px; }
  .sitters-hero { padding-top: 15px; padding-bottom: 30px; }
  .sitters-hero-copy h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .sitters-search { grid-template-columns: 1fr; margin-top: 24px; border-radius: 19px; }
  .sitters-search-submit { grid-column: auto; }
  .sitters-results-section { padding-top: 35px; padding-bottom: 60px; }
  .sitters-toolbar { flex-direction: column; }
  .sitters-toolbar-actions { width: 100%; justify-content: flex-start; }
  .sitters-sort { flex: 1; }
  .sitter-result-card { grid-template-columns: 1fr; }
  .sitter-result-photo { aspect-ratio: 1.45 / 1; min-height: 0; }
  .sitter-result-content { padding: 20px; }
  .sitter-result-bottom { grid-template-columns: 1fr auto; }
  .sitters-map-surface { min-height: 540px; }
}

@media (max-width: 480px) {
  .sitters-pip-note { align-items: flex-start; }
  .sitters-pip-note img { width: 67px; height: 67px; }
  .sitters-toolbar-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .sitters-mobile-filter, .sitters-view-toggle { width: 100%; }
  .sitters-view-toggle button { flex: 1; justify-content: center; }
  .sitters-sort { grid-column: 1 / -1; }
  .sitter-result-bottom { grid-template-columns: 1fr; align-items: start; }
  .sitter-result-bottom .btn-primary { grid-column: auto; width: 100%; }
  .sitters-map-legend { right: 12px; bottom: 12px; left: 12px; }
  .pin-antwerp { left: 55%; }
  .pin-utrecht { left: 68%; }
}

/* Oppasvragen */
.requests-hero { background: linear-gradient(135deg, #fbfaf6 0%, #f0f6f2 68%, #e5f1ed 100%); }
.requests-pip-note { background: rgba(255,250,247,.84); }
.request-results { gap: 19px; }
.request-card { display: grid; grid-template-columns: minmax(275px, .7fr) minmax(0, 1.3fr); overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: white; box-shadow: 0 14px 44px rgba(23,60,54,.065); transition: transform .18s ease, box-shadow .18s ease; }
.request-card:hover { transform: translateY(-2px); box-shadow: 0 20px 58px rgba(23,60,54,.1); }
.request-card-photo { position: relative; display: block; min-height: 390px; overflow: hidden; background: var(--sand-100); }
.request-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .35s ease; }
.request-card-photo-cat img { object-position: 72% center; }
.request-card:hover .request-card-photo img { transform: scale(1.025); }
.request-card-photo > span { position: absolute; right: 14px; bottom: 14px; left: 14px; display: flex; min-height: 42px; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.7); border-radius: 13px; background: rgba(255,255,255,.94); padding: 8px 11px; text-align: center; font-size: .7rem; font-weight: 700; color: var(--forest-800); box-shadow: 0 8px 25px rgba(23,60,54,.14); backdrop-filter: blur(10px); }
.request-card-photo > span svg { width: 16px; height: 16px; color: var(--terra-600); }
.request-card-content { display: flex; min-width: 0; flex-direction: column; padding: 24px 26px; }
.request-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.request-owner { display: grid; min-width: 0; grid-template-columns: 48px minmax(0, 1fr); align-items: center; gap: 12px; }
.request-owner-avatar { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; background: var(--forest-100); font-family: 'Fraunces', Georgia, serif; font-size: 1.2rem; font-weight: 700; color: var(--forest-700); box-shadow: inset 0 0 0 1px rgba(37,107,91,.08); }
.request-owner-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 5px; }
.request-owner-badges span { display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; background: var(--sand-100); padding: 4px 7px; font-size: .58rem; font-weight: 700; color: var(--forest-700); }
.request-owner-badges span.is-active { background: #e9f7ef; color: #23714d; }
.request-owner-badges svg { width: 12px; height: 12px; }
.request-owner h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; font-weight: 700; line-height: 1.1; color: var(--forest-900); }
.request-owner h3 a { border-radius: 5px; }
.request-owner p { display: flex; align-items: center; gap: 5px; margin-top: 4px; font-size: .72rem; color: rgba(23,60,54,.55); }
.request-owner p svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--terra-600); }
.request-pets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 19px; }
.request-pet { display: inline-flex; min-height: 40px; align-items: center; gap: 7px; border: 1px solid rgba(23,60,54,.08); border-radius: 14px; background: var(--sand-50); padding: 6px 8px 6px 10px; color: var(--forest-700); }
.request-pet > svg { width: 18px; height: 18px; color: var(--terra-600); }
.request-pet strong { font-size: .76rem; color: var(--forest-900); }
.request-pet small { font-size: .64rem; color: rgba(23,60,54,.48); }
.request-pet .owner-pet-sex { width: 25px; height: 25px; margin-left: 2px; font-size: .76rem; }
.request-card-intro { margin-top: 17px; font-size: .88rem; line-height: 1.62; color: rgba(23,60,54,.67); }
.request-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; margin-top: 17px; border: 1px solid var(--line); border-radius: 15px; background: var(--line); }
.request-facts div { min-width: 0; background: var(--sand-50); padding: 11px 12px; }
.request-facts dt { font-size: .58rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: rgba(23,60,54,.43); }
.request-facts dd { overflow: hidden; margin-top: 3px; font-size: .76rem; font-weight: 700; text-overflow: ellipsis; color: var(--forest-900); }
.request-more { margin-top: 13px; border-top: 1px solid var(--line); padding-top: 11px; }
.request-more summary { display: flex; min-height: 38px; cursor: pointer; list-style: none; align-items: center; justify-content: space-between; gap: 12px; border-radius: 9px; font-size: .72rem; font-weight: 700; color: var(--forest-700); }
.request-more summary::-webkit-details-marker { display: none; }
.request-more summary svg { width: 17px; height: 17px; transition: transform .18s ease; }
.request-more[open] summary svg { transform: rotate(180deg); }
.request-more p { margin-top: 7px; border-radius: 13px; background: var(--sand-100); padding: 12px 14px; font-size: .76rem; line-height: 1.55; color: rgba(23,60,54,.65); }
.request-card-bottom { display: grid; grid-template-columns: minmax(105px, 1fr) auto auto; align-items: center; gap: 16px; margin-top: auto; padding-top: 18px; }
.request-rating { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 6px; font-size: .7rem; color: rgba(23,60,54,.48); }
.request-rating .profile-stars { gap: 1px; }
.request-rating .profile-stars svg { width: 12px; height: 12px; }
.request-rating strong { color: var(--forest-900); }
.request-card-bottom .btn-primary { min-height: 46px; padding-right: 16px; padding-left: 16px; white-space: nowrap; font-size: .76rem; }

@media (max-width: 1180px) {
  .request-card { grid-template-columns: 235px minmax(0, 1fr); }
  .request-card-photo { min-height: 410px; }
  .request-card-bottom { grid-template-columns: 1fr auto; }
  .request-card-bottom .btn-primary { grid-column: 1 / -1; width: 100%; }
  .request-rating { justify-content: flex-end; }
}

@media (max-width: 700px) {
  .request-card { grid-template-columns: 1fr; }
  .request-card-photo { aspect-ratio: 1.45 / 1; min-height: 0; }
  .request-card-content { padding: 21px 20px; }
  .request-facts { grid-template-columns: 1fr; }
  .request-card-bottom { grid-template-columns: 1fr auto; }
  .request-rating { justify-content: flex-end; }
}

@media (max-width: 480px) {
  .request-owner { grid-template-columns: 42px minmax(0, 1fr); }
  .request-owner-avatar { width: 42px; height: 42px; }
  .request-owner h3 { font-size: 1.4rem; }
  .request-card-bottom { grid-template-columns: 1fr; align-items: flex-start; }
  .request-rating { justify-content: flex-start; }
  .request-card-bottom .btn-primary { grid-column: auto; }
}

/* Oppasvraag maken */
.requests-create-link { width: fit-content; min-height: 46px; margin-top: 22px; padding-right: 17px; padding-left: 17px; font-size: .8rem; }
.request-wizard-page { background: var(--sand-50); }
.request-wizard-container { position: relative; z-index: 1; width: min(1440px, 100%); margin: 0 auto; padding-right: 48px; padding-left: 48px; }
.request-wizard-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fbfaf6 0%, #f0f6f2 64%, #e3f0eb 100%); padding: 25px 0 52px; }
.request-wizard-hero::before { content: ''; position: absolute; top: -260px; right: -110px; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,.5); }
.request-wizard-outline { position: absolute; right: 12%; bottom: -310px; width: 480px; opacity: .025; transform: rotate(-8deg); pointer-events: none; }
.request-wizard-heading { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: end; gap: 55px; }
.request-wizard-heading h1 { max-width: 900px; margin-top: 7px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(3rem, 5.4vw, 5.4rem); font-weight: 700; line-height: 1.01; letter-spacing: -.045em; color: var(--forest-900); }
.request-wizard-heading > div:first-child > p:last-child { max-width: 760px; margin-top: 17px; font-size: 1.04rem; line-height: 1.7; color: rgba(23,60,54,.67); }
.request-wizard-trust { display: flex; align-items: flex-start; gap: 11px; border: 1px solid rgba(23,60,54,.08); border-radius: 18px; background: rgba(255,255,255,.78); padding: 16px; box-shadow: 0 12px 34px rgba(23,60,54,.06); }
.request-wizard-trust > svg { width: 23px; height: 23px; flex: 0 0 auto; color: var(--forest-600); }
.request-wizard-trust p { font-size: .75rem; line-height: 1.5; color: rgba(23,60,54,.6); }
.request-wizard-trust strong { display: block; margin-bottom: 2px; font-size: .82rem; color: var(--forest-900); }
.request-wizard-section { padding: 38px 0 90px; }
.request-wizard-progress { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); max-width: 1020px; margin-bottom: 27px; list-style: none; }
.request-wizard-progress li { position: relative; min-width: 0; }
.request-wizard-progress li:not(:last-child)::after { content: ''; position: absolute; z-index: 0; top: 18px; left: calc(50% + 23px); width: calc(100% - 46px); height: 2px; background: var(--sand-200); }
.request-wizard-progress li.is-complete:not(:last-child)::after { background: var(--forest-500); }
.request-wizard-progress button { position: relative; z-index: 1; display: flex; width: 100%; flex-direction: column; align-items: center; gap: 6px; border-radius: 12px; color: rgba(23,60,54,.45); }
.request-wizard-progress button > span { display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 2px solid var(--sand-200); border-radius: 50%; background: var(--sand-50); font-size: .76rem; font-weight: 700; }
.request-wizard-progress button small { font-size: .69rem; font-weight: 700; }
.request-wizard-progress li.is-current button { color: var(--forest-900); }
.request-wizard-progress li.is-current button > span { border-color: var(--forest-700); background: var(--forest-700); color: white; box-shadow: 0 0 0 5px rgba(47,120,102,.1); }
.request-wizard-progress li.is-complete button { color: var(--forest-700); }
.request-wizard-progress li.is-complete button > span { border-color: var(--forest-500); background: var(--forest-100); color: var(--forest-700); }
.request-wizard-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: start; gap: 27px; }
.request-wizard-card { min-width: 0; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 20px 65px rgba(23,60,54,.08); }
.request-wizard-step { padding: clamp(26px, 3.2vw, 46px); }
.request-wizard-step[hidden], .wizard-success[hidden] { display: none; }
.request-wizard-step-heading { display: flex; align-items: flex-start; gap: 15px; border-bottom: 1px solid var(--line); padding-bottom: 25px; }
.request-wizard-step-icon { display: flex; width: 54px; height: 54px; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 17px; background: var(--forest-100); color: var(--forest-700); }
.request-wizard-step-icon svg { width: 26px; height: 26px; }
.request-wizard-step-heading p { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--terra-600); }
.request-wizard-step-heading h2 { margin-top: 3px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.9rem, 3vw, 2.65rem); font-weight: 700; line-height: 1.08; letter-spacing: -.025em; color: var(--forest-900); }
.request-wizard-step-heading h2:focus { outline: 0; }
.request-wizard-step-heading div > span { display: block; margin-top: 7px; font-size: .82rem; color: rgba(23,60,54,.57); }
.wizard-fieldset { margin-top: 27px; }
.wizard-pet-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.wizard-pet-choice { position: relative; display: grid; min-height: 94px; cursor: pointer; grid-template-columns: 62px minmax(0, 1fr) 34px; align-items: center; gap: 13px; border: 1px solid rgba(23,60,54,.13); border-radius: 19px; background: var(--sand-50); padding: 12px 50px 12px 12px; transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.wizard-pet-choice:hover { transform: translateY(-1px); border-color: rgba(37,107,91,.32); }
.wizard-pet-choice:has(input:checked) { border-color: var(--forest-700); background: var(--forest-50); box-shadow: 0 0 0 3px rgba(47,120,102,.09); }
.wizard-pet-choice > input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.wizard-pet-choice:has(input:focus-visible) { outline: 3px solid rgba(232,95,84,.28); outline-offset: 3px; }
.wizard-pet-image { width: 62px; height: 62px; overflow: hidden; border-radius: 16px; background: var(--sand-100); }
.wizard-pet-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(2); }
.wizard-pet-image-dog img { object-position: 68% 62%; transform-origin: 68% 62%; }
.wizard-pet-image-cat img { object-position: 59% 43%; transform-origin: 59% 43%; }
.wizard-pet-copy { display: flex; min-width: 0; flex-direction: column; }
.wizard-pet-copy strong { font-size: 1rem; color: var(--forest-900); }
.wizard-pet-copy small { margin-top: 3px; font-size: .72rem; color: rgba(23,60,54,.53); }
.wizard-pet-choice .owner-pet-sex { width: 30px; height: 30px; font-size: .9rem; }
.wizard-choice-check { position: absolute; top: 12px; right: 12px; display: flex; width: 28px; height: 28px; align-items: center; justify-content: center; border: 1.5px solid rgba(23,60,54,.2); border-radius: 50%; background: white; color: transparent; }
.wizard-choice-check svg { width: 15px; height: 15px; stroke-width: 3; }
.wizard-pet-choice:has(input:checked) .wizard-choice-check { border-color: var(--forest-700); background: var(--forest-700); color: white; }
.wizard-error { margin-top: 10px; border-radius: 10px; background: var(--terra-50); padding: 9px 11px; font-size: .75rem; font-weight: 700; color: var(--terra-700); }
.wizard-error[hidden] { display: none; }
.wizard-add-pet { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; margin-top: 16px; border-radius: 10px; font-size: .77rem; font-weight: 700; color: var(--forest-700); }
.wizard-add-pet svg { width: 17px; height: 17px; }
.wizard-new-pet { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 12px; border: 1px solid var(--line); border-radius: 17px; background: var(--sand-50); padding: 16px; }
.wizard-new-pet[hidden] { display: none; }
.wizard-new-pet label, .wizard-input-field, .wizard-textarea-field { display: flex; min-width: 0; flex-direction: column; gap: 7px; font-size: .75rem; font-weight: 700; color: var(--forest-900); }
.wizard-new-pet label > span, .wizard-input-field > span, .wizard-textarea-field > span { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wizard-new-pet small, .wizard-input-field small, .wizard-textarea-field small { font-size: .64rem; font-weight: 600; color: rgba(23,60,54,.45); }
.wizard-new-pet input, .wizard-new-pet select, .wizard-input-field input, .wizard-textarea-field textarea { width: 100%; border: 1px solid rgba(23,60,54,.14); border-radius: 13px; background: white; padding: 12px 13px; font-size: .86rem; font-weight: 600; color: var(--forest-900); outline: 0; }
.wizard-new-pet select { appearance: none; }
.wizard-new-pet input:focus, .wizard-new-pet select:focus, .wizard-input-field input:focus, .wizard-textarea-field textarea:focus { border-color: var(--terra-600); box-shadow: 0 0 0 4px rgba(232,95,84,.13); }
.wizard-new-pet > p { grid-column: 1 / -1; font-size: .69rem; line-height: 1.5; color: rgba(23,60,54,.52); }
.wizard-question-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 27px; }
.wizard-question-heading > div { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.wizard-question-heading h3, .wizard-question-heading legend { font-size: .96rem; font-weight: 700; color: var(--forest-900); }
.wizard-question-heading > div > span { font-size: .68rem; color: rgba(23,60,54,.48); }
.wizard-question-heading button { display: inline-flex; min-height: 40px; flex: 0 0 auto; align-items: center; gap: 6px; border-radius: 10px; background: var(--forest-100); padding: 0 11px; font-size: .69rem; font-weight: 700; color: var(--forest-700); }
.wizard-question-heading button svg { width: 16px; height: 16px; }
.wizard-date-grid, .wizard-optional-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 13px; }
.wizard-input-field input { min-height: 48px; }
.wizard-check-row { position: relative; display: flex; min-height: 58px; cursor: pointer; align-items: center; gap: 11px; margin-top: 11px; border-radius: 14px; background: var(--sand-50); padding: 10px 13px; }
.wizard-check-row > input, .wizard-task-grid input, .wizard-inline-options input, .wizard-arrangement-grid input, .wizard-home-grid input, .wizard-service-choice input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.wizard-check-box { display: flex; width: 23px; height: 23px; flex: 0 0 auto; align-items: center; justify-content: center; border: 1.5px solid rgba(23,60,54,.24); border-radius: 7px; background: white; color: transparent; }
.wizard-check-box svg { width: 14px; height: 14px; stroke-width: 3; }
.wizard-check-row input:checked + .wizard-check-box { border-color: var(--forest-700); background: var(--forest-700); color: white; }
.wizard-check-row:has(input:focus-visible) { outline: 3px solid rgba(232,95,84,.25); }
.wizard-check-row > span:last-child { display: flex; flex-direction: column; }
.wizard-check-row strong { font-size: .78rem; color: var(--forest-900); }
.wizard-check-row small { margin-top: 2px; font-size: .68rem; color: rgba(23,60,54,.51); }
.wizard-service-fieldset { margin-top: 0; }
.wizard-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 13px; }
.wizard-service-choice { position: relative; cursor: pointer; }
.wizard-service-choice > span { display: grid; min-height: 100px; grid-template-columns: 40px minmax(0, 1fr); align-content: center; column-gap: 11px; border: 1px solid rgba(23,60,54,.13); border-radius: 16px; background: var(--sand-50); padding: 13px; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.wizard-service-choice > span > svg { grid-row: 1 / 3; width: 22px; height: 22px; align-self: center; color: var(--terra-600); }
.wizard-service-choice strong { font-size: .82rem; color: var(--forest-900); }
.wizard-service-choice small { margin-top: 3px; font-size: .68rem; line-height: 1.35; color: rgba(23,60,54,.53); }
.wizard-service-choice:has(input:checked) > span { border-color: var(--forest-700); background: var(--forest-50); box-shadow: 0 0 0 3px rgba(47,120,102,.08); }
.wizard-service-choice:has(input:focus-visible) > span { outline: 3px solid rgba(232,95,84,.25); outline-offset: 2px; }
.wizard-service-choice-flexible { grid-column: 1 / -1; }
.wizard-service-choice-flexible > span { min-height: 78px; }
.wizard-task-grid, .wizard-home-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 13px; }
.wizard-task-grid label, .wizard-home-grid label { position: relative; cursor: pointer; }
.wizard-task-grid label > span, .wizard-home-grid label > span { display: flex; min-height: 48px; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 13px; background: var(--sand-50); padding: 9px 10px; font-size: .7rem; font-weight: 700; color: var(--forest-700); }
.wizard-task-grid svg, .wizard-home-grid svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--terra-600); }
.wizard-task-grid label:has(input:checked) > span, .wizard-home-grid label:has(input:checked) > span { border-color: var(--forest-700); background: var(--forest-100); }
.wizard-task-grid label:has(input:focus-visible) > span, .wizard-home-grid label:has(input:focus-visible) > span { outline: 3px solid rgba(232,95,84,.25); }
.wizard-textarea-field { margin-top: 20px; }
.wizard-textarea-field textarea { min-height: 104px; resize: vertical; font-weight: 500; line-height: 1.55; }
.wizard-textarea-field > small { line-height: 1.45; }
.wizard-medication-fieldset { margin-top: 4px; }
.wizard-arrangement-fieldset { margin-top: 0; }
.wizard-inline-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.wizard-inline-options label { position: relative; cursor: pointer; }
.wizard-inline-options label > span { display: flex; min-height: 42px; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--sand-50); padding: 0 14px; font-size: .72rem; font-weight: 700; color: rgba(23,60,54,.7); }
.wizard-inline-options label:has(input:checked) > span { border-color: var(--forest-700); background: var(--forest-700); color: white; }
.wizard-inline-options label:has(input:focus-visible) > span { outline: 3px solid rgba(232,95,84,.25); }
.wizard-arrangement-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 13px; }
.wizard-arrangement-grid label { position: relative; cursor: pointer; }
.wizard-arrangement-grid label > span { display: flex; min-height: 122px; flex-direction: column; align-items: flex-start; border: 1px solid var(--line); border-radius: 16px; background: var(--sand-50); padding: 15px; }
.wizard-arrangement-grid svg { width: 23px; height: 23px; color: var(--terra-600); }
.wizard-arrangement-grid strong { margin-top: 11px; font-size: .8rem; color: var(--forest-900); }
.wizard-arrangement-grid small { margin-top: 3px; font-size: .67rem; line-height: 1.4; color: rgba(23,60,54,.52); }
.wizard-arrangement-grid label:has(input:checked) > span { border-color: var(--forest-700); background: var(--forest-50); box-shadow: 0 0 0 3px rgba(47,120,102,.08); }
.wizard-arrangement-grid label:has(input:focus-visible) > span { outline: 3px solid rgba(232,95,84,.25); }
.wizard-budget-field { margin-top: 14px; }
.wizard-budget-field > div { position: relative; }
.wizard-budget-field > div > svg { position: absolute; top: 50%; left: 13px; width: 18px; height: 18px; color: var(--forest-600); transform: translateY(-50%); }
.wizard-budget-field input { padding-left: 40px; }
.request-wizard-actions { display: grid; grid-template-columns: auto minmax(90px, 1fr) auto; align-items: center; gap: 13px; border-top: 1px solid var(--line); padding: 19px clamp(26px, 3.2vw, 46px); }
.request-wizard-actions > p { text-align: center; font-size: .69rem; font-weight: 700; color: rgba(23,60,54,.48); }
.request-wizard-actions .btn-primary, .request-wizard-actions .btn-secondary { min-height: 50px; padding-right: 18px; padding-left: 18px; font-size: .78rem; }
.request-wizard-actions [hidden] { display: none; }
.wizard-pip-panel { position: sticky; top: 112px; overflow: hidden; border: 1px solid rgba(23,60,54,.08); border-radius: 25px; background: linear-gradient(150deg, #edf6f1 0%, #f8fbfa 100%); padding: 22px; box-shadow: 0 18px 52px rgba(23,60,54,.08); }
.wizard-pip-panel[hidden] { display: none; }
.wizard-pip-panel::after { content: ''; position: absolute; right: -75px; bottom: -95px; width: 220px; height: 220px; border-radius: 50%; background: rgba(221,240,234,.72); }
.wizard-pip-portrait { position: relative; z-index: 1; width: 130px; height: 130px; overflow: hidden; margin: -10px auto 6px; }
.wizard-pip-portrait img { width: 100%; height: 100%; object-fit: contain; }
.wizard-pip-panel > p, .wizard-pip-panel > h2, .wizard-pip-panel > span, .wizard-pip-reminder { position: relative; z-index: 1; }
.wizard-pip-panel > p { font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-align: center; text-transform: uppercase; color: var(--terra-600); }
.wizard-pip-panel > h2 { margin-top: 6px; font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; font-weight: 700; line-height: 1.12; text-align: center; color: var(--forest-900); }
.wizard-pip-panel > span { display: block; margin-top: 11px; font-size: .82rem; line-height: 1.65; text-align: center; color: rgba(23,60,54,.65); }
.wizard-pip-reminder { display: flex; align-items: flex-start; gap: 9px; margin-top: 18px; border: 1px solid rgba(23,60,54,.08); border-radius: 14px; background: rgba(255,255,255,.76); padding: 12px; }
.wizard-pip-reminder > svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--forest-600); }
.wizard-pip-reminder p { font-size: .67rem; line-height: 1.45; color: rgba(23,60,54,.56); }
.wizard-pip-reminder strong { display: block; color: var(--forest-900); }
.wizard-pip-panel.is-answering { animation: pipAnswer .36s ease-out; }
@keyframes pipAnswer { 50% { transform: translateY(-3px); box-shadow: 0 23px 60px rgba(23,60,54,.12); } }
.wizard-preview { overflow: hidden; margin-top: 27px; border: 1px solid var(--line); border-radius: 21px; background: var(--sand-50); }
.wizard-preview-top { display: grid; grid-template-columns: 50px minmax(0, 1fr); align-items: center; gap: 13px; padding: 19px 20px; }
.wizard-preview-top > div > p { font-size: .63rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--terra-600); }
.wizard-preview-top h3 { margin-top: 3px; font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; font-weight: 700; color: var(--forest-900); }
.wizard-preview-top div > span { display: flex; align-items: center; gap: 5px; margin-top: 5px; font-size: .7rem; color: rgba(23,60,54,.54); }
.wizard-preview-top div > span svg { width: 14px; height: 14px; color: var(--terra-600); }
.wizard-preview-status { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--line); }
.wizard-preview-status > span { display: flex; align-items: center; gap: 8px; background: white; padding: 13px 18px; }
.wizard-preview-status svg { width: 18px; height: 18px; color: var(--forest-600); }
.wizard-preview-status strong { font-size: .75rem; color: var(--forest-900); }
.wizard-preview > p { padding: 18px 20px 5px; font-size: .83rem; line-height: 1.6; color: rgba(23,60,54,.65); }
.wizard-preview-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 11px 20px 18px; }
.wizard-preview-tags span { border-radius: 999px; background: var(--forest-100); padding: 6px 9px; font-size: .64rem; font-weight: 700; color: var(--forest-700); }
.wizard-preview-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); background: white; padding: 13px 20px; }
.wizard-preview-bottom > span { display: flex; align-items: center; gap: 6px; font-size: .68rem; color: rgba(23,60,54,.6); }
.wizard-preview-bottom svg { width: 16px; height: 16px; color: var(--terra-600); }
.wizard-preview-bottom strong { color: var(--forest-900); }
.wizard-preview-languages { padding-left: 3px; }
.wizard-preview-languages > span { display: flex; width: 25px; height: 25px; align-items: center; justify-content: center; margin-left: -4px; border: 2px solid white; border-radius: 50%; background: white; font-size: 1rem; line-height: 1; box-shadow: 0 2px 8px rgba(23,60,54,.11); }
.wizard-preview-languages small { margin-left: 4px; font-size: .65rem; font-weight: 700; color: rgba(23,60,54,.56); }
.wizard-final-note { display: flex; align-items: flex-start; gap: 10px; margin-top: 15px; border-radius: 15px; background: var(--sand-100); padding: 14px; }
.wizard-final-note > svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--forest-600); }
.wizard-final-note p { font-size: .72rem; line-height: 1.5; color: rgba(23,60,54,.57); }
.wizard-final-note strong { display: block; color: var(--forest-900); }
.wizard-success { grid-column: 1 / -1; border: 1px solid var(--line); border-radius: 28px; background: white; padding: 48px 30px; text-align: center; box-shadow: 0 20px 65px rgba(23,60,54,.08); }
.wizard-success > img { width: 130px; height: 130px; margin: 0 auto; object-fit: contain; }
.wizard-success > span { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; margin: -8px auto 12px; border: 4px solid white; border-radius: 50%; background: var(--forest-700); color: white; box-shadow: 0 5px 16px rgba(23,60,54,.16); }
.wizard-success > span svg { width: 20px; height: 20px; stroke-width: 3; }
.wizard-success > p { font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--terra-600); }
.wizard-success h2 { max-width: 720px; margin: 7px auto 0; font-family: 'Fraunces', Georgia, serif; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 700; line-height: 1.08; color: var(--forest-900); }
.wizard-success > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 25px; }

.brand-select { position: relative; width: 100%; min-width: 0; }
select.brand-select-native { position: absolute; width: 1px; height: 1px; overflow: hidden; margin: -1px; clip: rect(0 0 0 0); clip-path: inset(50%); opacity: 0; pointer-events: none; }
.brand-select-trigger { display: flex; width: 100%; min-height: 44px; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid rgba(23,60,54,.14); border-radius: 13px; background: white; padding: 0 13px; text-align: left; font-size: .84rem; font-weight: 700; color: var(--forest-900); transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.brand-select-trigger > svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--forest-600); transition: transform .18s ease; }
.brand-select.is-open .brand-select-trigger { border-color: var(--forest-600); box-shadow: 0 0 0 4px rgba(47,120,102,.11); }
.brand-select.is-invalid .brand-select-trigger { border-color: var(--terra-600); box-shadow: 0 0 0 4px rgba(232,95,84,.13); }
.brand-select-trigger:disabled { background: var(--sand-100); color: rgba(23,60,54,.45); }
.brand-select.is-open .brand-select-trigger > svg { transform: rotate(180deg); }
.brand-select-value { display: flex; min-width: 0; align-items: center; gap: 8px; overflow: hidden; white-space: nowrap; }
.brand-select-value > span:last-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.brand-select-menu { position: absolute; z-index: 90; top: calc(100% + 8px); left: 0; width: max(100%, 230px); max-height: 310px; overflow-y: auto; border: 1px solid rgba(37,107,91,.14); border-radius: 17px; background: rgba(255,255,255,.99); padding: 7px; box-shadow: 0 24px 65px rgba(23,60,54,.19); backdrop-filter: blur(16px); }
.brand-select-menu[hidden] { display: none; }
.brand-select-option { display: grid; width: 100%; min-height: 44px; grid-template-columns: minmax(0, 1fr) 20px; align-items: center; gap: 10px; border-radius: 11px; padding: 8px 11px; text-align: left; font-size: .78rem; font-weight: 700; color: var(--forest-900); transition: background .16s ease, color .16s ease; }
.brand-select-option.has-flag { grid-template-columns: 28px minmax(0, 1fr) 20px; }
.brand-select-flag { display: inline-flex; width: 27px; height: 27px; flex: 0 0 auto; align-items: center; justify-content: center; border: 2px solid white; border-radius: 50%; background: white; font-size: 1rem; line-height: 1; box-shadow: 0 2px 8px rgba(23,60,54,.1); }
.brand-select-option > svg { width: 17px; height: 17px; justify-self: end; opacity: 0; }
.brand-select-option:hover, .brand-select-option:focus-visible { background: var(--forest-100); color: var(--forest-900); outline: none; }
.brand-select-option[aria-selected="true"] { background: var(--forest-800); color: white; }
.brand-select-option[aria-selected="true"] > svg { opacity: 1; }
.brand-select-option[aria-selected="true"]:hover, .brand-select-option[aria-selected="true"]:focus-visible { background: var(--forest-700); color: white; }
.sitters-hero.brand-select-open { z-index: 15; overflow: visible; }
.sitters-search-field .brand-select { flex: 1; }
.sitters-search-field .brand-select-trigger { min-height: 26px; border: 0; background: transparent; padding: 0; font-size: .92rem; }
.sitters-search-field .brand-select.is-open .brand-select-trigger { box-shadow: none; }
.sitters-search-field .brand-select-trigger > svg { width: 16px; }
.sitters-search-field .brand-select-menu { left: -34px; width: max(calc(100% + 34px), 245px); }
.sitters-search-field .brand-select-option > svg { color: currentColor; }
.sitters-sort .brand-select-trigger { min-height: 23px; border: 0; background: transparent; padding: 0; font-size: .8rem; }
.sitters-sort .brand-select.is-open .brand-select-trigger { box-shadow: none; }
.sitters-sort .brand-select-menu { right: -25px; left: auto; width: max(calc(100% + 25px), 245px); }
.wizard-new-pet .brand-select-trigger { min-height: 48px; font-size: .86rem; font-weight: 600; }
.wizard-new-pet .brand-select.is-open .brand-select-trigger { border-color: var(--terra-600); box-shadow: 0 0 0 4px rgba(232,95,84,.13); }
.wizard-input-field .brand-select-trigger { min-height: 48px; font-size: .86rem; font-weight: 600; }
.wizard-input-field .brand-select.is-open .brand-select-trigger { border-color: var(--terra-600); box-shadow: 0 0 0 4px rgba(232,95,84,.13); }
.wizard-optional-row .brand-select-menu { max-height: 270px; }
.wizard-optional-row > .wizard-input-field:last-child .brand-select-menu { right: 0; left: auto; }

.brand-date { position: relative; width: 100%; min-width: 0; }
input.brand-date-native { position: absolute; width: 1px; height: 1px; min-height: 0; overflow: hidden; margin: -1px; clip: rect(0 0 0 0); clip-path: inset(50%); opacity: 0; pointer-events: none; }
.brand-date-trigger { display: grid; width: 100%; min-height: 48px; grid-template-columns: 20px minmax(0, 1fr) 17px; align-items: center; gap: 9px; border: 1px solid rgba(23,60,54,.14); border-radius: 13px; background: white; padding: 0 13px; text-align: left; color: rgba(23,60,54,.53); transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.brand-date-trigger > svg { width: 18px; height: 18px; color: var(--terra-600); }
.brand-date-trigger > svg:last-child { width: 16px; color: var(--forest-600); transition: transform .18s ease; }
.brand-date.has-value .brand-date-trigger { color: var(--forest-900); }
.brand-date.is-open .brand-date-trigger { border-color: var(--terra-600); box-shadow: 0 0 0 4px rgba(232,95,84,.13); }
.brand-date.is-open .brand-date-trigger > svg:last-child { transform: rotate(180deg); }
.brand-date-trigger:disabled { background: var(--sand-100); color: rgba(23,60,54,.4); }
.brand-date-value { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .84rem; font-weight: 600; }
.brand-date-menu { position: absolute; z-index: 95; top: calc(100% + 9px); left: 0; width: 330px; border: 1px solid rgba(37,107,91,.14); border-radius: 20px; background: rgba(255,255,255,.99); padding: 13px; box-shadow: 0 26px 70px rgba(23,60,54,.2); backdrop-filter: blur(16px); }
.brand-date-menu[hidden] { display: none; }
.wizard-date-grid > .wizard-input-field:last-child .brand-date-menu { right: 0; left: auto; }
.brand-date-header { display: grid; grid-template-columns: 38px minmax(0, 1fr) 38px; align-items: center; gap: 7px; }
.brand-date-header > button { display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 11px; background: var(--sand-100); color: var(--forest-700); }
.brand-date-header > button:hover, .brand-date-header > button:focus-visible { background: var(--forest-100); outline: 3px solid rgba(232,95,84,.18); }
.brand-date-header > button:disabled { opacity: .34; }
.brand-date-header svg { width: 18px; height: 18px; }
.brand-date-header strong { font-family: 'Fraunces', Georgia, serif; font-size: 1rem; font-weight: 700; text-align: center; text-transform: capitalize; color: var(--forest-900); }
.brand-date-weekdays, .brand-date-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 3px; }
.brand-date-weekdays { margin-top: 13px; }
.brand-date-weekdays span { padding: 4px 0; font-size: .6rem; font-weight: 700; text-align: center; text-transform: uppercase; color: rgba(23,60,54,.42); }
.brand-date-days { margin-top: 3px; }
.brand-date-days button { display: flex; aspect-ratio: 1; min-width: 0; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 50%; font-size: .7rem; font-weight: 700; color: var(--forest-900); }
.brand-date-days button:hover:not(:disabled), .brand-date-days button:focus-visible { background: var(--forest-100); outline: none; box-shadow: 0 0 0 3px rgba(232,95,84,.18); }
.brand-date-days button.is-outside { color: rgba(23,60,54,.3); }
.brand-date-days button.is-today { border-color: var(--terra-600); color: var(--terra-700); }
.brand-date-days button.is-selected { border-color: var(--forest-700); background: var(--forest-700); color: white; }
.brand-date-days button:disabled { color: rgba(23,60,54,.17); }
.brand-date-footer { display: flex; justify-content: space-between; gap: 8px; margin-top: 10px; border-top: 1px solid var(--line); padding-top: 10px; }
.brand-date-footer button { min-height: 38px; border-radius: 10px; padding: 0 11px; font-size: .68rem; font-weight: 700; color: var(--forest-700); }
.brand-date-footer button:last-child { background: var(--forest-100); }
.brand-date-footer button:hover, .brand-date-footer button:focus-visible { background: var(--sand-100); outline: 3px solid rgba(232,95,84,.18); }
.wizard-success .btn-primary, .wizard-success .btn-secondary { min-height: 52px; }

.sitter-wizard-identity { display: grid; grid-template-columns: 180px minmax(0, 1fr); align-items: start; gap: 22px; margin-top: 27px; }
.sitter-wizard-photo { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: var(--sand-100); aspect-ratio: .86 / 1; }
.sitter-wizard-photo > img { width: 100%; height: 100%; object-fit: cover; }
.sitter-wizard-photo > button { position: absolute; right: 9px; bottom: 9px; left: 9px; display: flex; min-height: 42px; cursor: pointer; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.75); border-radius: 12px; background: rgba(255,255,255,.92); font-size: .69rem; font-weight: 700; color: var(--forest-800); box-shadow: 0 8px 25px rgba(23,60,54,.14); backdrop-filter: blur(12px); }
.sitter-wizard-photo > button:hover, .sitter-wizard-photo > button:focus-visible { background: white; outline: 3px solid rgba(232,95,84,.25); }
.sitter-wizard-photo > button svg { width: 16px; height: 16px; color: var(--terra-600); }
.sitter-wizard-identity .wizard-textarea-field { margin-top: 14px; }
.sitter-language-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 13px; }
.sitter-language-grid label { position: relative; cursor: pointer; }
.sitter-language-grid input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.sitter-language-grid label > span { display: flex; min-height: 52px; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 14px; background: var(--sand-50); padding: 9px 12px; }
.sitter-language-grid b { display: flex; width: 28px; height: 28px; flex: 0 0 auto; align-items: center; justify-content: center; border: 2px solid white; border-radius: 50%; background: white; font-size: 1.05rem; box-shadow: 0 2px 8px rgba(23,60,54,.1); }
.sitter-language-grid strong { font-size: .72rem; color: var(--forest-800); }
.sitter-language-grid label:has(input:checked) > span { border-color: var(--forest-700); background: var(--forest-100); box-shadow: 0 0 0 3px rgba(47,120,102,.07); }
.sitter-language-grid label:has(input:focus-visible) > span { outline: 3px solid rgba(232,95,84,.25); outline-offset: 2px; }
.sitter-language-add { margin-top: 14px; border: 1px solid var(--line); border-radius: 17px; background: var(--sand-50); padding: 15px; }
.sitter-language-add .wizard-input-field { max-width: 420px; }
.sitter-language-add .brand-select-menu { width: max(100%, 290px); }
.sitter-language-add > p { margin-top: 9px; font-size: .65rem; line-height: 1.45; color: rgba(23,60,54,.48); }
.sitter-added-languages { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.sitter-added-languages:empty { display: none; }
.sitter-added-language { display: inline-flex; min-height: 40px; align-items: center; gap: 7px; border: 1px solid rgba(37,107,91,.14); border-radius: 999px; background: var(--forest-100); padding: 4px 5px 4px 7px; color: var(--forest-800); }
.sitter-added-language > span { font-size: 1rem; line-height: 1; }
.sitter-added-language strong { font-size: .69rem; }
.sitter-added-language button { display: flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; background: white; color: var(--forest-600); }
.sitter-added-language button:hover, .sitter-added-language button:focus-visible { color: var(--terra-700); outline: 3px solid rgba(232,95,84,.2); }
.sitter-added-language button svg { width: 14px; height: 14px; }
.sitter-animal-grid, .sitter-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 18px; }
.sitter-wizard-two-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 20px; }
.sitter-week-options { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.sitter-week-options label > span { width: 100%; justify-content: center; padding: 0 5px; }
.sitter-profile-preview { overflow: hidden; margin-top: 27px; border: 1px solid var(--line); border-radius: 23px; background: white; box-shadow: 0 16px 45px rgba(23,60,54,.08); }
.sitter-preview-cover { position: relative; height: 210px; overflow: hidden; }
.sitter-preview-cover > img { width: 100%; height: 100%; object-fit: cover; }
.sitter-preview-cover > span { position: absolute; right: 14px; bottom: 14px; display: flex; min-height: 36px; align-items: center; gap: 6px; border-radius: 999px; background: rgba(255,255,255,.92); padding: 0 11px; font-size: .64rem; font-weight: 700; color: var(--forest-700); box-shadow: 0 6px 18px rgba(23,60,54,.14); backdrop-filter: blur(12px); }
.sitter-preview-cover > span svg { width: 15px; height: 15px; }
.sitter-preview-content { padding: 20px; }
.sitter-preview-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.sitter-preview-title p { font-size: .63rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--terra-600); }
.sitter-preview-title h3 { margin-top: 2px; font-family: 'Fraunces', Georgia, serif; font-size: 1.75rem; font-weight: 700; color: var(--forest-900); }
.sitter-preview-flags { display: flex; padding-left: 4px; }
.sitter-preview-flags span { display: flex; width: 30px; height: 30px; align-items: center; justify-content: center; margin-left: -5px; border: 2px solid white; border-radius: 50%; background: white; font-size: 1.08rem; box-shadow: 0 2px 8px rgba(23,60,54,.11); }
.sitter-preview-content > p { margin-top: 12px; font-size: .82rem; line-height: 1.6; color: rgba(23,60,54,.64); }
.sitter-preview-section { margin-top: 16px; }
.sitter-preview-section > small { display: block; margin-bottom: 7px; font-size: .61rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(23,60,54,.43); }
.sitter-preview-section > div { display: flex; flex-wrap: wrap; gap: 6px; }
.sitter-preview-section > div span { border-radius: 999px; background: var(--forest-100); padding: 6px 9px; font-size: .64rem; font-weight: 700; color: var(--forest-700); }
.sitter-preview-bottom { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 20px -20px -20px; border-top: 1px solid var(--line); background: var(--line); }
.sitter-preview-bottom > span { display: flex; min-height: 52px; align-items: center; gap: 7px; background: var(--sand-50); padding: 10px 20px; }
.sitter-preview-bottom svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--terra-600); }
.sitter-preview-bottom strong { font-size: .69rem; color: var(--forest-900); }

@media (max-width: 1100px) {
  .request-wizard-container { padding-right: 32px; padding-left: 32px; }
  .request-wizard-layout { grid-template-columns: minmax(0, 1fr) 310px; }
  .wizard-task-grid, .wizard-home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wizard-arrangement-grid { grid-template-columns: 1fr; }
  .wizard-arrangement-grid label > span { min-height: 88px; display: grid; grid-template-columns: 30px minmax(0, 1fr); align-content: center; column-gap: 10px; }
  .wizard-arrangement-grid svg { grid-row: 1 / 3; align-self: center; }
  .wizard-arrangement-grid strong { margin-top: 0; }
  .sitter-language-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  .request-wizard-heading { grid-template-columns: 1fr; gap: 20px; }
  .request-wizard-trust { max-width: 460px; }
  .request-wizard-layout { grid-template-columns: 1fr; }
  .wizard-pip-panel { position: relative; top: auto; display: grid; grid-template-columns: 90px minmax(0, 1fr); align-items: center; column-gap: 14px; padding: 16px 18px; }
  .wizard-pip-portrait { grid-row: 1 / 5; width: 90px; height: 90px; margin: 0; }
  .wizard-pip-panel > p, .wizard-pip-panel > h2, .wizard-pip-panel > span { text-align: left; }
  .wizard-pip-panel > h2 { font-size: 1.25rem; }
  .wizard-pip-panel > span { margin-top: 6px; font-size: .76rem; line-height: 1.5; }
  .wizard-pip-reminder { grid-column: 1 / -1; margin-top: 12px; }
  .request-wizard-card { grid-row: 2; }
  .wizard-pip-panel { grid-row: 1; }
}

@media (max-width: 700px) {
  .request-wizard-container { padding-right: 20px; padding-left: 20px; }
  .request-wizard-hero { padding-top: 15px; padding-bottom: 35px; }
  .request-wizard-heading h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .request-wizard-section { padding-top: 25px; padding-bottom: 60px; }
  .request-wizard-progress button small { font-size: .6rem; }
  .request-wizard-progress button > span { width: 34px; height: 34px; }
  .request-wizard-progress li:not(:last-child)::after { top: 16px; left: calc(50% + 20px); width: calc(100% - 40px); }
  .wizard-pet-choices, .wizard-service-grid, .wizard-date-grid, .wizard-optional-row, .wizard-new-pet { grid-template-columns: 1fr; }
  .sitter-wizard-identity, .sitter-animal-grid, .sitter-service-grid, .sitter-wizard-two-columns { grid-template-columns: 1fr; }
  .sitter-wizard-photo { width: 180px; }
  .sitter-week-options { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .wizard-date-grid .brand-date-menu, .wizard-date-grid > .wizard-input-field:last-child .brand-date-menu, .wizard-optional-row > .wizard-input-field:last-child .brand-select-menu { right: auto; left: 0; }
  .wizard-new-pet > p { grid-column: auto; }
  .request-wizard-actions { grid-template-columns: 1fr 1fr; }
  .request-wizard-actions > p { grid-column: 1 / -1; grid-row: 1; }
  .request-wizard-actions [data-wizard-back] { grid-column: 1; }
  .request-wizard-actions [data-wizard-next], .request-wizard-actions [data-wizard-submit] { grid-column: 2; }
  .wizard-preview-status { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .request-wizard-progress { margin-right: -8px; margin-left: -8px; }
  .request-wizard-progress button small { max-width: 54px; overflow: hidden; text-overflow: ellipsis; }
  .request-wizard-card { border-radius: 22px; }
  .request-wizard-step { padding: 23px 18px; }
  .request-wizard-step-heading { gap: 11px; }
  .request-wizard-step-icon { width: 46px; height: 46px; border-radius: 14px; }
  .request-wizard-step-icon svg { width: 22px; height: 22px; }
  .wizard-question-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
  .wizard-task-grid, .wizard-home-grid { grid-template-columns: 1fr; }
  .sitter-language-grid { grid-template-columns: 1fr 1fr; }
  .sitter-preview-bottom { grid-template-columns: 1fr; }
  .wizard-pip-panel { grid-template-columns: 70px minmax(0, 1fr); }
  .wizard-pip-portrait { width: 70px; height: 70px; }
  .request-wizard-actions { padding: 16px 18px; }
  .request-wizard-actions .btn-primary, .request-wizard-actions .btn-secondary { padding-right: 12px; padding-left: 12px; }
}
