:root {
  --pic-accent: #30e3ca;
  --pic-accent-hover: #25bfa9;
  --pic-accent-soft: color-mix(in srgb, var(--pic-accent) 10%, white);
  --pic-text: #18181b;
  --pic-muted: #71717a;
  --pic-border: #e5e7eb;
  --pic-dark: #18181b;
  --pic-darker: #09090b;
  --pic-white: #fff;
  --pic-radius: 12px;
  --pic-shadow: 0 10px 30px rgba(24, 24, 27, .08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: #f9fafb;
  color: var(--pic-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.pic-menu-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--pic-accent) 60%, #000);
  outline-offset: 3px;
}

::selection {
  background: var(--pic-accent-soft);
  color: #166b5f;
}

.pic-container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.picoteos-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.picoteos-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 100000;
  display: block;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 10px 16px;
  background: #fff;
  color: #111827;
  font-weight: 700;
  border-radius: 6px;
}

/* Header */
.pic-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 64px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  backdrop-filter: blur(12px);
}

.admin-bar .pic-site-header {
  top: 32px;
}

.pic-header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 64px;
}

.pic-brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.pic-brand-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  color: var(--pic-accent);
}

.pic-brand-text {
  color: #111827;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 850;
  letter-spacing: -.04em;
}

.pic-brand-text span {
  color: var(--pic-accent);
}

.pic-custom-logo,
.pic-custom-logo .custom-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.pic-custom-logo img {
  width: auto;
  max-width: 220px;
  max-height: 48px;
}

.pic-desktop-nav,
.pic-header-actions {
  display: none;
}

.pic-menu-toggle {
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: -8px;
  color: #9ca3af;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.pic-menu-toggle:hover {
  color: var(--pic-accent-hover);
  background: var(--pic-accent-soft);
}

.pic-menu-close-icon,
.pic-menu-toggle[aria-expanded="true"] .pic-menu-open-icon {
  display: none;
}

.pic-menu-toggle[aria-expanded="true"] .pic-menu-close-icon {
  display: block;
}

.pic-menu-open-icon,
.pic-menu-close-icon {
  height: 24px;
}

.pic-mobile-menu {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.pic-mobile-menu[hidden] {
  display: none;
}

.pic-mobile-link {
  display: block;
  padding: 11px 20px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 600;
  border-left: 4px solid transparent;
}

.pic-mobile-link:hover,
.pic-mobile-link.is-current {
  color: #176f63;
  background: var(--pic-accent-soft);
  border-left-color: var(--pic-accent);
}

.pic-mobile-actions {
  padding-block: 8px;
  border-top: 1px solid #f3f4f6;
}

.pic-mobile-publish {
  color: #168172;
  font-weight: 800;
}

/* Buttons */
.pic-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 24px;
  color: #111827;
  background: var(--pic-accent);
  border: 1px solid var(--pic-accent);
  border-radius: 9px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .12);
  font-weight: 800;
  line-height: 1.2;
  transition: background-color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.pic-button:hover {
  color: #111827;
  background: var(--pic-accent-hover);
  border-color: var(--pic-accent-hover);
  box-shadow: 0 7px 16px rgba(0, 0, 0, .14);
}

.pic-button:active {
  transform: scale(.97);
}

.pic-button-small {
  min-height: 40px;
  padding: 9px 20px;
  font-size: 14px;
}

.pic-button-block {
  width: 100%;
  margin-top: 12px;
}

.pic-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 9px;
  font-weight: 750;
}

.pic-outline-button:hover {
  color: #176f63;
  border-color: var(--pic-accent);
  background: var(--pic-accent-soft);
}

/* Hero */
.pic-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-color: #18181b;
  background-position: center;
  background-size: cover;
}

.pic-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, .98), rgba(24, 24, 27, .8) 52%, rgba(24, 24, 27, .55));
}

.pic-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding-block: 64px;
  text-align: center;
}

.pic-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6.1vw, 64px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.pic-hero h1 span,
.pic-section-heading-dark h2 span {
  color: var(--pic-accent);
}

.pic-hero-description {
  max-width: 620px;
  margin: 18px auto 0;
  color: #d1d5db;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

.pic-hero-search {
  width: min(100%, 900px);
  margin-top: 32px;
}

.pic-search-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 8px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
}

.pic-search-field {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.pic-search-field > .picoteos-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 1;
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transform: translateY(-50%);
  pointer-events: none;
}

.pic-search-field input,
.pic-search-field select {
  display: block;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 12px 36px 12px 40px;
  color: #374151;
  background: #f9fafb;
  border: 0;
  border-radius: 8px;
  outline: 0;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.pic-search-field input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.pic-search-field input:focus,
.pic-search-field select:focus {
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--pic-accent);
}

.pic-search-divider {
  display: none;
  width: 1px;
  margin-block: 8px;
  background: #e5e7eb;
}

.pic-search-button {
  min-height: 50px;
  border-radius: 8px;
}

.pic-popular-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 22px;
  color: #9ca3af;
  font-size: 14px;
}

.pic-popular-links span {
  font-weight: 700;
}

.pic-popular-links a:hover {
  color: var(--pic-accent);
  text-decoration: underline;
}

/* Directory */
.pic-directory-section {
  padding-block: 66px;
  background: #f9fafb;
}

.pic-section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.pic-section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.pic-section-heading p {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 18px;
}

.pic-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 42px;
}

.pic-category-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  color: #4b5563;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  transition: all .2s ease;
}

.pic-category-tab .picoteos-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

.pic-category-tab:hover {
  color: #176f63;
  background: var(--pic-accent-soft);
  border-color: var(--pic-accent);
}

.pic-category-tab.is-active {
  color: #111827;
  background: var(--pic-accent);
  border-color: var(--pic-accent);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
  font-weight: 800;
  transform: scale(1.035);
}

.pic-category-tab.is-active .picoteos-icon {
  color: #111827;
}

.pic-category-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .035);
}

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

.pic-category-panel.is-active {
  animation: pic-fade-in .25s ease both;
}

@keyframes pic-fade-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.pic-panel-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}

.pic-panel-heading .picoteos-icon {
  width: 31px;
  height: 31px;
  color: var(--pic-accent);
}

.pic-panel-heading h3 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
}

.pic-subcategory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pic-subcategory-card {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  color: #374151;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pic-subcategory-card:hover {
  color: #111827;
  background: var(--pic-accent-soft);
  border-color: var(--pic-accent);
  box-shadow: 0 8px 18px rgba(24, 24, 27, .08);
  transform: translateY(-2px);
}

.pic-subcategory-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: 14px;
  color: #9ca3af;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 9px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pic-subcategory-card:hover .pic-subcategory-icon {
  color: var(--pic-accent-hover);
  border-color: color-mix(in srgb, var(--pic-accent) 35%, white);
  box-shadow: none;
}

/* How it works */
.pic-how-section {
  padding-block: 66px;
  color: #fff;
  background: #18181b;
}

.pic-section-heading-dark h2 {
  color: #fff;
}

.pic-section-heading-dark p {
  color: #9ca3af;
  font-size: clamp(17px, 2.2vw, 20px);
}

.pic-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  margin-top: 56px;
}

.pic-step {
  position: relative;
  text-align: center;
}

.pic-step-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: #111827;
  background: var(--pic-accent);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .25), 0 0 0 4px color-mix(in srgb, var(--pic-accent) 30%, transparent);
  font-size: 24px;
  font-weight: 850;
}

.pic-step h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.pic-step p {
  max-width: 360px;
  margin: 0 auto;
  color: #9ca3af;
}

/* Footer */
.pic-site-footer {
  padding-top: 48px;
  color: #fff;
  background: #09090b;
  border-top: 1px solid #18181b;
}

.pic-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.pic-brand-footer .pic-brand-text {
  color: #fff;
}

.pic-footer-about p {
  max-width: 460px;
  margin: 16px 0 0;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7;
}

.pic-footer-heading {
  margin: 0 0 14px;
  color: #e5e7eb;
  font-size: 18px;
}

.pic-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #9ca3af;
  font-size: 14px;
  list-style: none;
}

.pic-footer-links a:hover,
.pic-social-links a:hover {
  color: var(--pic-accent);
}

.pic-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  padding-block: 25px;
  color: #71717a;
  text-align: center;
  border-top: 1px solid #27272a;
}

.pic-footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.pic-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
}

/* Listing and interior pages */
.pic-page-hero {
  padding-block: 64px;
  color: #fff;
  background: radial-gradient(circle at 80% 0, rgba(48, 227, 202, .16), transparent 34%), #18181b;
}

.pic-page-hero .pic-container {
  max-width: 1050px;
}

.pic-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.pic-page-hero > .pic-container > p:not(.pic-eyebrow):not(.pic-single-location) {
  max-width: 680px;
  margin: 13px 0 0;
  color: #a1a1aa;
  font-size: 18px;
}

.pic-eyebrow {
  margin: 0 0 8px;
  color: var(--pic-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pic-page-search {
  max-width: 900px;
  margin-top: 28px;
}

.pic-page-search .pic-search-form {
  box-shadow: 0 16px 34px rgba(0, 0, 0, .25);
}

.pic-results-wrap {
  min-height: 320px;
  padding-block: 54px 76px;
}

.pic-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.pic-service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(24, 24, 27, .045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pic-service-card:hover {
  border-color: color-mix(in srgb, var(--pic-accent) 60%, white);
  box-shadow: var(--pic-shadow);
  transform: translateY(-3px);
}

.pic-service-image {
  display: block;
  height: 190px;
  overflow: hidden;
  background: #f3f4f6;
}

.pic-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.pic-service-card:hover .pic-service-image img {
  transform: scale(1.035);
}

.pic-service-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #9ca3af;
  background: linear-gradient(135deg, #f9fafb, var(--pic-accent-soft));
}

.pic-service-placeholder .picoteos-icon {
  width: 48px;
  height: 48px;
}

.pic-service-body {
  padding: 20px;
}

.pic-service-category {
  margin: 0 0 6px;
  color: #168172;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pic-service-card h2,
.pic-content-card h2 {
  margin: 0;
  color: #1f2937;
  font-size: 21px;
  line-height: 1.3;
}

.pic-service-card h2 a:hover,
.pic-content-card h2 a:hover {
  color: #168172;
}

.pic-service-excerpt {
  margin-top: 9px;
  color: #6b7280;
  font-size: 14px;
}

.pic-service-location,
.pic-single-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.pic-service-location .picoteos-icon,
.pic-single-location .picoteos-icon {
  width: 18px;
  height: 18px;
  color: var(--pic-accent-hover);
}

.pic-single-location {
  color: #d1d5db;
  font-size: 16px;
}

.pic-card-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 16px;
  color: #167567;
  font-size: 14px;
  font-weight: 800;
}

.pic-card-link .picoteos-icon {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}

.pic-card-link:hover .picoteos-icon {
  transform: translateX(3px);
}

.pic-pagination {
  margin-top: 42px;
}

.pic-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.pic-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  font-weight: 700;
}

.pic-pagination .page-numbers.current,
.pic-pagination a.page-numbers:hover {
  background: var(--pic-accent);
  border-color: var(--pic-accent);
}

.pic-empty-state {
  max-width: 650px;
  margin: 0 auto;
  padding: 54px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
}

.pic-empty-state > .picoteos-icon {
  width: 48px;
  height: 48px;
  color: var(--pic-accent-hover);
}

.pic-empty-state h1,
.pic-empty-state h2 {
  margin: 12px 0 5px;
  line-height: 1.2;
}

.pic-empty-state p {
  margin: 0 0 22px;
  color: #6b7280;
}

.pic-content-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.pic-content-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.pic-content-card p {
  margin-bottom: 0;
  color: #6b7280;
}

/* Single and editorial content */
.pic-service-hero {
  padding-block: 48px;
}

.pic-back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 700;
}

.pic-back-link:hover {
  color: var(--pic-accent);
}

.pic-back-link .picoteos-icon {
  width: 18px;
  height: 18px;
}

.pic-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  padding-block: 48px 72px;
}

.pic-entry-content {
  min-width: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.8;
}

.pic-entry-content > *:first-child {
  margin-top: 0;
}

.pic-entry-content h2,
.pic-entry-content h3,
.pic-entry-content h4 {
  color: #1f2937;
  line-height: 1.3;
}

.pic-entry-content a:not(.pic-button) {
  color: #147a6c;
  text-decoration: underline;
}

.pic-entry-content blockquote {
  margin-inline: 0;
  padding: 4px 0 4px 22px;
  color: #52525b;
  border-left: 4px solid var(--pic-accent);
}

.pic-entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.pic-entry-content th,
.pic-entry-content td {
  padding: 10px;
  text-align: left;
  border: 1px solid #d1d5db;
}

.pic-featured-image {
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: 14px;
}

.pic-featured-image img {
  width: 100%;
}

.pic-contact-card {
  align-self: start;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--pic-accent);
  border-radius: 12px;
  box-shadow: var(--pic-shadow);
}

.pic-contact-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.pic-contact-card > p {
  margin: 9px 0 17px;
  color: #6b7280;
  font-size: 14px;
}

.pic-muted {
  color: #71717a !important;
}

.pic-simple-hero {
  padding-block: 52px;
}

.pic-page-content {
  max-width: 850px;
  padding-block: 48px 76px;
}

.pic-error-page {
  display: flex;
  align-items: center;
  min-height: 65vh;
  padding-block: 60px;
}

.pic-error-code {
  margin: 0 !important;
  color: var(--pic-accent-hover) !important;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

/* WordPress alignment helpers */
.alignwide {
  width: min(1100px, calc(100vw - 32px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.wp-caption,
.gallery-caption {
  color: #6b7280;
  font-size: 13px;
}

.sticky,
.bypostauthor {
  display: block;
}

@media (min-width: 540px) {
  .pic-subcategory-grid,
  .pic-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  body.pic-menu-is-open {
    overflow: auto;
  }

  .pic-container {
    width: min(100% - 48px, 1280px);
  }

  .pic-desktop-nav {
    display: flex;
    align-items: stretch;
    margin-left: 36px;
  }

  .pic-nav-list {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .pic-nav-list > li {
    display: flex;
    align-items: stretch;
  }

  .pic-nav-link {
    display: inline-flex;
    align-items: center;
    padding-top: 2px;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease;
  }

  .pic-nav-link:hover {
    color: var(--pic-accent-hover);
  }

  .pic-nav-link.is-current,
  .current-menu-item > .pic-nav-link {
    color: #111827;
    border-bottom-color: var(--pic-accent);
    font-weight: 800;
  }

  .pic-menu-toggle,
  .pic-mobile-menu {
    display: none !important;
  }

  .pic-search-form {
    flex-direction: row;
    align-items: stretch;
  }

  .pic-search-divider {
    display: block;
  }

  .pic-search-button {
    min-width: 126px;
    padding-inline: 26px;
  }

  .pic-category-panel {
    padding: 30px;
  }

  .pic-category-tab {
    padding: 11px 19px;
    font-size: 15px;
  }

  .pic-directory-section,
  .pic-how-section {
    padding-block: 88px;
  }

  .pic-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pic-footer-about {
    grid-column: 1 / -1;
  }

  .pic-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 800px) {
  .pic-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
  }

  .pic-login-link {
    color: #4b5563;
    font-size: 14px;
    font-weight: 650;
  }

  .pic-login-link:hover {
    color: var(--pic-accent-hover);
  }

  .pic-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
  }

  .pic-step:not(:first-child)::before {
    position: absolute;
    top: 31px;
    right: 50%;
    z-index: 0;
    width: calc(100% + 38px);
    height: 2px;
    background: #3f3f46;
    content: "";
  }

  .pic-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .pic-footer-about {
    grid-column: auto;
  }

  .pic-single-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .pic-contact-card {
    position: sticky;
    top: 96px;
  }
}

@media (min-width: 1024px) {
  .pic-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pic-subcategory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .pic-subcategory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .admin-bar .pic-site-header {
    top: 46px;
  }
}

@media (max-width: 639px) {
  .pic-hero,
  .pic-hero-content {
    min-height: 590px;
  }

  .pic-hero-content {
    padding-block: 48px;
  }

  .pic-search-form {
    gap: 6px;
  }

  .pic-location-field {
    padding-top: 6px;
    border-top: 1px solid #f3f4f6;
  }

  .pic-location-field > .picoteos-icon {
    margin-top: 3px;
  }

  .pic-category-tabs {
    gap: 8px;
  }

  .pic-category-tab {
    max-width: 100%;
  }

  .pic-category-panel {
    margin-inline: -4px;
  }

  .pic-panel-heading {
    align-items: flex-start;
  }

  .pic-page-hero {
    padding-block: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
  :root { --pic-accent-soft: #effdfb; }
  .pic-step-number { box-shadow: 0 7px 18px rgba(0, 0, 0, .25), 0 0 0 4px rgba(48, 227, 202, .3); }
}
